/* AK Motivation · Clarity Purpose Path
   Cinematic dark stage. Signature gradient = sunrise over the Atlantic at Lumley Beach:
   Atlantic blue -> AK chrome blue -> gold -> fire. Single deliberate dark theme. */

:root {
  --void: #03050C;
  --ink-0: #060913;
  --ink-1: #0A1022;
  --ink-2: #111A36;
  --ink-3: #1A2750;
  --line: rgba(173, 196, 255, .12);
  --line-2: rgba(173, 196, 255, .22);

  --blue: #2F6BFF;
  --sky: #7CD4FF;
  --gold: #F5C451;
  --gold-hi: #FFE3A0;
  --flame: #FF7A3D;
  --ember: #FF4D2E;

  --text: #F4F6FC;
  --muted: #A3AECB;
  --dim: #6F7BA0;

  --g-fire: linear-gradient(95deg, #FFE7A8 0%, #F5C451 38%, #FF9A3D 72%, #FF5E35 100%);
  --g-atlantic: linear-gradient(100deg, #9BE0FF 0%, #7CD4FF 30%, #2F6BFF 100%);
  --g-dawn: linear-gradient(100deg, #7CD4FF 0%, #2F6BFF 30%, #8F7BFF 48%, #F5C451 72%, #FF7A3D 100%);
  --g-btn: linear-gradient(100deg, #FFD978 0%, #F5B53F 45%, #FF8A3D 100%);
  --g-edge: linear-gradient(140deg, rgba(124,212,255,.55), rgba(255,255,255,.06) 38%, rgba(255,255,255,.04) 62%, rgba(245,196,81,.55));

  --f-display: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Figtree", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --f-quote: "Newsreader", Georgia, "Times New Roman", serif;

  --gutter: clamp(16px, 4vw, 44px);
  --maxw: 1220px;
  --radius: 20px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); overflow-x: clip; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 88px); }

body {
  margin: 0; background: var(--ink-0); color: var(--text);
  font-family: var(--f-body); font-size: 1.0625rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: rgba(245,196,81,.35); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.narrow { max-width: 820px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); margin: 0; text-wrap: balance; color: var(--text); }
h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: .9; font-weight: 900; font-stretch: 68%; text-transform: uppercase; }
h2 { font-size: clamp(2.3rem, 5vw, 4.1rem); line-height: .95; font-weight: 900; font-stretch: 70%; text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.4rem); line-height: 1.2; font-weight: 750; }
p { margin: 0; }
.lede { font-size: clamp(1.1rem, 1.45vw, 1.28rem); line-height: 1.6; max-width: 62ch; color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; justify-self: start;
  font-family: var(--f-display); font-weight: 800; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--g-fire); }
.center .eyebrow, .section-head.center .eyebrow { justify-self: center; }
.gold-text, .grad-fire { background: var(--g-fire); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-sea { background: var(--g-atlantic); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-dawn { background: var(--g-dawn); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: dawnshift 9s ease-in-out infinite alternate; }
@keyframes dawnshift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.serif { font-family: var(--f-quote); font-style: italic; font-weight: 500; text-transform: none; font-stretch: normal; letter-spacing: -.01em; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-display); font-weight: 800; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 1.05em 1.7em; border-radius: 999px; text-decoration: none; border: 1px solid transparent; cursor: pointer;
  line-height: 1.1; text-align: center; overflow: hidden; isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--g-btn); color: #1A1204; box-shadow: 0 10px 30px -10px rgba(255,138,61,.75), inset 0 1px 0 rgba(255,255,255,.55); }
.btn-gold:hover { box-shadow: 0 18px 44px -12px rgba(255,138,61,.9), inset 0 1px 0 rgba(255,255,255,.6); }
.btn-gold::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.55) 48%, transparent 66%); transform: translateX(-120%); transition: transform .7s ease; }
.btn-gold:hover::after { transform: translateX(120%); }
.btn-ghost, .btn-outline-ink {
  color: var(--text);
  background: linear-gradient(rgba(10,16,34,.6), rgba(10,16,34,.6)) padding-box, var(--g-edge) border-box;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn-outline-ink:hover { background: linear-gradient(rgba(26,39,80,.85), rgba(26,39,80,.85)) padding-box, var(--g-edge) border-box; }
.btn-ink { background: linear-gradient(100deg, #3F7BFF, #1F4FE0); color: #fff; box-shadow: 0 10px 30px -12px rgba(47,107,255,.8), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.textlink { font-weight: 700; color: var(--gold-hi); text-decoration: none; background: var(--g-fire) left bottom / 100% 2px no-repeat; padding-bottom: 3px; transition: background-size .3s; }
.textlink:hover { background-size: 0% 2px; background-position: right bottom; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: env(safe-area-inset-top, 0px); z-index: 60;
  background: rgba(6,9,19,.72); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--g-dawn); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line-2), 0 0 24px -4px rgba(124,212,255,.5); }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name b { font-family: var(--f-display); font-weight: 900; font-stretch: 80%; letter-spacing: .08em; font-size: 1.05rem; }
.brand-name span { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; background: var(--g-fire); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { text-decoration: none; font-weight: 600; font-size: .92rem; padding: 8px 12px; border-radius: 999px; color: var(--muted); transition: color .2s, background .2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); background: rgba(173,196,255,.08); }
.nav .btn { padding: .85em 1.25em; font-size: .8rem; margin-left: 10px; color: #1A1204; background: var(--g-btn); }
.nav .btn:hover { background: var(--g-btn); color: #1A1204; }
.nav-toggle { display: none; position: relative; width: 46px; height: 46px; border-radius: 14px; cursor: pointer; padding: 0;
  background: linear-gradient(rgba(10,16,34,.7), rgba(10,16,34,.7)) padding-box, var(--g-edge) border-box; border: 1px solid transparent; }
.nav-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .3s ease, opacity .2s ease, top .3s ease; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; right: 18px; background: var(--gold); }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
@media (max-width: 1040px) {
  .nav-toggle { display: inline-block; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; height: calc(100dvh - 72px); overflow-y: auto; flex-direction: column; align-items: stretch; gap: 4px;
         background: radial-gradient(600px 400px at 100% 0%, rgba(47,107,255,.35), transparent 60%), radial-gradient(500px 400px at 0% 100%, rgba(255,122,61,.22), transparent 60%), rgba(3,5,12,.98);
         padding: 24px var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px)); }
  .nav[data-open="false"] { display: none; }
  .nav a { padding: 14px 4px; border-radius: 0; font-family: var(--f-display); font-weight: 900; font-stretch: 70%; text-transform: uppercase; font-size: 2rem; line-height: 1.05; color: var(--text); border-bottom: 1px solid var(--line); background: none; }
  .nav a[aria-current="page"], .nav a:hover { background: none; color: var(--gold-hi); }
  .nav .btn { margin: 22px 0 0; font-size: .95rem; padding: 1.1em 1.4em; border-bottom: 0; font-stretch: normal; line-height: 1.1; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Sections ---------- */
.section { position: relative; padding-block: clamp(80px, 11vw, 140px); }
.section-tight { position: relative; padding-block: clamp(56px, 7vw, 88px); }
.on-white { background: var(--ink-1) radial-gradient(900px 420px at 100% 0%, rgba(47,107,255,.12), transparent 60%); }
.on-paper-2 { background: var(--ink-1) radial-gradient(900px 420px at 0% 100%, rgba(245,196,81,.08), transparent 60%); }
.on-navy { background: radial-gradient(1000px 500px at 85% 0%, rgba(47,107,255,.30), transparent 60%), radial-gradient(800px 500px at 0% 100%, rgba(255,122,61,.12), transparent 60%), linear-gradient(180deg, #0B1535, #070D22); }
.on-night { background: var(--void) radial-gradient(900px 500px at 50% 0%, rgba(47,107,255,.16), transparent 65%); }
.section-head { display: grid; gap: 18px; margin-bottom: clamp(40px, 6vw, 68px); max-width: 880px; }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }

/* glass surface with gradient hairline */
.moment, .step, .fact, .offer, .topic, .press-card, .form-card, .q, .aside-card, .magnet-visual, .flyer-card, .journey li, .result-head, .impact-row {
  background: linear-gradient(160deg, rgba(26,39,80,.55), rgba(10,16,34,.8)) padding-box, var(--g-edge) border-box;
  border: 1px solid transparent; border-radius: var(--radius);
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--void); isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .75; animation: drift 16s ease-in-out infinite alternate; }
.orb.o1 { width: 640px; height: 640px; right: -140px; top: -180px; background: radial-gradient(circle, rgba(47,107,255,.8), transparent 65%); }
.orb.o2 { width: 520px; height: 520px; left: -220px; bottom: -220px; background: radial-gradient(circle, rgba(124,212,255,.35), transparent 65%); animation-delay: -6s; }
.orb.o3 { width: 480px; height: 480px; right: 16%; bottom: -280px; background: radial-gradient(circle, rgba(255,122,61,.55), transparent 65%); animation-delay: -10s; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-40px, 30px, 0) scale(1.08); } }
.hero-bg .grid-lines { position: absolute; inset: 0; opacity: .6;
  background-image: linear-gradient(rgba(173,196,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(173,196,255,.05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%); }
.hero-word { position: absolute; left: 50%; bottom: -1.5vw; transform: translateX(-50%); font-family: var(--f-display); font-weight: 900; font-stretch: 62%; font-size: clamp(8rem, 25vw, 23rem); line-height: .8; letter-spacing: .02em; color: transparent; -webkit-text-stroke: 1px rgba(173,196,255,.10); white-space: nowrap; user-select: none; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 56px); align-items: end; padding-top: clamp(44px, 6vw, 84px); }
.hero-copy { display: grid; gap: 26px; padding-bottom: clamp(56px, 8vw, 110px); animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
@keyframes rise { from { transform: translateY(18px); opacity: .35; } to { transform: none; opacity: 1; } }
.chip { justify-self: start; display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px; font-size: .84rem; font-weight: 600; color: var(--text);
  background: linear-gradient(rgba(10,16,34,.7), rgba(10,16,34,.7)) padding-box, var(--g-edge) border-box; border: 1px solid transparent; }
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--flame); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,122,61,.6); } 70% { box-shadow: 0 0 0 10px rgba(255,122,61,0); } 100% { box-shadow: 0 0 0 0 rgba(255,122,61,0); } }
.hero h1 { font-size: clamp(3rem, 6.4vw, 5.6rem); }
.hero h1 span { display: block; }
.hero h1 .serif { font-size: .6em; line-height: 1.1; margin-block: .04em; color: #D9E2F7; }
.hero .lede { color: #C3CCE4; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; padding-top: 6px; }
.hero-trust div { display: grid; }
.hero-trust b { font-family: var(--f-display); font-weight: 900; font-stretch: 68%; font-size: 1.8rem; line-height: 1; text-transform: uppercase; }
.hero-trust span { font-size: .82rem; color: var(--muted); }

.hero-visual { position: relative; align-self: end; justify-self: end; width: min(620px, 100%); aspect-ratio: 900 / 1100; }
.hero-visual .sun { position: absolute; left: 50%; top: 2%; width: 74%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle at 50% 58%, #FFE3A0 0%, #F5C451 20%, #FF8A3D 42%, rgba(255,77,46,.4) 60%, transparent 71%); opacity: .95; animation: breathe 6s ease-in-out infinite alternate; }
@keyframes breathe { from { transform: translateX(-50%) scale(1); } to { transform: translateX(-50%) scale(1.04); } }
.hero-visual .ring { position: absolute; left: 50%; top: 14%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,227,160,.3); transform: translateX(-50%); }
.hero-visual .r1 { width: 88%; top: -4%; }
.hero-visual .r2 { width: 112%; top: -15%; border-color: rgba(124,212,255,.18); }
.hero-visual .r3 { width: 138%; top: -27%; border-color: rgba(124,212,255,.09); }
.hero-cutout { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 100%; height: auto; max-width: none;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6));
  -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent 100%); mask-image: linear-gradient(180deg, #000 80%, transparent 100%); }
.float-card { position: absolute; z-index: 2; display: grid; gap: 2px; padding: 12px 16px; border-radius: 16px; max-width: 250px;
  background: linear-gradient(160deg, rgba(20,30,64,.8), rgba(8,12,26,.86)) padding-box, var(--g-edge) border-box; border: 1px solid transparent;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 20px 50px -20px rgba(0,0,0,.8); animation: bob 7s ease-in-out infinite alternate; }
.float-card b { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-family: var(--f-display); font-weight: 800; }
.float-card span { font-weight: 700; font-size: .9rem; line-height: 1.3; }
.float-card.fc1 { right: -10px; top: auto; bottom: 30%; }
.float-card.fc2 { left: -20px; top: auto; bottom: 7%; animation-delay: -3s; }
@keyframes bob { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 8px; }
  .hero-visual { width: min(440px, 96%); }
  .float-card.fc1 { right: 0; top: auto; bottom: 30%; }
  .float-card.fc2 { left: 0; top: auto; bottom: 7%; }
}
@media (max-width: 480px) { .float-card { max-width: 180px; padding: 10px 12px; } .float-card span { font-size: .8rem; } }

/* ---------- Ticker ---------- */
.ticker { position: relative; overflow: hidden; background: var(--g-fire); color: #1A0F02; padding-block: 14px; transform: rotate(-1.2deg); margin-block: -12px; z-index: 3; box-shadow: 0 20px 50px -20px rgba(255,122,61,.6); }
.ticker-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.ticker-track span { font-family: var(--f-display); font-weight: 900; font-stretch: 72%; font-size: clamp(1.1rem, 2vw, 1.5rem); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; padding-inline: 22px; display: inline-flex; align-items: center; gap: 44px; }
.ticker-track span::after { content: "\2726"; font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Featured-on strip ---------- */
.as-seen { padding-block: 72px 44px; background: var(--void); }
.as-seen p.label { text-align: center; font-size: .76rem; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); font-weight: 700; margin-bottom: 24px; }
.as-seen ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 16px 44px; }
.as-seen li { font-family: var(--f-display); font-weight: 800; font-stretch: 78%; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(1rem, 1.6vw, 1.2rem); color: #7C88AC; transition: color .2s; }
.as-seen li:hover { color: var(--text); }
.as-seen li em { font-family: var(--f-quote); font-style: italic; text-transform: none; font-weight: 500; letter-spacing: 0; font-size: 1.15em; }

/* ---------- Manifesto ---------- */
.manifesto { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(110px, 16vw, 200px); text-align: center; }
.manifesto > img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: grayscale(.4) contrast(1.05); }
.manifesto::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--void) 0%, rgba(3,5,12,.35) 25%, rgba(3,5,12,.35) 75%, var(--void) 100%), radial-gradient(ellipse at 50% 50%, rgba(3,5,12,.5), rgba(3,5,12,.92) 72%), linear-gradient(120deg, rgba(22,54,168,.6), rgba(255,122,61,.3)); }
.mega { margin: 18px auto 0; max-width: 1100px; font-family: var(--f-display); font-weight: 900; font-stretch: 64%; text-transform: uppercase; font-size: clamp(2.6rem, 7.4vw, 6.6rem); line-height: .9; }
.mega span { display: block; }
.mega-cite { display: inline-flex; align-items: center; gap: 14px; margin-top: 32px; font-family: var(--f-quote); font-style: italic; font-size: 1.3rem; color: var(--gold-hi); }
.mega-cite::before, .mega-cite::after { content: ""; width: 34px; height: 1px; background: var(--gold); }

/* ---------- Quote band ---------- */
.quote-band { text-align: center; }
.quote-band blockquote { margin: 0 auto; max-width: 960px; font-family: var(--f-quote); font-style: italic; font-weight: 500; font-size: clamp(1.8rem, 4vw, 3.1rem); line-height: 1.2; }
.quote-band cite { display: block; margin-top: 22px; font-style: normal; font-family: var(--f-display); font-weight: 800; letter-spacing: .22em; text-transform: uppercase; font-size: .78rem; color: var(--gold); }
.quote-mark { font-family: var(--f-quote); font-size: 6rem; line-height: .5; display: block; margin-bottom: 10px; background: var(--g-fire); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Moments ---------- */
.moments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.moment { padding: 30px 28px; display: grid; gap: 12px; align-content: start; transition: transform .3s ease, box-shadow .3s ease; }
.moment:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(47,107,255,.55); }
.moment .eyebrow::before { display: none; }
.moment p.muted { font-size: 1rem; }
.moment .big { font-family: var(--f-quote); font-style: italic; font-size: 3.2rem; line-height: .7; background: var(--g-atlantic); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 860px) { .moments { grid-template-columns: 1fr; } }

/* ---------- PATH framework ---------- */
.path { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.path-stage { position: relative; padding: 30px 26px 32px; display: grid; gap: 12px; align-content: start; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, rgba(26,39,80,.6), rgba(8,12,26,.85)) padding-box, var(--g-edge) border-box; border: 1px solid transparent; transition: transform .3s ease; }
.path-stage:hover { transform: translateY(-6px); }
.path-stage::after { content: ""; position: absolute; left: -30%; right: -30%; top: -60%; height: 90%; background: radial-gradient(circle, rgba(245,196,81,.22), transparent 60%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.path-stage:hover::after { opacity: 1; }
.coin { font-family: var(--f-display); font-weight: 900; font-stretch: 62%; font-size: clamp(5.5rem, 9vw, 8rem); line-height: .78; -webkit-background-clip: text; background-clip: text; color: transparent; }
.path-stage:nth-child(1) .coin { background-image: linear-gradient(180deg, #B4E8FF, #2F6BFF); }
.path-stage:nth-child(2) .coin { background-image: linear-gradient(180deg, #C9BCFF, #4E6BFF); }
.path-stage:nth-child(3) .coin { background-image: linear-gradient(180deg, #FFE9B5, #F5B53F); }
.path-stage:nth-child(4) .coin { background-image: linear-gradient(180deg, #FFB36B, #FF4D2E); }
.path-stage .weeks { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--muted); }
.path-stage h3 { font-family: var(--f-display); font-weight: 900; font-stretch: 74%; text-transform: uppercase; font-size: 1.65rem; }
.path-stage .sub { color: var(--gold-hi); font-weight: 700; font-size: .98rem; }
.path-stage ul { margin: 4px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .97rem; display: grid; gap: 8px; }
.path-stage li { display: flex; gap: 10px; }
.path-stage li::before { content: ""; flex: none; width: 6px; height: 6px; margin-top: .62em; border-radius: 50%; background: var(--gold); }
.path-rail { height: 2px; margin: 0 0 18px; background: var(--g-dawn); border-radius: 2px; }
@media (max-width: 980px) { .path { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .path { grid-template-columns: 1fr; } }

/* ---------- Story & journey ---------- */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.story-grid .body { display: grid; gap: 18px; }
.story-grid .body > p { color: #C3CCE4; }
.story-grid .body .lede { color: var(--muted); }
.story-photo { margin: 0; position: relative; display: grid; gap: 12px; }
.story-photo::before { content: ""; position: absolute; inset: 8% -6% -2% 10%; z-index: 0; border-radius: 28px; background: var(--g-dawn); filter: blur(50px); opacity: .45; }
.story-photo img { position: relative; z-index: 1; border-radius: 22px; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; border: 1px solid var(--line-2); }
.story-photo figcaption { position: relative; z-index: 1; font-size: .88rem; color: var(--muted); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 6px; }
.facts.inline { grid-template-columns: repeat(4, 1fr); }
.fact { padding: 18px 16px 16px; }
.fact b { display: block; font-family: var(--f-display); font-weight: 900; font-stretch: 64%; font-size: 2.7rem; line-height: 1; font-variant-numeric: tabular-nums; background: var(--g-fire); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fact span { font-size: .84rem; color: var(--muted); line-height: 1.35; display: block; margin-top: 6px; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .facts.inline { grid-template-columns: 1fr 1fr; } }

.journey { list-style: none; margin: clamp(48px, 7vw, 80px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: j; }
.journey li { position: relative; padding: 26px 24px 24px; display: grid; gap: 8px; align-content: start; overflow: hidden; }
.journey li::before { counter-increment: j; content: "0" counter(j); position: absolute; right: 18px; top: 10px; font-family: var(--f-display); font-weight: 900; font-stretch: 62%; font-size: 3.2rem; color: rgba(173,196,255,.09); line-height: 1; }
.journey .when { font-family: var(--f-display); font-weight: 800; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sky); }
.journey li:nth-child(n+4) .when { color: var(--gold); }
.journey b { font-size: 1.15rem; font-weight: 750; }
.journey p { color: var(--muted); font-size: .96rem; }
@media (max-width: 900px) { .journey { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .journey { grid-template-columns: 1fr; } }

/* ---------- The call ---------- */
.call { position: relative; overflow: hidden; isolation: isolate; background: var(--void); }
.call::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(640px 420px at 50% 50%, rgba(47,107,255,.28), transparent 70%); }
.call .waves { position: absolute; left: 50%; top: 50%; z-index: -1; }
.call .waves i { position: absolute; left: 0; top: 0; width: 1100px; height: 1100px; border-radius: 50%; border: 1px solid rgba(124,212,255,.3); transform: translate(-50%, -50%) scale(.1); animation: wave 8s linear infinite; opacity: 0; }
.call .waves i:nth-child(2) { animation-delay: -2s; }
.call .waves i:nth-child(3) { animation-delay: -4s; }
.call .waves i:nth-child(4) { animation-delay: -6s; }
@keyframes wave { 0% { transform: translate(-50%, -50%) scale(.1); opacity: .9; border-color: rgba(245,196,81,.6); } 100% { transform: translate(-50%, -50%) scale(1); opacity: 0; } }
.call-inner { display: grid; gap: 24px; justify-items: center; text-align: center; max-width: 920px; margin-inline: auto; }
.call-inner > p { color: #C3CCE4; max-width: 64ch; font-size: 1.12rem; }
.call blockquote { margin: 8px 0 0; font-family: var(--f-quote); font-style: italic; font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.22; }
.call cite { font-style: normal; font-family: var(--f-display); font-weight: 800; letter-spacing: .22em; text-transform: uppercase; font-size: .78rem; color: var(--gold); }
.onair { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border-radius: 8px; border: 1px solid rgba(255,77,46,.6); color: #FF9A80; font-family: var(--f-display); font-weight: 900; letter-spacing: .26em; font-size: .76rem; text-transform: uppercase; box-shadow: 0 0 30px -6px rgba(255,77,46,.6); }
.onair::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ember); animation: pulse 1.6s infinite; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 30px 26px; display: grid; gap: 10px; align-content: start; }
.step .num { font-family: var(--f-display); font-weight: 900; font-stretch: 64%; font-size: 3.2rem; line-height: 1; background: var(--g-atlantic); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step .meta { font-size: .86rem; color: var(--gold-hi); font-weight: 600; }
.step p:not(.meta) { color: var(--muted); }
.step .textlink { justify-self: start; margin-top: 8px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Program ---------- */
.program-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.detail-list { display: grid; grid-template-columns: 150px 1fr; margin: 0; border-top: 1px solid var(--line); }
.detail-list dt, .detail-list dd { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
.detail-list dt { font-weight: 800; color: var(--dim); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; padding-top: 17px; }
.detail-list dd { font-weight: 600; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.pill-list li { font-weight: 700; font-size: .9rem; padding: 8px 15px; border-radius: 999px; color: var(--text);
  background: linear-gradient(rgba(17,26,54,.92), rgba(17,26,54,.92)) padding-box, var(--g-edge) border-box; border: 1px solid transparent; }
.flyer-card { padding: 14px; position: relative; margin: 0; }
.flyer-card::before { content: ""; position: absolute; inset: 12% -4% -4% -4%; z-index: -1; background: var(--g-dawn); filter: blur(60px); opacity: .35; border-radius: 40px; }
.flyer-card img { border-radius: 12px; }
.flyer-card p { color: var(--muted); font-size: .88rem; padding: 12px 4px 2px; }
@media (max-width: 900px) { .program-grid { grid-template-columns: 1fr; } .detail-list { grid-template-columns: 1fr; } .detail-list dt { border-bottom: 0; padding-bottom: 0; } }

/* ---------- Offers ---------- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.offer { padding: 32px 28px; display: grid; gap: 16px; align-content: start; position: relative; }
.offer .tag { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--sky); }
.offer h3 { font-family: var(--f-display); font-weight: 900; font-stretch: 70%; text-transform: uppercase; font-size: 2.1rem; line-height: 1; }
.offer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; font-size: .98rem; color: #C3CCE4; }
.offer li { display: flex; gap: 10px; }
.offer li::before { content: "\2713"; flex: none; font-weight: 900; color: var(--gold); }
.offer .btn { justify-self: start; margin-top: 6px; }
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.offer.featured { border-width: 1.5px; box-shadow: 0 40px 90px -40px rgba(47,107,255,.8);
  background: linear-gradient(160deg, rgba(47,107,255,.38), rgba(10,16,34,.96) 60%) padding-box, conic-gradient(from var(--ang), #7CD4FF, #2F6BFF, #F5C451, #FF7A3D, #7CD4FF) border-box;
  animation: spin 6s linear infinite; }
.offer.featured .tag { color: var(--gold); }
@keyframes spin { to { --ang: 360deg; } }
@media (max-width: 960px) { .offers { grid-template-columns: 1fr; } }

/* ---------- Sponsor ---------- */
.sponsor { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.sponsor .impact { display: grid; gap: 12px; }
.impact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; color: #C9D2E8; }
.check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--g-btn); color: #1A1204; display: inline-grid; place-items: center; font-size: 12px; font-weight: 900; margin-top: 2px; }
@media (max-width: 900px) { .sponsor { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; grid-auto-flow: dense; }
.gallery figure { position: relative; margin: 0; border-radius: 18px; overflow: hidden; background: var(--ink-2); border: 1px solid var(--line); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .6s ease; filter: saturate(.9); }
.gallery figure:hover img { transform: scale(1.05); filter: saturate(1.1); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 44px 16px 14px; font-size: .86rem; font-weight: 700; color: #fff; line-height: 1.35; background: linear-gradient(180deg, transparent, rgba(3,5,12,.92)); }
.g-wide { grid-column: span 2; }
.g-big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; } }

/* ---------- Press / stage cards ---------- */
.press { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.press-card { overflow: hidden; display: grid; grid-template-rows: auto 1fr; transition: transform .3s ease, box-shadow .3s ease; }
.press-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(245,196,81,.5); }
.press-card > a { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-2); }
.press-card > a img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; transition: transform .6s ease; }
.press-card:hover > a img { transform: scale(1.04); }
.press-card .body { padding: 22px 24px 26px; display: grid; gap: 10px; align-content: start; }
.press-card .tag { font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.press-card h3 { font-size: 1.15rem; }
.press-card p { font-size: .96rem; color: var(--muted); }
.press-card > a.media-tile { display: grid; align-content: center; gap: 12px; padding: 26px; text-decoration: none; color: #fff;
  background: radial-gradient(circle at 85% 10%, rgba(255,122,61,.6), transparent 50%), radial-gradient(circle at 10% 100%, rgba(47,107,255,.65), transparent 55%), linear-gradient(150deg, #1A2E66, #070D22); }
.mt-kicker { font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-hi); }
.mt-title { font-family: var(--f-display); font-weight: 900; font-stretch: 64%; font-size: clamp(2.3rem, 3.6vw, 3.1rem); line-height: .88; text-transform: uppercase; }
.mt-sub { font-size: .9rem; color: #C9D6F2; }
.mt-play { justify-self: start; margin-top: 4px; font-family: var(--f-display); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: .78rem; background: var(--g-btn); color: #1A1204; border-radius: 999px; padding: 9px 16px; }
@media (max-width: 960px) { .press { grid-template-columns: 1fr; max-width: 580px; } }

/* ---------- Speaking topics ---------- */
.topics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.topic { padding: 30px 28px; display: grid; gap: 10px; align-content: start; position: relative; overflow: hidden; transition: transform .3s ease; }
.topic:hover { transform: translateY(-4px); }
.topic .for { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--gold); }
.topic h3 { font-family: var(--f-display); font-weight: 900; font-stretch: 72%; text-transform: uppercase; font-size: 1.75rem; line-height: 1.02; }
.topic p { color: var(--muted); }
@media (max-width: 800px) { .topics { grid-template-columns: 1fr; } }

/* ---------- Lead magnet ---------- */
.magnet { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.magnet-visual { padding: 30px; display: grid; gap: 16px; position: relative; }
.meter { display: grid; grid-template-columns: 36px 1fr 46px; gap: 12px; align-items: center; font-weight: 700; font-variant-numeric: tabular-nums; }
.meter .bar { height: 10px; background: rgba(173,196,255,.08); border-radius: 99px; overflow: hidden; }
.meter .bar i { display: block; height: 100%; background: var(--g-dawn); background-size: 420px 100%; border-radius: 99px; }
.meter .l { font-family: var(--f-display); font-weight: 900; font-stretch: 64%; font-size: 1.8rem; line-height: 1; color: var(--gold); }
.meter .v { text-align: right; color: var(--muted); font-size: .9rem; }
@media (max-width: 900px) { .magnet { grid-template-columns: 1fr; } }

/* ---------- Book ---------- */
.book { display: grid; grid-template-columns: 240px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.book-cover { aspect-ratio: 2 / 3; max-width: 100%; border-radius: 6px 16px 16px 6px; position: relative; overflow: hidden; display: grid; place-items: center; text-align: center; padding: 20px;
  background: radial-gradient(circle at 50% 30%, rgba(245,196,81,.5), transparent 55%), linear-gradient(170deg, #1A2E66, #050912); border-left: 10px solid #A8791F;
  color: var(--gold-hi); font-family: var(--f-display); font-weight: 900; font-stretch: 68%; font-size: 1.6rem; letter-spacing: .04em; box-shadow: 0 40px 70px -30px rgba(0,0,0,.9), 0 0 70px -20px rgba(245,196,81,.55); transform: rotate(-3deg); }
.book-cover small { display: block; font-family: var(--f-body); font-weight: 600; font-stretch: normal; color: var(--sky); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-top: 12px; }
@media (max-width: 680px) { .book { grid-template-columns: 1fr; } .book-cover { width: 190px; } }

/* ---------- Finale ---------- */
.finale { position: relative; overflow: hidden; isolation: isolate; text-align: center; padding-block: clamp(110px, 15vw, 190px) clamp(130px, 17vw, 220px); background: var(--void); }
.finale::before { content: ""; position: absolute; left: 50%; bottom: -480px; width: 960px; max-width: 200vw; aspect-ratio: 1; transform: translateX(-50%); z-index: -1; border-radius: 50%;
  background: radial-gradient(circle closest-side, #FFF3CF 0%, #FFD66E 22%, #FF9A3D 42%, rgba(255,77,46,.7) 58%, rgba(143,123,255,.28) 76%, rgba(47,107,255,.14) 88%, transparent 100%); animation: breathe2 7s ease-in-out infinite alternate; }
@keyframes breathe2 { from { transform: translateX(-50%) scale(1); } to { transform: translateX(-50%) scale(1.05); } }
.finale .glowline { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, #FFD66E, transparent); z-index: -1; }
.finale::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, var(--void) 0%, rgba(3,5,12,.0) 45%); }
.finale h2 { font-size: clamp(3rem, 8.5vw, 7.6rem); line-height: .88; font-stretch: 62%; }
.finale .lede { margin: 26px auto 0; color: #E4E9F7; }
.finale .btn-row { justify-content: center; margin-top: 38px; }
.finale .btn-ghost { background: linear-gradient(rgba(3,5,12,.6), rgba(3,5,12,.6)) padding-box, var(--g-edge) border-box; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 14px; }
.form h3 { font-family: var(--f-display); font-weight: 900; font-stretch: 72%; text-transform: uppercase; font-size: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .86rem; color: #C3CCE4; }
.field input, .field select, .field textarea {
  font: 500 1rem var(--f-body); color: var(--text); background: rgba(3,5,12,.55);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 15px; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field select option { background: var(--ink-1); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(245,196,81,.16); }
.form-note { font-size: .82rem; color: var(--dim); }
.form-card { padding: clamp(24px, 3vw, 38px); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); }
.form-success { background: rgba(47,143,91,.14); color: #9FE3BD; border: 1px solid rgba(95,210,145,.35); border-radius: 14px; padding: 16px 18px; font-weight: 600; }
.form-error { color: #FF9B85; font-weight: 600; font-size: .92rem; }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; overflow: hidden; isolation: isolate; background: var(--void); padding-block: clamp(80px, 11vw, 140px) clamp(60px, 8vw, 100px); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(700px 420px at 88% 0%, rgba(47,107,255,.5), transparent 65%), radial-gradient(640px 380px at 8% 115%, rgba(255,122,61,.3), transparent 65%); }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(124,212,255,.5), rgba(245,196,81,.6), transparent); }
.page-hero .wrap { display: grid; gap: 22px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); max-width: 16ch; }
.page-hero .lede { color: #C3CCE4; }

/* ---------- Prose / two-col ---------- */
.prose { display: grid; gap: 18px; max-width: 68ch; font-size: 1.08rem; color: #C9D2E8; }
.prose h2 { margin-top: 26px; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.prose strong { color: var(--text); }
.prose blockquote { margin: 10px 0; padding: 6px 0 6px 24px; border-left: 3px solid var(--gold); font-family: var(--f-quote); font-style: italic; font-size: 1.45rem; line-height: 1.4; color: var(--gold-hi); }
.two-col { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.aside-card { position: sticky; top: calc(env(safe-area-inset-top, 0px) + 96px); padding: 22px; display: grid; gap: 16px; }
.aside-card img { border-radius: 14px; }
.aside-card h3 { font-family: var(--f-display); font-weight: 900; font-stretch: 72%; text-transform: uppercase; font-size: 1.7rem; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } .aside-card { position: static; } }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; }
.timeline li { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.timeline li b { font-family: var(--f-display); font-weight: 800; color: var(--gold); font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; }
.timeline li span, .timeline li a { color: #C9D2E8; }
.timeline.wide li { grid-template-columns: 210px 1fr; gap: 28px; padding: 30px 0; }
.timeline.wide li b { line-height: 1.5; font-size: .95rem; }
.timeline.wide h3 { font-family: var(--f-display); font-weight: 900; font-stretch: 72%; text-transform: uppercase; font-size: 1.9rem; }
.timeline.wide p { color: #C3CCE4; }
.timeline.wide p.muted { color: var(--muted); }
@media (max-width: 820px) { .timeline li, .timeline.wide li { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Assessment ---------- */
.quiz { display: grid; gap: 18px; }
.quiz-progress { height: 8px; background: rgba(173,196,255,.1); border-radius: 99px; overflow: hidden; }
.quiz-progress i { display: block; height: 100%; width: 0; background: var(--g-dawn); background-size: 800px 100%; transition: width .3s ease; }
.q { display: grid; gap: 14px; padding: 24px; }
.q-stage { font-size: .72rem; letter-spacing: .18em; font-weight: 800; text-transform: uppercase; color: var(--gold); }
.q p { font-weight: 700; font-size: 1.12rem; }
.scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.scale label { position: relative; cursor: pointer; }
.scale input { position: absolute; opacity: 0; inset: 0; }
.scale span { display: grid; place-items: center; text-align: center; min-height: 62px; padding: 8px 4px; border: 1px solid var(--line-2); border-radius: 12px; font-size: .76rem; line-height: 1.2; font-weight: 600; color: var(--muted); background: rgba(3,5,12,.45); transition: all .2s; }
.scale label:hover span { border-color: rgba(245,196,81,.5); }
.scale span b { display: block; font-family: var(--f-display); font-size: 1.2rem; color: var(--text); }
.scale input:checked + span { background: var(--g-btn); border-color: transparent; color: #3A2606; box-shadow: 0 10px 24px -10px rgba(255,138,61,.8); }
.scale input:checked + span b { color: #1A1204; }
.scale input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 480px) { .scale span { font-size: 0; min-height: 50px; } .scale span b { font-size: 1.15rem; } }
.result { display: grid; gap: 18px; }
.result-head { padding: clamp(24px, 3vw, 38px); display: grid; gap: 14px; }
.result-head .score { font-family: var(--f-display); font-weight: 900; font-stretch: 64%; font-size: clamp(3.4rem, 8vw, 5rem); line-height: .9; font-variant-numeric: tabular-nums; color: var(--gold); }
.result-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--void); color: var(--muted); padding-block: 80px 34px; font-size: .95rem; border-top: 1px solid var(--line); overflow: hidden; }
.site-footer::before { content: ""; position: absolute; left: 50%; top: -1px; width: 70%; height: 1px; transform: translateX(-50%); background: var(--g-dawn); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-grid h4 { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 800; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-grid a { text-decoration: none; color: #C9D2E8; transition: color .2s; }
.footer-grid a:hover { color: var(--gold-hi); }
.footer-brand { display: grid; gap: 16px; align-content: start; }
.footer-brand img { width: 88px; height: 88px; border-radius: 50%; box-shadow: 0 0 40px -8px rgba(124,212,255,.5); }
.footer-pillars { font-family: var(--f-display); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; color: var(--sky); }
.footer-word { margin-top: 60px; font-family: var(--f-display); font-weight: 900; font-stretch: 62%; text-transform: uppercase; font-size: clamp(3.2rem, 12.5vw, 11rem); line-height: .82; text-align: center; background: linear-gradient(180deg, rgba(173,196,255,.2), rgba(173,196,255,0)); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; white-space: nowrap; }
.footer-bottom { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .84rem; color: var(--dim); }
.copy-email { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.copy-btn { font: 700 .74rem var(--f-body); background: rgba(173,196,255,.08); color: var(--gold-hi); border: 1px solid var(--line-2); border-radius: 8px; padding: 4px 9px; cursor: pointer; }
.copy-btn:hover { border-color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Utilities ---------- */
.stack { display: grid; gap: 16px; }
.stack-lg { display: grid; gap: 30px; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(32px, 4vw, 52px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

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

/* ================= Mobile hero: photo as the background ================= */
@media (max-width: 920px) {
  .hero-grid { display: block; position: relative; padding-top: 0; }
  .hero-word { display: none; }
  .hero-visual { position: absolute; z-index: 0; top: 0; left: 50%; transform: translateX(-50%); width: min(560px, 118%); max-width: none; aspect-ratio: auto; height: calc(min(560px, 118vw) * 1.3); }
  .hero-visual .sun { top: 3%; width: 70%; }
  .hero-visual .r3, .hero-visual .r2 { display: none; }
  .hero-visual .r1 { width: 86%; top: -2%; }
  .hero-cutout { top: 2%; bottom: auto; width: 100%; -webkit-mask-image: none; mask-image: none; }
  .hero-visual::after { content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(3,5,12,0) 30%, rgba(3,5,12,.55) 46%, rgba(3,5,12,.92) 60%, var(--void) 72%); }
  .float-card { display: none; }
  .hero-copy { position: relative; z-index: 2; padding-top: calc(min(560px, 118vw) * .64); padding-bottom: 64px; gap: 20px; }
  .hero .chip { order: 0; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 4px; }
  .hero-trust div { padding: 12px 10px; border-radius: 14px; background: linear-gradient(160deg, rgba(26,39,80,.55), rgba(10,16,34,.8)) padding-box, var(--g-edge) border-box; border: 1px solid transparent; }
  .hero-trust b { font-size: 1.25rem; }
  .hero-trust span { font-size: .72rem; line-height: 1.3; display: block; margin-top: 4px; }
  .hero .btn-row .btn { flex: 1 1 100%; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .section { padding-block: 72px; }
  .section-head { margin-bottom: 34px; gap: 14px; }
  h2 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero h1 { font-size: clamp(2.8rem, 13.5vw, 3.8rem); }
  .hero .lede { font-size: 1.02rem; }
  .ticker { padding-block: 11px; }
  .as-seen { padding-block: 56px 20px; }
  .as-seen ul { gap: 10px 22px; }
  .as-seen li { font-size: .92rem; }
  .manifesto { padding-block: 96px; }
  .mega { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .moment, .step, .offer, .topic, .path-stage { padding: 24px 22px; }
  .coin { font-size: 5rem; }
  .facts.inline .fact b { font-size: 2.2rem; }
  .journey li { padding: 22px 20px; }
  .call blockquote { font-size: 1.55rem; }
  .gallery { grid-auto-rows: 150px; gap: 8px; }
  .gallery figcaption { font-size: .74rem; padding: 30px 10px 8px; }
  .btn-row .btn { flex: 1 1 100%; }
  .finale { padding-block: 96px 150px; }
  .finale::before { width: 640px; bottom: -330px; }
  .finale h2 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .page-hero { padding-block: 64px 48px; }
  .page-hero h1 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  .form-card { padding: 22px 18px; }
  .footer-word { font-size: 18vw; margin-top: 40px; }
  .brand-name b { font-size: .95rem; }
}
@media (max-width: 1040px) {
  .nav { background: radial-gradient(600px 400px at 100% 0%, rgba(47,107,255,.35), transparent 60%), radial-gradient(500px 400px at 0% 100%, rgba(255,122,61,.22), transparent 60%), #03050C; }
  .nav .btn { border-radius: 999px; }
}
@media (max-width: 920px) { .hero-visual { overflow: hidden; } }
@media (max-width: 560px) { .mega span { display: inline; } .mega span.grad-fire { display: block; margin-top: .15em; } }
/* Mobile: every button full width and centered */
@media (max-width: 760px) {
  .btn-row { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-row .btn { flex: none !important; }
  .btn-row .btn, .offer .btn, .form .btn, .form-card .btn, .aside-card .btn, .magnet .btn, .finale .btn, .prose .btn { width: 100%; justify-self: stretch; justify-content: center; text-align: center; }
  .hero .btn-row .btn { flex: none; }
}

/* ---------- Program (redesign) ---------- */
.program-top { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.program-copy { display: grid; gap: 24px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 6px; }
.spec { display: grid; gap: 4px; padding: 18px 20px; border-radius: 18px;
  background: linear-gradient(160deg, rgba(26,39,80,.6), rgba(8,12,26,.85)) padding-box, var(--g-edge) border-box; border: 1px solid transparent; }
.spec-k { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--dim); }
.spec b { font-family: var(--f-display); font-weight: 900; font-stretch: 66%; text-transform: uppercase; font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1; }
.spec-n { font-size: .88rem; color: var(--muted); }
.flyer-float { position: relative; margin: 0; justify-self: center; width: min(400px, 100%); transform: rotate(2.5deg); transition: transform .4s ease; }
.flyer-float:hover { transform: rotate(0deg) scale(1.02); }
.flyer-float::before { content: ""; position: absolute; inset: 6% -8% -6% -8%; z-index: -1; background: var(--g-dawn); filter: blur(60px); opacity: .5; border-radius: 40px; }
.flyer-float img { border-radius: 16px; border: 1px solid var(--line-2); box-shadow: 0 50px 90px -40px rgba(0,0,0,.9); }
.flyer-float figcaption { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: .88rem; color: var(--muted); transform: rotate(-2.5deg); }
.flyer-float .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--flame); animation: pulse 2s infinite; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(48px, 7vw, 80px); }
.fit-card { padding: 30px 30px 32px; border-radius: var(--radius); display: grid; gap: 18px; align-content: start;
  background: linear-gradient(160deg, rgba(47,107,255,.22), rgba(8,12,26,.9) 70%) padding-box, var(--g-edge) border-box; border: 1px solid transparent; }
.fit-card.gold { background: linear-gradient(160deg, rgba(245,196,81,.18), rgba(8,12,26,.9) 70%) padding-box, var(--g-edge) border-box; }
.fit-card .eyebrow { font-size: .85rem; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.08rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.ticks li::before { content: "\2713"; flex: none; width: 26px; height: 26px; margin-top: -1px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 900; color: #fff; background: var(--g-atlantic); }
.fit-card.gold .ticks li::before { background: var(--g-btn); color: #1A1204; }
@media (max-width: 900px) {
  .program-top { grid-template-columns: 1fr; }
  .flyer-float { width: min(340px, 86%); transform: rotate(0); }
  .flyer-float figcaption { transform: none; display: block; text-align: center; }
  .flyer-float .dot { display: inline-block; margin-right: 8px; vertical-align: middle; }
  .fit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .spec { padding: 14px 14px; }
  .spec b { font-size: 1.7rem; }
  .fit-card { padding: 24px 20px; }
  .ticks li { font-size: 1rem; }
}
/* Mobile menu: size to its content and always scrollable (works inside embedded viewers too) */
@media (max-width: 1040px) {
  .nav { height: auto; max-height: calc(100svh - 72px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding-top: 12px; box-shadow: 0 40px 80px -20px rgba(0,0,0,.9); border-bottom: 1px solid var(--line-2); }
  .nav a { font-size: 1.6rem; padding: 12px 4px; }
  body.nav-open { overflow: visible; }
}

/* ---------- Watch section ---------- */
.watch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; gap: clamp(28px, 5vw, 72px); }
.phone { margin: 0; display: grid; gap: 18px; }
.phone-screen { position: relative; aspect-ratio: 9 / 16; max-width: 100%; border-radius: 34px; padding: 10px; background: linear-gradient(160deg, #1B2A55, #05080F) padding-box, var(--g-edge) border-box; border: 1px solid transparent; box-shadow: 0 50px 90px -40px rgba(0,0,0,.9), 0 0 80px -30px rgba(47,107,255,.6); }
.phone-screen::before { content: ""; position: absolute; inset: 14% -10% -6% -10%; z-index: -1; background: var(--g-dawn); filter: blur(70px); opacity: .35; border-radius: 50%; }
.phone-screen video { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; background: #000; display: block; }
.phone figcaption { display: grid; gap: 4px; text-align: center; }
.phone figcaption .tag { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.phone figcaption b { font-family: var(--f-display); font-weight: 900; font-stretch: 70%; text-transform: uppercase; font-size: 1.7rem; line-height: 1; }
.phone figcaption span:last-child { color: var(--muted); font-size: .96rem; }
@media (max-width: 700px) { .watch-grid { grid-template-columns: minmax(0, 300px); } }

/* ---------- Story dock (autoplay theme video) ---------- */
.story-dock { position: fixed; z-index: 70; right: 20px; bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
.sd-card { position: relative; width: 190px; aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden; cursor: pointer;
  background: #000; border: 1px solid transparent; background-clip: padding-box;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.9), 0 0 0 1.5px rgba(245,196,81,.55), 0 0 40px -6px rgba(255,138,61,.55);
  transition: width .35s ease; animation: dockin .7s cubic-bezier(.2,.7,.2,1) both .6s; }
@keyframes dockin { from { transform: translateY(30px) scale(.9); opacity: 0; } to { transform: none; opacity: 1; } }
.story-dock.big .sd-card { width: min(360px, 78vw); }
.sd-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sd-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.45), transparent 22%, transparent 60%, rgba(3,5,12,.85)); }
.sd-btn { position: absolute; top: 8px; width: 30px; height: 30px; border-radius: 50%; border: 0; display: grid; place-items: center; cursor: pointer; background: rgba(3,5,12,.6); backdrop-filter: blur(6px); }
.sd-btn svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.sd-close { right: 8px; }
.sd-expand { left: 8px; }
.sd-sound { position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; border: 0; cursor: pointer;
  padding: 9px 14px; border-radius: 999px; font: 800 .74rem var(--f-display); letter-spacing: .06em; text-transform: uppercase; color: #1A1204; background: var(--g-btn);
  box-shadow: 0 10px 24px -8px rgba(255,138,61,.9); animation: pulse 2s infinite; }
.sd-sound svg { width: 16px; height: 16px; fill: #1A1204; stroke: #1A1204; stroke-width: 1.8; stroke-linecap: round; }
.sd-sound .i-on { display: none; }
.sd-sound.on { top: auto; bottom: 46px; left: 10px; transform: none; padding: 6px 10px; font-size: .62rem; animation: none; background: rgba(3,5,12,.65); color: #fff; box-shadow: none; }
.sd-sound.on svg { fill: #fff; stroke: #fff; }
.sd-sound.on .i-on { display: block; } .sd-sound.on .i-off { display: none; }
.sd-meta { position: absolute; left: 12px; right: 12px; bottom: 14px; pointer-events: none; display: grid; line-height: 1.15; }
.sd-meta b { font-family: var(--f-display); font-weight: 900; font-stretch: 72%; text-transform: uppercase; font-size: 1rem; color: #fff; }
.sd-meta span { font-size: .66rem; color: var(--gold-hi); font-weight: 700; letter-spacing: .04em; }
.sd-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.15); }
.sd-progress i { display: block; height: 100%; width: 0; background: var(--g-fire); }
.sd-pill { display: inline-flex; align-items: center; gap: 10px; border: 0; cursor: pointer; padding: 12px 18px; border-radius: 999px;
  font: 800 .8rem var(--f-display); letter-spacing: .05em; text-transform: uppercase; color: #1A1204; background: var(--g-btn); box-shadow: 0 14px 34px -10px rgba(255,138,61,.85); }
.sd-pill-dot { width: 9px; height: 9px; border-radius: 50%; background: #FF3B1F; animation: pulse 2s infinite; }
@media (max-width: 700px) {
  .story-dock { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
  .sd-card { width: 118px; border-radius: 16px; }
  .sd-meta, .sd-expand { display: none; }
  .sd-sound { font-size: .6rem; padding: 7px 10px; top: 50%; }
  .sd-sound.on { bottom: 10px; left: 8px; }
  .sd-pill { padding: 10px 14px; font-size: .7rem; }
  .story-dock.big .sd-card { width: min(300px, 80vw); }
  .story-dock.big .sd-meta { display: grid; }
}
body.nav-open .story-dock { display: none; }

/* ---------- Social icons ---------- */
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.soc { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--text) !important;
  background: linear-gradient(rgba(17,26,54,.9), rgba(17,26,54,.9)) padding-box, var(--g-edge) border-box; border: 1px solid transparent; transition: transform .2s, background .2s; }
.soc svg { width: 18px; height: 18px; fill: currentColor; }
.soc:hover { transform: translateY(-2px); background: var(--g-btn) padding-box, var(--g-btn) border-box; color: #1A1204 !important; }

/* Story dock v2: play fallback + mobile sizing */
.sd-card { animation: none; }
.sd-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center; background: var(--g-btn); box-shadow: 0 12px 30px -8px rgba(255,138,61,.9); z-index: 3; }
.sd-play svg { width: 24px; height: 24px; fill: #1A1204; margin-left: 3px; }
.sd-play[hidden] { display: none; }
@media (max-width: 700px) {
  .story-dock { right: 10px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); }
  .sd-card { width: 132px; border-radius: 18px; }
  .sd-meta { display: grid; left: 8px; right: 8px; bottom: 9px; }
  .sd-meta b { font-size: .78rem; } .sd-meta span { display: none; }
  .sd-expand { display: grid; width: 26px; height: 26px; top: 6px; left: 6px; }
  .sd-close { width: 26px; height: 26px; top: 6px; right: 6px; }
  .sd-sound { top: 46%; font-size: .58rem; padding: 7px 9px; gap: 5px; }
  .sd-sound svg { width: 13px; height: 13px; }
  .sd-sound.on { top: 38px; bottom: auto; left: 6px; font-size: .52rem; padding: 4px 7px; }
  .sd-play { width: 46px; height: 46px; }
  .story-dock.big { left: 50%; right: auto; transform: translateX(-50%); }
  .story-dock.big .sd-card { width: min(300px, 82vw); }
  .story-dock.big .sd-meta span { display: block; }
}
@media (max-width: 380px) { .sd-card { width: 116px; } }

/* ---------- Site-wide audio player ---------- */
.aud { position: fixed; z-index: 70; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); display: grid; justify-items: end; gap: 10px; max-width: calc(100vw - 24px); }
.aud-screen { display: none; width: min(300px, 78vw); aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden; background: #000;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.9), 0 0 0 1.5px rgba(245,196,81,.55), 0 0 40px -6px rgba(255,138,61,.55); }
.aud-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }
.aud[data-mode="video"] .aud-screen { display: block; }
.aud-pill { position: relative; display: flex; align-items: center; gap: 6px; padding: 7px 8px 7px 7px; border-radius: 999px; overflow: hidden;
  background: linear-gradient(160deg, rgba(20,30,64,.92), rgba(6,9,19,.95)) padding-box, conic-gradient(from 200deg, #7CD4FF, #2F6BFF, #F5C451, #FF7A3D, #7CD4FF) border-box;
  border: 1.5px solid transparent; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 20px 50px -18px rgba(0,0,0,.9); }
.aud-pill[hidden] { display: none; }
.aud-main { position: relative; flex: none; width: 46px; height: 46px; border-radius: 50%; padding: 0; border: 0; cursor: pointer; overflow: hidden; background: #000; }
.aud-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; opacity: .75; }
.aud-ico { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(3,5,12,.35); }
.aud-ico svg { width: 18px; height: 18px; fill: #fff; }
.aud .i-pause, .aud.playing .i-play { display: none; }
.aud.playing .i-pause { display: block; }
.aud.playing .aud-main { box-shadow: 0 0 0 2px var(--gold); }
.aud-text { display: grid; line-height: 1.15; padding: 0 4px; min-width: 0; }
.aud-text b { font-family: var(--f-display); font-weight: 900; font-stretch: 74%; text-transform: uppercase; font-size: .95rem; white-space: nowrap; }
.aud-text > span { display: flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--gold-hi); font-weight: 700; white-space: nowrap; }
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 11px; }
.eq i { width: 3px; height: 30%; background: var(--g-fire); border-radius: 1px; }
.aud.playing:not(.muted) .eq i { animation: eq 0.9s ease-in-out infinite; }
.aud.playing:not(.muted) .eq i:nth-child(2) { animation-delay: -.3s; } .aud.playing:not(.muted) .eq i:nth-child(3) { animation-delay: -.6s; } .aud.playing:not(.muted) .eq i:nth-child(4) { animation-delay: -.15s; }
@keyframes eq { 0%, 100% { height: 25%; } 50% { height: 100%; } }
.aud-btn { flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(173,196,255,.06); cursor: pointer; display: grid; place-items: center; color: #fff; }
.aud-btn:hover { background: rgba(245,196,81,.18); border-color: var(--gold); }
.aud-btn svg { width: 17px; height: 17px; fill: #fff; }
.aud-btn svg .st, .aud-btn svg.st { fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.aud-btn .i-off, .aud.muted .aud-btn .i-on, .aud-btn .i-col, .aud[data-mode="video"] .aud-btn .i-exp { display: none; }
.aud.muted .aud-btn .i-off, .aud[data-mode="video"] .aud-btn .i-col { display: block; }
.aud.muted #aud-mute { background: var(--g-btn); border-color: transparent; }
.aud.muted #aud-mute svg { fill: #1A1204; } .aud.muted #aud-mute svg .st { stroke: #1A1204; }
.aud-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.1); }
.aud-progress i { display: block; height: 100%; width: 0; background: var(--g-fire); }
.aud.waiting .aud-pill { animation: audpulse 1.8s ease-in-out infinite; }
.aud.waiting .aud-text > span { color: #fff; }
@keyframes audpulse { 0%, 100% { box-shadow: 0 20px 50px -18px rgba(0,0,0,.9), 0 0 0 0 rgba(255,138,61,.55); } 50% { box-shadow: 0 20px 50px -18px rgba(0,0,0,.9), 0 0 0 10px rgba(255,138,61,0); } }
.aud-mini { display: inline-flex; align-items: center; gap: 10px; border: 0; cursor: pointer; padding: 12px 18px; border-radius: 999px; font: 800 .78rem var(--f-display); letter-spacing: .05em; text-transform: uppercase; color: #1A1204; background: var(--g-btn); box-shadow: 0 14px 34px -10px rgba(255,138,61,.85); }
.aud-mini[hidden] { display: none; }
.aud-mini-dot { width: 9px; height: 9px; border-radius: 50%; background: #FF3B1F; }
body.nav-open .aud { display: none; }
@media (max-width: 560px) {
  .aud { right: 10px; left: 10px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
  .aud-pill { width: 100%; }
  .aud-text { flex: 1; }
  .aud-screen { width: min(260px, 70vw); justify-self: end; }
  .aud-mini { padding: 10px 14px; font-size: .7rem; }
}
.site-footer { padding-bottom: 110px; }

.aud.closed .aud-screen { display: none !important; }
/* ---------- Watch section v2 ---------- */
.watch-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.watch-copy { display: grid; gap: 22px; justify-items: start; }
.watch-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; width: 100%; }
.watch-list li { display: grid; gap: 2px; padding: 14px 18px; border-radius: 16px; border-left: 3px solid var(--gold);
  background: linear-gradient(160deg, rgba(26,39,80,.55), rgba(10,16,34,.8)); }
.watch-list li:first-child { border-left-color: var(--sky); }
.watch-list b { font-family: var(--f-display); font-weight: 900; font-stretch: 72%; text-transform: uppercase; font-size: 1.15rem; }
.watch-list span { font-size: .92rem; color: var(--muted); }
.watch .watch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; justify-content: stretch; }
.watch .phone figcaption { gap: 2px; }
.watch .phone figcaption b { font-size: 1.3rem; }
@media (max-width: 960px) { .watch-layout { grid-template-columns: 1fr; } .watch .watch-grid { max-width: 620px; } }
@media (max-width: 560px) { .watch .watch-grid { gap: 12px; } .watch .phone-screen { border-radius: 22px; padding: 6px; } .watch .phone-screen video { border-radius: 17px; } .watch .phone figcaption b { font-size: 1.05rem; } .watch-copy .btn { width: 100%; } }
.watch .phone { align-content: start; }

/* Real site (no host padding): header sits flush at the top, painting behind the iPhone status bar */
.standalone .site-header { top: 0; padding-top: env(safe-area-inset-top, 0px); }
.standalone .nav { max-height: calc(100svh - 72px - env(safe-area-inset-top, 0px)); }

/* iPhone Safari: solid header that also paints the status-bar strip above it */
.site-header { background: #060913; -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-header::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 120px; background: #060913; pointer-events: none; }
@supports (backdrop-filter: blur(1px)) { @media (min-width: 1041px) { .site-header { background: rgba(6,9,19,.86); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); } } }

/* ================= Liquid glass: floating header + media player ================= */
:root { --glass-bg: rgba(20, 28, 54, .38); --glass-bg-strong: rgba(12, 18, 38, .62); --glass-edge: rgba(255, 255, 255, .22); --glass-edge-soft: rgba(255, 255, 255, .08);
  --glass-shadow: 0 18px 50px -18px rgba(0, 0, 0, .75), inset 0 1px 0 rgba(255, 255, 255, .28), inset 0 -1px 0 rgba(255, 255, 255, .06), inset 0 0 0 1px rgba(255, 255, 255, .06); }
.site-header {
  top: calc(env(safe-area-inset-top, 0px) + 10px); margin: 10px clamp(10px, 2vw, 22px) 0; border-radius: 24px; border: 1px solid var(--glass-edge-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 55%, rgba(255,255,255,.04)), var(--glass-bg);
  -webkit-backdrop-filter: blur(22px) saturate(180%) brightness(1.05); backdrop-filter: blur(22px) saturate(180%) brightness(1.05);
  box-shadow: var(--glass-shadow); }
.standalone .site-header { top: calc(env(safe-area-inset-top, 0px) + 10px); padding-top: 0; }
@media (min-width: 1041px) { .site-header { background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 55%, rgba(255,255,255,.04)), var(--glass-bg); -webkit-backdrop-filter: blur(22px) saturate(180%) brightness(1.05); backdrop-filter: blur(22px) saturate(180%) brightness(1.05); } }
/* specular sheen across the top edge */
.site-header::before { content: ""; position: absolute; inset: 0; bottom: auto; height: 60%; border-radius: 24px 24px 60% 60% / 24px 24px 20px 20px; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0)); opacity: .55; }
.header-row { min-height: 64px; }
.scroll-progress { left: 24px; bottom: -1px; max-width: calc(100% - 48px); border-radius: 2px; }
/* soft dark fade behind the phone status bar so content never looks cut off */
.standalone body::before { content: ""; position: fixed; left: 0; right: 0; top: 0; height: calc(env(safe-area-inset-top, 0px) + 18px); z-index: 59; pointer-events: none;
  background: linear-gradient(180deg, rgba(3,5,12,.92), rgba(3,5,12,0)); }
.nav-toggle { background: rgba(255,255,255,.08); border: 1px solid var(--glass-edge); box-shadow: inset 0 1px 0 rgba(255,255,255,.25); border-radius: 16px; }
.brand img { box-shadow: 0 0 0 1px rgba(255,255,255,.25), 0 6px 18px -6px rgba(0,0,0,.6); }
@media (max-width: 1040px) {
  .nav { top: calc(100% + 8px); left: 0; right: 0; border-radius: 24px; border: 1px solid var(--glass-edge-soft); padding: 14px 20px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02)), rgba(8, 12, 26, .72);
    -webkit-backdrop-filter: blur(28px) saturate(180%); backdrop-filter: blur(28px) saturate(180%); box-shadow: var(--glass-shadow);
    max-height: calc(100svh - 110px - env(safe-area-inset-top, 0px)); }
  .nav a { border-bottom-color: rgba(255,255,255,.08); }
}

/* Media player */
.aud-pill {
  border: 1px solid var(--glass-edge-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03) 55%, rgba(255,255,255,.05)), var(--glass-bg) padding-box;
  -webkit-backdrop-filter: blur(24px) saturate(190%) brightness(1.05); backdrop-filter: blur(24px) saturate(190%) brightness(1.05);
  box-shadow: var(--glass-shadow); }
.aud-pill::before { content: ""; position: absolute; left: 10px; right: 10px; top: 0; height: 50%; border-radius: 999px 999px 40% 40%; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0)); opacity: .6; }
.aud-pill > * { position: relative; }
.aud-progress { position: absolute; left: 22px; right: 22px; bottom: 3px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.12); }
.aud-btn { background: rgba(255,255,255,.08); border: 1px solid var(--glass-edge); box-shadow: inset 0 1px 0 rgba(255,255,255,.25); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.aud-btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.35); }
.aud.muted #aud-mute { background: linear-gradient(180deg, rgba(255,227,160,.95), rgba(245,181,63,.9)); border-color: rgba(255,255,255,.5); }
.aud-main { box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 6px 16px -6px rgba(0,0,0,.7); }
.aud.playing .aud-main { box-shadow: 0 0 0 2px rgba(245,196,81,.9), 0 6px 16px -6px rgba(0,0,0,.7); }
.aud-screen { border: 1px solid var(--glass-edge); box-shadow: 0 30px 70px -20px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.3); padding: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)), var(--glass-bg);
  -webkit-backdrop-filter: blur(24px) saturate(180%); backdrop-filter: blur(24px) saturate(180%); }
.aud-screen video { border-radius: 15px; }
.aud-mini { color: #fff; border: 1px solid var(--glass-edge);
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.03)), var(--glass-bg);
  -webkit-backdrop-filter: blur(22px) saturate(180%); backdrop-filter: blur(22px) saturate(180%); box-shadow: var(--glass-shadow); }
.aud.waiting .aud-pill { animation: audpulse 1.8s ease-in-out infinite; }
@keyframes audpulse { 0%, 100% { box-shadow: var(--glass-shadow), 0 0 0 0 rgba(255,138,61,.5); } 50% { box-shadow: var(--glass-shadow), 0 0 0 10px rgba(255,138,61,0); } }
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header, .aud-pill, .aud-mini, .aud-screen, .nav { background-color: rgba(8,12,26,.94); }
}
@media (max-width: 1040px) { .nav { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), rgba(6, 9, 20, .9); -webkit-backdrop-filter: blur(36px) saturate(180%); backdrop-filter: blur(36px) saturate(180%); } }

/* ================= Compact glass header, stuck to the top ================= */
.site-header, .standalone .site-header { top: 0; margin: 0; border-radius: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.10);
  padding-top: env(safe-area-inset-top, 0px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.8), inset 0 -1px 0 rgba(255,255,255,.04); }
.site-header::before { inset: 0; height: auto; border-radius: 0; opacity: .35; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 70%); }
/* glass continues up behind the phone status bar */
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 140px; pointer-events: none; background: rgba(8,12,26,.9); }
.standalone body::before { display: none; }
.header-row { min-height: 54px; gap: 12px; }
.brand { gap: 9px; }
.brand img { width: 34px; height: 34px; }
.brand-name b { font-size: .9rem; letter-spacing: .07em; }
.brand-name span { font-size: .58rem; letter-spacing: .18em; }
.nav a { font-size: .86rem; padding: 6px 10px; }
.nav .btn { padding: .65em 1.05em; font-size: .72rem; margin-left: 8px; }
.nav-toggle { width: 38px; height: 38px; border-radius: 12px; }
.nav-toggle span { left: 11px; right: 11px; }
.nav-toggle span:nth-child(1) { top: 12px; } .nav-toggle span:nth-child(2) { top: 18px; right: 16px; } .nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1), .nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 18px; }
.scroll-progress { left: 0; max-width: none; bottom: -1px; border-radius: 0; }
[id] { scroll-margin-top: calc(env(safe-area-inset-top, 0px) + 70px); }
@media (max-width: 1040px) {
  .nav { top: calc(100% + 6px); left: 8px; right: 8px; border-radius: 20px; max-height: calc(100svh - 80px - env(safe-area-inset-top, 0px)); }
  .nav a { font-size: 1.45rem; padding: 11px 4px; }
  .nav .btn { font-size: .85rem; padding: 1em 1.3em; margin: 16px 0 0; }
}
@media (max-width: 560px) { .header-row { min-height: 52px; } .brand img { width: 32px; height: 32px; } .brand-name b { font-size: .84rem; } .brand-name span { font-size: .54rem; } }
.site-header { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), rgba(8,12,26,.74); -webkit-backdrop-filter: blur(24px) saturate(180%); backdrop-filter: blur(24px) saturate(180%); }
@media (min-width: 1041px) { .site-header { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)), rgba(8,12,26,.7); } }
@media (max-width: 1040px) { .nav { background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)), rgba(6,9,20,.95); } }

/* ================= Stylish glass v2 ================= */
.site-header, .standalone .site-header {
  background:
    radial-gradient(55% 160% at 0% 0%, rgba(47,107,255,.26), transparent 60%),
    radial-gradient(45% 160% at 100% 0%, rgba(245,196,81,.16), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 60%),
    rgba(8,12,26,.72);
  -webkit-backdrop-filter: blur(26px) saturate(190%) contrast(1.05); backdrop-filter: blur(26px) saturate(190%) contrast(1.05);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(124,212,255,0), rgba(124,212,255,.55) 20%, rgba(143,123,255,.45) 45%, rgba(245,196,81,.6) 70%, rgba(255,122,61,.45) 85%, rgba(255,122,61,0)) 1;
  box-shadow: 0 12px 34px -20px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.14); }
.site-header::before { opacity: .5; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 65%); }
.nav a { border-radius: 999px; transition: background .25s, color .25s, box-shadow .25s; }
@media (min-width: 1041px) {
  .nav a:hover, .nav a[aria-current="page"] { background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.28), inset 0 0 0 1px rgba(255,255,255,.08); }
  .nav .btn { box-shadow: 0 8px 22px -10px rgba(255,138,61,.9), inset 0 1px 0 rgba(255,255,255,.7), inset 0 -2px 6px rgba(168,90,20,.35); }
}
.nav-toggle { background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 6px 16px -8px rgba(0,0,0,.8); }
.brand img { box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 0 18px -4px rgba(124,212,255,.55); }

/* iridescent rim for glass pieces */
.aud-pill::after, .aud-mini::after, .aud-screen::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.55), rgba(124,212,255,.35) 25%, rgba(255,255,255,.06) 50%, rgba(245,196,81,.45) 75%, rgba(255,122,61,.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.aud-mini, .aud-screen { position: relative; }
.aud-pill, .aud-mini {
  border-color: transparent;
  background:
    radial-gradient(60% 180% at 0% 0%, rgba(47,107,255,.28), transparent 60%),
    radial-gradient(50% 180% at 100% 100%, rgba(255,122,61,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03) 55%),
    rgba(10,15,32,.55);
  -webkit-backdrop-filter: blur(26px) saturate(200%) contrast(1.05); backdrop-filter: blur(26px) saturate(200%) contrast(1.05);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.3), inset 0 -1px 0 rgba(255,255,255,.06); }
.aud-btn { background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)); border-color: rgba(255,255,255,.18); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 4px 10px -6px rgba(0,0,0,.8); }
.aud-btn:hover { background: linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,.08)); }
.aud-screen { border-color: transparent; background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)), rgba(10,15,32,.5); }

/* ---------- About page banner ---------- */
.about-banner { position: relative; overflow: hidden; isolation: isolate; background: var(--void); min-height: clamp(340px, 34vw, 460px); display: flex; align-items: center; }
.about-banner picture, .about-banner img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.about-banner img { object-fit: cover; object-position: 72% 8%; max-width: none; }
.about-banner::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(3,5,12,.96) 0%, rgba(3,5,12,.86) 30%, rgba(3,5,12,.35) 55%, rgba(3,5,12,0) 72%),
              linear-gradient(0deg, var(--void) 0%, rgba(3,5,12,0) 28%); }
.about-banner::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(124,212,255,.5), rgba(245,196,81,.6), transparent); }
.about-banner-copy { display: grid; gap: 16px; padding-block: clamp(48px, 6vw, 72px); width: 100%; }
.about-banner-copy > * { max-width: 560px; }
.about-banner h1 { font-size: clamp(2.3rem, 4.6vw, 4rem); line-height: .92; }
.about-banner .lede { color: #D3DAEE; font-size: clamp(1rem, 1.2vw, 1.12rem); }
@media (max-width: 700px) {
  .about-banner { min-height: 0; display: block; }
  .about-banner picture, .about-banner img { position: relative; inset: auto; height: auto; aspect-ratio: 800 / 515; }
  .about-banner img { object-position: 50% 20%; }
  .about-banner::before { background: linear-gradient(0deg, var(--void) 0%, rgba(3,5,12,.0) 42%); height: calc(100vw * 515 / 800); bottom: auto; }
  .about-banner-copy { padding-block: 0 44px; margin-top: -36px; position: relative; }
  .about-banner h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
}
.speaker-banner img { object-position: 78% 12%; }
@media (max-width: 700px) { .speaker-banner img { object-position: 60% 15%; } .speaker-banner .btn-row { margin-top: 4px; } }

/* ================= Home hero: stage photo background ================= */
.hero.hero-stage { min-height: min(820px, 92vh); display: flex; align-items: center; }
.hero.hero-stage > .wrap { width: 100%; }
.hero-stage .hero-photo, .hero-stage .hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-stage .hero-photo img { object-fit: cover; object-position: 78% 30%; }
.hero-stage .hero-bg::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,5,12,.94) 0%, rgba(3,5,12,.86) 30%, rgba(3,5,12,.45) 52%, rgba(3,5,12,0) 72%),
    linear-gradient(180deg, rgba(3,5,12,.55) 0%, rgba(3,5,12,0) 22%, rgba(3,5,12,0) 72%, var(--void) 100%); }
.hero-stage .hero-grid { display: block; position: relative; padding-top: clamp(110px, 12vw, 150px); }
.hero-stage .hero-copy { max-width: 640px; padding-bottom: clamp(64px, 8vw, 110px); }
.hero-stage h1 { text-shadow: 0 4px 30px rgba(0,0,0,.45); }
.hero-stage .lede { color: #D5DCEE; }
.hero-stage-card { right: clamp(0px, 2vw, 24px); bottom: clamp(56px, 8vw, 100px); left: auto; top: auto; }
@media (min-width: 1600px) { .hero-stage .hero-photo img { object-position: 70% 30%; } }
@media (max-width: 1040px) {
  .hero-stage .hero-bg::after { background:
    linear-gradient(90deg, rgba(3,5,12,.95) 0%, rgba(3,5,12,.82) 45%, rgba(3,5,12,.3) 75%, rgba(3,5,12,.1) 100%),
    linear-gradient(180deg, rgba(3,5,12,.5) 0%, rgba(3,5,12,0) 22%, rgba(3,5,12,0) 70%, var(--void) 100%); }
  .hero-stage-card { display: none; }
}
@media (max-width: 700px) {
  .hero.hero-stage { display: block; min-height: 0; }
  .hero-stage .hero-bg { position: relative; inset: auto; z-index: 0; }
  .hero-stage .hero-photo { position: relative; display: block; aspect-ratio: 800 / 634; height: auto; }
  .hero-stage .hero-photo img { object-position: 60% 20%; }
  .hero-stage .hero-bg::after { background: linear-gradient(180deg, rgba(3,5,12,.55) 0%, rgba(3,5,12,0) 24%, rgba(3,5,12,0) 55%, var(--void) 100%); }
  .hero-stage .hero-grid { padding-top: 0; margin-top: -64px; z-index: 2; }
  .hero-stage .hero-copy { padding-top: 0; padding-bottom: 56px; gap: 20px; max-width: none; }
}

/* ================= Home finale: portrait in the suit ================= */
.finale.finale-portrait { text-align: left; padding-bottom: 0; }
.finale-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px); align-items: end; }
.finale-copy { padding-bottom: clamp(110px, 14vw, 190px); }
.finale-portrait .lede { margin-left: 0; }
.finale-portrait .btn-row { justify-content: flex-start; }
.finale-portrait::before { left: auto; right: -200px; transform: none; }
.finale-visual { position: relative; justify-self: end; width: min(480px, 100%); aspect-ratio: 760 / 989; }
.finale-visual .sun { position: absolute; left: 50%; top: 4%; width: 78%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle at 50% 58%, #FFE3A0 0%, #F5C451 20%, #FF8A3D 42%, rgba(255,77,46,.4) 60%, transparent 71%); opacity: .9; }
.finale-visual .ring { position: absolute; left: 50%; top: -2%; width: 92%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; border: 1px solid rgba(255,227,160,.3); }
.finale-cutout { position: absolute; left: 0; bottom: 0; width: 100%; height: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 82%, transparent 100%); mask-image: linear-gradient(180deg, #000 82%, transparent 100%); }
@media (max-width: 900px) {
  .finale.finale-portrait { text-align: center; }
  .finale-grid { grid-template-columns: 1fr; }
  .finale-copy { padding-bottom: 36px; }
  .finale-portrait .lede { margin-inline: auto; }
  .finale-portrait .btn-row { justify-content: center; }
  .finale-portrait::before { left: 50%; right: auto; transform: translateX(-50%); }
  .finale-visual { justify-self: center; width: min(340px, 84%); }
}
/* hero + finale refinements */
.hero-stage .hero-photo img { object-position: 46% 30%; }
.hero-stage .hero-copy { max-width: 590px; }
@media (min-width: 1600px) { .hero-stage .hero-photo img { object-position: 60% 30%; } }
@media (max-width: 700px) { .hero-stage .hero-photo img { object-position: 60% 20%; } .hero-stage .hero-copy { max-width: none; } }
.finale-portrait::before { right: -60px; }
.finale-cutout { -webkit-mask-image: radial-gradient(ellipse 62% 78% at 50% 36%, #000 62%, transparent 100%); mask-image: radial-gradient(ellipse 62% 78% at 50% 36%, #000 62%, transparent 100%); }
.finale-portrait::before { right: -80px; animation: breathe3 7s ease-in-out infinite alternate; }
@keyframes breathe3 { from { transform: scale(1); } to { transform: scale(1.05); } }
@media (max-width: 900px) { .finale-portrait::before { right: auto; animation-name: breathe2; } }
.hero-stage .hero-photo img { object-position: 57% 30%; }
@media (max-width: 700px) { .hero-stage .hero-photo img { object-position: 60% 20%; } }
.finale-cutout {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%), linear-gradient(180deg, #000 70%, transparent 98%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%), linear-gradient(180deg, #000 70%, transparent 98%);
  mask-composite: intersect; }
