/* ============================================================
   Business Sound — Homepage v2
   Parent of /us-entry: same family, slightly more institutional.
   Self-contained. Fonts loaded via <link> in HTML head.
   Tokens lifted from /us-entry/style.css (source of truth).
   ============================================================ */

:root {
  --ink: #0F172A;
  --ink-2: #334155;
  --ink-3: #64748B;
  --ink-4: #94A3B8;

  --purple: #6D28D9;
  --purple-bright: #7C3AED;
  --purple-300: #C4B5FD;
  --purple-tint: #F4F0FE;
  --purple-tint-2: #EDE6FD;

  --bg: #FBFAFD;
  --bg-alt: #F5F2FB;
  --surface: #FFFFFF;
  --line: #E9E5F2;
  --line-2: #F0EDF7;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
  --shadow-md: 0 4px 16px -4px rgba(15,23,42,.08), 0 2px 6px -2px rgba(15,23,42,.05);
  --shadow-lg: 0 24px 60px -20px rgba(76,29,149,.22), 0 8px 24px -12px rgba(15,23,42,.10);
  --shadow-card: 0 18px 48px -22px rgba(76,29,149,.18), 0 2px 8px rgba(15,23,42,.04);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --logo: "Syne", "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1200px;
  --pad: clamp(16px, 3.5vw, 48px);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--purple-tint-2); color: var(--purple); }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(45px, 4.8vw, 80px); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--line { border-top: 1px solid var(--line); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--purple-300); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

h1, h2, h3 { line-height: 1.06; letter-spacing: -0.02em; font-weight: 700; }
.h-display { font-size: clamp(33px, 4.5vw, 56px); line-height: 1.06; letter-spacing: -0.025em; text-wrap: balance; }
.h-section { font-size: clamp(30px, 4.2vw, 50px); letter-spacing: -0.022em; line-height: 1.08; text-wrap: balance; }
.em { color: var(--purple); font-style: italic; font-weight: 700; }
.lead {
  font-size: clamp(18px, 2.1vw, 21px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 58ch;
  font-weight: 420;
  text-wrap: pretty;
}

.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h-section { margin-top: 18px; }
.sec-head .lead { margin-top: 20px; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  line-height: 1;
}
.btn .arr { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 10px 24px -8px rgba(109,40,217,.5); }
.btn-primary:hover { background: #5b1fc4; transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(109,40,217,.6); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--purple-300); color: var(--purple); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); transition-duration: .08s; }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,253,.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 2px 20px -12px rgba(15,23,42,.25); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
/* Wordmark mirrors the brand logo lockup: "Business" over "Sound",
   rounded-geometric (Poppins), ink + purple. */
.nav-wordmark {
  font-family: var(--logo); font-weight: 700;
  font-size: 16px; line-height: .92; letter-spacing: -0.005em;
  color: var(--ink);
  display: inline-flex; flex-direction: row; align-items: baseline; gap: 0.28em;
}
.nav .nav-wordmark { font-size: 18.4px; }
.nav-wordmark .l2 { color: var(--purple); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > a, .nav-links > .has-menu > .menu-trigger {
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  position: relative; padding-block: 6px; transition: color .2s;
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-links > a::after {
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--purple);
  transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.2,.7,.3,1);
}
.nav-links > a:hover { color: var(--ink); }
.nav-links > a:hover::after { transform: scaleX(1); }

/* dropdown */
.has-menu { position: relative; }
.menu-trigger .caret { width: 9px; height: 9px; transition: transform .25s; }
.has-menu[data-open="true"] .menu-trigger { color: var(--ink); }
.has-menu[data-open="true"] .menu-trigger .caret { transform: rotate(180deg); }
.menu-panel {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-card); padding: 8px; min-width: 280px;
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 70;
}
.has-menu[data-open="true"] .menu-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu-panel a { display: flex; flex-direction: column; padding: 12px 14px; border-radius: var(--r-sm); transition: background .18s; }
.menu-panel a:hover { background: var(--purple-tint); }
.menu-panel .mi-t { display: block; font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.menu-panel .mi-d { display: block; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); margin-top: 3px; letter-spacing: .01em; }
.nav-cta { padding: 11px 20px; font-size: 14.5px; }

/* mobile nav */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: none;
  cursor: pointer; padding: 8px; flex-shrink: 0;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink-2); border-radius: 1px; transition: all .2s; }
.nav__toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__mobile {
  display: none; flex-direction: column; gap: 6px;
  position: fixed; top: 74px; left: 0; right: 0;
  background: rgba(251,250,253,.98);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--pad) 28px; z-index: 59;
  box-shadow: 0 8px 24px -8px rgba(15,23,42,.12);
  max-height: calc(100vh - 74px); overflow-y: auto;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { font-size: 16px; font-weight: 600; color: var(--ink-2); padding: 12px 0; min-height: 44px; display: flex; align-items: center; }
.nav__mobile a:hover { color: var(--purple); }
.nav__mobile .m-group { border-top: 1px solid var(--line-2); margin-top: 6px; padding-top: 6px; }
.nav__mobile .m-label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); padding: 8px 0 2px; }
.nav__mobile .m-sub a { padding-left: 14px; font-size: 15px; }
.nav__mobile .btn { justify-content: center; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(29px, 3.6vw, 52px); padding-bottom: clamp(41px, 5vw, 75px); overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(56% 50% at 82% 12%, var(--purple-tint) 0%, transparent 62%),
    radial-gradient(46% 42% at 2% 96%, #F1EAFE 0%, transparent 58%);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600; box-shadow: var(--shadow-sm);
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 4px rgba(109,40,217,.16); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.45;} }
/* Badge as a clickable announcement pill */
a.badge { cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
a.badge:hover { border-color: var(--purple-300); transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--ink); }
a.badge .arr { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
a.badge:hover .arr { transform: translateX(3px); }
a.badge:active { transform: translateY(0) scale(0.98); transition-duration: .08s; }
.badge--label { padding: 8px 18px; } /* positioning label, no dot/arrow */
.hero h1 { margin-top: 22px; }
.hero .lead { margin-top: 24px; }
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--ink-3); }

/* Signature hero entrance — one orchestrated page-load (the moment that earns motion). */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: heroRise .7s var(--ease-out-expo) both; }
  .hero-copy > *:nth-child(1) { animation-delay: .04s; }
  .hero-copy > *:nth-child(2) { animation-delay: .12s; }
  .hero-copy > *:nth-child(3) { animation-delay: .20s; }
  .hero-copy > *:nth-child(4) { animation-delay: .28s; }
  .hero-copy > *:nth-child(5) { animation-delay: .34s; }
  .hero-figure { animation: heroFigure .9s var(--ease-out-expo) .16s both; }
}
@keyframes heroRise { from { opacity: 0; transform: translateY(16px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes heroFigure { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* hero figure / globe */
.hero-figure {
  position: relative; width: 100%; max-width: 480px; margin-inline: auto; justify-self: end;
  margin-top: -32px; /* lift the globe so it sits with the headline, not below it */
  aspect-ratio: 1 / 1;
}
/* Layered radial glows behind the globe for depth (composition ref: chow-stack globe-hero) */
.hero-figure::before {
  content:""; position:absolute; inset:-8%; border-radius:50%; z-index:0;
  background:
    radial-gradient(closest-side at 50% 44%, rgba(107,63,212,.20), transparent 78%),
    radial-gradient(closest-side at 64% 64%, rgba(107,63,212,.13), transparent 72%),
    radial-gradient(closest-side at 36% 30%, rgba(150,120,240,.10), transparent 66%);
  filter: blur(8px);
}
.hero-figure::after {
  content:""; position:absolute; inset:16%; border-radius:50%; z-index:0;
  background: radial-gradient(circle at 50% 50%, rgba(107,63,212,.10), transparent 72%);
}
.globe-canvas, .globe-static {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
}
.globe-canvas { display: none; }
.hero-figure.is-live .globe-canvas { display: block; }
.hero-figure.is-live .globe-static { opacity: 0; }

/* ---------- Proof strip ---------- */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.proof-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: clamp(20px, 2.6vw, 30px); list-style: none; }
.proof-item { font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .015em; line-height: 1.45; color: var(--ink-2); text-align: left; padding: 4px 22px; border-left: 1px solid var(--line); display: flex; align-items: flex-start; justify-content: flex-start; }
.proof-item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 900px) { .proof-inner { grid-template-columns: 1fr 1fr; gap: 18px 0; } .proof-item { border-left: 0; padding: 6px 16px; } }
@media (max-width: 540px) { .proof-inner { grid-template-columns: 1fr 1fr; } }

/* ---------- The reality / stat cards ---------- */
.stats { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 32px 30px; box-shadow: var(--shadow-sm); transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s; }
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--purple-300); }
.stat-num { font-family: var(--sans); font-weight: 800; font-size: clamp(40px, 5.5vw, 60px); letter-spacing: -0.03em; line-height: 1; color: var(--purple); font-variant-numeric: tabular-nums; }
.stat-num::after { content: ""; display: block; width: 40px; height: 3px; background: var(--purple); border-radius: 2px; margin-top: 16px; }
.stat-label { margin-top: 16px; font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }
.stats-source { margin-top: 16px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-3); }
.reality-note { margin-top: 18px; font-size: clamp(17px, 2vw, 20px); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; max-width: 52ch; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Track-record proof points ---------- */
.proof-points { list-style: none; margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proof-points--2col { grid-template-columns: repeat(2, 1fr); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.result-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 36px 36px; }
.result-label { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); margin-bottom: 14px; }
.result-metric { font-family: var(--sans); font-size: clamp(26px, 2.8vw, 36px); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); line-height: 1.1; border-top: 2px solid var(--purple); padding-top: 14px; }
.result-desc { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; margin-top: 14px; }
@media (max-width: 700px) { .results-grid { grid-template-columns: 1fr; } }
.proof-points li { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; border-top: 2px solid var(--purple); padding-top: 16px; text-align: center; }
.proof-points li b { display: block; font-family: var(--sans); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px; }
@media (max-width: 760px) { .proof-points { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Program cards ---------- */
.cards { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.p-card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 32px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; min-height: 280px;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.p-card::before {
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.p-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--purple-300); }
.p-card:hover::before { transform: scaleX(1); }
.p-card .p-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.p-card .p-badge {
  align-self: flex-start; margin-top: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  background: var(--purple-tint); color: var(--purple); font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
}
.p-card h3 { font-size: clamp(21px, 2.2vw, 26px); letter-spacing: -0.02em; margin-top: 16px; line-height: 1.12; }
.p-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; margin-top: 12px; }
.p-card .p-go { margin-top: auto; padding-top: 22px; font-weight: 700; font-size: 15px; color: var(--purple); display: inline-flex; align-items: center; gap: 8px; }
.p-card .p-go .arr { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.p-card:hover .p-go .arr { transform: translateX(4px); }

/* ---------- Fit / no-fit ---------- */
.fit-grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 32px 28px; box-shadow: var(--shadow-sm); }
.fit-card--yes { border-color: var(--purple-300); box-shadow: 0 18px 48px -28px rgba(109,40,217,.30); }
.fit-card .fit-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.fit-card--yes .fit-kicker { color: var(--purple); }
.fit-card--no .fit-kicker { color: var(--ink-3); }
.fit-card h3 { font-size: clamp(20px, 2.2vw, 25px); margin-top: 12px; letter-spacing: -0.02em; line-height: 1.15; }
.fit-card ul { list-style: none; margin-top: 20px; display: grid; gap: 13px; }
.fit-card li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-2); line-height: 1.45; }
.fit-mark { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 1px; }
.fit-mark.y { background: var(--purple); color: #fff; }
.fit-mark.n { background: #EEF0F4; color: var(--ink-4); }

/* ---------- Boarding pass motif (homepage only — scoped to .pass-band) ---------- */
.pass-band { margin-top: 44px; display: flex; justify-content: center; }
.pass-band .pass { width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow-card); overflow: hidden; font-family: var(--mono); transform: rotate(-1deg); }
.pass-band .pass-top { padding: 16px 22px; background: linear-gradient(180deg,#FBF9FF,#fff); }
.pass-band .pass-head { display: flex; justify-content: space-between; align-items: center; }
.pass-band .pass-head .brand { font-family: var(--logo); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; color: var(--ink); }
.pass-band .pass-head .brand span { color: var(--purple); }
.pass-band .pass-head .code { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.pass-band .pass-head .code b { color: var(--ink); }
.pass-band .pass-route { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; margin-top: 16px; }
.pass-band .pass-route .pt .big { font-family: var(--sans); font-size: 30px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.pass-band .pass-route .pt.r { text-align: right; }
.pass-band .pass-route .pt.r .big { color: var(--purple); }
.pass-band .pass-route .sub { font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }
.pass-band .pass-route .path { position: relative; height: 26px; }
.pass-band .pass-route .path svg { width: 100%; height: 100%; overflow: visible; }
.pass-band .pass-rows { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px dashed var(--line); }
.pass-band .pass-cell { padding: 11px 22px; border-bottom: 1px solid var(--line-2); }
.pass-band .pass-cell:nth-child(odd) { border-right: 1px solid var(--line-2); }
.pass-band .pass-cell .k { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); }
.pass-band .pass-cell .v { font-family: var(--sans); font-weight: 700; font-size: 13px; margin-top: 3px; color: var(--ink); letter-spacing: -0.01em; }
.pass-band .pass-stub { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 22px; border-top: 2px dashed var(--line); background: linear-gradient(180deg,#fff,#FBF9FF); }
.pass-band .pass-stub .k { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); }
.pass-band .pass-stub .v { font-family: var(--sans); font-weight: 800; font-size: 14px; color: var(--purple); margin-top: 2px; }
.pass-band .pass-barcode { height: 34px; width: 80px; flex: none; opacity: .85; border-radius: 3px; background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 5px, transparent 5px 9px, var(--ink) 9px 12px, transparent 12px 14px); }

@media (max-width: 760px) { .fit-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .pass-band .pass { transform: none; } }

/* ---------- Team ---------- */
.team-grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.t-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 32px 30px; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 104px 1fr; gap: 24px; align-items: start;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.t-photo { width: 104px; height: 128px; border-radius: var(--r-md); object-fit: cover; object-position: center top; background: var(--bg-alt); }
.t-name { font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.t-role { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); margin-top: 4px; }
.t-bio { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin-top: 14px; }
.t-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--purple); }
.t-link:hover { text-decoration: underline; }

.t-card--accent {
  border-color: var(--purple-300);
  background:
    radial-gradient(140% 180% at 85% 15%, var(--purple-tint) 0%, transparent 60%),
    radial-gradient(120% 160% at 5% 100%, #F1EAFE 0%, transparent 55%),
    var(--surface);
}
.t-icon {
  width: 104px; height: 128px; border-radius: var(--r-md);
  border: 1.5px solid var(--purple-300); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 300; color: var(--purple);
}
.t-card--wide { margin-top: 22px; grid-template-columns: 88px 1fr; align-items: center; padding: 26px 32px; }
.t-card--wide .t-icon { width: 88px; height: 88px; }
.t-card--wide .t-wide-content { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.t-card--wide .t-wide-head { flex: none; min-width: 180px; }
.t-card--wide .t-bio { margin-top: 0; flex: 1; min-width: 240px; }
@media (max-width: 640px) {
  .t-card--wide { grid-template-columns: 1fr; text-align: left; }
  .t-card--wide .t-icon { margin-bottom: 8px; }
  .t-card--wide .t-wide-content { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- Closing CTA ---------- */
.closing { position: relative; }
.cta-card {
  background: linear-gradient(140deg, var(--ink) 0%, #221152 55%, #3B1599 100%);
  border-radius: var(--r-xl); padding: clamp(48px, 7vw, 88px) clamp(32px, 6vw, 84px);
  color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-card::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 60% at 88% 0%, rgba(124,58,237,.5), transparent 60%); }
.cta-card .inner { position: relative; max-width: 720px; }
.cta-card .eyebrow { color: var(--purple-300); }
.cta-card .eyebrow::before { background: var(--purple-300); }
.cta-card h2 { font-size: clamp(32px, 5vw, 60px); margin-top: 18px; letter-spacing: -0.035em; line-height: 1.03; }
.cta-card h2 .em { color: var(--purple-300); }
.cta-card p { color: rgba(255,255,255,.78); font-size: clamp(17px,2vw,20px); margin-top: 20px; max-width: 54ch; }
.cta-card .actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.cta-card .btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25); color: #fff; box-shadow: none; }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); color: #fff; }

/* ---------- Footer ---------- */
.footer { padding-block: 52px; border-top: 1px solid var(--line); }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.foot-sub { color: var(--ink-3); font-size: 14px; margin-top: 10px; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .2s; }
.foot-links a:hover { color: var(--purple); }
.foot-bot { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.foot-bot .cr { color: var(--ink-4); font-size: 13.5px; font-family: var(--mono); letter-spacing: .02em; }

/* ---------- Reveal ----------
   Progressive enhancement: content is only hidden when JS is active
   (html.js, set by an inline script in <head>). With no JS or in a
   headless/SSR render the page is fully visible, never blank. */
.reveal { transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 360px; margin-top: 0; }
  .cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right .nav-cta { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .t-card { grid-template-columns: 84px 1fr; gap: 18px; padding: 26px 24px; }
  .t-photo { width: 84px; height: 104px; }
  .cta-card { padding-inline: 26px; }
  .hero-figure { max-width: 320px; }
  /* Full-width, wrap-friendly CTAs so long labels never punch out of the column */
  .hero-cta .btn, .cta-card .actions .btn { width: 100%; white-space: normal; }
}

/* ---- Approach cards ---- */
.approach-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.approach-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 28px 28px 32px; }
.approach-card--active { background: #EDE9FE; border-color: var(--purple); }
.approach-kicker { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); display: flex; align-items: center; gap: 8px; }
.approach-num { font-size: 11px; }
.approach-title { font-family: var(--sans); font-size: clamp(17px, 1.5vw, 19px); font-weight: 700; color: var(--ink); margin-top: 14px; line-height: 1.3; min-height: 52px; display: flex; align-items: flex-start; }
.approach-divider { height: 3px; border-radius: 2px; margin-top: 14px; }
.approach-card:nth-child(1) .approach-divider { background: linear-gradient(to right, var(--purple) 33%, var(--line) 33%); }
.approach-card:nth-child(2) .approach-divider { background: linear-gradient(to right, var(--purple) 66%, var(--line) 66%); }
.approach-card:nth-child(3) .approach-divider { background: var(--purple); }
.approach-body { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin-top: 16px; }
@media (max-width: 800px) { .approach-cards { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  .badge .dot { animation: none !important; }
  html { scroll-behavior: auto; }
  * { scroll-behavior: auto !important; }
}
