:root {
  --color-background: #09090b;
  --color-surface: #14161b;
  --color-surface-strong: #1a1d24;
  --color-text: #f4f0ea;
  --color-text-muted: #b9b3ab;
  --color-primary: #e01a5f;
  --color-primary-strong: #9d133f;
  --color-secondary: #8f5fe8;
  --color-focus: #ff78a7;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --radius-control: 8px;
  --radius-card: 8px;
  --motion-fast: 160ms;
  --motion-standard: 240ms;
  --motion-enter: 360ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-content: 1;
  --z-header: 50;
  --z-skip-link: 100;
  --bg: #09090b;
  --paper: #111215;
  --surface: #14161b;
  --surface-strong: #1a1d24;
  --ink: #f4f0ea;
  --ink-soft: #b9b3ab;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --brand: #e01a5f;
  --brand-deep: #9d133f;
  --accent: #8f5fe8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --radius-sm: 18px;
  --content: 1180px;
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(224, 26, 95, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(143, 95, 232, 0.14), transparent 22%),
    linear-gradient(180deg, #070709 0%, #0b0c10 48%, #09090b 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(10, 11, 14, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-bar {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 82px;
  height: 54px;
  object-fit: contain;
  background: #0c0c0f;
  border-radius: 14px;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eyebrow,
.section-kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.brand-title,
.hero-title,
.section-title,
.page-title,
.metric-value,
.timeline-year,
.mini-title,
.cta-title,
.quote,
.card h3,
.contact-card h3,
.person-card h3,
.creator-card h3,
.footer-title {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.brand-title {
  font-size: 1.18rem;
  line-height: 1;
}

.brand-subtitle {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.brand .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button,
.button-muted,
.button-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button-muted:hover,
.button-line:hover {
  transform: translateY(-1px);
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 16px 36px rgba(126, 23, 18, 0.22);
}

.nav-links .button,
.nav-links .button:hover,
.nav-links .button.active {
  color: #fff;
}

.button-muted {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-line {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.menu-toggle {
  position: relative;
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 23px;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip-link);
  top: var(--space-3);
  left: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-control);
  background: #2b1734;
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--motion-fast) var(--motion-ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.9) 0%, rgba(8, 9, 13, 0.76) 42%, rgba(8, 9, 13, 0.84) 100%),
    linear-gradient(115deg, rgba(8, 9, 13, 0.9) 0%, rgba(8, 9, 13, 0.52) 48%, rgba(8, 9, 13, 0.78) 100%),
    url("./assets/images/coderedheader.jpg") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(8, 9, 13, 0) 0%, rgba(8, 9, 13, 0.46) 52%, var(--bg) 100%);
  z-index: -1;
}

.hero-grid,
.page-frame,
.story-grid,
.stats-grid,
.card-grid,
.impact-grid,
.logo-grid,
.team-grid,
.creator-grid,
.footer-grid,
.contact-grid,
.timeline-list {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  min-height: calc(100vh - var(--nav-height));
  padding: 40px 0 64px;
}

.hero-copy {
  max-width: 700px;
  padding-top: 18px;
}

.hero-title {
  margin: 14px 0 16px;
  font-size: clamp(2.8rem, 7vw, 5.1rem);
  line-height: 0.95;
}

.hero-copy p,
.page-lead,
.section-copy,
.card-body,
.timeline-copy,
.person-card p,
.creator-card p,
.contact-card p,
.footer-copy {
  color: inherit;
  font-size: 1.04rem;
  line-height: 1.68;
}

.hero-actions,
.button-row,
.pill-row,
.social-links,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 20px;
}

.hero-panel,
.page-panel,
.panel,
.card,
.contact-card,
.person-card,
.creator-card,
.metric-card,
.logo-card,
.timeline-item,
.footer-card,
.form-shell,
.statement-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
  background: rgba(18, 20, 26, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  margin-top: 8px;
}

.hero-photo,
.page-art img,
.timeline-image img,
.statement-card img,
.feature-photo img {
  border-radius: calc(var(--radius) - 6px);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.stat-blocks {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-chip {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-chip strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.stat-chip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.section,
.section-tight,
.page-hero {
  padding: 72px 0;
}

.section-tight {
  padding-top: 20px;
}

.page-hero {
  padding-top: 36px;
  padding-bottom: 48px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}

.section-title,
.page-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  color: var(--ink);
}

.hero .section-title,
.hero .page-title,
.hero .section-copy,
.hero .page-lead {
  color: #fff;
}

.page-frame {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.page-frame--single {
  grid-template-columns: minmax(0, 1fr);
}

.page-panel {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.page-art img {
  min-height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.page-hero--about {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 76px;
  background-color: #090a0f;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.08) 0%, rgba(8, 9, 13, 0.24) 44%, rgba(8, 9, 13, 0.6) 76%, rgba(8, 9, 13, 0.92) 92%, rgba(8, 9, 13, 1) 100%),
    linear-gradient(90deg, rgba(8, 9, 13, 0.52) 0%, rgba(8, 9, 13, 0.16) 44%, rgba(8, 9, 13, 0.42) 100%),
    url("./assets/images/about-hero-sunset.JPG");
  background-size: cover, cover, 104% auto;
  background-repeat: no-repeat;
  background-position: center, center, center 34%;
}

.page-hero--about .page-panel {
  width: min(100%, 680px);
  padding: 30px 32px;
  background: rgba(15, 17, 23, 0.48);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.page-hero--about .page-frame--single {
  justify-items: end;
  padding-right: clamp(8px, 4vw, 72px);
}

.page-hero--about + .section {
  padding-top: 52px;
}

.panel,
.card,
.contact-card,
.person-card,
.creator-card,
.form-shell,
.statement-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.panel,
.statement-card,
.form-shell {
  padding: 28px;
}

.card,
.contact-card,
.person-card,
.creator-card,
.metric-card,
.timeline-item,
.footer-card {
  padding: 24px;
}

.card,
.contact-card,
.person-card,
.creator-card,
.metric-card,
.timeline-item,
.footer-card,
.panel,
.statement-card,
.form-shell,
.values-support-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.contact-card:hover,
.person-card:hover,
.creator-card:hover,
.metric-card:hover,
.timeline-item:hover,
.footer-card:hover,
.panel:hover,
.statement-card:hover,
.form-shell:hover,
.values-support-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.38);
}

.story-grid,
.card-grid,
.impact-grid,
.logo-grid,
.team-grid,
.creator-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid {
  align-items: start;
}

.about-principles {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.about-principles-main,
.about-values-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.about-values-card h3 {
  margin: 2px 0 10px;
  font-size: 2.08rem;
  line-height: 1;
}

.about-principles-main {
  padding: 30px;
}

.about-principles-stack {
  display: grid;
  gap: 20px;
}

.about-principle-copy {
  display: grid;
  gap: 10px;
}

.about-principle-copy + .about-principle-copy {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  background: linear-gradient(180deg, rgba(24, 26, 33, 0.92), rgba(18, 20, 26, 0.92));
  border: 1px solid var(--line);
}

.metric-value {
  font-size: 2.5rem;
  line-height: 1;
}

.metric-label {
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.card h3,
.contact-card h3,
.person-card h3,
.creator-card h3 {
  margin: 10px 0 12px;
  font-size: 1.38rem;
  line-height: 1.15;
}

.card-body,
.section-copy,
.contact-card p,
.person-card p,
.creator-card p {
  color: var(--ink-soft);
  margin: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.split-layout--values {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 24px;
}

.values-column {
  display: grid;
  gap: 24px;
  align-content: start;
}

.about-story {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 20px;
}

.about-certifications {
  margin-top: 2px;
  gap: 20px;
}

.quote {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.12;
  text-wrap: balance;
}

.quote-note {
  margin: 0;
  color: var(--ink-soft);
}

.story-grid--values {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 16px;
}

.values-panel .section-copy {
  max-width: 62ch;
}

.values-support-card {
  padding: 10px;
  border-radius: calc(var(--radius) + 2px);
  background: rgba(18, 20, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.values-support-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 8px);
}

.story-grid--values .card {
  height: 100%;
  padding: 22px 24px;
}

.story-grid--values .card:last-child {
  grid-column: auto;
}

.story-grid--values .card h3 {
  max-width: 16ch;
}

.story-grid--values .card-body {
  max-width: 44ch;
}

.impact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-title {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.logo-card img {
  max-height: 100px;
  object-fit: contain;
}

.about-logo-grid {
  margin-top: 16px;
  gap: 16px;
}

.about-logo-grid .logo-card {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.person-card,
.creator-card {
  display: grid;
  gap: 18px;
}

.person-card {
  gap: 10px;
  align-content: start;
}

.person-card h3 {
  margin: 0 0 4px;
}

.person-card p {
  line-height: 1.62;
}

.person-photo,
.creator-photo,
.creator-photo--brand {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #20232b;
}

.person-photo img,
.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-photo--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.role {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.timeline-list {
  grid-template-columns: 1fr;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.timeline-year {
  font-size: 1.2rem;
  color: var(--brand);
}

.timeline-item h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1.12;
}

.timeline-copy {
  margin: 0;
  color: var(--ink-soft);
}

.timeline-image {
  margin-top: 16px;
}

.timeline-image--compact img {
  width: min(100%, 560px);
}

.timeline-video {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0c10;
}

.timeline-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-embed {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.video-embed-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 13, 0.1) 0%, rgba(8, 9, 13, 0.18) 30%, rgba(8, 9, 13, 0.74) 100%),
    linear-gradient(90deg, rgba(8, 9, 13, 0.58) 0%, rgba(8, 9, 13, 0.1) 48%, rgba(8, 9, 13, 0.46) 100%);
}

.video-embed-content {
  position: absolute;
  inset: auto 20px 20px 20px;
  display: grid;
  gap: 10px;
  max-width: calc(100% - 112px);
  z-index: 1;
}

.video-embed-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-embed-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.08;
  color: #fff;
  text-wrap: balance;
}

.video-embed-note {
  color: rgba(244, 240, 234, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.video-embed-play {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.26);
  z-index: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.video-embed:hover .video-embed-play {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.18);
}

.video-embed-play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.timeline-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #07080c;
}

.timeline-video--hosted {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(224, 26, 95, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(16, 18, 24, 0.92), rgba(10, 12, 17, 0.96));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.video-embed--hosted {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.timeline-video--hosted.is-loading .video-embed-badge {
  background: rgba(255, 255, 255, 0.16);
}

.timeline-video--hosted.is-loading .video-embed-play {
  transform: scale(0.98);
}

.timeline-video--hosted.is-playing .video-embed--hosted {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-embed-fallback {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.video-embed-fallback:hover {
  background: rgba(8, 9, 13, 0.84);
}

.timeline-video--hosted:not(.has-fallback) .video-embed-fallback {
  display: none;
}

.statement-card {
  display: grid;
  gap: 18px;
}

.feature-photo img {
  min-height: 320px;
  object-fit: cover;
}

.store-embed-shell {
  position: relative;
  display: grid;
  gap: 0;
  min-height: calc(100dvh - 132px);
}

.embed-section {
  padding: 0;
}

.store-embed-frame {
  width: 100%;
  min-height: calc(100dvh - 132px);
  border: 0;
  border-radius: 0;
  background: #fff;
}

.hours-shell {
  padding: 32px 0 40px;
}

.hours-frame {
  position: relative;
  padding: 14px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(20, 22, 27, 0.92), rgba(12, 13, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hours-embed-frame {
  display: block;
  width: 100%;
  min-height: calc(100dvh - 220px);
  border: 0;
  border-radius: calc(var(--radius) - 6px);
  background: #fff;
}

.form-shell h2,
.panel h2,
.statement-card h2 {
  margin: 14px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-submit {
  min-width: 196px;
  padding-inline: 22px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(126, 23, 18, 0.2);
}

.contact-section {
  padding-top: 18px;
}

.contact-grid--page {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-intro {
  margin: -2px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 16px;
  background: #0f1116;
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(185, 179, 171, 0.68);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 120, 167, 0.45);
  box-shadow: 0 0 0 4px rgba(224, 26, 95, 0.08);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-disclosure {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-disclosure a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hidden-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-note,
.contact-list,
.inline-list {
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-status {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(36, 122, 81, 0.18);
  border: 1px solid rgba(99, 219, 164, 0.28);
  color: #d5f7e8;
}

.embed-status {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--surface);
  color: var(--ink-soft);
  text-align: center;
}

.embed-status p {
  max-width: 42ch;
  margin: 0;
}

.embed-shell[data-state="ready"] .embed-status {
  display: none;
}

.embed-shell[data-state="delayed"] .embed-status {
  background: rgba(10, 11, 14, 0.96);
}

button:disabled,
.button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.button:active,
.button-muted:active,
.button-line:active {
  transform: scale(0.98);
}

.contact-note {
  margin: 16px 0 0;
}

.contact-note a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px;
}

.contact-list,
.inline-list {
  padding-left: 18px;
  margin: 2px 0 0;
}

.contact-list li,
.inline-list li {
  margin-bottom: 10px;
}

.social-links {
  margin-top: 6px;
}

.footer {
  padding: 44px 0 52px;
  background: #151515;
  color: #f7f1e9;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.footer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-card--lead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.footer-lead-copy {
  display: grid;
  gap: 10px;
}

.footer-title {
  margin: 10px 0 12px;
  font-size: 2rem;
  line-height: 1.02;
}

.footer-copy {
  margin: 0;
  color: rgba(247, 241, 233, 0.78);
}

.footer-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: rgba(247, 241, 233, 0.82);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links--stacked {
  margin-top: 6px;
  gap: 10px;
}

.footer-links--stacked a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7f1e9;
}

.footer-links--stacked a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f7f1e9;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.footer-next:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.policy-hero {
  max-width: 880px;
  padding: 24px;
}

.policy-meta {
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.policy-toc {
  position: static;
  display: grid;
  gap: 8px;
  padding: 20px;
  box-shadow: none;
}

.policy-toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted-strong);
}

.policy-toc a:hover {
  color: var(--ink);
}

.policy-body {
  display: grid;
  gap: 24px;
  padding: 26px;
}

.policy-body section {
  scroll-margin-top: 110px;
}

.policy-body h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.policy-body p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.policy-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-body a:hover {
  color: var(--ink);
}

.policy-body p + p,
.policy-body p + .policy-list,
.policy-list + p {
  margin-top: 12px;
}

.policy-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted-strong);
  line-height: 1.65;
}

.policy-list li + li {
  margin-top: 8px;
}

.policy-note {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(216, 27, 96, 0.07);
}

.pill-row {
  margin-top: 22px;
}

.about-values-card .pill-row {
  margin-top: 10px;
}

.pill-row--dense {
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(224, 26, 95, 0.1);
  color: #ff78a7;
  font-size: 0.92rem;
  font-weight: 600;
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--motion-enter) ease,
    transform var(--motion-enter) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .button-muted,
  .button-line,
  .card,
  .contact-card,
  .person-card,
  .creator-card,
  .metric-card,
  .timeline-item,
  .footer-card,
  .panel,
  .statement-card,
  .form-shell,
  .values-support-card,
  .reveal {
    transition: none;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-frame,
  .split-layout,
  .store-grid,
  .policy-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }

  .stats-grid,
  .story-grid,
  .card-grid,
  .about-principles,
  .team-grid,
  .creator-grid,
  .contact-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid--page {
    grid-template-columns: 1fr;
  }

  .page-hero--about .page-frame--single {
    justify-items: start;
    padding-right: 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .story-grid--values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(14, 16, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  .nav-links a {
    color: rgba(244, 240, 234, 0.9);
    width: 100%;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0 74px;
  }

  .stats-grid,
  .story-grid,
  .card-grid,
  .about-principles,
  .team-grid,
  .creator-grid,
  .contact-grid,
  .logo-grid,
  .stat-blocks {
    grid-template-columns: 1fr;
  }

  .about-principles-main {
    padding: 24px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .page-panel,
  .panel,
  .statement-card,
  .form-shell {
    padding: 22px;
  }
}
