/* ==========================================================================
   AI ANIMATION SUMMIT — v3 "Premiere"
   The $100k pass on v2 "Daylight". Same copy, same structure — every
   surface elevated: film-grain texture on the dark blocks, a larger display
   scale, gradient-crafted buttons, color-keyed doors, evidence cards for
   the money proof, a drop cap on the essay, a poster-style info ticker,
   sparkle accents, and a dark showpiece closer.

   Palette is the poster's own rainbow on a soft daylight canvas; the hero
   and three punctuation blocks keep the deep-indigo night sky.
   ========================================================================== */

:root {
  /* --- Surfaces ------------------------------------------------------- */
  /* Warm daylight family — the cream hero flows into these. The indigo
     blocks, ticker and footer stay dark as deliberate contrast anchors. */
  --bg:        #FBF7EF;   /* warm off-white */
  --bg-alt:    #F7EDE0;   /* warm sand, for banding sections */
  --surface:   #FFFFFF;
  --hero-ink:  #171246;
  --ink:       #100C33;

  /* --- Text ----------------------------------------------------------- */
  --text:        #1B1740;
  --text-muted:  #453F66;
  --on-dark:       #F4F3FB;
  --on-dark-muted: #B7B3DA;

  /* --- Accents: the poster's rainbow ---------------------------------- */
  --cyan:    #00B8D9;
  --magenta: #FF2E86;
  --purple:  #7B3FE4;
  --orange:  #FF7A2F;
  --lime:    #2FB463;
  --gold:    #F5B301;

  --cyan-lift:    #38D3EE;
  --magenta-lift: #FF5FA0;
  --magenta-deep: #E0186B;   /* gradient-button end stop — AA with white */

  --glow: rgba(123,63,228,.16);

  --rainbow: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta), var(--orange));
  --btn-grad: linear-gradient(115deg, var(--purple) 10%, var(--magenta-deep) 90%);

  /* Header gradient — deepened orange -> raspberry -> purple. Every stop
     holds >=3:1 on cream AND on the slightly darker alt sections, so
     display-size type stays legible wherever an h2 lands. */
  --header-grad: linear-gradient(100deg, #D95604 5%, #E0186B 48%, #7B3FE4 95%);

  /* The cream hero field */
  --cream: #FFF8EF;

  --border:      rgba(27,23,64,.12);
  --border-soft: rgba(27,23,64,.07);
  --border-dark: rgba(255,255,255,.14);

  /* --- Film grain (SVG turbulence, tiled) ------------------------------ */
  --grain: 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='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");

  /* --- Depth ---------------------------------------------------------- */
  --shadow-sm: 0 2px 8px rgba(27,23,64,.06);
  --shadow-md: 0 10px 30px rgba(27,23,64,.10);
  --shadow-lg: 0 24px 60px rgba(27,23,64,.16);
  --shadow-pop: 0 12px 34px rgba(123,63,228,.30);

  /* --- Radius --------------------------------------------------------- */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* --- Motion --------------------------------------------------------- */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, .84, .44, 1);
  --t: .28s var(--ease);

  /* --- Type ----------------------------------------------------------- */
  --font-display: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  --font-body:    'Manrope', -apple-system, sans-serif;
  --font-util:    'Chakra Petch', 'Courier New', monospace;

  --gutter: clamp(20px, 5vw, 56px);
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  /* 16px floor everywhere — below 16 iOS auto-zooms form fields and body
     copy drops under the mobile legibility minimum. */
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--purple); color: #fff; }

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ==========================================================================
   TYPE
   ========================================================================== */

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
  /* Colourful headers on light sections — every stop >=3:1 for display type */
  background: var(--header-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; }
h4 { font-family: var(--font-body); font-weight: 700; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section__lede {
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0 0 44px;
}

.section__cue {
  font-family: var(--font-util);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 18px !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__cue::before {
  content: "";
  width: 38px; height: 3px;
  border-radius: 3px;
  background: var(--rainbow);
  flex: none;
}

.wrap--narrow p { font-size: 1.07rem; max-width: 66ch; }

.beat {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem) !important;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text) !important;
  max-width: none !important;
  margin: .35em 0 .6em !important;
}

.emph {
  font-weight: 700;
  font-size: 1.18rem !important;
  color: var(--text) !important;
  max-width: 64ch;
}

.empty-note {
  position: relative;
  padding: 28px 30px 28px 58px;
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 62ch;
  margin: 0 !important;
}
.empty-note::before {
  content: "";
  position: absolute;
  left: 24px; top: 30px;
  width: 16px; height: 16px;
  background: var(--rainbow);
  border-radius: 50%;
  opacity: .85;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.wrap {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { width: min(820px, 100%); }

.section { padding-block: clamp(76px, 10vw, 144px); position: relative; }
.section--alt { background: var(--bg-alt); }

/* Vibrant gradient surface — used for the lead AI-animation stat band. */
.section--gradient {
  /* Slightly deeper than --header-grad so white body text clears AA over the
     warm (left) end of the band. Headers still use --header-grad for text. */
  background: linear-gradient(100deg, #C24D03 0%, #E0186B 48%, #7B3FE4 100%);
  color: #fff;
}
.section--gradient::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .06;
  pointer-events: none;
}
.section--gradient > * { position: relative; z-index: 1; }
.section--gradient .h2 { background: none; color: #fff; }
.section--gradient .section__cue { color: rgba(255,255,255,.95); }
.section--gradient .section__cue::before { background: rgba(255,255,255,.85); }
.section--gradient .section__lede,
.section--gradient .section__lede strong { color: #fff; }
.section--gradient .market__src { color: rgba(255,255,255,.85); }
.section--gradient .market__src em { color: #fff; }

.section p { margin-block: 0 1em; }

/* Deep-indigo punctuation block — with film grain and a rainbow hairline
   along its top edge so the cut into darkness reads deliberate. */
.section--paper {
  background:
    radial-gradient(circle at 12% 0%, rgba(123,63,228,.35), transparent 45%),
    radial-gradient(circle at 92% 100%, rgba(255,46,134,.22), transparent 46%),
    var(--hero-ink);
  color: var(--on-dark);
}
.section--paper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
  opacity: .9;
}
.section--paper::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .05;
  pointer-events: none;
}
.section--paper > * { position: relative; z-index: 1; }
.section--paper .h2 { background: none; color: #fff; }
.section--paper .section__lede { color: var(--on-dark-muted); }
.section--paper .section__cue { color: var(--cyan-lift); }
.section--paper p { color: var(--on-dark-muted); }
.section--paper .beat { color: #fff !important; }
.section--paper .emph { color: #fff !important; }
.section--paper .empty-note {
  border-color: var(--border-dark);
  background: rgba(255,255,255,.05);
  color: var(--on-dark-muted);
}

/* Drop cap on the essay's opening paragraph — an editorial, printed touch.
   Scoped to the story section only, so ledes elsewhere stay plain. */
#story .h2 + p::first-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.6em;
  line-height: .82;
  float: left;
  padding: .08em .12em 0 0;
  color: var(--cyan-lift);
}

/* ==========================================================================
   TICKER — poster-style info band under the hero
   ========================================================================== */

.ticker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  padding: 16px var(--gutter);
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-util);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-top: 1px solid var(--border-dark);
}
.ticker span { white-space: nowrap; }
.ticker a {
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t);
}
.ticker a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.ticker i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rainbow);
  flex: none;
}

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.is-stuck {
  background: rgba(244,243,251,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
/* iOS/WebKit: a backdrop-filter on the (stuck) nav bar stops the mobile menu
   drawer *inside* it from painting its background, so the menu went see-through
   once you scrolled. While the menu is open (body.is-locked), drop the filter
   and use a solid nav background so the drawer stays opaque at any scroll spot. */
body.is-locked .nav.is-stuck {
  background: #f4f3fb;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.nav__mark { text-decoration: none; display: grid; gap: 1px; }
.nav__mark-kicker {
  font-family: var(--font-util);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .26em;
  color: var(--purple);   /* 5.4:1 on cream — the deep raspberry fell short */
}
.nav__mark-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text);
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav__links a:hover { color: var(--text); background: rgba(27,23,64,.06); }

.nav__cta {
  background: var(--btn-grad) !important;
  color: #fff !important;
  font-weight: 800 !important;
  margin-left: 8px;
  border-radius: var(--r-pill) !important;
  padding: 9px 20px !important;
}
.nav__cta:hover { box-shadow: var(--shadow-pop); color: #fff !important; }

.hamburger {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  padding: 11px 9px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block; width: 100%; height: 3px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(16,12,51,.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 45;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 92px 22px 32px;
    /* Explicit opaque color + own compositing layer: iOS/WebKit was failing to
       paint the background when the drawer was set via var() on a transformed
       fixed element, making the menu see-through. */
    background-color: #ffffff;
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .34s var(--ease);
    z-index: 48;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a,
  .nav.is-stuck .nav__links a { color: var(--text); font-size: 1rem; padding: 13px 14px; }
  .nav__cta { margin: 10px 0 0; text-align: center; }

  /* Links cascade in as the panel opens — one polish borrowed and matched
     to our motion language. Reduced-motion collapses the delays to instant. */
  .nav__links a {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out),
                color var(--t), background var(--t);
  }
  .nav__links.is-open a { opacity: 1; transform: none; }
  .nav__links.is-open a:nth-child(1) { transition-delay: .10s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: .16s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: .22s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: .28s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: .34s; }
}

/* ==========================================================================
   BUTTONS — gradient-crafted, with a sweep on hover
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), background-position .4s var(--ease), color var(--t);
}
.btn--primary {
  background: linear-gradient(115deg, var(--purple) 0%, var(--magenta-deep) 55%, var(--purple) 100%);
  background-size: 220% 100%;
  background-position: 0% 0;
  color: #fff;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
  background-position: 95% 0;
  color: #fff;
}
.btn--lg { padding: 17px 40px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 132px 96px;
  overflow: hidden;
  color: var(--text);
  /* Cream daylight field with warm colour blooms — the poster's palette
     lighting an eggshell page rather than a night sky. */
  background:
    radial-gradient(circle at 12% 16%, rgba(232,93,4,.14), transparent 45%),
    radial-gradient(circle at 90% 68%, rgba(224,24,107,.12), transparent 45%),
    radial-gradient(circle at 50% 112%, rgba(123,63,228,.12), transparent 50%),
    var(--cream);
}
/* confetti — tiny brand-colour dots scattered in the cream */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(2px 2px at 21% 28%, rgba(232,93,4,.5), transparent 60%),
    radial-gradient(2px 2px at 74% 18%, rgba(0,184,217,.45), transparent 60%),
    radial-gradient(1.5px 1.5px at 44% 64%, rgba(224,24,107,.4), transparent 60%),
    radial-gradient(2px 2px at 91% 46%, rgba(123,63,228,.4), transparent 60%),
    radial-gradient(1.5px 1.5px at 10% 78%, rgba(245,179,1,.5), transparent 60%),
    radial-gradient(2px 2px at 63% 88%, rgba(47,180,99,.4), transparent 60%),
    radial-gradient(rgba(27,23,64,.045) 1px, transparent 1.5px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 52px 52px;
  pointer-events: none;
}
/* film grain — keeps the printed, tactile feel even on cream */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background-image: var(--grain);
  opacity: .04;
  pointer-events: none;
}

/* Static sparkles — the poster's magic, pinned in the negative space. */
.hero__spark {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero__spark--1 { top: 16%; left: 46%; width: 26px; color: var(--orange); opacity: .85; }
.hero__spark--2 { top: 68%; left: 6%; width: 16px; color: var(--magenta); opacity: .7; }
.hero__spark--3 { top: 24%; right: 5%; width: 20px; color: var(--purple); opacity: .75; }
@media (max-width: 900px) {
  /* Small screens keep a single sparkle, pinned clear of the chip and form. */
  .hero__spark--1 { top: 9%; left: auto; right: 8%; width: 20px; }
  .hero__spark--2 { display: none; }
  .hero__spark--3 { top: 38%; right: 4%; width: 14px; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(232,93,4,.16), 0 8px 24px rgba(123,63,228,.12);
  background: #0d0a2a;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--rainbow);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .6;
  pointer-events: none;
}
.hero__media img { width: 100%; height: auto; display: block; }
.hero__media.is-missing { display: none; }
.hero__inner:has(.hero__media.is-missing) { grid-template-columns: 1fr; max-width: 900px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 460px; }
}

.hero__dates {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-util);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(27,23,64,.08);
  box-shadow: 0 4px 14px rgba(232,93,4,.1);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin: 0 0 26px !important;
}
.hero__dates::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange), var(--magenta));
  flex: none;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.4vw, 4.9rem);
  line-height: .97;
  letter-spacing: -.035em;
  margin: 0 0 28px;
  font-weight: 800;
  color: var(--text);
  text-wrap: balance;
}
.hero__title .line { display: block; }
.hero__title .line--hot {
  position: relative;
  background: var(--header-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}
/* Payoff line + its animated EKG underline share a fit-content column so the
   heartbeat trace spans exactly the width of "Now build a studio." */
.hero__payoff { display: block; width: fit-content; max-width: 100%; }
.hero__ekg {
  display: block;
  width: 100%;
  height: 22px;
  margin-top: .1em;
  overflow: hidden;               /* clips the scrolling trace to the line width */
}
.hero__ekg-scroll {
  animation: ekgScroll 1.6s linear infinite;
  will-change: transform;
}

.hero__lede {
  max-width: 56ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  margin: 0 0 30px;
}

/* --- Countdown — white pills, gradient numerals ------------------------ */

.countdown {
  display: flex;
  gap: 10px;
  margin: 0 0 28px;
}
.cd-cell {
  min-width: 72px;
  padding: 13px 10px 10px;
  background: #fff;
  border: 1px solid rgba(27,23,64,.06);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(232,93,4,.1);
  text-align: center;
}
.cd-cell b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--header-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cd-cell span {
  display: block;
  margin-top: 5px;
  font-family: var(--font-util);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 560px) {
  .countdown { gap: 8px; }
  .cd-cell { min-width: 0; flex: 1; padding: 10px 4px 8px; }
  .cd-cell b { font-size: 1.4rem; }
}

/* --- Early-bird price + deadline urgency ------------------------------- */
/* Hero (light surface) */
.earlybird { margin: 4px 0 26px; }
.earlybird__tag {
  margin: 0 0 12px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px;
}
.earlybird__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -.01em;
  color: var(--magenta-deep);
}
.earlybird__note { color: var(--text-muted); font-size: .92rem; }
.earlybird__cap {
  margin: 0 0 10px;
  font-family: var(--font-util);
  font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--text-muted);
}

/* Closing CTA band (dark indigo surface) */
.cta-band__eb { margin: 0 0 20px; }
.cta-band__ebline {
  margin: 0 0 12px;
  font-family: var(--font-util);
  color: var(--on-dark-muted);
  font-size: .98rem;
}
.cta-band__ebline b { color: #fff; font-weight: 700; }
.countdown--band { justify-content: center; margin: 0 0 4px; }

/* --- Testimonials (real reviews from the sister summit) --------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 10px;
}
.tstmnl {
  margin: 0;
  background: #fff;
  border-radius: var(--r-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tstmnl__stars {
  color: #F5B301;
  font-size: 1.1rem;
  letter-spacing: 3px;
  line-height: 1;
}
.tstmnl__stars i { color: rgba(27,23,64,.2); font-style: normal; }
.tstmnl blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}
.tstmnl figcaption {
  margin-top: auto;
  font-family: var(--font-util);
  font-weight: 700;
  color: var(--text);
  font-size: .92rem;
}
.tstmnl__note {
  margin: 22px 0 0 !important;
  font-size: .84rem;
  color: var(--on-dark-muted);
}

/* --- "Who it isn't for" qualifier ------------------------------------- */
.not-for {
  margin-top: 34px;
  max-width: 780px;
  padding: 22px 26px;
  border: 1px dashed var(--border);
  border-radius: var(--r-md);
  background: rgba(123,63,228,.045);
}
.not-for__k {
  margin: 0 0 8px;
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--purple);
}
.not-for p:last-child { margin: 0; color: var(--text); }

/* --- FAQ -------------------------------------------------------------- */
.faq { max-width: 820px; margin-top: 10px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 20px 44px 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--purple);
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p {
  margin: 0 0 20px;
  color: var(--text-muted);
  max-width: 72ch;
  line-height: 1.6;
}
.faq__contact { margin-top: 26px; color: var(--text-muted); font-size: 1rem; }

/* --- Guarantee line inside the closing bands -------------------------- */
.cta-band__guarantee {
  margin: 18px 0 0;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--on-dark-muted);
}
.cta-band__guarantee b { color: #fff; font-weight: 700; }

/* --- Vertical media (9:16): hero showreel, gap before/after, money ad -- */
.vframe {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0d0a2a;
  box-shadow: 0 24px 60px rgba(232,93,4,.16), 0 8px 24px rgba(123,63,228,.12);
}
.vframe::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--rainbow);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .6;
  pointer-events: none;
  z-index: 2;
}
[data-vmedia] video {
  display: none;
  width: 100%; height: 100%;
  object-fit: cover;
}
[data-vmedia].is-live video { display: block; }
[data-vmedia].is-live .vmedia__ph { display: none; }

.vmedia__ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background:
    radial-gradient(circle at 30% 22%, rgba(123,63,228,.55), transparent 60%),
    radial-gradient(circle at 82% 88%, rgba(255,46,134,.4), transparent 55%),
    #0d0a2a;
  color: #fff;
}
.vmedia__ph svg { width: 44px; height: 44px; opacity: .92; }
.vmedia__ph span {
  font-family: var(--font-util);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.hero__media { max-width: 340px; margin-inline: auto; }
.vframe--sm { max-width: 300px; width: 100%; }

.vcompare {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  justify-items: center;
}
.vframe__tag {
  position: absolute;
  left: 12px; bottom: 12px;
  z-index: 3;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-util);
  font-size: .72rem; font-weight: 700;
  color: #fff;
  background: rgba(13,10,42,.6);
}
.vframe__tag--bad { background: rgba(224,24,107,.9); }
.vframe__tag--good { background: rgba(38,150,84,.92); }

.money__showcase {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.money__showcase .outcomes--proof { margin: 0; }

@media (max-width: 720px) {
  .hero__media { max-width: 260px; }
  .vframe--sm { max-width: 100%; }
  .money__showcase { grid-template-columns: 1fr; }
  .money__showcase .vframe--sm { max-width: 280px; margin-inline: auto; }
}

/* Launch state: empty media slots hidden until real clips are added.
   Remove is-off (gap/money) or is-missing (hero) to bring a slot back. */
.is-off { display: none !important; }
.money__showcase:has(.vframe.is-off) { grid-template-columns: 1fr; }

.speakers__more {
  margin: 28px 0 0;
  font-size: .98rem;
  color: var(--text-muted);
}

/* Footer wordmark is a link home; keep the gradient text, add a hover cue. */
.footer__name a { color: inherit; text-decoration: none; transition: opacity var(--t); }
.footer__name a:hover { opacity: .8; }

/* Schedule "coming soon" per-day note */
.sched__soon {
  margin: 0 !important;
  padding: 34px 6px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- Email capture (dark; used in the hero and the indigo closer) ------ */

.capture { max-width: 540px; margin: 0 0 44px; }
.capture__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.capture__field label {
  display: block;
  font-family: var(--font-util);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.capture .btn { width: 100%; }
.capture input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(27,23,64,.12);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;   /* never below 16px — stops iOS zoom-on-focus */
  min-width: 0;
  transition: border-color var(--t), box-shadow var(--t);
}
.capture input::placeholder { color: var(--text-muted); }
.capture input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--glow);
}
.capture__note {
  margin: 12px 0 0 !important;
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
}
.capture__note a { color: var(--text-muted); text-underline-offset: 3px; }
.capture__note a:hover { color: var(--purple); }
.capture__note.is-good { color: #157A4E; font-size: .94rem; font-weight: 600; line-height: 1.5; }
.capture.has-error .capture__note { color: #C2185B; }

/* Double opt-in hint under the form; hidden once the form is submitted. */
.capture__optin { margin: 8px 0 0; font-size: .8rem; color: var(--text-muted); text-align: center; }
.capture.is-done .capture__fields,
.capture.is-done .cf-turnstile,
.capture.is-done .capture__optin { display: none; }
.capture.has-error input:invalid,
.capture.has-error input:focus { border-color: var(--magenta); }

/* Dark variant inside the indigo closing panel. */
.cta-band .capture__field label { color: var(--on-dark-muted); }
.cta-band .capture input {
  background: rgba(255,255,255,.08);
  border-color: var(--border-dark);
  color: #fff;
}
.cta-band .capture input::placeholder { color: rgba(244,243,251,.55); }
.cta-band .capture input:focus {
  border-color: var(--cyan-lift);
  box-shadow: 0 0 0 4px rgba(56,211,238,.22);
}
.cta-band .capture__note { color: var(--on-dark-muted); }
.cta-band .capture__note a { color: var(--on-dark-muted); }
.cta-band .capture__note a:hover { color: var(--cyan-lift); }
.cta-band .capture__note.is-good { color: #6EE7B0; }
.cta-band .capture__optin { color: var(--on-dark-muted); }
.cta-band .capture.has-error .capture__note { color: var(--magenta-lift); }

.capture--lg { max-width: 560px; margin-inline: auto; }

@media (max-width: 560px) {
  .capture__fields { grid-template-columns: 1fr; gap: 10px; }
}

/* ==========================================================================
   AUDIENCE
   ========================================================================== */

.who__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.who__card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
}
.who__card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rainbow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.who__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.who__card:hover::before { transform: scaleX(1); }
.who__card p { margin: 0 !important; font-size: 1rem; color: var(--text-muted); }
.who__card p b { color: var(--text); font-weight: 800; }

@media (min-width: 900px) {
  .who__card--wide { grid-column: 1 / -1; }
  .who__card--wide::before { transform: scaleX(1); opacity: .8; }
}

/* ==========================================================================
   OUTCOMES / LISTS
   ========================================================================== */

.outcomes {
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}
.outcomes li {
  position: relative;
  padding: 18px 22px 18px 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 1rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.outcomes li:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }
.outcomes li::before {
  content: "";
  position: absolute;
  left: 20px; top: 22px;
  width: 16px; height: 16px;
  border-radius: 5px;
  background: var(--rainbow);
}
.outcomes li strong { color: var(--text); }

.section--paper .outcomes li {
  background: rgba(255,255,255,.05);
  border-color: var(--border-dark);
  color: var(--on-dark);
  box-shadow: none;
}
.section--paper .outcomes li strong { color: #fff; }

/* Evidence variant — the money proof. Figures step up into the display
   face and take the gradient, so the numbers carry the section. */
.outcomes--proof li {
  padding: 24px 26px 24px 56px;
  border-radius: var(--r-md);
  font-size: 1rem;
}
.outcomes--proof li::before { top: 28px; }
.outcomes--proof li strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45em;
  line-height: 1.15;
  letter-spacing: -.02em;
  background: linear-gradient(100deg, var(--purple), var(--magenta-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   PULLQUOTE
   ========================================================================== */

.pullquote {
  border-left: 4px solid var(--purple);
  padding: 4px 0 4px 26px;
  margin: 8px 0 0;
}
.pullquote p { color: var(--text-muted); max-width: 64ch; margin: 0 0 16px !important; }
.pullquote__kicker {
  font-family: var(--font-display);
  font-size: 1.6rem !important;
  font-weight: 800;
  color: var(--text) !important;
  letter-spacing: -.015em;
}
.section--paper .pullquote { border-left-color: var(--cyan-lift); }
.section--paper .pullquote p { color: var(--on-dark-muted); }
.section--paper .pullquote__kicker {
  background: linear-gradient(95deg, var(--cyan-lift), var(--magenta-lift));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

/* ==========================================================================
   MONEY
   ========================================================================== */

.money__intro { margin-bottom: 22px; }
.money__cue { font-weight: 700; color: var(--text) !important; margin-bottom: 22px !important; }
.money__moat {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text) !important;
  max-width: 26ch;
  margin-top: 8px !important;
}

/* ==========================================================================
   FOUR DOORS — each keyed to one of the poster's colors
   ========================================================================== */

.doors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.door {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--purple);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.door:nth-child(1) { border-top-color: var(--cyan); }
.door:nth-child(2) { border-top-color: var(--magenta); }
.door:nth-child(3) { border-top-color: var(--orange); }
.door:nth-child(4) { border-top-color: var(--lime); }
.door:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.door h3 { margin: 0 0 10px; font-size: 1.18rem; color: var(--text); }
.door p { margin: 0 !important; font-size: 1rem; color: var(--text-muted); }

.doors__close {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem) !important;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text) !important;
  max-width: 24ch;
}

/* ==========================================================================
   PRACTITIONERS
   ========================================================================== */

.practitioners__body {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--text) !important;
  max-width: 60ch;
  margin: 0 !important;
}

/* ==========================================================================
   CTA BAND — the dark showpiece closer
   ========================================================================== */

.cta-band {
  position: relative;
  margin-top: 48px;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 18% 0%, rgba(123,63,228,.5), transparent 55%),
    radial-gradient(circle at 88% 100%, rgba(255,46,134,.3), transparent 50%),
    var(--hero-ink);
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--rainbow);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .55;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .05;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .capture { margin-bottom: 0; }
.cta-band__note { margin: 16px 0 0 !important; font-size: .8rem; color: var(--on-dark-muted); }
.cta-band__note a { color: var(--on-dark-muted); text-underline-offset: 3px; }
.cta-band__note a:hover { color: var(--cyan-lift); }

/* ==========================================================================
   TESTIMONIAL PLACEHOLDER
   ========================================================================== */

.testimonial-hold {
  padding: 34px;
  border: 2px dashed var(--border-dark);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.05);
}
.testimonial-hold p { color: var(--on-dark-muted); margin: 0 0 10px !important; }
.testimonial-hold p:last-child { margin: 0 !important; }
.testimonial-hold b { color: #fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  padding-top: 64px;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
}
.footer::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .04;
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer__kicker { font-family: var(--font-util); font-size: .62rem; letter-spacing: .24em; color: var(--cyan-lift); }
.footer__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 6px 0 8px !important;
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}
.footer__line { font-family: var(--font-util); font-size: .84rem; color: var(--on-dark-muted); margin: 0 !important; }
.footer__links { display: grid; gap: 10px; align-content: start; justify-items: start; }
.footer__links a {
  color: var(--on-dark);
  opacity: .82;
  text-decoration: none;
  font-size: .92rem;
  transition: opacity var(--t), color var(--t);
}
.footer__links a:hover { opacity: 1; color: var(--cyan-lift); }
.footer__base {
  padding: 22px var(--gutter) 36px;
  border-top: 1px solid var(--border-dark);
  text-align: center;
}
.footer__base p { margin: 0 !important; font-size: .82rem; color: var(--on-dark-muted); }
.footer__fine { margin-top: 8px !important; font-size: .74rem !important; opacity: .82; }
.footer__fine a { color: var(--on-dark-muted); text-underline-offset: 2px; }
.footer__fine a:hover { color: var(--cyan-lift); }

@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ==========================================================================
   FLOATING UI
   ========================================================================== */

.floaters {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 55;
  display: grid;
  justify-items: end;
}
.float-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  background: var(--btn-grad);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: var(--shadow-pop);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), box-shadow var(--t);
  transform: translateY(8px);
}
.float-cta.is-in { opacity: 1; pointer-events: auto; transform: none; }
.float-cta:hover { box-shadow: 0 14px 40px rgba(123,63,228,.45); transform: translateY(-3px); }
.float-cta__dot { width: 8px; height: 8px; border-radius: 50%; background: #6EE7B0; flex: none; }

.to-top {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 55;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  color: var(--text);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), border-color var(--t);
  transform: translateY(8px);
}
.to-top.is-in { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { border-color: var(--purple); color: var(--purple); }

@media (max-width: 560px) {
  .floaters { right: 14px; bottom: 14px; }
  .to-top { left: 14px; bottom: 14px; }
  .float-cta { padding: 13px 22px; }
}

/* ==========================================================================
   PHONE CONVERSION DIET
   On small screens the job is: scroll, read the hook, enter a name, book.
   Decorative extras that lengthen that path are removed; the countdown and
   both booking CTAs stay.
   ========================================================================== */

@media (max-width: 640px) {
  /* Decorative extras out of the path */
  .ticker { display: none; }
  .hero__spark { display: none; }
  .to-top { display: none; }

  /* Hero tightens so chip -> headline -> countdown -> form fit sooner */
  .hero { padding-block: 100px 56px; min-height: 0; }
  .hero__dates { margin-bottom: 20px !important; }
  .hero__title { margin-bottom: 20px; }
  .hero__lede {
    margin-bottom: 24px;
    /* Keep the hook, trim the scroll: first three lines carry the pitch */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .countdown { margin-bottom: 22px; }

  /* Poster art centres under the form instead of hugging the left edge */
  .hero__media { margin-inline: auto; }

  /* Lighter section rhythm — less thumb travel between beats */
  .section { padding-block: 60px; }
  .who__card { padding: 22px 20px; }
}

@media (max-width: 480px) {
  /* The chip already states the dates — the nav dupe just adds noise */
  .nav__mark-kicker { display: none; }
}

/* ==========================================================================
   SPEAKERS — circular-avatar cards + bio modal
   ========================================================================== */

.speakers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.speaker { display: flex; }
.speaker__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 30px 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.speaker__btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Circular avatar — gradient ring, photo or initials inside. */
.sp-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(123,63,228,.28);
  background-clip: padding-box;
}
.speaker__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -.01em;
}
.speaker__role { font-size: .9rem; color: var(--text-muted); }
.speaker__co { font-size: .82rem; font-weight: 600; color: var(--purple); }
.speaker__cue {
  margin-top: 12px;
  font-family: var(--font-util);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta-deep);
}

/* --- Modal ------------------------------------------------------------- */

.sp-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.sp-modal__scrim {
  position: absolute; inset: 0;
  background: rgba(16,12,51,.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.sp-modal.is-open .sp-modal__scrim { opacity: 1; }

.sp-modal__panel {
  position: relative;
  width: min(540px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 34px 32px 30px;
  box-shadow: var(--shadow-lg);
  transform: translateY(14px) scale(.98);
  opacity: 0;
  transition: transform .3s var(--ease-out), opacity .25s var(--ease);
}
.sp-modal.is-open .sp-modal__panel { transform: none; opacity: 1; }
.sp-modal__panel::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--header-grad);
}

.sp-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background var(--t), color var(--t);
}
.sp-modal__close:hover { background: var(--magenta); color: #fff; }

.sp-modal__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.sp-avatar--lg {
  width: 84px; height: 84px;
  margin-bottom: 0;
  font-size: 1.7rem;
  flex: none;
}
.sp-modal__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0 0 4px;
}
.sp-modal__role { margin: 0; color: var(--text-muted); font-size: .95rem; font-weight: 600; }

.sp-modal__bio {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  white-space: pre-line;   /* honours the \n\n paragraph breaks in bios */
  margin: 0 0 16px;
}
.sp-modal__more {
  border: 0;
  background: none;
  padding: 0;
  font-family: var(--font-util);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  cursor: pointer;
  margin-bottom: 22px;
}
.sp-modal__more:hover { color: var(--magenta-deep); }

.sp-modal__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.sp-social {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.sp-social svg { width: 19px; height: 19px; }
.sp-social:hover {
  background: var(--header-grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* Body scroll lock while the modal is open. */
body.is-locked { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .sp-modal__scrim, .sp-modal__panel { transition: none; }
}

@media (max-width: 560px) {
  .speakers { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .speaker__btn { padding: 24px 12px 20px; }
  .sp-avatar { width: 78px; height: 78px; font-size: 1.6rem; }
  .sp-modal__panel { padding: 30px 22px 26px; }
  .sp-modal__head { gap: 14px; }
  .sp-avatar--lg { width: 68px; height: 68px; }
}

/* ==========================================================================
   SCHEDULE — day tabs + expandable talk rows
   ========================================================================== */

.sched__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.sched__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 13px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), color var(--t);
}
.sched__tab:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.sched__tab-day {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.01em;
  color: var(--text);
}
.sched__tab-sub {
  font-family: var(--font-util);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.sched__tab[aria-selected="true"] {
  background: var(--header-grad);
  border-color: transparent;
  box-shadow: var(--shadow-pop);
}
.sched__tab[aria-selected="true"] .sched__tab-day,
.sched__tab[aria-selected="true"] .sched__tab-sub { color: #fff; }

/* --- talk accordion --- */

.sched__panel { display: grid; gap: 10px; }

.talk {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.talk__row {
  list-style: none;
  display: grid;
  grid-template-columns: 128px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  transition: background var(--t);
}
.talk__row::-webkit-details-marker { display: none; }   /* hide native triangle */
.talk__row:hover { background: rgba(123,63,228,.04); }
.talk__time {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--magenta-deep);
  font-variant-numeric: tabular-nums;
}
.talk__main { display: flex; flex-direction: column; gap: 2px; }
.talk__title { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--text); letter-spacing: -.01em; }
.talk__speaker { font-size: .9rem; color: var(--text-muted); }
.talk__chev {
  width: 12px; height: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  justify-self: center;
  transition: transform var(--t);
}
.talk[open] .talk__chev { transform: rotate(-135deg); }

.talk__detail {
  padding: 0 22px 22px 168px;
  color: var(--text-muted);
}
.talk__detail p { margin: 0 0 8px; }
.talk__when {
  font-family: var(--font-util);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
}

@media (max-width: 640px) {
  .sched__tabs { gap: 8px; }
  .sched__tab { flex: 1; padding: 11px 14px; align-items: center; text-align: center; }
  .talk__row { grid-template-columns: 1fr 20px; gap: 4px 14px; padding: 16px 18px; }
  .talk__time { grid-column: 1 / -1; }
  .talk__chev { grid-row: 1 / 3; }
  .talk__detail { padding: 0 18px 18px; }
}

/* Cloudflare Turnstile widget (only renders when a site key is configured). */
.cf-turnstile { margin: 4px 0 14px; }
.cta-band .cf-turnstile { display: flex; justify-content: center; }

/* ==========================================================================
   EMPHASIS — power words. Bold + full-strength colour so they pop out of the
   muted body copy. On the indigo blocks, emphasis goes white.
   (outcomes--proof keeps its own gradient figures, so it's excluded.)
   ========================================================================== */

.section p strong,
.hero__lede strong,
.bridge__body strong,
.practitioners__body strong,
.outcomes:not(.outcomes--proof) li strong {
  color: var(--text);
  font-weight: 700;
}
.section--paper p strong,
.section--paper .outcomes:not(.outcomes--proof) li strong {
  color: #fff;
}

/* Contact email — visible and easy to find (footer brand block + CTA band).
   Both sit on dark surfaces, so the address takes the bright cyan accent. */
.footer__contact { margin: 12px 0 0 !important; font-size: .9rem; color: var(--on-dark-muted); }
.footer__contact a { color: var(--cyan-lift); font-weight: 600; text-underline-offset: 3px; }
.footer__contact a:hover { text-decoration: underline; }

.cta-band__contact { margin: 14px 0 0 !important; font-size: .85rem; color: var(--on-dark-muted); text-align: center; }
.cta-band__contact a { color: var(--cyan-lift); font-weight: 600; text-underline-offset: 3px; }
.cta-band__contact a:hover { text-decoration: underline; }

/* Speaker credentials strip — the pipe-separated expert line, set apart from
   the narrative bio in the utility face + accent colour. */
.sp-modal__creds {
  margin: 2px 0 18px !important;
  font-family: var(--font-util);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--purple);
}

/* ==========================================================================
   MARKET STAT BAND (Holywater report data)
   ========================================================================== */

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.market-stat {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.market-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.market-stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 12px;
  background: linear-gradient(100deg, var(--purple), var(--magenta-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}
.market-stat span { font-size: 1rem; color: var(--text-muted); }
.market-stat span strong { color: var(--text); font-weight: 700; }

.market__src {
  font-size: .82rem;
  color: var(--text-muted);
  max-width: 74ch;
  margin: 0 !important;
}
.market__src em { font-style: italic; color: var(--text); }

/* WHY NOW — the two barriers just fell */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__k {
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 10px;
}
.why-card p { font-size: .98rem; color: var(--text-muted); margin: 0; }
.why-card p strong { color: var(--text); font-weight: 700; }
.why-close {
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 60ch;
  margin: 0;
  font-weight: 500;
}
.why-close strong { font-weight: 800; }
/* On the dark surface, keep the closing line and card text readable. */
.section--paper .why-close { color: var(--on-dark-muted); }
.section--paper .why-close strong { color: #fff; }
