/* ═══════════════════════════════════════════════
   BLUES & GREENS — design system
   ═══════════════════════════════════════════════ */
:root {
  /* B&G palette — logo blue & green lead; navy #104791 base; gold reserved for CTAs */
  --ink: #071a33;
  --ink-2: #0b2347;
  --cream: #fbf8f3;
  --cream-2: #f1ebdf;
  --blue: #3d77c9;
  --blue-logo: #2b5ca9;
  --blue-deep: #104791;
  --green: #5fa332;
  --green-deep: #4c6e22;
  --gold: #c8a951;
  --gold-deep: #8f7422;
  --line-dark: rgba(7, 26, 51, 0.16);
  --line-light: rgba(251, 248, 243, 0.16);
  --glow-gold: 0 0 40px rgba(200, 169, 81, 0.45);
  --glow-blue: 0 0 40px rgba(16, 71, 145, 0.5);
  --radius-card: 24px;

  --font-head: "League Spartan", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* display type — League Spartan across all headline/label elements */
.nav__logo-mark, .nav__logo-word, .nav__links a, .btn, .section-label,
.hero__eyebrow, .hero__title, .marquee__item, .why__word, .why__resolve,
.manifesto__text, .manifesto__punch, .story__year, .story__attr,
.pillars__title, .pillar__num, .pillar__name, .pillar__tag,
.impact__num, .impact__label, .join__title, .join-panel__for, .join-panel__cta,
.voices__attr, .footer__col-title, .footer__wordmark, .footer__bottom,
.preloader__brand, .preloader__count, .cursor__label,
.ripple-cap__step, .ripple__mission-title {
  font-family: var(--font-head);
}

::selection { background: var(--gold); color: var(--ink); }

em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

a { color: inherit; text-decoration: none; }

/* ── grain ─────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ── preloader (minimal: logo falls into place) ── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.preloader__logo {
  width: min(34vmin, 400px);
  opacity: 0;
  animation: preloaderIn 0.5s ease 0.05s forwards;
  will-change: transform, opacity;
  filter: drop-shadow(0 24px 48px rgba(3, 12, 26, 0.45));
}
@keyframes preloaderIn { to { opacity: 1; } }

/* ── cursor ────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9500;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), background 0.35s;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 56px; height: 56px; background: #fff; }
.cursor.is-apply { width: 92px; height: 92px; background: var(--gold); mix-blend-mode: normal; }
.cursor__label {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--ink); opacity: 0;
}
.cursor.is-apply .cursor__label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ── buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800; letter-spacing: 0.08em;
  font-size: 0.72rem; text-transform: uppercase;
  padding: 0.9em 1.8em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn--lg { font-size: 0.82rem; padding: 1.15em 2.2em; }
.btn--solid {
  background: linear-gradient(135deg, #dcc178 0%, #c8a951 55%, #ab8c38 100%);
  color: var(--ink);
  box-shadow: var(--glow-gold);
}
.btn--solid:hover { background: var(--cream); transform: translateY(-3px); }
.btn--ghost { border-color: var(--line-light); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── section label ─────────────────────────── */
.section-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.section-label--light { color: var(--gold); }

/* ── B&G logo (traced SVG) ─────────────────── */
.logo-img { display: block; width: auto; }
.nav__logo .logo-img { height: 42px; }
.preloader__brand .logo-img { height: 40px; }
.footer__brand .logo-img { height: 58px; margin-bottom: 1.4rem; }

/* the travelling mark — position/scale driven by js/logo.js */
.logo-mark {
  position: fixed; top: 0; left: 0;
  width: min(34vmin, 400px);
  aspect-ratio: 4 / 5;
  z-index: 4;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 24px 48px rgba(3, 12, 26, 0.45));
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-mark .lg-b, .logo-mark .lg-g { transition: fill 0.8s ease; }
.logo-mark[data-logo-state="white"] .lg-b,
.logo-mark[data-logo-state="white"] .lg-g { fill: #fbf8f3; }
.logo-mark[data-logo-state="duo"] .lg-b { fill: #3d77c9; }
.logo-mark[data-logo-state="duo"] .lg-g { fill: #5fa332; }
.logo-mark[data-logo-state="blue"] .lg-b { fill: #4c86dd; }
.logo-mark[data-logo-state="blue"] .lg-g { fill: #2e66c0; }
.logo-mark[data-logo-state="green"] .lg-b { fill: #79c24a; }
.logo-mark[data-logo-state="green"] .lg-g { fill: #4f8f28; }

/* ── nav ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: transform 0.5s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(7, 26, 51, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(251, 248, 243, 0.08);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav__logo { display: flex; align-items: center; gap: 0.8rem; }
.nav__logo .logo-bg { height: 42px; width: auto; }
.nav__logo-word {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.24em;
  opacity: 0.75;
}
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative; padding: 0.3em 0;
  opacity: 0.85;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 760px) {
  .nav__links, .nav__logo-word { display: none; }
  .nav { padding: 0.9rem 1.25rem; }
  .nav__cta { font-size: 0.62rem; padding: 0.85em 1.4em; }
}

/* ── mobile menu ───────────────────────────── */
.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 6px; margin-left: 0.8rem;
  z-index: 1001;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
html.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
html.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
html.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) { .nav__burger { display: block; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(7, 26, 51, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.7rem, 8vw, 2.4rem);
  text-transform: uppercase;
  padding: 0.55rem 0;
  color: var(--cream);
  transform: translateY(14px); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s, color 0.3s;
}
.mobile-menu.is-open a { transform: none; opacity: 1; }
.mobile-menu a.is-active, .mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.09s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.13s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.17s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.21s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.29s; }
.mobile-menu .btn { margin-top: 1.8rem; align-self: flex-start; opacity: 0; transition: opacity 0.4s 0.33s; }
.mobile-menu.is-open .btn { opacity: 1; }

/* ── hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero--nogl {
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(43, 92, 169, 0.6), transparent 60%),
    radial-gradient(110% 80% at 15% 95%, rgba(95, 163, 50, 0.35), transparent 55%),
    var(--ink);
}
.hero__content {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding: clamp(5rem, 12vh, 7.5rem) var(--pad) clamp(2rem, 5vh, 4rem);
}
.hero__topright {
  margin-left: auto;
  max-width: min(52vw, 560px);
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right;
}
.hero__live {
  font-family: var(--font-head);
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.hero__stats {
  display: flex; justify-content: flex-end;
  gap: clamp(1.4rem, 3.5vw, 3.2rem);
}
.hero-stat { text-align: right; }
.hero-stat__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.5rem, 4.2vw, 3.2rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat__num i { font-style: normal; color: var(--gold); font-size: 0.55em; vertical-align: 0.28em; }
.hero-stat__label {
  display: block; margin-top: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  line-height: 1.5;
  opacity: 0.75;
}
.hero__bottom {
  margin-top: auto;
  display: flex; flex-direction: column;
  gap: clamp(1.5rem, 4vh, 3rem);
}
.hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.hero__row--cta { align-items: center; }
.hero__tag {
  margin-top: clamp(1.4rem, 3.5vh, 2.2rem);
  max-width: 44ch;
  font-family: var(--font-head);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em;
  line-height: 1.8;
  opacity: 0.85;
}
.hero__cta {
  font-family: var(--font-head);
  font-weight: 700; letter-spacing: 0.14em;
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  color: var(--gold);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s;
}
.hero__cta:hover { color: var(--cream); }
.hero__cta-arrow { transition: transform 0.35s var(--ease-out); }
.hero__cta:hover .hero__cta-arrow { transform: translate(3px, -3px); }
.hero__mini {
  font-family: var(--font-head);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  line-height: 1.7;
  opacity: 0.6;
  flex-shrink: 0;
}
.hero__title {
  font-weight: 900;
  font-size: clamp(2.4rem, 8.2vw, 8.4rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: right;
  margin-left: auto;
}
.hero__title em {
  text-transform: none;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0;
}
.hero__line { display: block; overflow: hidden; }
@media (max-width: 760px) {
  .hero__topright { max-width: 100%; margin-left: 0; align-items: flex-start; text-align: left; }
  .hero__stats { justify-content: flex-start; flex-wrap: wrap; gap: 1rem 1.6rem; }
  .hero-stat { text-align: left; }
  .hero-stat__num { font-size: clamp(1.5rem, 7.5vw, 2.2rem); }
  .hero__tag { max-width: 100%; margin-top: 1.1rem; font-size: 0.6rem; }
  .hero__title { font-size: clamp(2.1rem, 10.5vw, 3.2rem); }
  .hero__row--title { flex-direction: column; align-items: flex-end; }
  .hero__mini { display: none; }
}

/* ── the name (blues / greens meaning) ─────── */
.meaning { background: var(--ink); }
.meaning__pin {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative;
  padding: var(--pad);
  overflow: hidden;
}
.meaning__pin .section-label {
  position: absolute; top: clamp(5rem, 12vh, 8rem);
  left: var(--pad);
}
.meaning__stage {
  position: relative; width: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: 42vh;
  margin-top: 30vh; /* room for the 3D logo sitting above the text */
}
.meaning__step {
  position: absolute;
  text-align: center;
  max-width: 46ch;
  opacity: 0;
}
.meaning__step h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 10rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.meaning__step h2 em { text-transform: none; font-weight: 400; }
.meaning__step--blues h2 { color: var(--blue); }
.meaning__step--blues h2 em { color: #7ba7e6; }
.meaning__step--greens h2 { color: var(--green); }
.meaning__step--greens h2 em { color: #8cc95e; }
.meaning__step p {
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500; line-height: 1.6;
  opacity: 0.85;
}
.meaning__truth {
  position: absolute;
  text-align: center;
  max-width: 30ch;
  opacity: 0;
}
.meaning__line {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.9rem, 4.8vw, 4.2rem);
  line-height: 1.25;
}
.meaning__line .w-blue { color: var(--blue); font-style: italic; }
.meaning__line .w-green { color: var(--green); font-style: italic; }
.meaning__sub {
  margin-top: 1.8rem;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 500; line-height: 1.6;
  opacity: 0.75;
  max-width: 44ch;
  margin-left: auto; margin-right: auto;
}

/* ── marquee ───────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 1.1rem 0;
  background: var(--ink);
}
.marquee__track { display: flex; white-space: nowrap; will-change: transform; }
.marquee__item {
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  letter-spacing: 0.04em;
  padding-right: 0.5em;
}
.marquee__item i { font-style: normal; color: var(--gold); }

/* ── why we exist ──────────────────────────── */
.why { background: var(--ink); }
.why__pin {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative;
  padding: var(--pad);
}
.why__pin .section-label {
  position: absolute; top: clamp(5rem, 12vh, 8rem);
}
.why__stage {
  position: relative; width: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: 40vh;
}
.why__word {
  position: absolute;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(2.2rem, 10.5vw, 12rem);
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  white-space: nowrap;
}
.why__word:nth-child(2) { color: var(--blue); }
.why__word:nth-child(3) { color: var(--cream); }
.why__word:nth-child(4) { color: var(--blue); }
.why__resolve {
  position: absolute;
  max-width: 22ch;
  text-align: center;
  font-weight: 800; font-stretch: 110%;
  font-size: clamp(1.6rem, 4.2vw, 3.6rem);
  line-height: 1.15;
  text-transform: uppercase;
  opacity: 0;
}
.why__resolve em { color: var(--gold); text-transform: none; font-weight: 400; }
.strike { position: relative; white-space: nowrap; }
.strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 0.09em; background: var(--gold);
  transform: rotate(-2deg);
}
.why__progress {
  position: absolute; bottom: clamp(3rem, 8vh, 5rem);
  width: min(320px, 50vw); height: 1px;
  background: var(--line-light);
}
.why__progress span {
  display: block; width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}

/* ── manifesto ─────────────────────────────── */
.manifesto {
  background: var(--cream); color: var(--ink);
  padding: clamp(6rem, 16vh, 12rem) var(--pad);
}
.manifesto__lead {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--gold-deep);
  margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
}
.manifesto__systems {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500; line-height: 1.65;
  opacity: 0.85;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}
.manifesto__systems em {
  font-family: var(--font-serif); font-style: italic;
  color: var(--blue-deep);
}
.manifesto__text {
  max-width: 26ch;
  font-weight: 800; font-stretch: 110%;
  font-size: clamp(1.8rem, 4.6vw, 4.2rem);
  line-height: 1.12;
  text-transform: uppercase;
}
.manifesto__punch {
  margin-top: clamp(2rem, 6vh, 4rem);
  margin-left: auto;
  max-width: 18ch;
  text-align: right;
  font-weight: 800; font-stretch: 110%;
  font-size: clamp(2rem, 5.4vw, 5rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.manifesto__punch em { color: var(--gold-deep); text-transform: none; font-weight: 400; }

/* ── story ─────────────────────────────────── */
.story {
  background: var(--cream); color: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.story__grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 6vw, 6rem);
}
@media (max-width: 860px) { .story__grid { grid-template-columns: 1fr; } }
.story__year {
  display: block;
  margin-top: 2rem;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  opacity: 0.35;
}
.story__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.18;
  max-width: 22ch;
}
.story__attr {
  margin-top: 1.6rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.story__body {
  margin-top: 2.4rem;
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500; line-height: 1.65;
  opacity: 0.85;
}
.story__body--accent {
  margin-top: 1.4rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--gold-deep);
  opacity: 1;
}

/* ── pillars ───────────────────────────────── */
.pillars {
  background: var(--ink-2);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.pillars__head { margin-bottom: clamp(3rem, 8vh, 6rem); }
.pillars__title {
  margin-top: 1.2rem;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(2.4rem, 6.5vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.pillars__title em { color: var(--gold); text-transform: none; font-weight: 400; }
.pillars__list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 860px) { .pillars__list { grid-template-columns: 1fr; } }
.pillar {
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-card);
  padding: clamp(1.8rem, 3vw, 3rem);
  min-height: clamp(340px, 46vh, 460px);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.pillar:hover {
  background: #0e2b56;
  transform: translateY(-4px);
  box-shadow: var(--glow-blue);
}
.pillar__num {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em;
  color: var(--gold);
}
.pillar__name {
  margin-top: auto;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1;
}
.pillar__desc {
  margin-top: 1.2rem;
  font-size: 0.95rem; font-weight: 500; line-height: 1.6;
  opacity: 0.72;
  max-width: 34ch;
}
.pillar__tag {
  margin-top: 1.6rem;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--gold);
}

/* ── ripple effect ─────────────────────────── */
.ripple { background: var(--ink); }
.ripple__pin {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative;
  padding: var(--pad);
  overflow: hidden;
}
.ripple__pin .section-label {
  position: absolute; top: clamp(5rem, 12vh, 8rem);
}
.ripple__stage {
  position: relative;
  width: min(82vmin, 720px);
  aspect-ratio: 1;
}
.ripple__svg { width: 100%; height: 100%; display: block; overflow: visible; }
.ripple__ring {
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-opacity: 0.55;
}
.ripple__ring:nth-of-type(4) { stroke-opacity: 0.42; }
.ripple__ring:nth-of-type(5) { stroke-opacity: 0.3; }
.ripple__ring:nth-of-type(6) { stroke-opacity: 0.2; }
.ripple__pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
}
.ripple__dot { fill: var(--gold); opacity: 0.9; }
.ripple__halo { fill: var(--gold); opacity: 0.22; }
.ripple__core { fill: var(--gold); }
.ripple__node text {
  font-family: var(--font-head);
  font-size: 21px; font-weight: 700;
  letter-spacing: 4px;
  fill: var(--cream);
  opacity: 0.85;
}
.ripple__captions {
  position: absolute;
  left: var(--pad);
  bottom: clamp(2.5rem, 9vh, 5rem);
  width: min(36ch, 70vw);
  min-height: 7rem;
  pointer-events: none;
}
.ripple-cap { position: absolute; bottom: 0; left: 0; opacity: 0; }
.ripple-cap__step {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--gold);
}
.ripple-cap__text {
  margin-top: 0.7rem;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 500; line-height: 1.55;
  opacity: 0.88;
}
.ripple__mission {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: var(--pad);
  pointer-events: none;
}
.ripple__mission .section-label { position: static; margin-bottom: 1.4rem; }
.ripple__mission-title {
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 5.5rem);
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(7, 26, 51, 0.9);
}
.ripple__mission-title em { color: var(--gold); text-transform: none; font-weight: 400; }
.ripple__mission-note {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  color: var(--gold);
  text-shadow: 0 0 40px rgba(7, 26, 51, 0.9);
}

/* ── the mission (pinned, two beats) ───────── */
.mission { background: var(--ink); }
.mission__pin {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: var(--pad);
  overflow: hidden;
  text-align: center;
}
.mission__step { position: absolute; opacity: 0; padding: 0 var(--pad); }
.mission__step .section-label { position: static; margin-bottom: 1.6rem; }
.mission__big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(4.5rem, 15vw, 14rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.mission__big em { color: var(--gold); text-transform: none; font-weight: 400; }
.mission__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  line-height: 1;
  text-transform: uppercase;
}
.mission__title em { color: var(--gold); text-transform: none; font-weight: 400; }
.mission__sub {
  margin: clamp(1.5rem, 4vh, 2.5rem) auto 0;
  max-width: 40ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--blue);
}

/* ── pin progress ring ─────────────────────── */
.pin-ring {
  position: absolute;
  bottom: clamp(1.6rem, 5vh, 2.8rem);
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  z-index: 6;
  pointer-events: none;
}
.pin-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pin-ring circle {
  fill: none;
  stroke-width: 2.5;
  stroke: rgba(251, 248, 243, 0.18);
}
.pin-ring circle:last-child {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
}

/* ── the humans (avatar gallery) ───────────── */
.humans { background: var(--ink-2); }
.humans__pin {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
  padding: var(--pad);
  overflow: hidden;
}
.humans__pin .section-label {
  position: absolute; top: clamp(5rem, 12vh, 8rem);
  left: var(--pad);
}
.humans__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.humans__visual {
  position: relative;
  aspect-ratio: 5 / 6;
  max-height: 62vh;
  display: flex; align-items: center; justify-content: center;
}
.humans__avatar {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 30px 50px rgba(3, 12, 26, 0.5));
  will-change: transform, opacity;
}
.humans__count {
  position: absolute; bottom: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.3em;
  color: var(--gold);
}
.humans__bios { position: relative; min-height: 22rem; }
.human-bio { position: absolute; inset: 0; opacity: 0; }
.human-bio__img { display: none; }
.human-bio__tag {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--gold);
}
.human-bio__name {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}
.human-bio__name em { text-transform: none; font-weight: 400; color: var(--gold); }
.human-bio__who {
  margin-top: 1.4rem;
  font-family: var(--font-serif); font-style: italic;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.45;
  color: #6f9fe0;
}
.human-bio__how {
  margin-top: 1.2rem;
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  font-weight: 500; line-height: 1.65;
  opacity: 0.85;
}
@media (max-width: 860px) {
  .humans__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .humans__visual { max-height: 34vh; aspect-ratio: auto; height: 34vh; }
  .humans__bios { min-height: 24rem; }
}
/* static fallback (reduced motion): all four stacked */
.humans--flat .humans__visual { display: none; }
.humans--flat .humans__bios { min-height: 0; }
.humans--flat .human-bio {
  position: static; opacity: 1;
  margin-bottom: 4rem;
}
.humans--flat .human-bio__img { display: block; height: 160px; margin-bottom: 1.2rem; }

/* ── impact ────────────────────────────────── */
.impact {
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  text-align: center;
}
.impact__grid {
  margin-top: clamp(3rem, 8vh, 5rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 860px) { .impact__grid { grid-template-columns: 1fr; gap: 3.5rem; } }
.impact__num {
  display: block;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  background: linear-gradient(120deg, var(--blue) 0%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}
.impact__num i { font-style: normal; }
.impact__label {
  display: block; margin-top: 1rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.24em;
  opacity: 0.7;
}
.impact__note {
  margin-top: clamp(3rem, 7vh, 4.5rem);
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--gold);
}

/* ── join ──────────────────────────────────── */
.join {
  background: var(--cream); color: var(--ink);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.join__title {
  margin-top: 1.2rem;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.join__title em { color: var(--gold-deep); text-transform: none; font-weight: 400; }
.join__panels {
  margin-top: clamp(3rem, 8vh, 5rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 860px) { .join__panels { grid-template-columns: 1fr; } }
.join-panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  min-height: clamp(280px, 38vh, 380px);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(7, 26, 51, 0.05);
  transition: color 0.45s var(--ease-out), transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.join-panel:hover { transform: translateY(-4px); box-shadow: var(--glow-gold); }
.join-panel::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.55s var(--ease-out);
}
.join-panel:hover::before { transform: scaleY(1); }
.join-panel:hover { color: var(--cream); }
.join-panel > * { position: relative; z-index: 1; }
.join-panel__for {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--gold-deep);
  transition: color 0.45s;
}
.join-panel:hover .join-panel__for { color: var(--gold); }
.join-panel__cta {
  margin-top: auto;
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}
.join-panel__arrow {
  position: absolute; top: clamp(1.2rem, 2vw, 2rem); right: clamp(1.2rem, 2vw, 2rem);
  font-size: 1.6rem;
  transition: transform 0.45s var(--ease-out);
}
.join-panel:hover .join-panel__arrow { transform: translateX(6px) rotate(-45deg); }

/* ── voices (testimonial) ──────────────────── */
.voices {
  background: var(--cream); color: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  text-align: center;
}
.voices__quote {
  margin: clamp(2rem, 5vh, 3.5rem) auto 0;
  max-width: 24ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.8rem, 4.2vw, 3.8rem);
  line-height: 1.3;
  color: var(--blue-deep);
}
.voices__attr {
  margin-top: 2rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em;
  color: var(--gold-deep);
}

/* ── wall of love ──────────────────────────── */
.wall {
  background: var(--cream); color: var(--ink);
  border-top: 1px solid var(--line-dark);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.wall__title {
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.wall__title em { color: var(--gold-deep); text-transform: none; font-weight: 400; }
.wall__sub {
  margin-top: 1.4rem;
  max-width: 44ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--blue-deep);
}
.wall__film {
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  max-width: 920px;
}
.wall__film wistia-player {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: block;
  box-shadow: 0 24px 60px rgba(7, 26, 51, 0.25);
}
wistia-player[media-id="42aq6onjtf"]:not(:defined) {
  background: center / contain no-repeat url("https://fast.wistia.com/embed/medias/42aq6onjtf/swatch");
  display: block;
  filter: blur(5px);
  padding-top: 56.25%;
}
.wall__film-caption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.24em;
  color: var(--gold-deep);
}
.wall__grid {
  margin-top: clamp(3rem, 7vh, 5rem);
  columns: 3;
  column-gap: 1.2rem;
}
@media (max-width: 1100px) { .wall__grid { columns: 2; } }
@media (max-width: 700px) { .wall__grid { columns: 1; } }
.wall-card {
  break-inside: avoid;
  margin: 0 0 1.2rem;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 2vw, 2rem);
  box-shadow: 0 1px 2px rgba(7, 26, 51, 0.05);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.wall-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(7, 26, 51, 0.12); }
.wall-card__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink);
}
.wall-card--featured { background: var(--ink); border-color: var(--ink); }
.wall-card--featured .wall-card__quote { color: var(--cream); font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
.wall-card--featured .wall-card__name { color: var(--gold); }
.wall-card--video { padding: 0.6rem 0.6rem 1.2rem; }
.wall-card--video video {
  width: 100%;
  border-radius: calc(var(--radius-card) - 6px);
  display: block;
  background: var(--ink);
  aspect-ratio: 9 / 16;
  max-height: 420px;
  object-fit: cover;
}
.wall-card--video .wall-card__meta { padding: 0.9rem 0.8rem 0; }
.wall-card__meta {
  margin-top: 1.1rem;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.wall-card__name {
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.wall-card__role {
  font-size: 0.8rem; font-weight: 500; opacity: 0.55;
}

/* ── footer ────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: clamp(4rem, 10vh, 7rem) var(--pad) 1.5rem;
  overflow: hidden;
}
.footer__top {
  display: flex; justify-content: space-between; gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: clamp(3rem, 8vh, 5rem);
}
.footer__brand .logo-bg { height: 58px; width: auto; margin-bottom: 1.4rem; }
.footer__mission {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.25;
  color: var(--gold);
}
.footer__links { display: flex; gap: clamp(2rem, 5vw, 5rem); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col-title {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.24em;
  color: var(--gold); margin-bottom: 0.4rem;
}
.footer__col a {
  font-size: 0.85rem; font-weight: 600;
  opacity: 0.75; transition: opacity 0.3s, color 0.3s;
}
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__muted { font-size: 0.75rem; opacity: 0.45; }
.footer__wordmark {
  font-weight: 900; font-stretch: 125%;
  font-size: clamp(2.4rem, 9.8vw, 11.5rem);
  line-height: 0.85;
  text-align: center;
  letter-spacing: -0.02em;
  white-space: nowrap;
  background: linear-gradient(120deg, var(--blue) 0%, var(--gold) 65%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-bottom: 0.05em;
}
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
  margin-top: clamp(2rem, 5vh, 3.5rem);
  padding-top: 1.2rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  opacity: 0.55;
}

/* ── split-text helpers ────────────────────── */
.split-line-mask { overflow: hidden; display: block; }

/* ── subpage shell ─────────────────────────── */
.nav__links a.is-active { color: var(--gold); opacity: 1; }
.nav__links a.is-active::after { transform: scaleX(1); }
.page-hero {
  position: relative;
  min-height: 64svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(2.5rem, 7vh, 4.5rem);
}
.page-hero__content { position: relative; z-index: 2; padding: 0 var(--pad); }
.page-hero__title {
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 8.5vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
}
.page-hero__title--long {
  font-size: clamp(1.9rem, 4.8vw, 4.6rem);
  line-height: 1.02;
  max-width: 24ch;
}
.page-hero__title em { color: var(--gold); text-transform: none; font-weight: 400; }
.page-hero__sub {
  margin-top: 1.4rem;
  max-width: 46ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  color: #9fbce4;
}
.page-section {
  padding: clamp(4.5rem, 11vh, 8rem) var(--pad);
}
.page-section--dark { background: var(--ink); }
.page-section--dark2 { background: var(--ink-2); }
.page-section--cream { background: var(--cream); color: var(--ink); }
.page-section__title {
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  max-width: 20ch;
}
.page-section__title em { color: var(--gold); text-transform: none; font-weight: 400; }
.page-section--cream .page-section__title em { color: var(--gold-deep); }
.page-prose {
  margin-top: 2rem;
  max-width: 60ch;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500; line-height: 1.7;
}
.page-prose p + p { margin-top: 1.3em; }
.page-prose strong { color: inherit; }
.page-prose em { font-family: var(--font-serif); }

/* how-it-works steps */
.steps { margin-top: clamp(2.5rem, 6vh, 4rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 2vw, 2rem);
}
.step__num { font-family: var(--font-head); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold-deep); }
.step__name { margin-top: 0.9rem; font-family: var(--font-head); font-weight: 900; font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.05; text-transform: uppercase; }
.step__desc { margin-top: 0.8rem; font-size: 0.95rem; font-weight: 500; line-height: 1.6; opacity: 0.8; }

/* ── phone refinements ─────────────────────── */
@media (max-width: 760px) {
  .sched__meta { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .sched__meta b { min-width: 0; }
  .sched__who { margin-left: 0; }
  .page-hero { min-height: 58svh; }
  .page-hero__title { font-size: clamp(2rem, 9.5vw, 3rem); }
  .page-hero__title--long { font-size: clamp(1.35rem, 6.4vw, 2rem); }
}

/* non-negotiables */
.nn { margin-top: clamp(2.5rem, 6vh, 4rem); display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.nn--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .nn--3 { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .nn { grid-template-columns: 1fr; } }
.nn__item {
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
}
.nn__name { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.3rem, 2vw, 1.8rem); text-transform: uppercase; }
.nn__desc { margin-top: 0.9rem; font-size: 0.98rem; font-weight: 500; line-height: 1.65; opacity: 0.8; }

/* CTA band */
.cta-band {
  background: var(--cream); color: var(--ink);
  padding: clamp(5rem, 13vh, 9rem) var(--pad);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.cta-band__title em { color: var(--gold-deep); text-transform: none; font-weight: 400; }
.cta-band .btn { margin-top: clamp(2rem, 5vh, 3rem); }

/* resources */
.res-grid { margin-top: clamp(2.5rem, 6vh, 4rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 960px) { .res-grid { grid-template-columns: 1fr; } }
.res-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  padding: clamp(1.6rem, 2.2vw, 2.2rem);
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
a.res-card:hover { transform: translateY(-4px); box-shadow: var(--glow-gold); }
.res-card__tag { font-family: var(--font-head); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.2em; color: var(--gold-deep); }
.res-card__title { margin-top: 0.9rem; font-family: var(--font-head); font-weight: 900; font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.08; text-transform: uppercase; }
.res-card__sub { margin-top: 0.8rem; font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: var(--blue-deep); }
.res-card__cta { margin-top: auto; padding-top: 1.2rem; font-family: var(--font-head); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; color: var(--gold-deep); }
.res-card--soon { opacity: 0.55; }

/* article */
.article {
  background: var(--cream); color: var(--ink);
  padding: clamp(4rem, 10vh, 7rem) var(--pad);
}
.article__inner { max-width: 68ch; margin: 0 auto; }
.article__kicker { font-family: var(--font-head); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em; color: var(--gold-deep); }
.article__title { margin-top: 1rem; font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1; text-transform: uppercase; }
.article__title em { color: var(--gold-deep); text-transform: none; font-weight: 400; }
.article__body { margin-top: 2.5rem; font-size: clamp(1.02rem, 1.3vw, 1.15rem); font-weight: 500; line-height: 1.75; }
.article__body p + p { margin-top: 1.35em; }
.article__body h2 { margin: 2em 0 0.8em; font-family: var(--font-head); font-weight: 900; font-size: clamp(1.3rem, 2vw, 1.7rem); text-transform: uppercase; }
.article__body blockquote {
  margin: 1.6em 0; padding-left: 1.2em;
  border-left: 4px solid var(--gold);
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.15em; color: var(--blue-deep);
}

/* ── constellation (impact viz v2) ─────────── */
.viz2 { background: var(--ink); }
.viz2__pin {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex; align-items: center;
}
.viz2__canvas {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: min(94vh, 62vw);
  height: min(94vh, 62vw);
}
@media (max-width: 860px) {
  .viz2__canvas { right: 50%; transform: translate(50%, -50%); width: 96vmin; height: 96vmin; opacity: 0.55; }
}
.viz2__overlay {
  position: relative; z-index: 2;
  padding: 0 var(--pad);
  max-width: 560px;
}
.viz2__chips {
  margin-top: 1.8rem;
  display: flex; gap: clamp(1.4rem, 3vw, 2.8rem);
}
.viz2__chip { display: flex; flex-direction: column; align-items: flex-start; }
.viz2__chip img { height: 64px; width: auto; margin-bottom: 0.5rem; }
.viz2__chip-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.viz2__chip:nth-child(1) .viz2__chip-num { color: var(--gold); }
.viz2__chip:nth-child(2) .viz2__chip-num { color: var(--blue); }
.viz2__chip-label {
  margin-top: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.22em;
  opacity: 0.7;
}
.viz2__total { margin-top: clamp(1.6rem, 4vh, 2.6rem); padding-top: 1.4rem; border-top: 1px solid var(--line-light); }
.viz2__stat { margin-top: 1.6rem; display: block; }
.viz2__num {
  display: block;
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.9;
  background: linear-gradient(120deg, var(--blue) 0%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
}
.viz2__label {
  display: block; margin-top: 1rem;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.24em;
  opacity: 0.8;
}
.viz2__note {
  margin-top: 2rem;
  max-width: 34ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #9fbce4;
}

/* homepage snapshot of the constellation */
.viz-mini {
  display: block;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  max-width: 560px;
  text-align: center;
}
.viz-mini canvas {
  width: min(56vmin, 460px);
  height: min(56vmin, 460px);
  display: block;
  margin: 0 auto;
}
.viz-mini__caption {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.22em;
  color: var(--gold);
  transition: color 0.3s;
}
.viz-mini:hover .viz-mini__caption { color: var(--cream); }

/* ── impact visualisation (v1, retired) ─────── */
.viz__block { margin-top: clamp(3rem, 7vh, 5rem); }
.viz__head { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; }
.viz__num {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--blue) 0%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
}
.viz__label {
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.22em;
  font-size: 0.72rem; opacity: 0.75;
}
.viz__field { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.viz__field--dense { gap: 4px; }
.viz__chip {
  width: 42px; height: 52px; object-fit: contain;
  opacity: 0; transform: translateY(10px) scale(0.6);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.viz__dot {
  width: 11px; height: 11px; border-radius: 50%;
  opacity: 0; transform: scale(0.3);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.viz__spark {
  width: 6px; height: 6px; border-radius: 50%;
  opacity: 0; transform: scale(0.3);
  transition: opacity 0.25s, transform 0.25s;
}
.viz__dot--a, .viz__spark--a { background: #3d77c9; }
.viz__dot--b, .viz__spark--b { background: #7ba7e6; }
.viz__dot--c, .viz__spark--c { background: #c8a951; }
.viz__spark--g { background: #5fa332; }
.viz__chip.is-on, .viz__dot.is-on, .viz__spark.is-on { opacity: 1; transform: none; }
.viz__note {
  margin-top: 1.6rem;
  max-width: 50ch;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  color: #9fbce4;
}

/* ── dark variants (subpage components) ────── */
.cta-band--navy { background: var(--ink); color: var(--cream); }
.cta-band--navy .cta-band__title em { color: var(--gold); }
.step--dark { background: var(--ink-2); border-color: var(--line-light); }
.step--dark .step__num { color: var(--gold); }
.step--dark .step__name, .step--dark .step__desc { color: var(--cream); }
.quote-card__text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.1rem; line-height: 1.55; opacity: 1;
}
.quote-card__attr {
  margin-top: 0.8rem;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.14em;
  font-size: 0.68rem; color: var(--gold);
}

/* ── soft CTAs ─────────────────────────────── */
.soft-cta {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.18em;
  color: var(--gold);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.soft-cta:hover { color: var(--cream); transform: translateX(5px); }
.page-section--cream .soft-cta, .story .soft-cta, .voices .soft-cta, .wall .soft-cta {
  color: var(--gold-deep);
}
.page-section--cream .soft-cta:hover, .story .soft-cta:hover { color: var(--ink); }

/* ── booking widget ────────────────────────── */
.book-widget {
  margin-top: clamp(2rem, 5vh, 3rem);
  max-width: 980px;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 12, 26, 0.4);
}
.book-note {
  margin-top: 1.2rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.98rem;
  color: #9fbce4;
}

/* ── parents page (welcome-pack port) ──────── */
.page-prose--big {
  max-width: 62ch;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.75;
}
.sched summary { padding: 1.1rem 0; }
.sched__meta {
  display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap;
  width: 100%;
}
.sched__meta b {
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold-deep);
  min-width: 190px;
}
.sched__meta span { font-family: var(--font-head); font-weight: 800; font-size: clamp(0.95rem, 1.4vw, 1.15rem); }
.sched__who {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.6rem; letter-spacing: 0.2em;
  opacity: 0.55;
}
.sched__who--live { color: var(--green-deep); opacity: 1; }
.gold-card {
  margin-top: clamp(2rem, 5vh, 3rem);
  max-width: 720px;
  border: 1px solid var(--line-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-card);
  background: #fff;
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
}
.gold-card__title {
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.2em;
  font-size: 0.7rem; color: var(--gold-deep);
  margin-bottom: 1rem;
}
.gold-card__row { padding: 0.8rem 0; border-top: 1px solid var(--line-dark); }
.gold-card__row b { display: block; font-family: var(--font-head); font-weight: 900; font-size: 1.02rem; }
.gold-card__row span { display: block; margin-top: 0.25rem; font-size: 0.92rem; opacity: 0.7; }

.media-grid {
  margin-top: clamp(2rem, 5vh, 3rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
@media (max-width: 760px) { .media-grid { grid-template-columns: 1fr; } }
.media-card {
  position: relative; margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.16);
}
.media-card img {
  width: 100%; display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink-2);
}
.media-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.2rem 0.9rem;
  background: linear-gradient(transparent, rgba(7, 26, 51, 0.85));
  color: var(--cream);
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.2em;
  font-size: 0.64rem;
}
.media-card__live {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.14em;
  font-size: 0.6rem;
  color: #fff; background: #c0392b;
  padding: 0.35em 0.7em; border-radius: 100px;
}
.media-card--wide { margin-top: clamp(2.5rem, 6vh, 4rem); max-width: 860px; }

.pull-gold {
  margin: clamp(2rem, 5vh, 3rem) 0 0;
  max-width: 58ch;
  padding-left: 1.4rem;
  border-left: 4px solid var(--gold);
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  color: #cfe0f5;
}
.pull-gold span {
  display: block; margin-top: 1rem;
  font-family: var(--font-head); font-style: normal; font-weight: 800;
  letter-spacing: 0.16em; font-size: 0.64rem;
  color: var(--gold);
}

/* horizontal snap strip */
.hstrip {
  margin-top: clamp(2rem, 5vh, 3rem);
  display: flex; gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.hstrip::-webkit-scrollbar { height: 6px; }
.hstrip::-webkit-scrollbar-thumb { background: rgba(200, 169, 81, 0.4); border-radius: 3px; }
.hstrip::-webkit-scrollbar-track { background: rgba(251, 248, 243, 0.06); }
.hstrip__hint {
  margin-top: 0.8rem;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.22em;
  font-size: 0.6rem; color: var(--gold); opacity: 0.7;
}
.snapcard { flex: 0 0 min(300px, 78vw); scroll-snap-align: start; }
.snapcard__name {
  margin-top: 1rem;
  font-family: var(--font-head); font-weight: 900; letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.snapcard__desc { margin-top: 0.35rem; font-size: 0.86rem; line-height: 1.5; opacity: 0.7; }

/* mini UI mocks */
.mock {
  background: var(--cream); color: var(--ink);
  border-radius: 18px;
  padding: 1.1rem 1.2rem 1.3rem;
  min-height: 250px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  box-shadow: 0 14px 34px rgba(3, 12, 26, 0.35);
  display: flex; flex-direction: column; gap: 0.45rem;
}
.mock__bar {
  font-family: var(--font-head); font-weight: 800; font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--blue-deep);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(7, 26, 51, 0.1);
  margin-bottom: 0.4rem;
}
.mock__eyebrow { font-family: var(--font-head); font-weight: 800; font-size: 0.58rem; letter-spacing: 0.2em; color: var(--gold-deep); }
.mock__big { font-family: var(--font-head); font-weight: 900; font-size: 1.9rem; line-height: 1; }
.mock__line { font-size: 0.85rem; line-height: 1.45; }
.mock__line em { font-family: var(--font-head); font-style: normal; font-weight: 800; font-size: 0.62rem; letter-spacing: 0.08em; color: var(--green-deep); }
.mock__foot { margin-top: auto; font-family: var(--font-serif); font-style: italic; font-size: 0.8rem; color: var(--blue-deep); }
.mock__stats { display: flex; gap: 1rem; font-family: var(--font-head); font-weight: 800; font-size: 0.55rem; letter-spacing: 0.12em; opacity: 0.8; }
.mock__stats b { display: block; font-size: 1.3rem; letter-spacing: 0; color: var(--blue-deep); }
.mock__pill {
  align-self: flex-start; margin-top: auto;
  font-family: var(--font-head); font-weight: 800; font-size: 0.62rem; letter-spacing: 0.1em;
  background: var(--gold); color: var(--ink);
  padding: 0.5em 1em; border-radius: 100px;
}
.mock__pill--green { background: var(--green-deep); color: var(--cream); }
.mock--game { background: #0d2f60; color: var(--cream); }
.mock--game .mock__bar { color: #9fbce4; border-color: rgba(251,248,243,0.15); }
.mock__game { position: relative; flex: 1; min-height: 150px; }
.mock__bird {
  position: absolute; left: 26%; top: 42%;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
}
.mock__bird::after {
  content: ""; position: absolute; right: -4px; top: 6px;
  border: 5px solid transparent; border-left: 8px solid #e8d49a;
}
.mock__pipe {
  position: absolute; right: 18%; bottom: 0;
  width: 34px; height: 46%;
  background: var(--green-deep); border-radius: 6px 6px 0 0;
}
.mock__pipe--b { top: 0; bottom: auto; right: 18%; height: 26%; border-radius: 0 0 6px 6px; }
.mock--letter {
  background: #fffdf8;
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.78rem; line-height: 1.6; color: #2a3a52;
  gap: 0.6rem;
}

/* iphone frames */
.iphone {
  position: relative;
  background: linear-gradient(180deg, #0e2b56, #0a2038);
  color: var(--cream);
  border: 1px solid rgba(251, 248, 243, 0.14);
  border-radius: 30px;
  padding: 2.6rem 1.1rem 1.3rem;
  min-height: 400px;
  box-shadow: 0 20px 50px rgba(3, 12, 26, 0.55);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.iphone__island {
  position: absolute; top: 0.8rem; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 14px;
  background: #05101f;
}
.iphone__title {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1.3rem; line-height: 1.05;
}
.iphone__card {
  background: rgba(251, 248, 243, 0.06);
  border: 1px solid rgba(251, 248, 243, 0.1);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font-size: 0.78rem; line-height: 1.5;
}
.iphone__card b {
  display: block;
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.iphone__card b em { font-style: normal; color: var(--gold); font-size: 0.58rem; letter-spacing: 0.12em; }
.iphone__card em { font-style: italic; color: #9fbce4; }
.iphone__card--dim { opacity: 0.72; }

/* ── FAQ accordion ─────────────────────────── */
.faq { margin-top: clamp(2rem, 5vh, 3rem); max-width: 820px; }
.faq details {
  border-top: 1px solid var(--line-dark);
  padding: 0.4rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 0;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 400; font-size: 1.5em; line-height: 1;
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-deep); }
.faq .faq__a {
  padding: 0 0 1.3rem;
  max-width: 66ch;
  font-size: 0.98rem; font-weight: 500; line-height: 1.7;
  opacity: 0.85;
}

/* ── maker tiles (teens: what you can make) ── */
.make-grid {
  margin-top: clamp(2rem, 5vh, 3rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .make-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .make-grid { grid-template-columns: 1fr; } }
.make-tile {
  background: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 2vw, 2rem);
  min-height: 170px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, background 0.4s;
}
.make-tile:hover { transform: translateY(-4px); border-color: var(--gold); background: #0e2b56; }
.make-tile__emoji { font-size: 1.6rem; }
.make-tile__name {
  margin-top: auto;
  font-family: var(--font-head); font-weight: 900; letter-spacing: 0.04em;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  text-transform: uppercase;
}
.make-tile__desc { margin-top: 0.5rem; font-size: 0.88rem; font-weight: 500; line-height: 1.5; opacity: 0.7; }

/* ── play (portal game embed) ──────────────── */
.play__grid {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  display: grid; grid-template-columns: minmax(300px, 400px) 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .play__grid { grid-template-columns: 1fr; } }
.phone-frame {
  background: #0a1626;
  border: 1px solid var(--line-light);
  border-radius: 42px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(3, 12, 26, 0.55), var(--glow-blue);
  max-width: 400px;
}
.phone-frame iframe {
  width: 100%;
  aspect-ratio: 9 / 17;
  border: 0;
  border-radius: 30px;
  display: block;
  background: var(--blue-deep);
}
.asset-list { margin-top: 1.8rem; }
.asset-list__title {
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.22em;
  font-size: 0.68rem; color: var(--gold);
  margin-bottom: 1rem;
}
.asset-item {
  padding: 0.9rem 0;
  border-top: 1px solid var(--line-light);
  display: grid; grid-template-columns: minmax(150px, 200px) 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .asset-item { grid-template-columns: 1fr; gap: 0.3rem; } }
.asset-item__name {
  font-family: var(--font-head); font-weight: 900; font-size: 0.82rem; letter-spacing: 0.08em;
}
.asset-item__desc { font-size: 0.92rem; font-weight: 500; line-height: 1.55; opacity: 0.75; }

/* ── portal screenshot frames ──────────────── */
.shot-frame {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 26, 51, 0.18);
}
.shot-frame__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-dark);
  background: var(--cream-2);
}
.shot-frame__bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(7,26,51,0.15); }
.shot-frame__bar span:first-child { background: #e0b64f; }
.shot-frame img { width: 100%; display: block; }
.shot-caption {
  margin-top: 0.9rem;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.18em;
  font-size: 0.66rem; color: var(--gold-deep);
}
.check-grid {
  margin-top: clamp(2rem, 5vh, 3rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .check-grid { grid-template-columns: 1fr; } }
.check-item {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  display: flex; align-items: center; gap: 0.8rem;
  font-weight: 600; font-size: 0.95rem;
}
.check-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(95, 163, 50, 0.14);
  color: var(--green-deep);
  font-weight: 800;
}

/* ── teens quiz / snapshot card ────────────── */
.quiz { margin-top: clamp(2rem, 5vh, 3rem); max-width: 640px; }
.quiz__panel, .snap {
  background: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  padding: clamp(1.8rem, 3vw, 2.8rem);
}
.quiz__dots { display: flex; gap: 0.5rem; margin-bottom: 1.6rem; }
.quiz__dot { width: 26px; height: 4px; border-radius: 2px; background: rgba(251,248,243,0.15); }
.quiz__dot.is-on { background: var(--gold); }
.quiz__q {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-transform: uppercase;
}
.quiz__opts { margin-top: 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 560px) { .quiz__opts { grid-template-columns: 1fr; } }
.quiz__opt {
  font-family: var(--font-head); font-weight: 700; letter-spacing: 0.06em;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s var(--ease-out), background 0.25s;
}
.quiz__opt:hover { border-color: var(--gold); background: #0e2b56; transform: translateY(-2px); }
.quiz__skip {
  margin-top: 1.4rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(251,248,243,0.5);
  transition: color 0.25s;
}
.quiz__skip:hover { color: var(--gold); }
.snap__head { display: flex; align-items: center; justify-content: space-between; }
.snap__logo { height: 34px; }
.snap__tag { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.22em; font-size: 0.66rem; color: var(--gold); }
.snap__meter {
  margin-top: 1.6rem;
  height: 10px; border-radius: 6px;
  background: linear-gradient(90deg, #2b5ca9 0%, #3d77c9 45%, #5fa332 100%);
  position: relative;
}
.snap__meter-dot {
  position: absolute; top: 50%;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--ink);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(251,248,243,0.5);
}
.snap__meter-labels {
  display: flex; justify-content: space-between;
  margin-top: 0.6rem;
  font-family: var(--font-head); font-weight: 800; letter-spacing: 0.18em; font-size: 0.6rem;
  opacity: 0.6;
}
.snap__vibe {
  margin-top: 1.4rem;
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  text-transform: uppercase;
}
.snap__line { margin-top: 1rem; font-size: 0.98rem; font-weight: 500; line-height: 1.6; opacity: 0.85; }
.snap__quote {
  margin-top: 1.4rem; padding: 1.1rem 1.3rem;
  background: var(--ink-2); border-radius: 14px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.98rem; line-height: 1.55;
}
.snap__quote span { display: block; margin-top: 0.7rem; font-family: var(--font-head); font-style: normal; font-weight: 800; letter-spacing: 0.14em; font-size: 0.62rem; color: var(--gold); }
.snap__foot { margin-top: 1.4rem; font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: #9fbce4; }
.snap__ctas { margin-top: 1.3rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ── ribbed paper texture on dark sections ── */
.why, .pillars, .impact, .footer, .ripple, .meaning, .humans {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(251, 248, 243, 0.02) 0px,
    rgba(251, 248, 243, 0.02) 1px,
    transparent 1px,
    transparent 7px
  );
}

/* ── reduced motion ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__dot, .hero__scroll-line { animation: none; }
  * { scroll-behavior: auto; }
}

/* ── mission v2: lie/truth + hope seats (2026-07-25) ── */
.mission__kicker {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  letter-spacing: 0.24em;
  color: rgba(251, 248, 243, 0.55);
  margin-bottom: 1.4rem;
}
.mission__kicker--gold { color: var(--gold); }
.mission__lie {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.6rem);
  line-height: 1.15;
  color: rgba(251, 248, 243, 0.85);
  max-width: 18ch; margin: 0 auto;
}
.mission__truth {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.6rem);
  line-height: 1.15;
  color: var(--cream);
  max-width: 20ch; margin: 0 auto;
}
.mission__truth em { color: var(--gold); font-style: italic; }
.mission__body {
  margin: clamp(1.2rem, 3vh, 2rem) auto 0;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: rgba(251, 248, 243, 0.78);
}
.mission__body strong { color: var(--gold); }
.mission__title--sm { font-size: clamp(2.2rem, 6vw, 5rem); }
.mission__seats {
  margin: clamp(1.6rem, 4vh, 2.6rem) auto 0;
  max-width: 62ch;
  text-align: left;
  display: grid; gap: clamp(0.8rem, 2vh, 1.3rem);
}
.mission__seat {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.4;
  color: var(--cream);
  display: grid; grid-template-columns: 9.5em 1fr; gap: 1rem; align-items: baseline;
}
.mission__seat span {
  font-family: var(--font-head); font-style: normal; font-weight: 700;
  font-size: clamp(0.66rem, 0.9vw, 0.78rem);
  letter-spacing: 0.2em; color: var(--gold);
}
.mission__seat--all {
  grid-template-columns: 1fr;
  color: var(--blue);
  border-top: 1px solid rgba(251, 248, 243, 0.14);
  padding-top: clamp(0.9rem, 2vh, 1.4rem);
}
#missionHope .soft-cta { margin-top: clamp(1.4rem, 3.5vh, 2.2rem); }
@media (max-width: 640px) {
  .mission__seat { grid-template-columns: 1fr; gap: 0.25rem; }
}
.mission--flat .mission__pin { min-height: 0; display: block; padding: clamp(4rem, 10vh, 7rem) var(--pad); }
.mission--flat .mission__step { position: static; opacity: 1; }
.mission--flat #missionA, .mission--flat #missionLie { display: none; }
.mission--flat #missionTruth { margin-bottom: clamp(2rem, 6vh, 4rem); }
