/* =========================================================
   CIBA — Site stylesheet
   Token + component system from DESIGN_SYSTEM.html
   ========================================================= */

/* FONTS */
@font-face { font-family: 'Söhne'; src: url('Fonts/TestSohne-Buch-BF663d89cd32e6a.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Söhne'; src: url('Fonts/TestSohne-Kraftig-BF663d89cd37e26.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Söhne'; src: url('Fonts/TestSohne-Halbfett-BF663d89cd2d67b.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Söhne Schmal'; src: url('Fonts/TestSohneSchmal-Dreiviertelfett-BF663d89cad1b90.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Söhne Schmal'; src: url('Fonts/TestSohneSchmal-DreiviertelfettKursiv-BF663d89cabe2e7.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Söhne Schmal'; src: url('Fonts/TestSohneSchmal-Extrafett-BF663d89caa8d99.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Söhne Schmal'; src: url('Fonts/TestSohneSchmal-ExtrafettKursiv-BF663d89caabd3d.otf') format('opentype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Söhne Mono'; src: url('Fonts/TestSohneMono-Buch-BF663d89cbcec64.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Söhne Mono'; src: url('Fonts/TestSohneMono-Halbfett-BF663d89cc69f9d.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }

/* TOKENS */
:root {
  --cyber-blue: #464AEB;
  --cyber-blue-hover: #5A5EFF;
  --cyber-blue-light: #898BFF;
  --peach: #FAAA8D;
  --peach-hover: #FBBA9F;
  --peach-light: #FCD7C0;
  --ink-950: #0A0F15;
  --ink-900: #101820;
  --ink-800: #1C2532;
  --ink-700: #2D3744;
  --ink-600: #455260;
  --ink-500: #5C6A7A;
  --ink-400: #8290A0;
  --ink-300: #ADB6C2;
  --ink-200: #C9D2DC;
  --bone: #F2F3F3;
  --white: #FFFFFF;

  --font-display: 'Söhne Schmal', system-ui, sans-serif;
  --font-body:    'Söhne', -apple-system, system-ui, sans-serif;
  --font-mono:    'Söhne Mono', ui-monospace, Menlo, monospace;

  --text-xs: 0.75rem; --text-sm: 0.875rem; --text-md: 1rem; --text-lg: 1.125rem;
  --text-xl: 1.5rem; --text-2xl: 2rem; --text-3xl: 2.75rem; --text-4xl: 3.75rem;
  --text-5xl: 5.25rem; --text-6xl: 7.5rem;

  --leading-tight: 0.92; --leading-snug: 1.1; --leading-base: 1.5; --leading-loose: 1.65;
  --tracking-display: -0.02em;
  --tracking-eyebrow: 0.18em;
  --tracking-label:   0.06em;

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;

  --radius-xs: 2px; --radius-sm: 4px; --radius-md: 6px; --radius-lg: 10px; --radius-full: 9999px;

  --duration-fast: 120ms; --duration-base: 200ms; --duration-slow: 320ms;
  --ease-standard:   cubic-bezier(0.2, 0, 0, 1);
  --ease-emphasized: cubic-bezier(0.3, 0, 0, 1);

  --focus-ring: 0 0 0 3px rgba(70,74,235,0.55);

  --container-max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --topbar-h: 72px;
}

/* RESET */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-950);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: var(--leading-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
::selection { background: var(--cyber-blue); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.skip-link {
  position: absolute; top: -100px; left: var(--space-4);
  background: var(--bone); color: var(--ink-950);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 600; z-index: 100;
}
.skip-link:focus { top: var(--space-4); }

/* CONTAINER */
.container {
  width: 100%; max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}

/* SECTIONS */
.section { padding: clamp(4.5rem, 11vw, 8rem) 0; position: relative; overflow: hidden; }
.section--ink   { background: var(--ink-950); color: var(--white); }
.section--blue  { background: var(--cyber-blue); color: var(--white); }
.section--white { background: var(--white); color: var(--ink-950); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  margin: 0 0 var(--space-6);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.section--ink   .eyebrow { color: var(--peach); }
.section--blue  .eyebrow { color: var(--white); }
.section--white .eyebrow { color: var(--cyber-blue); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  font-size: clamp(2.25rem, 7vw, 5.25rem);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  margin: 0 0 var(--space-6);
}
.section__lede {
  max-width: 60ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: var(--leading-loose);
  margin: 0;
}
.section--ink   .section__lede { color: var(--ink-300); }
.section--blue  .section__lede { color: var(--peach-light); }
.section--white .section__lede { color: var(--ink-600); }

/* SUBSECTION — a nested block inside a section, one step down in the hierarchy */
.subsection {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid currentColor;
}
.subsection__eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  margin: 0 0 var(--space-4);
}
.subsection__title {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
}
.subsection__lede {
  max-width: 60ch;
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  margin: 0;
}
.section--ink   .subsection { border-color: rgba(255,255,255,0.2); }
.section--blue  .subsection { border-color: rgba(255,255,255,0.3); }
.section--white .subsection { border-color: rgba(10,15,21,0.15); }
.section--ink   .subsection__eyebrow { color: var(--peach); }
.section--blue  .subsection__eyebrow { color: var(--peach-light); }
.section--white .subsection__eyebrow { color: var(--cyber-blue); }
.section--ink   .subsection__lede { color: var(--ink-300); }
.section--blue  .subsection__lede { color: var(--peach-light); }
.section--white .subsection__lede { color: var(--ink-600); }
/* Grids nested in a subsection sit closer to their heading than a top-level grid does */
.subsection .program-grid { margin-top: var(--space-8); }

/* NAVBAR */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,15,21,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
  height: var(--topbar-h);
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: var(--space-3); height: 100%; }
.brand__logo { height: 40px; width: auto; display: block; }

.nav { display: flex; gap: var(--space-6); align-items: center; }
.nav a:not(.btn) {
  font-family: var(--font-mono); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
  font-weight: 600;
  color: var(--ink-300);
  transition: color var(--duration-fast) var(--ease-standard);
}
.nav a:not(.btn):hover,
.nav a:not(.btn)[aria-current="page"] { color: var(--white); }
.nav .btn { height: 44px; padding: 0 var(--space-6); font-size: var(--text-md); letter-spacing: 0.04em; }

/* HAMBURGER */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
}
.nav-toggle__bars { width: 18px; height: 12px; position: relative; }
.nav-toggle__bars span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--white);
  transition: transform var(--duration-base) var(--ease-emphasized),
              opacity var(--duration-fast) var(--ease-standard);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    position: fixed;
    top: var(--topbar-h); left: 0; right: 0; bottom: 0;
    height: calc(100vh - var(--topbar-h));
    height: calc(100dvh - var(--topbar-h));
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-950);
    padding: var(--space-6) var(--gutter) calc(var(--space-8) + env(safe-area-inset-bottom, 0px));
    gap: var(--space-3);
    z-index: 49;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav.is-open a:not(.btn) {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.1;
    letter-spacing: var(--tracking-display);
    color: var(--white);
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav.is-open .btn { margin-top: var(--space-5); align-self: flex-start; }
  body.nav-open { overflow: hidden; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  padding: 0 var(--space-6);
  height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              transform var(--duration-fast) var(--ease-standard);
}
.btn:active { transform: translateY(1px); }
.btn--lg { height: 60px; padding: 0 var(--space-8); font-size: var(--text-md); }
.btn--primary { background: var(--cyber-blue); color: var(--white); }
.btn--primary:hover { background: var(--cyber-blue-hover); }
.btn--accent  { background: var(--peach); color: var(--ink-950); }
.btn--accent:hover  { background: var(--peach-hover); }
.btn--inverse { background: var(--ink-950); color: var(--white); }
.btn--inverse:hover { background: var(--ink-800); }
.btn--white   { background: var(--white); color: var(--ink-950); }
.btn--white:hover   { background: var(--bone); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--ghost-dark { background: transparent; color: var(--ink-950); border-color: rgba(10,15,21,0.3); }
.btn--ghost-dark:hover { border-color: var(--ink-950); background: rgba(10,15,21,0.04); }
.btn__arrow { transition: transform var(--duration-base) var(--ease-emphasized); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* HERO */
.hero { padding-top: clamp(3.5rem, 9vw, 6rem); padding-bottom: clamp(3.5rem, 9vw, 6rem); position: relative; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(3.5rem, 14vw, 12rem);
  line-height: 0.86;
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  margin: 0 0 var(--space-10);
}
.hero__lede {
  max-width: 58ch;
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  line-height: var(--leading-loose);
  color: var(--ink-300);
  margin: 0 0 var(--space-10);
}
.section--white .hero__lede { color: var(--ink-600); }
.section--blue  .hero__lede { color: var(--peach-light); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-4); }

.hero__bg {
  position: absolute;
  inset: -10% -10% -10% -10%;
  z-index: 0;
  pointer-events: none;
}
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero__bg-shape--blue { background: var(--cyber-blue); width: 520px; height: 520px; top: 10%; right: -10%; }
.hero__bg-shape--peach { background: var(--peach); width: 360px; height: 360px; bottom: -10%; left: -8%; opacity: 0.3; }
.hero > .container { position: relative; z-index: 1; }

/* HERO FIGURE — portrait photo with an X's-and-O's play diagram drawn around it */
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(3rem, 7vw, 4.5rem); align-items: center; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(3rem, 6vw, 6rem); }
}
.hero__copy { min-width: 0; }
.hero__figure {
  position: relative;
  margin: 0;
  width: 100%;
  /* Reserve 28px each side so the outside marks never clip against the gutter */
  max-width: min(300px, calc(100% - 56px));
  justify-self: center;
}
@media (min-width: 900px) { .hero__figure { max-width: 380px; justify-self: end; } }
.hero__figure-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-700);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.hero__figure-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Marks ring the frame from outside so nothing covers the athlete */
/* Court sits over the photo, shifted up and left so it breaks the frame on two sides */
/* Sits behind the photo — only the offset overhang shows, framing it on three sides */
.hero__court {
  position: absolute;
  left: -9%; top: -7%;
  height: 114%;
  aspect-ratio: 50 / 94;
  z-index: 0;
  color: var(--peach);
  opacity: 0.6;
  pointer-events: none;
}
@media (min-width: 900px) {
  .hero__court { left: -16%; top: -10%; height: 120%; }
}

/* HERO VIDEO — background clip, grayscale per the photography rule, dimmed for text contrast */
.hero--video { overflow: hidden; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: var(--ink-950);
  filter: grayscale(100%);
  z-index: 0;
  pointer-events: none;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(10,15,21,0.86) 0%, rgba(10,15,21,0.66) 55%, rgba(10,15,21,0.5) 100%);
}

/* PRINCIPLES (open ruled grid) */
.principles__grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.principle {
  padding: var(--space-8) var(--space-6) var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  border-right: 1px solid rgba(255,255,255,0.25);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.principle:last-child { border-right: 0; }
@media (max-width: 720px) { .principle { border-right: 0; } }
.principle__num {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--peach-light);
}
.principle__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--leading-snug);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.principle__text {
  margin: 0;
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--peach-light);
}

/* TEAM ROLE LABEL (above name in team cards) */
.team-role {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--peach);
  margin: 0;
}

/* TEAM LIST — stacked bios with dividers, no card wrapper */
.team-list {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(10,15,21,0.15);
}
.team-bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  padding: var(--space-12) 0;
  border-bottom: 1px solid rgba(10,15,21,0.15);
}
@media (min-width: 720px) {
  .team-bio { grid-template-columns: 280px 1fr; gap: var(--space-10); align-items: start; }
}
.team-bio__media {
  aspect-ratio: 4 / 5;
  max-width: 280px;
  background: var(--ink-950);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.team-bio__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Bios without a portrait hold the media column open so every name lines up */
.team-bio__spacer { display: none; }
@media (min-width: 720px) { .team-bio__spacer { display: block; } }
.team-bio__body { display: flex; flex-direction: column; gap: var(--space-4); }
.team-bio__role {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--cyber-blue);
  margin: 0;
}
.team-bio__name {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-950);
}
.team-bio__text {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  max-width: 64ch;
  margin: 0;
  color: var(--ink-600);
}
.team-bio__cta {
  margin-top: var(--space-2);
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--cyber-blue);
  display: inline-flex; align-items: center; gap: var(--space-2);
  align-self: flex-start;
}
.team-bio__cta:hover { color: var(--cyber-blue-hover); text-decoration: underline; text-underline-offset: 4px; }

/* PHOTOGRAPHY — brand rule: all content photos render in grayscale */
img.photo, .photo > img { filter: grayscale(100%); }

/* PROGRAM / SERVICE CARDS */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.program-card {
  background: var(--ink-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--duration-base) var(--ease-emphasized);
}
.section--white .program-card { background: var(--ink-950); }
.program-card:hover { transform: translateY(-4px); }
.program-card__media {
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex; align-items: flex-end;
  padding: var(--space-6);
  background: linear-gradient(160deg, var(--cyber-blue) 0%, var(--ink-950) 100%);
  overflow: hidden;
}
.program-card__media--peach { background: linear-gradient(160deg, var(--peach) 0%, var(--ink-950) 100%); color: var(--ink-950); }
.program-card__media--ink   { background: linear-gradient(160deg, var(--ink-700) 0%, var(--ink-950) 100%); }

/* Photo variant: grayscale image layer under colored gradient overlay.
   Image URL is set per-card via `style="--card-image: url('...')"` */
.program-card__media--photo {
  background: none;
}
.program-card__media--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}
.program-card__media--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(70,74,235,0.55) 0%, rgba(10,15,21,0.9) 100%);
  z-index: 1;
}
.program-card__media--photo.program-card__media--peach::after {
  background: linear-gradient(160deg, rgba(250,170,141,0.55) 0%, rgba(10,15,21,0.9) 100%);
}
.program-card__media--photo.program-card__media--ink::after {
  background: linear-gradient(160deg, rgba(45,55,68,0.55) 0%, rgba(10,15,21,0.92) 100%);
}
.program-card__media--photo > * { position: relative; z-index: 2; }
.program-card__overlay {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  margin: 0;
}
.program-card__meta {
  position: absolute; top: var(--space-5); left: var(--space-6); right: var(--space-6);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
}
.program-card__body {
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  flex: 1;
}
/* Plain variant: no media panel, so the body carries the card on its own */
.program-card--plain .program-card__body { padding: var(--space-8) var(--space-6); }
.program-card__label {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--ink-300);
  margin: 0;
}
.program-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.program-card__text { font-size: var(--text-sm); line-height: var(--leading-loose); color: var(--ink-300); margin: 0; }
.program-card__cta {
  margin-top: auto; padding-top: var(--space-5);
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--peach);
  display: inline-flex; align-items: center; gap: var(--space-2);
}

/* STEPS */
.process__grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}
.step {
  padding: var(--space-8);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  background: var(--ink-900);
  display: flex; flex-direction: column; gap: var(--space-5);
  transition: border-color var(--duration-base) var(--ease-standard);
}
.step:hover { border-color: var(--cyber-blue-light); }
.section--white .step { background: var(--bone); border-color: rgba(10,15,21,0.08); color: var(--ink-950); }
.section--white .step__text { color: var(--ink-600); }
.step__num {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  color: var(--cyber-blue-light);
}
.step__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.step__text { margin: 0; font-size: var(--text-md); line-height: var(--leading-loose); color: var(--ink-300); }

/* STATS BAND */
.stats {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.stat {
  padding: var(--space-8) var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat:last-child { border-right: 0; }
@media (max-width: 720px) { .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.25); } .stat:last-child { border-bottom: 0; } }
.stat__label {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--peach-light);
  margin: 0 0 var(--space-4);
}
.stat__value {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  color: var(--white);
}
.stat__sub {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: var(--peach-light);
}

/* CTA panel */
.cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: end;
}
@media (min-width: 900px) { .cta { grid-template-columns: 1.4fr 1fr; } }
.cta__title {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  margin: 0;
  color: var(--ink-950);
}
.section--ink .cta__title { color: var(--white); }
.cta__panel {
  background: var(--cyber-blue);
  color: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: var(--space-5);
}
.cta__eyebrow {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--peach-light);
  margin: 0;
}
.cta__price {
  font-family: var(--font-display); font-weight: 800;
  font-size: var(--text-4xl);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  margin: 0;
}
.cta__text { margin: 0; font-size: var(--text-md); line-height: var(--leading-loose); color: var(--peach-light); }

/* FORMS */
.form { display: grid; gap: var(--space-5); max-width: 560px; }
.field { display: flex; flex-direction: column; gap: var(--space-2); width: 100%; }
.label {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--ink-950);
}
.section--ink .label { color: var(--white); }
.input, .textarea, .select {
  font-family: var(--font-body);
  font-size: var(--text-md);
  background: var(--white);
  color: var(--ink-950);
  border: 1px solid rgba(10,15,21,0.2);
  border-radius: var(--radius-md);
  padding: 0 var(--space-4);
  height: 52px;
  width: 100%;
  transition: border-color var(--duration-fast) var(--ease-standard);
}
.textarea { height: auto; padding: var(--space-3) var(--space-4); resize: vertical; min-height: 140px; line-height: var(--leading-base); }
.section--ink .input, .section--ink .textarea, .section--ink .select {
  background: var(--ink-900); color: var(--white);
  border-color: rgba(255,255,255,0.18);
}
.input:hover, .textarea:hover, .select:hover { border-color: var(--cyber-blue); }
.input:focus-visible, .textarea:focus-visible, .select:focus-visible { border-color: var(--cyber-blue); box-shadow: var(--focus-ring); }

/* FAQ */
.faq { margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid currentColor; }
.faq__item { border-bottom: 1px solid currentColor; }
.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-6) 0;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-6);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.125rem, 2vw, var(--text-2xl));
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__icon {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-2xl);
  width: 32px; text-align: right;
  transition: transform var(--duration-base) var(--ease-emphasized);
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__body {
  padding-bottom: var(--space-8);
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  max-width: 70ch;
}
.section--white .faq__body { color: var(--ink-600); }
.section--ink .faq__body, .section--blue .faq__body { color: var(--ink-300); }
.section--blue .faq__body { color: var(--peach-light); }

/* FOOTER */
.footer { padding: var(--space-16) 0 var(--space-10); border-top: 1px solid rgba(255,255,255,0.08); background: var(--ink-950); color: var(--white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--space-12); } }
.footer__brand {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  margin: 0 0 var(--space-4);
}
.footer__chrome {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--peach);
}
.footer__title {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--ink-400);
  margin: 0 0 var(--space-4);
}
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.footer__list a { color: var(--ink-300); font-size: var(--text-sm); }
.footer__list a:hover { color: var(--white); }
.footer__bottom {
  margin-top: var(--space-16);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4);
  font-family: var(--font-mono); font-size: var(--text-xs);
  text-transform: uppercase; letter-spacing: var(--tracking-eyebrow);
  color: var(--ink-400);
}
.footer__address {
  font-family: var(--font-body); font-size: var(--text-sm);
  text-transform: none; letter-spacing: 0;
  color: var(--ink-300); line-height: var(--leading-loose);
  margin: var(--space-4) 0 0;
  font-style: normal;
}

/* PARALLAX HOOKS */
.parallax {
  will-change: transform;
  transition: transform 60ms linear;
}

/* SCROLL REVEAL — [data-reveal] elements fade and rise once, on first entry into view.
   Scoped to .js so visitors without scripts get the content unhidden.
   Never put data-reveal on a .parallax element: both drive transform. */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }

/* Section headers cascade; grid children trail the first card */
.js .section__title[data-reveal] { transition-delay: 60ms; }
.js .section__lede[data-reveal]  { transition-delay: 120ms; }
.js .process__grid > [data-reveal]:nth-child(2),
.js .program-grid > [data-reveal]:nth-child(2) { transition-delay: 90ms; }
.js .process__grid > [data-reveal]:nth-child(3),
.js .program-grid > [data-reveal]:nth-child(3) { transition-delay: 180ms; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* INFO ROW */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.info-grid__item { display: flex; flex-direction: column; gap: var(--space-3); }
.info-grid__label {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--peach);
  margin: 0;
}
.section--white .info-grid__label { color: var(--cyber-blue); }
.info-grid__value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.info-grid__detail { margin: 0; color: inherit; opacity: 0.75; font-size: var(--text-sm); line-height: var(--leading-loose); }

/* PRICING LIST */
.price-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid currentColor;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid currentColor;
}
.price-row__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.price-row__meta {
  font-family: var(--font-mono); font-size: var(--text-xs);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  margin: var(--space-2) 0 0;
  opacity: 0.7;
}
.price-row__price {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: var(--tracking-display);
}

/* PROSE (policy / admin pages) */
.prose {
  max-width: 68ch;
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: var(--ink-600);
}
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  color: var(--ink-950);
  margin: var(--space-12) 0 var(--space-4);
  line-height: var(--leading-snug);
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-950);
  margin: var(--space-8) 0 var(--space-3);
}
.prose p { margin: 0 0 var(--space-5); }
.prose ul, .prose ol { margin: 0 0 var(--space-5); padding-left: var(--space-6); }
.prose li { margin-bottom: var(--space-2); }
.prose a {
  color: var(--cyber-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose strong { color: var(--ink-950); font-weight: 600; }
.prose address { font-style: normal; }
.prose-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--cyber-blue);
  margin: var(--space-12) 0 var(--space-2);
}
.prose-eyebrow:first-child { margin-top: 0; }
.prose-eyebrow + h2 { margin-top: 0; }

/* FOOTER POLICIES */
.footer__policies { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-5); flex-wrap: wrap; }
.footer__policies a { color: var(--ink-400); }
.footer__policies a:hover { color: var(--white); }

/* TALLY EMBED */
.tally-embed {
  margin-top: clamp(2rem, 4vw, 3rem);
  width: 100%;
  max-width: 640px;
}
.tally-embed iframe { display: block; width: 100%; border: 0; }

/* MAP / EMBED */
.embed-frame {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--ink-900);
  aspect-ratio: 16 / 9;
}
.section--white .embed-frame { border-color: rgba(10,15,21,0.12); background: var(--bone); }
.embed-frame iframe { width: 100%; height: 100%; border: 0; }
