/* ============================================================
   Averum pitch — financial broadsheet × terminal monitor
   ------------------------------------------------------------
   Aesthetic: editorial dark theme. Fraunces serif headlines pair
   with IBM Plex Sans/Mono. Single deep-midnight ground with two
   accents — electric blue (live/data) + champagne (editorial).
   The whole deck is dressed like a running terminal — a faint
   decision feed drifts in the background, mono labels pin every
   slide, status rails persist. The "fun" lives in the precision.
   ============================================================ */

:root {
  /* Surface */
  --bg:        #06070c;
  --bg-2:      #0a0d15;
  --bg-3:      #0f1322;
  --bg-card:   #0c1018;
  --surface-glass: rgba(12,16,24,0.72);

  /* Ink */
  --ink:       #f3ecdb;   /* cream — editorial paper, not pure white */
  --ink-mid:   #c0b9a8;
  --ink-low:   #7c7868;
  --ink-min:   #45433a;

  /* Lines */
  --rule:   rgba(243, 236, 219, 0.08);
  --rule-2: rgba(243, 236, 219, 0.16);
  --rule-3: rgba(243, 236, 219, 0.28);

  /* Accents */
  --cool:      #6db8ff;   /* live · data · agents */
  --cool-2:    #9ad6ff;
  --cool-3:    #4a96e8;
  --warm:      #e8c97a;   /* champagne — editorial · outcomes */
  --warm-2:    #f4dca0;
  --warm-3:    #b89a4a;
  --alarm:     #e26b5c;
  --green:     #7fd4a3;

  --cool-soft: rgba(109, 184, 255, 0.12);
  --warm-soft: rgba(232, 201, 122, 0.10);

  /* Type */
  --serif:  "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans:   "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono:   "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Type scale (fluid) */
  --fs-titanic: clamp(56px, 9vw, 168px);
  --fs-mega:    clamp(46px, 6vw, 108px);
  --fs-display: clamp(38px, 4.6vw, 84px);
  --fs-h1:      clamp(30px, 3.4vw, 60px);
  --fs-h2:      clamp(24px, 2.6vw, 44px);
  --fs-h3:      clamp(20px, 1.9vw, 30px);
  --fs-lead:    clamp(17px, 1.35vw, 23px);
  --fs-body:    clamp(15px, 1.05vw, 18px);
  --fs-small:   clamp(13px, 0.85vw, 15px);
  --fs-eyebrow: clamp(11px, 0.78vw, 13px);

  /* Spacing */
  --gutter:  clamp(28px, 5.5vw, 96px);
  --pad-y:   clamp(36px, 5.5vh, 80px);
  --rail-h:  44px;

  /* Motion */
  --slide-anim: 520ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss02", "ss03", "cv01";
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Subtle global texture: faint grid + warm vignette */
.stage::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(243,236,219,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,236,219,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.stage::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(232,201,122,0.05), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(109,184,255,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   STAGE / PAGER
   ============================================================ */
.stage {
  position: fixed;
  inset: 0;
  background: var(--bg);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background: var(--bg);
  color: var(--ink);
  overflow: auto;
  padding: calc(var(--pad-y) + var(--rail-h) + 12px) var(--gutter)
           calc(var(--pad-y) + var(--rail-h) + 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.995);
  filter: blur(6px);
  transition: opacity var(--slide-anim), transform var(--slide-anim),
              filter var(--slide-anim), visibility 0s linear var(--slide-anim);
  scrollbar-width: thin;
  scrollbar-color: rgba(243,236,219,0.16) transparent;
  z-index: 1;
}
.slide::-webkit-scrollbar { width: 8px; }
.slide::-webkit-scrollbar-thumb { background: rgba(243,236,219,0.14); border-radius: 4px; }
.slide::-webkit-scrollbar-track { background: transparent; }

.slide[data-active="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity var(--slide-anim), transform var(--slide-anim),
              filter var(--slide-anim), visibility 0s linear 0s;
  z-index: 2;
}

.slide-inner {
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--pad-y) * 2 - var(--rail-h) * 2 - 24px);
  gap: clamp(20px, 3vh, 36px);
  position: relative;
  z-index: 2;
}

/* ============================================================
   PERSISTENT CHROME — running header, bottom rail, decision feed
   ============================================================ */

/* Top progress bar */
.chrome-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(243,236,219,0.04);
  z-index: 50;
  pointer-events: none;
}
.chrome-top .bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cool-3), var(--cool-2));
  width: 0;
  transition: width 420ms cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 14px rgba(109,184,255,0.55);
}

/* Running editorial header */
.chrome-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--rail-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(180deg, var(--bg) 30%, rgba(6,7,12,0));
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.chrome-header > div { pointer-events: auto; }
.chrome-header .h-left { display: flex; align-items: center; gap: 16px; color: var(--ink-mid); }
.chrome-header .glyph {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--cool-2), var(--cool) 60%, var(--cool-3));
  clip-path: polygon(50% 0%, 100% 100%, 75% 100%, 50% 50%, 25% 100%, 0% 100%);
  filter: drop-shadow(0 0 7px rgba(109,184,255,0.55));
}
.chrome-header .wordmark {
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-size: 13px;
  text-transform: none;
}
.chrome-header .h-volume { color: var(--ink-low); }
.chrome-header .h-volume em { font-style: normal; color: var(--warm); }
.chrome-header .h-right { display: flex; align-items: center; gap: 16px; color: var(--ink-low); }
.chrome-header .h-right .live-pip { display: inline-flex; gap: 8px; align-items: center; color: var(--cool-2); }
.chrome-header .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cool-2);
  box-shadow: 0 0 0 0 rgba(154,214,255,0.6);
  animation: live-pulse 1.6s infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(154,214,255,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(154,214,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(154,214,255,0); }
}

/* Bottom rail — editorial credits + slide counter */
.chrome-rail {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--rail-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 40;
  pointer-events: none;
  background: linear-gradient(0deg, var(--bg) 30%, rgba(6,7,12,0));
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  color: var(--ink-low);
  text-transform: uppercase;
}
.chrome-rail .r-left { display: flex; align-items: center; gap: 18px; }
.chrome-rail .r-mid { display: flex; align-items: center; gap: 14px; color: var(--ink-min); }
.chrome-rail .r-mid kbd {
  font-family: var(--mono); font-size: 11px;
  padding: 1px 6px;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  background: rgba(243,236,219,0.04);
  color: var(--ink-mid);
}
.chrome-rail .r-right {
  font-variant-numeric: tabular-nums;
  font-family: var(--mono); color: var(--ink-mid);
}

/* Edge click affordances */
.edge {
  position: fixed; top: var(--rail-h); bottom: var(--rail-h);
  width: 14%;
  z-index: 30;
  cursor: pointer;
  transition: background 240ms ease;
}
.edge.left  { left: 0; }
.edge.right { right: 0; }
.edge.left:hover  { background: linear-gradient(90deg, rgba(109,184,255,0.06), rgba(109,184,255,0)); }
.edge.right:hover { background: linear-gradient(270deg, rgba(109,184,255,0.06), rgba(109,184,255,0)); }
@media (max-width: 760px) { .edge { width: 28%; } }

/* Chapter menu */
.menu-toggle {
  position: fixed;
  top: 8px; right: var(--gutter);
  width: 28px; height: 28px;
  background: transparent; border: 0;
  cursor: pointer;
  z-index: 60;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--ink-mid);
  transition: background 200ms ease;
}
.menu-toggle:hover span { background: var(--cool-2); }

.menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: rgba(6,7,12,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid var(--rule);
  z-index: 70;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
  padding: 80px 36px 40px;
}
.menu[data-open="true"] { transform: translateX(0); }
.menu .menu-section {
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cool); font-weight: 600;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.menu .menu-section:first-child { margin-top: 0; }
.menu button.menu-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px;
  align-items: baseline;
  width: 100%; padding: 11px 6px 11px 10px;
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 16px; color: var(--ink-mid);
  text-align: left; border-radius: 4px;
  transition: background 140ms ease, color 140ms ease;
}
.menu .menu-item .num { font-family: var(--mono); font-size: 13px; color: var(--ink-low); letter-spacing: 0.06em; }
.menu .menu-item .label .sub { display: block; font-size: 12px; color: var(--ink-low); margin-top: 2px; font-weight: 400; }
.menu .menu-item:hover { background: var(--cool-soft); color: var(--ink); }
.menu .menu-item[data-active="true"] { color: var(--warm); background: rgba(232,201,122,0.06); }
.menu .menu-item[data-active="true"] .num { color: var(--warm); }
.menu-close {
  position: absolute; top: 18px; right: 24px;
  width: 32px; height: 32px;
  background: transparent; border: 1px solid var(--rule-2);
  color: var(--ink-mid);
  font-size: 18px; cursor: pointer;
  border-radius: 4px;
}

/* Decision feed (background ambient) */
.feed-rail {
  position: fixed; left: 0; right: 0;
  bottom: var(--rail-h);
  height: 26px;
  overflow: hidden;
  pointer-events: none;
  z-index: 35;
  display: flex; align-items: center;
  background: linear-gradient(0deg, rgba(6,7,12,0.85), rgba(6,7,12,0.0));
  border-top: 1px solid rgba(243,236,219,0.04);
  opacity: 0.55;
}
.feed-rail .feed-track {
  display: inline-flex;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  animation: feed-marquee 280s linear infinite;
  padding-left: 100%;
}
.feed-rail .feed-track span.tick { color: var(--cool); margin: 0 28px; opacity: 0.4; }
.feed-rail .feed-track .ev { display: inline-flex; gap: 6px; align-items: center; padding: 0 14px; }
.feed-rail .feed-track .ev .who { color: var(--cool-2); }
.feed-rail .feed-track .ev .verb { color: var(--ink-mid); }
.feed-rail .feed-track .ev .meta { color: var(--ink-low); font-style: italic; }
.feed-rail .feed-track .ev .ok { color: var(--green); }
.feed-rail .feed-track .ev .gold { color: var(--warm); }
@keyframes feed-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (max-width: 760px) { .feed-rail { display: none; } }

/* ============================================================
   Type primitives
   ============================================================ */
.eyerow { display: flex; align-items: center; gap: 14px; }
.eyerow .tick { width: 24px; height: 1px; background: var(--cool); opacity: 0.85; }
.eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--cool);
}
.eyebrow.dim { color: var(--ink-low); letter-spacing: 0.22em; }
.eyebrow.warm { color: var(--warm); }

.headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.headline em {
  font-style: normal;
  color: var(--cool-2);
  font-weight: 600;
}
.headline .strike { color: var(--ink-low); }
.headline .av { color: var(--cool-2); }
.headline.lg { font-size: var(--fs-mega); }
.headline.titanic { font-size: var(--fs-titanic); line-height: 0.92; letter-spacing: -0.04em; }
.headline.sm { font-size: var(--fs-h1); }
.headline.xs { font-size: var(--fs-h2); }

.subhead {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.4;
  color: var(--ink-mid);
  max-width: 1500px;
  margin: 0;
  letter-spacing: -0.005em;
}

.lead {
  font-family: var(--sans);
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.body { font-size: var(--fs-body); line-height: 1.6; color: var(--ink-mid); }
.body strong, .lead strong { color: var(--ink); font-weight: 600; }

.bottomline {
  font-family: var(--sans);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  border-left: 2px solid var(--cool);
  padding-left: clamp(16px, 1.4vw, 22px);
  max-width: 1500px;
}
.bottomline.tight { font-size: clamp(15px, 1.05vw, 19px); padding-left: 14px; }
.av { color: var(--cool-2); font-weight: 600; }
.warm-text { color: var(--warm); }

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 5em;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 -2px;
  color: var(--cool-2);
}

/* "Bracket" callout */
.bracket {
  position: relative;
  padding: 24px 28px;
  border-left: 1px solid var(--rule-3);
  border-right: 1px solid var(--rule-3);
}
.bracket::before, .bracket::after {
  content: ""; position: absolute; width: 14px; height: 6px; left: -1px;
  border-left: 1px solid var(--rule-3); border-right: 1px solid var(--rule-3);
}
.bracket::before { top: -1px; border-top: 1px solid var(--rule-3); }
.bracket::after { bottom: -1px; border-bottom: 1px solid var(--rule-3); }
.bracket.r::before, .bracket.r::after { left: auto; right: -1px; }

/* Pull quote */
.pullquote {
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 36px);
  font-style: normal;
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
  position: relative;
  padding-left: 28px;
}
.pullquote::before {
  content: "“";
  position: absolute; left: -8px; top: -14px;
  font-size: 4em; line-height: 1;
  color: var(--cool); opacity: 0.5;
}

/* Chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px;
  background: var(--cool-soft);
  border: 1px solid rgba(109, 184, 255, 0.32);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cool-2);
  font-weight: 600;
}
.chip .pulse {
  width: 7px; height: 7px;
  background: var(--cool-2); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(154,214,255,0.6);
  animation: live-pulse 1.6s infinite;
}
.chip.warm { background: var(--warm-soft); border-color: rgba(232,201,122,0.34); color: var(--warm); }
.chip.warm .pulse { background: var(--warm); box-shadow: 0 0 0 0 rgba(232,201,122,0.55); }

/* Lists */
ul.bullet { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
ul.bullet > li {
  display: grid; grid-template-columns: 18px 1fr; gap: 14px;
  font-size: var(--fs-body); line-height: 1.5;
  color: var(--ink); align-items: baseline;
}
ul.bullet > li::before {
  content: ""; display: inline-block;
  width: 7px; height: 7px;
  background: var(--cool-2); border-radius: 50%;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(154,214,255,0.4);
}
ul.bullet.tight > li { font-size: var(--fs-small); }
ul.bullet.dim > li { color: var(--ink-mid); }
ul.bullet.dim > li::before { background: var(--ink-low); box-shadow: none; }
ul.bullet.warm > li::before { background: var(--warm); box-shadow: 0 0 10px rgba(232,201,122,0.4); }

/* Tables */
table.deck {
  width: 100%; border-collapse: collapse;
  font-size: var(--fs-body); color: var(--ink);
}
table.deck th {
  text-align: left; font-family: var(--mono);
  font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--cool);
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule-2);
  vertical-align: bottom;
}
table.deck th.neutral-th { color: var(--ink-low); }
table.deck td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top; line-height: 1.45; color: var(--ink-mid);
}
table.deck td.primary { color: var(--ink); font-weight: 500; }
table.deck tr.heavy td {
  background: rgba(109,184,255,0.06);
  border-bottom: 1px solid rgba(109,184,255,0.28);
  border-top: 1px solid rgba(109,184,255,0.28);
}
table.deck tr.heavy td.primary { color: var(--ink); font-weight: 600; }
table.deck .mono { font-family: var(--mono); }
table.deck tr:hover td { background: rgba(243,236,219,0.02); }

/* ============================================================
   COVER (slide 01) — editorial monogram + ambient feed
   ============================================================ */
.cover-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: clamp(24px, 4vh, 48px);
  position: relative;
  z-index: 2;
}
.cover-mono {
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cool);
  display: flex; align-items: center; gap: 14px;
}
.cover-mono::after {
  content: ""; flex: 1; max-width: 220px; height: 1px; background: var(--cool); opacity: 0.6;
}
.cover-display {
  display: flex; align-items: center; gap: clamp(20px, 2vw, 36px);
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--fs-titanic);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.cover-display .av-mark {
  width: clamp(48px, 4.6vw, 84px); height: clamp(48px, 4.6vw, 84px);
  background: linear-gradient(140deg, var(--cool-2), var(--cool) 60%, var(--cool-3));
  clip-path: polygon(50% 0%, 100% 100%, 75% 100%, 50% 50%, 25% 100%, 0% 100%);
  filter: drop-shadow(0 0 28px rgba(109,184,255,0.55));
  align-self: center;
  animation: glyph-breath 4s ease-in-out infinite;
}
@keyframes glyph-breath {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(109,184,255,0.4)); transform: scale(1); }
  50%      { filter: drop-shadow(0 0 36px rgba(109,184,255,0.75)); transform: scale(1.04); }
}
.cover-tag {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(24px, 2.5vw, 42px);
  line-height: 1.25;
  color: var(--ink-mid);
  letter-spacing: -0.02em;
  max-width: 1300px;
}
.cover-tag em {
  font-style: normal;
  color: var(--cool-2);
  font-weight: 500;
}

.cover-chyron {
  margin-top: clamp(20px, 4vh, 50px);
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-low);
  display: flex; flex-wrap: wrap; gap: 12px 28px;
}
.cover-chyron span { display: inline-flex; align-items: center; gap: 8px; }
.cover-chyron span::before {
  content: ""; width: 4px; height: 4px;
  background: var(--cool); border-radius: 50%;
}
.cover-chyron span.gold::before { background: var(--warm); }

/* Background scrolling ambient ticker on cover */
.cover-ambient {
  position: absolute;
  inset: -10% -5%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.18;
}
.cover-ambient .row {
  position: absolute;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--cool);
  letter-spacing: 0.08em;
}
.cover-ambient .row.r1 { top: 8%;  animation: drift-r 180s linear infinite; }
.cover-ambient .row.r2 { top: 28%; animation: drift-r 240s linear infinite; color: var(--warm); }
.cover-ambient .row.r3 { top: 50%; animation: drift-r 220s linear infinite reverse; }
.cover-ambient .row.r4 { top: 72%; animation: drift-r 300s linear infinite; color: var(--ink-mid); }
.cover-ambient .row.r5 { top: 90%; animation: drift-r 230s linear infinite reverse; color: var(--cool-3); }
@keyframes drift-r {
  from { transform: translateX(-30%); }
  to   { transform: translateX(30%); }
}

/* ============================================================
   THESIS — slide 02 (split composition)
   ============================================================ */
.thesis-split {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(420px, 1.55fr);
  gap: clamp(20px, 2.4vw, 40px);
  align-items: stretch;
  margin-top: clamp(24px, 4vh, 52px);
}
@media (max-width: 1100px) {
  .thesis-split { grid-template-columns: 1fr; gap: 24px; }
  .thesis-divider { display: none; }
}

.thesis-col {
  display: flex; flex-direction: column;
  gap: clamp(20px, 2.5vh, 32px);
  padding: clamp(20px, 2.4vh, 28px);
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(243,236,219,0.012), transparent 60%);
  position: relative;
}
.thesis-col.dismiss { opacity: 0.7; border-color: var(--rule); }
.thesis-col.emphasis {
  border-color: rgba(109,184,255,0.32);
  background: linear-gradient(180deg, rgba(109,184,255,0.05), rgba(12,16,24,0.4) 70%);
  box-shadow: 0 24px 80px -32px rgba(109,184,255,0.18);
}
.thesis-col .col-header { display: flex; flex-direction: column; gap: 12px; }
.thesis-col .col-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
}
.thesis-col .col-eyebrow.accent { color: var(--cool); }
.thesis-col .col-eyebrow em { font-style: normal; color: var(--cool-2); }
.thesis-col .col-body {
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink-mid);
}
.thesis-col.emphasis .col-body { color: var(--ink); font-weight: 500; }
.thesis-col .col-body em { font-style: normal; color: var(--cool-2); font-weight: 600; }
.thesis-col.dismiss .col-body em { color: var(--ink-mid); font-weight: 600; }

.thesis-col .col-list { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.thesis-col .col-list.grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px clamp(14px, 1.5vw, 24px);
}
@media (max-width: 760px) { .thesis-col .col-list.grid { grid-template-columns: 1fr; } }
.thesis-col .generic {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-low);
  padding: 9px 12px;
  border: 1px dashed var(--rule-2); border-radius: 3px;
  background: rgba(243,236,219,0.012);
}
.thesis-col .prim {
  display: grid; grid-template-columns: 36px 1fr; gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid rgba(109,184,255,0.12);
}
.thesis-col .prim:nth-child(1), .thesis-col .prim:nth-child(2) { border-top: none; padding-top: 0; }
.thesis-col .prim .ix {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; color: var(--cool);
  padding-top: 4px; font-weight: 600;
}
.thesis-col .prim .lbl { color: var(--ink); font-weight: 500; font-size: clamp(14px, 1.05vw, 17px); line-height: 1.3; }
.thesis-col .prim .lbl small {
  display: block; color: var(--ink-mid); font-size: 12px;
  font-weight: 400; margin-top: 3px; line-height: 1.4;
}
.thesis-col .col-footnote {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-low); letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 8px;
}

.thesis-divider {
  display: flex; align-items: center; justify-content: center;
  width: 36px; position: relative;
}
.thesis-divider::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, transparent, var(--rule-2), transparent);
}
.thesis-divider span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-min);
  background: var(--bg);
  padding: 8px 0;
  position: relative;
}

/* ============================================================
   PROBLEM — slide 03 (incident gallery)
   ============================================================ */
.incidents {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: clamp(24px, 3vh, 36px);
}
@media (max-width: 900px) { .incidents { grid-template-columns: 1fr; } }

.incident {
  position: relative;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid var(--rule-2);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(226,107,92,0.04), rgba(12,16,24,0.4) 80%);
  border-left: 3px solid var(--alarm);
  transition: background 220ms ease, border-color 220ms ease;
}
.incident:hover {
  background: linear-gradient(180deg, rgba(226,107,92,0.07), rgba(12,16,24,0.4) 80%);
}

.inc-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  color: var(--alarm);
}

.inc-body {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.inc-stops {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.inc-stops .stops-k {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cool); font-weight: 600;
}
.inc-stops ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 5px;
}
.inc-stops li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.4;
}
.inc-stops li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--cool-2);
  font-family: var(--mono);
  font-size: 12px;
}
.inc-stops li em {
  font-style: normal;
  color: var(--cool-2);
  font-weight: 500;
}

/* ============================================================
   PLATFORM — slide 04 (compare table)
   ============================================================ */
.compare-head {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule-2);
}
.compare-head > div {
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  font-weight: 600;
}
.compare-head > div:first-child { color: var(--ink-low); border-right: 1px solid var(--rule); }
.compare-head > div:last-child { color: var(--cool); }
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}
.compare > div {
  padding: 22px 22px;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.4;
  border-bottom: 1px solid var(--rule);
}
.compare > div:nth-child(odd) {
  color: var(--ink-mid);
  border-right: 1px solid var(--rule); font-style: italic;
}
.compare > div:nth-child(even) {
  color: var(--ink); background: rgba(109,184,255,0.04);
  font-weight: 500;
}
.compare > div:nth-last-child(-n+2) { border-bottom: none; }

/* ============================================================
   DEFENSIBILITY — slide 05 staircase
   ============================================================ */
.stair {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  min-height: clamp(320px, 50vh, 540px);
}
.stair-axis {
  display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-low);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.stair-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: end;
}
.stair-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.stair-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 12px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(109,184,255,0.18);
  background: linear-gradient(180deg, rgba(109,184,255,0.04), rgba(12,16,24,0.5));
  border-radius: 4px;
  transform: translateY(28px); opacity: 0;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), opacity 700ms ease;
  backdrop-filter: blur(10px);
}
.slide[data-active="true"] .stair-card { transform: translateY(0); opacity: 1; }
.slide[data-active="true"] .stair-card.s1 { transition-delay: 80ms; }
.slide[data-active="true"] .stair-card.s2 { transition-delay: 220ms; }
.slide[data-active="true"] .stair-card.s3 { transition-delay: 360ms; }
.slide[data-active="true"] .stair-card.s4 { transition-delay: 500ms; }
.stair-card.s1 { height: 56%; }
.stair-card.s2 { height: 70%; border-color: rgba(109,184,255,0.26); background: linear-gradient(180deg, rgba(109,184,255,0.06), rgba(12,16,24,0.5)); }
.stair-card.s3 { height: 84%; border-color: rgba(109,184,255,0.36); background: linear-gradient(180deg, rgba(109,184,255,0.08), rgba(12,16,24,0.5)); }
.stair-card.s4 { height: 100%; border-color: rgba(232,201,122,0.5);  background: linear-gradient(180deg, rgba(232,201,122,0.10), rgba(12,16,24,0.5)); box-shadow: 0 24px 60px -20px rgba(232,201,122,0.15); }
.stair-card .num-row { display: flex; align-items: baseline; gap: 10px; }
.stair-card .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--cool-2); font-weight: 600; }
.stair-card.s4 .num { color: var(--warm); }
.stair-card .rule { height: 1px; flex: 1; background: rgba(109,184,255,0.22); }
.stair-card.s4 .rule { background: rgba(232,201,122,0.32); }
.stair-card .name { font-size: clamp(18px, 1.5vw, 26px); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; }
.stair-card .body { font-size: clamp(13px, 0.95vw, 15px); line-height: 1.5; color: var(--ink-mid); }
.stair-baseline {
  margin-top: 14px; grid-column: 2;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-low);
}
.stair-baseline .end { color: var(--warm); }

/* ============================================================
   ARCHITECTURE — slide 06 (icon grid)
   ============================================================ */
.arch-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-2);
  border-left: 1px solid var(--rule-2);
}
@media (max-width: 1100px) { .arch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .arch-grid { grid-template-columns: 1fr; } }
.arch-cell {
  padding: 22px 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background 220ms ease;
  min-height: 180px;
}
.arch-cell:hover { background: rgba(109,184,255,0.04); }
.arch-cell:hover .arch-icon { color: var(--cool-2); transform: translateY(-2px); }
.arch-icon {
  width: 32px; height: 32px;
  color: var(--cool);
  transition: color 200ms ease, transform 200ms ease;
}
.arch-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.arch-num { font-family: var(--mono); font-size: 11px; color: var(--ink-low); letter-spacing: 0.22em; font-weight: 600; position: absolute; top: 16px; right: 18px; }
.arch-name { font-size: clamp(17px, 1.4vw, 22px); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.arch-body { font-size: clamp(13px, 0.95vw, 15px); line-height: 1.5; color: var(--ink-mid); }

/* ============================================================
   WHAT MARKETS DEMAND — slide 07
   ============================================================ */
.diff-stack {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 0;
  margin-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid var(--rule);
}
.diff-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.6fr;
  gap: clamp(20px, 2.4vw, 36px);
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
@media (max-width: 900px) {
  .diff-row { grid-template-columns: 1fr; gap: 10px; }
}
.diff-l {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: baseline;
}
.diff-num {
  font-family: var(--mono); font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 300; color: var(--ink-min);
  line-height: 1; letter-spacing: -0.04em;
  grid-row: span 2;
}
.diff-l .diff-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
  grid-column: 2;
}
.diff-claim {
  grid-column: 2;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.35;
  color: var(--ink-low);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-top: 4px;
}
.diff-r { display: flex; flex-direction: column; gap: 6px; }
.diff-r .diff-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-low);
}
.diff-r .diff-tag.accent { color: var(--cool); }
.diff-fix {
  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.018em;
  margin-top: 2px;
}
.diff-fix em { font-style: normal; color: var(--cool-2); font-weight: 600; }
.diff-detail {
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 920px;
}
.diff-detail em { font-style: normal; color: var(--cool-2); font-weight: 500; }

/* ============================================================
   NAVIGATOR LIVE — slide 08 (the showstopper)
   ============================================================ */
.nav-live {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 0;
  border: 1px solid var(--rule-2);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12,16,24,0.95), rgba(8,10,16,0.98));
  min-height: clamp(360px, 50vh, 520px);
  position: relative;
  font-family: var(--sans);
}
.nav-live[data-mode="iframe"] {
  display: block;
  padding: 0;
}
.nav-live[data-mode="iframe"] iframe {
  width: 100%; height: 100%; border: 0; display: block; min-height: 480px;
}
.nav-live[data-mode="iframe"] > :not(iframe) { display: none; }
@media (max-width: 1000px) { .nav-live { grid-template-columns: 1fr; } }

.nav-side {
  border-right: 1px solid var(--rule);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(8,10,16,0.6);
}
.nav-side h4 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600; margin: 0;
}

/* Conversation spine */
.nav-thread { display: flex; flex-direction: column; gap: 10px; }
.nav-msg {
  padding: 10px 12px;
  border-radius: 4px;
  border-left: 2px solid var(--rule-2);
  background: rgba(243,236,219,0.015);
  font-size: 12.5px;
  line-height: 1.5;
}
.nav-msg .meta {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 6px;
}
.nav-msg .meta strong { color: var(--ink-mid); font-weight: 600; }
.nav-msg .meta .badge {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.18em;
  padding: 1px 6px; border-radius: 2px;
  background: rgba(232,201,122,0.12);
  color: var(--warm);
  margin-left: 6px;
}
.nav-msg p { margin: 0; color: var(--ink); font-weight: 400; }
.nav-msg .cite {
  font-family: var(--mono);
  color: var(--cool-2);
  background: rgba(109,184,255,0.08);
  padding: 0 4px; border-radius: 2px;
  font-size: 11.5px;
  letter-spacing: 0.02em;
}
.nav-msg.agent { border-left-color: rgba(109,184,255,0.45); }
.nav-msg.agent .meta strong { color: var(--cool-2); }
.nav-msg.user {
  border-left-color: rgba(232,201,122,0.4);
  background: rgba(232,201,122,0.04);
}
.nav-msg.user .meta strong { color: var(--warm); }
.nav-msg.agent.active {
  border-left-color: var(--cool);
  background: rgba(109,184,255,0.06);
  box-shadow: 0 0 0 1px rgba(109,184,255,0.12), 0 8px 24px -16px rgba(109,184,255,0.4);
}

.nav-input {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--rule-2); border-radius: 4px;
  background: rgba(243,236,219,0.02);
  font-family: var(--mono); font-size: 12px;
}
.nav-input .caret { color: var(--cool-2); font-weight: 600; }
.nav-input .ph { color: var(--ink-low); }

.nav-watch { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 12px; color: var(--ink-mid); }
.nav-watch > div { display: flex; align-items: center; gap: 8px; }
.nav-watch .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-min);
}
.nav-watch .dot.live {
  background: var(--cool-2);
  box-shadow: 0 0 6px rgba(154,214,255,0.6);
}
.nav-watch .muted { color: var(--ink-low); }

.nav-center {
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 18px;
  background: linear-gradient(180deg, rgba(109,184,255,0.04), rgba(8,10,16,0));
  position: relative;
}
.nav-center::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(243,236,219,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,236,219,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.nav-center > * { position: relative; }
.nav-center .nav-symbol {
  display: flex; align-items: baseline; gap: 14px;
}
.nav-center .nav-symbol .sym { font-size: clamp(28px, 2.6vw, 44px); color: var(--ink);
  font-weight: 400; letter-spacing: -0.02em;
}
.nav-center .nav-symbol .px {
  font-family: var(--mono); font-size: clamp(18px, 1.8vw, 28px);
  color: var(--cool-2); font-weight: 600;
}
.nav-center .nav-symbol .delta {
  font-family: var(--mono); font-size: 14px;
  color: var(--green);
  display: inline-flex; gap: 6px; align-items: center;
}
.nav-decision {
  border: 1px solid rgba(109,184,255,0.32);
  background: rgba(109,184,255,0.05);
  border-radius: 6px;
  padding: 18px 18px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.nav-decision::before {
  content: "RECOMMEND"; position: absolute; top: -10px; left: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.32em;
  background: var(--bg); color: var(--cool-2); padding: 2px 8px;
}
.nav-decision .head {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.nav-decision .verdict {
  font-size: clamp(20px, 1.8vw, 28px); color: var(--ink);
  font-weight: 400;
}
.nav-decision .conf {
  font-family: var(--mono); font-size: 13px; color: var(--cool-2);
  letter-spacing: 0.04em;
}
.nav-decision .reason { font-size: 14px; color: var(--ink-mid); line-height: 1.5; }
.nav-decision .reason strong { color: var(--ink); font-weight: 600; }
.nav-decision .checks {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
}
.nav-decision .check {
  padding: 4px 9px; border-radius: 3px;
  background: rgba(127,212,163,0.08);
  color: var(--green);
  border: 1px solid rgba(127,212,163,0.2);
}
.nav-actions { display: flex; gap: 10px; margin-top: 4px; }
.nav-btn {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--rule-2); border-radius: 3px;
  background: transparent; color: var(--ink-mid);
  cursor: pointer;
}
.nav-btn.primary { background: var(--cool); color: var(--bg); border-color: var(--cool); }
.nav-btn.primary:hover { background: var(--cool-2); border-color: var(--cool-2); }
.nav-btn:hover { background: rgba(109,184,255,0.06); color: var(--ink); border-color: var(--cool); }
.nav-btn.warn:hover { background: rgba(226,107,92,0.08); color: var(--alarm); border-color: var(--alarm); }

.nav-context {
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid var(--rule);
  background: rgba(8,10,16,0.6);
}
.nav-ctx-row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.nav-ctx-row .k { font-family: var(--mono); font-size: 11px; color: var(--ink-low); letter-spacing: 0.16em; text-transform: uppercase; }
.nav-ctx-row .v { font-family: var(--mono); font-size: 13px; color: var(--ink); }
.nav-ctx-row .v.cool { color: var(--cool-2); }
.nav-ctx-row .v.warm { color: var(--warm); }
.nav-ctx-row .v.green { color: var(--green); }
.nav-ctx-block { display: flex; flex-direction: column; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.nav-ctx-block:last-child { border-bottom: none; padding-bottom: 0; }
.nav-ctx-block h4 {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600; margin: 0;
}

/* charts inside nav-center */
.nav-chart {
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(243,236,219,0.012);
  padding: 10px 12px 6px;
}
.nav-chart.compact { padding-bottom: 4px; }
.nav-chart-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.nav-chart-label .chart-meta { color: var(--ink-min); letter-spacing: 0.12em; }
.nav-chart-label .pos-pnl { color: var(--green); letter-spacing: 0.06em; }
.nav-spark { width: 100%; height: 110px; }
.nav-spark.short { height: 56px; }

/* Compact recommendation card */
.nav-decision.compact {
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.nav-decision.compact::before { content: ""; display: none; }
.nav-decision.compact .rec-row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px;
}
.nav-decision.compact .verdict-c {
  font-size: clamp(14px, 1.05vw, 17px);
  color: var(--ink); font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-decision.compact .verdict-c strong { color: var(--cool-2); font-weight: 600; }
.nav-decision.compact .conf-c {
  font-family: var(--mono); font-size: 12px;
  color: var(--cool-2); letter-spacing: 0.04em;
}
.nav-decision.compact .meta-c {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-low); letter-spacing: 0.06em;
  margin-left: auto;
}
.nav-decision.compact .rec-checks {
  display: flex; flex-wrap: wrap; gap: 5px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em;
}
.nav-decision.compact .check {
  padding: 3px 7px; border-radius: 2px;
  background: rgba(127,212,163,0.06);
  color: var(--green);
  border: 1px solid rgba(127,212,163,0.18);
}
.nav-decision.compact .nav-actions { margin-top: 2px; }
.nav-decision.compact .nav-actions .nav-btn {
  padding: 6px 13px; font-size: 10.5px;
}

/* Position card on right rail */
.nav-pos {
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(127,212,163,0.22);
  background: rgba(127,212,163,0.04);
  border-radius: 4px;
}
.nav-pos .pos-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
}
.nav-pos .pos-sym {
  font-size: 13px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.005em;
}
.nav-pos .pos-pnl {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--green);
}
.nav-pos .pos-pnl.up .pct { color: var(--green); opacity: 0.7; margin-left: 4px; }
.nav-pos .pos-row {
  display: flex; justify-content: space-between; gap: 10px;
  font-family: var(--mono); font-size: 11px;
}
.nav-pos .pos-row .k {
  color: var(--ink-low);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-pos .pos-row .v { color: var(--ink); }
.nav-pos .pos-row .v.warm { color: var(--warm); }
.nav-pos .pos-row .v.small { font-size: 10.5px; color: var(--ink-mid); font-style: italic; }

.nav-live-status {
  display: flex; gap: 14px; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-low);
  border-bottom: 1px solid var(--rule);
  grid-column: 1 / -1;
  background: rgba(243,236,219,0.02);
}
.nav-live-status .grp { display: flex; gap: 16px; align-items: center; }
.nav-live-status .live { color: var(--cool-2); display: inline-flex; gap: 8px; align-items: center; }
.nav-live-status .live::before {
  content: ""; width: 6px; height: 6px; background: var(--cool-2); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(154,214,255,0.6); animation: live-pulse 1.6s infinite;
}

.proofs {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule-2);
}
@media (max-width: 1100px) { .proofs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .proofs { grid-template-columns: 1fr; } }
.proofs > div {
  padding: 18px 22px 18px 0;
  border-right: 1px solid var(--rule);
}
.proofs > div:last-child { border-right: none; padding-right: 0; }
.proof-num { font-family: var(--mono); font-size: 11px; color: var(--cool); margin-bottom: 8px; letter-spacing: 0.18em; font-weight: 600; }
.proof-text { font-size: clamp(14px, 1.05vw, 17px); line-height: 1.4; color: var(--ink); font-weight: 500; }
.proof-meta { font-size: 12px; color: var(--cool-2); margin-top: 6px; font-family: var(--mono); }

.pull-tesla {
  display: inline-flex; gap: 14px; align-items: center;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 300; font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pull-tesla .dot { width: 6px; height: 6px; background: var(--cool); border-radius: 50%; }
.pull-tesla strong { color: var(--warm); font-weight: 400; }
.pull-tesla .vs { color: var(--ink-low); font-style: normal; font-family: var(--mono); font-size: 14px; }

/* ============================================================
   CONTROL MODES — slide 08
   ============================================================ */
.modes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
@media (max-width: 900px) { .modes-grid { grid-template-columns: 1fr; } }
.mode {
  padding: 30px 30px 30px 0;
  border-right: 1px solid var(--rule);
  border-top: 2px solid var(--rule-2);
}
.mode:last-child { border-right: none; padding-right: 0; }
.mode.assist { border-top-color: rgba(109,184,255,0.5); padding-left: 30px; }
.mode.auto { border-top-color: var(--warm); padding-left: 30px; }
.mode-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.22em; color: var(--ink-low); margin-bottom: 14px; font-weight: 600; }
.mode.assist .mode-num { color: var(--cool); }
.mode.auto .mode-num { color: var(--warm); }
.mode-name {
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 400; font-style: italic;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 14px;
}
.mode.auto .mode-name { color: var(--warm); }
.mode-body { font-size: var(--fs-body); line-height: 1.55; color: var(--ink-mid); }

.mode-meter {
  margin-top: 18px;
  display: flex; gap: 6px;
}
.mode-meter span {
  flex: 1; height: 4px; background: var(--rule); border-radius: 1px;
}
.mode-meter span.on { background: var(--cool); box-shadow: 0 0 8px rgba(109,184,255,0.4); }
.mode.auto .mode-meter span.on { background: var(--warm); box-shadow: 0 0 8px rgba(232,201,122,0.4); }

/* ============================================================
   REGULATORY — slide 09 (timeline composition)
   ============================================================ */
.reg-timeline {
  flex: 1;
  margin-top: clamp(28px, 4vh, 48px);
  position: relative;
}
.reg-tl-track {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 0;
  position: relative;
}
@media (max-width: 1100px) {
  .reg-tl-track { grid-template-columns: 1fr; gap: 24px; }
}
.reg-tl-track::before {
  content: ""; position: absolute;
  top: 22px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--rule-2) 0%, var(--rule-2) 33%, var(--cool) 66%, var(--cool-2) 100%);
}
@media (max-width: 1100px) { .reg-tl-track::before { display: none; } }

.reg-tl-segment {
  position: relative;
  padding: 44px 26px 24px 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
}
.reg-tl-segment:last-child { border-right: none; padding-right: 0; padding-left: 26px; }
.reg-tl-segment:first-child { padding-left: 0; }
.reg-tl-segment:not(:first-child):not(:last-child) { padding-left: 26px; }

.reg-tl-segment.now {
  background: linear-gradient(180deg, rgba(109,184,255,0.06), transparent 70%);
  border-radius: 0 6px 6px 0;
  box-shadow: inset 1px 0 0 rgba(109,184,255,0.32);
}

.reg-tl-marker {
  position: absolute;
  top: 16px; left: -1px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--rule-3);
  z-index: 1;
}
.reg-tl-segment:not(:first-child) .reg-tl-marker { left: 25px; }
.reg-tl-segment.coming .reg-tl-marker { border-color: var(--cool-3); }
.reg-tl-marker.hi {
  border-color: var(--cool-2);
  background: var(--cool);
  box-shadow: 0 0 0 4px rgba(109,184,255,0.15), 0 0 18px rgba(109,184,255,0.55);
}

.reg-tl-step {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
}
.reg-tl-step.accent { color: var(--cool-2); }
.reg-tl-segment.coming .reg-tl-step { color: var(--cool-3); }

.reg-tl-title {
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.reg-tl-segment.now .reg-tl-title { color: var(--cool-2); }

.reg-tl-body {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-mid);
}

.reg-rules {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.reg-rule {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 9px; border-radius: 3px;
  background: rgba(243,236,219,0.04);
  color: var(--ink-mid);
  border: 1px solid var(--rule-2);
}

.reg-shipped-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
}
@media (max-width: 1100px) { .reg-shipped-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .reg-shipped-grid { grid-template-columns: 1fr; } }
.reg-shipped-cell { padding-left: 28px; position: relative; }
.reg-shipped-cell::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px;
  background: var(--cool-soft); color: var(--cool);
  border: 1px solid rgba(109,184,255,0.5);
  border-radius: 4px;
}
.reg-shipped-cell::after {
  content: "✓"; position: absolute; left: 4px; top: 5px;
  font-family: var(--mono); font-size: 12px; color: var(--cool-2);
}
.reg-shipped-cell .name { font-size: clamp(14px, 1.05vw, 17px); font-weight: 600; color: var(--ink); line-height: 1.3; }
.reg-shipped-cell .desc { font-size: 13px; color: var(--ink-mid); margin-top: 4px; line-height: 1.4; }

/* ============================================================
   AUDIT — slide 10
   ============================================================ */
.audit-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 1100px) { .audit-grid { grid-template-columns: 1fr; } }
.flywheel-orbit {
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  max-width: 540px; justify-self: center;
}
.flywheel-orbit svg { width: 100%; height: 100%; }
.flywheel-orbit .ring { animation: fw-rotate 90s linear infinite; transform-origin: center; transform-box: fill-box; }
@keyframes fw-rotate { to { transform: rotate(360deg); } }

.fw-pip {
  position: absolute; transform: translate(-50%, -50%);
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 10px 16px;
  background: rgba(8,10,16,0.96);
  border: 1.5px solid var(--cool);
  border-radius: 999px;
  text-align: center; white-space: nowrap;
}
.fw-pip.hi { border-color: var(--warm); box-shadow: 0 0 28px rgba(232,201,122,0.25); }
.fw-pip .fw-num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; color: var(--cool); font-weight: 600; }
.fw-pip.hi .fw-num { color: var(--warm); }
.fw-pip .fw-label { font-size: clamp(12px, 0.95vw, 16px); font-weight: 600; color: var(--ink); margin-top: 2px; letter-spacing: -0.01em; }

.audit-row {
  display: grid; grid-template-columns: 50px 1fr; gap: 18px;
  padding: 12px 0; align-items: start;
}
.audit-row .num {
  font-family: var(--mono); font-size: clamp(20px, 1.8vw, 30px);
  color: var(--cool); font-weight: 300; line-height: 1;
}
.audit-row .body .name {
  font-size: clamp(18px, 1.5vw, 24px); font-weight: 400; color: var(--ink); letter-spacing: -0.015em;
}
.audit-row .body .desc {
  font-size: var(--fs-body); color: var(--ink-mid); margin-top: 4px; line-height: 1.55;
}
.audit-row .body .quotes { font-style: italic;
  color: var(--ink-mid);
}
.audit-row.improve {
  padding: 18px 22px;
  border-left: 3px solid var(--warm);
  background: rgba(232,201,122,0.06);
  border-radius: 0 4px 4px 0;
}
.audit-row.improve .num { color: var(--warm); }
.audit-row.improve .tag {
  font-family: var(--mono); font-size: 12px; color: var(--warm); margin-top: 8px;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ============================================================
   WHY NOW — slide 11 (single accelerating curve + milestones)
   ============================================================ */
.whynow-chart {
  flex: 1;
  position: relative;
  margin-top: clamp(24px, 4vh, 40px);
  padding-left: 56px;
  padding-right: 0;
  padding-bottom: 32px;
  min-height: clamp(340px, 52vh, 520px);
}
.wn-svg { position: absolute; inset: 0 0 32px 56px; width: calc(100% - 56px); height: calc(100% - 32px); }
.wn-svg .wn-grid line { stroke: rgba(243,236,219,0.06); stroke-width: 1; }
.wn-svg .wn-line {
  stroke-dasharray: 1900;
  stroke-dashoffset: 1900;
  transition: stroke-dashoffset 2200ms cubic-bezier(.3,.7,.3,1) 200ms;
}
.slide[data-active="true"] .wn-svg .wn-line { stroke-dashoffset: 0; }
.wn-svg .wn-fill { opacity: 0; transition: opacity 1000ms ease 1400ms; }
.slide[data-active="true"] .wn-svg .wn-fill { opacity: 1; }
.wn-svg .wn-pips circle { opacity: 0; transition: opacity 600ms ease 1700ms; }
.slide[data-active="true"] .wn-svg .wn-pips circle { opacity: 1; }

.wn-axis-y {
  position: absolute;
  left: 0; top: 0; bottom: 32px;
  display: flex; align-items: center; justify-content: center;
  width: 56px;
  pointer-events: none;
}
.wn-axis-y span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-low);
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: center;
}
.wn-axis-x {
  position: absolute;
  left: 56px; right: 0; bottom: 0;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  pointer-events: none;
}
.wn-axis-x .here { color: var(--cool-2); font-weight: 600; }

.wn-milestones { position: absolute; inset: 0 0 32px 56px; pointer-events: none; }
.wn-ms {
  position: absolute;
  transform: translate(-50%, -100%);
  text-align: left;
  padding: 8px 12px;
  border-left: 1px solid rgba(243,236,219,0.18);
  background: linear-gradient(90deg, rgba(243,236,219,0.04), transparent 70%);
  max-width: 240px;
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
.slide[data-active="true"] .wn-ms { opacity: 1; }
.slide[data-active="true"] .wn-ms:nth-of-type(1) { transition-delay: 300ms; }
.slide[data-active="true"] .wn-ms:nth-of-type(2) { transition-delay: 600ms; }
.slide[data-active="true"] .wn-ms:nth-of-type(3) { transition-delay: 900ms; }
.slide[data-active="true"] .wn-ms:nth-of-type(4) { transition-delay: 1200ms; }
.slide[data-active="true"] .wn-ms:nth-of-type(5) { transition-delay: 1500ms; }
.slide[data-active="true"] .wn-ms:nth-of-type(6) { transition-delay: 1800ms; }
.wn-ms .wn-ms-yr {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
}
.wn-ms .wn-ms-t {
  margin-top: 4px;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.4;
  color: var(--ink-mid);
  letter-spacing: -0.005em;
}
.wn-ms.cool {
  border-left-color: rgba(109,184,255,0.5);
  background: linear-gradient(90deg, rgba(109,184,255,0.06), transparent 70%);
}
.wn-ms.cool .wn-ms-yr { color: var(--cool-2); }
.wn-ms.cool .wn-ms-t { color: var(--ink); }
.wn-ms.hi {
  border-left: 2px solid var(--cool-2);
  background: linear-gradient(90deg, rgba(109,184,255,0.14), transparent 80%);
  padding: 10px 14px;
  max-width: 320px;
  box-shadow: 0 18px 40px -16px rgba(109,184,255,0.45);
}
.wn-ms.hi .wn-ms-yr { color: var(--cool-2); }
.wn-ms.hi .wn-ms-t {
  color: var(--ink); font-weight: 500;
  font-size: clamp(14px, 1.05vw, 17px);
}

@media (max-width: 1100px) {
  .wn-ms { display: none; }
  .whynow-chart { padding-left: 0; }
  .wn-svg { inset: 0 0 32px 0; width: 100%; }
  .wn-axis-x { left: 0; }
  .wn-axis-y { display: none; }
}

/* ============================================================
   WHY NOW — legacy curves (deprecated, kept harmless)
   ============================================================ */
.curves-headerrow { display: grid; grid-template-columns: 2fr 3fr; gap: 24px; margin-bottom: 8px; }
.curves-headerrow .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; font-weight: 600;
  padding-bottom: 12px;
}
.curves-headerrow .lbl.lead { color: var(--cool); border-bottom: 2px solid var(--cool); }
.curves-headerrow .lbl.tail { color: var(--ink-low); border-bottom: 1px solid var(--rule-2); }
.curves {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
@media (max-width: 1100px) { .curves { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .curves { grid-template-columns: 1fr; } }
.curve {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.curve.heavy { border-top-color: var(--cool); border-top-width: 2px; }
.curve-num { font-family: var(--mono); font-size: 11px; color: var(--ink-low); letter-spacing: 0.22em; font-weight: 600; }
.curve.heavy .curve-num { color: var(--cool); }
.curve-chart { height: clamp(80px, 12vh, 130px); width: 100%; }
.curve-chart path.line {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 1600ms cubic-bezier(.3,.7,.3,1);
}
.slide[data-active="true"] .curve-chart path.line { stroke-dashoffset: 0; }
.curve-chart path.fill { opacity: 0; transition: opacity 800ms ease 1100ms; }
.slide[data-active="true"] .curve-chart path.fill { opacity: 0.18; }
.curve-chart circle.pip {
  opacity: 0; transition: opacity 400ms ease 1500ms;
}
.slide[data-active="true"] .curve-chart circle.pip { opacity: 1; }
.curve-title { font-size: clamp(16px, 1.2vw, 21px); font-weight: 400; color: var(--ink); line-height: 1.25; letter-spacing: -0.01em; }
.curve.heavy .curve-title { font-size: clamp(18px, 1.4vw, 24px); }
.curve.muted .curve-title { color: var(--ink-mid); font-weight: 300; }
.curve-body { font-size: 13px; line-height: 1.5; color: var(--ink-mid); }
.curve.muted .curve-body { color: var(--ink-low); }

/* ============================================================
   MARKET — slide 12
   ============================================================ */
.market-hero {
  display: grid; grid-template-columns: 2fr 1fr; gap: clamp(28px, 4vw, 60px);
  align-items: end;
  padding-bottom: 14px;
}
@media (max-width: 1000px) { .market-hero { grid-template-columns: 1fr; } }
.hero-num {
  font-size: clamp(56px, 7.2vw, 124px);
  font-weight: 300;
  letter-spacing: -0.045em;
  color: var(--ink);
  line-height: 0.92;
}
.hero-num .av { color: var(--warm); font-style: italic; }
.hero-num small { display: block; font-family: var(--sans); font-size: clamp(20px, 1.6vw, 30px); font-style: normal; color: var(--ink-mid); font-weight: 400; margin-top: 8px; letter-spacing: -0.01em; }
.hero-meta { font-style: italic;
  font-size: clamp(14px, 1.05vw, 17px); font-weight: 300;
  color: var(--ink-mid); line-height: 1.5;
  border-left: 1px solid var(--rule-2);
  padding-left: 20px;
}

.capture-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-2);
}
@media (max-width: 900px) { .capture-grid { grid-template-columns: 1fr; } }
.capture-cell {
  padding: 18px 26px 0 0;
  border-right: 1px solid var(--rule);
}
.capture-cell:last-child { border-right: none; padding-right: 0; }
.capture-cell .pct { font-family: var(--mono); font-size: clamp(20px, 1.8vw, 28px); color: var(--cool-2); font-weight: 600; letter-spacing: -0.02em; }
.capture-cell .desc { font-size: 14px; color: var(--ink-mid); margin-top: 6px; line-height: 1.45; }
.capture-cell .arr {
  font-size: clamp(20px, 1.7vw, 26px); color: var(--ink); font-weight: 400;
  margin-top: 8px;
}
.capture-cell .arr em { color: var(--warm); font-style: italic; }

/* ============================================================
   FINANCIAL MODEL — slide 18 (justified buildup)
   ============================================================ */
.fin-buildup {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 0;
  margin-top: clamp(28px, 4vh, 48px);
}
@media (max-width: 1100px) { .fin-buildup { grid-template-columns: 1fr; } }
.fin-col {
  padding: 24px 26px 24px 0;
  border-right: 1px solid var(--rule);
  border-top: 2px solid var(--rule-2);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.fin-col:last-child { border-right: none; padding-right: 0; padding-left: 26px; }
.fin-col:not(:first-child):not(:last-child) { padding-left: 26px; }
.fin-col[data-stage="y1"] { border-top-color: var(--rule-3); }
.fin-col[data-stage="y3"] { border-top-color: var(--cool-3); }
.fin-col[data-stage="y5"] {
  border-top-color: var(--cool-2);
  background: linear-gradient(180deg, rgba(109,184,255,0.05), transparent 70%);
  border-radius: 0 6px 6px 0;
  box-shadow: inset 1px 0 0 rgba(109,184,255,0.32);
}
.fin-col-header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.fin-yr {
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 600; color: var(--ink); letter-spacing: -0.018em;
}
.fin-col[data-stage="y5"] .fin-yr { color: var(--cool-2); }
.fin-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
}
.fin-tag.accent { color: var(--cool); }

.fin-rows { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.fin-row {
  display: grid;
  grid-template-columns: 1fr 56px 18px 80px 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(13px, 1vw, 15px);
}
.fin-row:last-child { border-bottom: none; }
.fin-row .who { color: var(--ink); font-weight: 500; }
.fin-row .cnt { font-family: var(--mono); color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.fin-row .x { font-family: var(--mono); color: var(--ink-low); text-align: center; }
.fin-row .acv { font-family: var(--mono); color: var(--ink-mid); text-align: right; font-variant-numeric: tabular-nums; }
.fin-row .arr {
  font-family: var(--mono); color: var(--cool-2);
  text-align: right; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.fin-row.dim .who, .fin-row.dim .cnt, .fin-row.dim .acv { color: var(--ink-low); }
.fin-row.dim .arr { color: var(--ink-mid); }
.fin-row.hi { background: rgba(109,184,255,0.06); margin: 0 -8px; padding-left: 8px; padding-right: 8px; border-radius: 3px; }
.fin-row.hi .who { color: var(--cool-2); font-weight: 600; }

.fin-total {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule-2);
  display: flex; flex-direction: column; gap: 4px;
}
.fin-total .lbl {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
}
.fin-total .val {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600; color: var(--ink);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.fin-col[data-stage="y5"] .fin-total .val { color: var(--cool-2); }
.fin-total .val small {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-low);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.fin-up {
  font-size: 13px;
  color: var(--ink-mid);
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
}
.fin-up strong { color: var(--cool-2); font-weight: 600; }

.fin-callouts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px);
  margin-top: clamp(28px, 4vh, 48px);
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid var(--rule);
}
@media (max-width: 1000px) { .fin-callouts { grid-template-columns: 1fr; } }
.fin-callout p strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   WEDGE — slide 13
   ============================================================ */
.wedge-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 4vw, 70px);
  align-items: start;
}
@media (max-width: 1100px) { .wedge-grid { grid-template-columns: 1fr; } }
.wedge-left { padding-right: 28px; border-right: 1px solid var(--rule); }
@media (max-width: 1100px) { .wedge-left { padding-right: 0; border-right: none; padding-bottom: 28px; border-bottom: 1px solid var(--rule); } }
.wedge-icp-label, .wedge-band-label {
  font-family: var(--mono); font-size: 12px; color: var(--cool); letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600;
}
.wedge-icp {
  margin-top: 16px;
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink);
}
.wedge-icp em { color: var(--warm); font-style: italic; }
.wedge-icp-body {
  margin-top: 18px;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.55; color: var(--ink-mid);
  max-width: 620px;
}
.wedge-band { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--rule); }
.wedge-band-value {
  margin-top: 8px;
  font-size: clamp(36px, 4vw, 64px); font-weight: 300; letter-spacing: -0.04em;
  color: var(--ink); line-height: 1;
}
.wedge-band-value .dim { color: var(--ink-low); margin: 0 4px; }
.wedge-band-value .per { font-family: var(--sans); font-size: 18px; font-weight: 400; color: var(--ink-low); margin-left: 12px; letter-spacing: 0; }

.wedge-right { display: flex; flex-direction: column; gap: 22px; }
.wedge-trait {
  display: grid; grid-template-columns: 50px 1fr; gap: 18px;
  padding-bottom: 18px; border-bottom: 1px solid var(--rule);
}
.wedge-trait:last-child { border-bottom: none; }
.wedge-trait-num {
  font-family: var(--mono); font-size: 14px; color: var(--cool);
  letter-spacing: 0.1em; padding-top: 4px; font-weight: 600;
}
.wedge-trait-head { font-size: clamp(17px, 1.4vw, 24px); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.3; }
.wedge-trait-sub { margin-top: 6px; font-size: 14px; color: var(--ink-mid); line-height: 1.5; }

/* ============================================================
   GTM — slide 14
   ============================================================ */
.lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
@media (max-width: 900px) { .lanes { grid-template-columns: 1fr; } }
.lane {
  padding: 30px 30px 0 0;
  border-right: 1px solid var(--rule);
  border-top: 2px solid var(--rule-2);
  position: relative;
}
.lane:last-child { border-right: none; padding-right: 0; }
.lane.now { border-top-color: var(--warm); padding-left: 30px; }
.lane.embed { border-top-color: rgba(109,184,255,0.5); padding-left: 30px; }
.lane.now::after, .lane.embed::after {
  content: ""; position: absolute; top: -8px; left: 0; width: 14px; height: 14px;
  background: var(--bg); border: 2px solid;
  border-radius: 50%;
}
.lane.now::after { border-color: var(--warm); box-shadow: 0 0 14px rgba(232,201,122,0.45); }
.lane.now.embed::after { left: 30px; }
.lane.embed::after { border-color: var(--cool); box-shadow: 0 0 14px rgba(109,184,255,0.45); }
.lane-time { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--ink-low); margin-bottom: 22px; font-weight: 600; }
.lane.now .lane-time { color: var(--warm); }
.lane.embed .lane-time { color: var(--cool); }
.lane-step { font-size: 12px; color: var(--cool); font-family: var(--mono); margin-bottom: 12px; letter-spacing: 0.1em; font-weight: 600; }
.lane.now .lane-step { color: var(--warm); }
.lane-head { font-size: clamp(20px, 1.6vw, 26px); font-weight: 400; color: var(--ink); line-height: 1.25; letter-spacing: -0.015em; margin-bottom: 14px; }
.lane-body { font-size: var(--fs-body); color: var(--ink-mid); line-height: 1.55; margin-bottom: 16px; }
.lane-goal { font-size: 13px; color: var(--cool-2); line-height: 1.45; padding-top: 12px; border-top: 1px dashed var(--rule); }
.lane.now .lane-goal { color: var(--warm-2); }
.lane-goal strong { color: var(--cool); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; display: block; margin-bottom: 4px; font-family: var(--mono); }
.lane.now .lane-goal strong { color: var(--warm); }

/* ============================================================
   MOAT — slide 19 (three layers · three tenses)
   ============================================================ */
.moat-stack {
  flex: 1;
  display: flex; flex-direction: column; gap: 16px;
  margin-top: clamp(28px, 4vh, 44px);
}
.moat-layer {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(20px, 2.4vw, 36px);
  padding: 22px 26px;
  border: 1px solid var(--rule-2);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(243,236,219,0.012), transparent 70%);
  transition: border-color 220ms ease, background 220ms ease;
}
@media (max-width: 900px) {
  .moat-layer { grid-template-columns: 1fr; }
}
.moat-layer.built {
  border-color: rgba(109,184,255,0.32);
  background: linear-gradient(180deg, rgba(109,184,255,0.06), rgba(12,16,24,0.3) 70%);
  box-shadow: 0 18px 40px -22px rgba(109,184,255,0.32);
}
.moat-layer.compounding {
  border-color: rgba(154,214,255,0.22);
  background: linear-gradient(90deg, rgba(109,184,255,0.04), rgba(127,212,163,0.04) 60%, transparent 100%);
}
.moat-layer.earning {
  border-style: dashed;
  border-color: rgba(232,201,122,0.36);
  background: linear-gradient(180deg, rgba(232,201,122,0.04), rgba(12,16,24,0.3) 70%);
}

.moat-layer-rail {
  display: flex; flex-direction: column; gap: 8px;
  padding-right: 18px;
  border-right: 1px solid var(--rule);
}
@media (max-width: 900px) {
  .moat-layer-rail { border-right: none; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid var(--rule); }
}
.moat-tense {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
}
.moat-layer.built .moat-tense { color: var(--cool-2); }
.moat-layer.compounding .moat-tense { color: var(--cool); }
.moat-layer.earning .moat-tense { color: var(--warm); }
.moat-num {
  font-family: var(--mono);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink-min);
  line-height: 1;
}
.moat-layer.built .moat-num { color: var(--cool-2); opacity: 0.32; }
.moat-layer.compounding .moat-num { color: var(--cool); opacity: 0.28; }
.moat-layer.earning .moat-num { color: var(--warm); opacity: 0.32; }

.moat-layer-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
}
.moat-body-text {
  display: flex; flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.moat-layer.compounding .moat-layer-body {
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
@media (max-width: 1100px) {
  .moat-layer.compounding .moat-layer-body { grid-template-columns: 1fr; }
  .moat-orbit { display: none; }
}

.moat-claim {
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.moat-claim em {
  font-style: normal;
  color: var(--cool-2);
  font-weight: 600;
}
.moat-layer.earning .moat-claim em { color: var(--warm); }

.moat-why {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 880px;
}
.moat-why.honest {
  border-left: 2px solid rgba(232,201,122,0.4);
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(232,201,122,0.04), transparent 60%);
}

.moat-proofs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px clamp(14px, 1.5vw, 22px);
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 1100px) { .moat-proofs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .moat-proofs { grid-template-columns: 1fr; } }
.mp { display: flex; flex-direction: column; gap: 4px; }
.mp .mp-k {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-low); font-weight: 600;
}
.mp .mp-v { font-size: 13.5px; color: var(--ink); line-height: 1.4; letter-spacing: -0.005em; }
.mp .mp-v strong { color: var(--warm); font-weight: 600; }

.moat-pill {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: var(--cool-soft);
  color: var(--cool-2);
  border: 1px solid rgba(109,184,255,0.32);
}
.moat-pill.cool { background: rgba(154,214,255,0.10); color: var(--cool-2); border-color: rgba(154,214,255,0.32); }
.moat-pill.warm { background: var(--warm-soft); color: var(--warm); border-color: rgba(232,201,122,0.4); }

/* mini orbital diagram inside the compounding layer */
.moat-orbit {
  position: relative;
  width: 100%; aspect-ratio: 1/1;
  max-width: 240px;
  justify-self: center;
}
.moat-orbit svg { width: 100%; height: 100%; }
.moat-orbit .orbit-ring { transform-origin: center; transform-box: fill-box; animation: fw-rotate 90s linear infinite; }
.moat-orbit .orbit-pip {
  position: absolute;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mid); font-weight: 600;
  transform: translate(-50%, -50%);
}
.moat-orbit .orbit-pip span {
  display: inline-block;
  background: rgba(8,10,16,0.92);
  padding: 2px 6px;
  border: 1px solid rgba(109,184,255,0.24);
  border-radius: 2px;
}
/* ring is at radius 70 of a 220 viewBox = 31.8% from center.
   pips center on circle ±32%, so 50%±32% → 18% / 82%. */
.moat-orbit .orbit-pip.n { left: 50%; top: 18%; }
.moat-orbit .orbit-pip.e { left: 82%; top: 50%; }
.moat-orbit .orbit-pip.s { left: 50%; top: 82%; }
.moat-orbit .orbit-pip.w { left: 18%; top: 50%; }
/* Pitch deck slide-06 advantage orbit uses a smaller ring (r=58 of 220 viewBox =
   26.4% from centre) — pips need to sit closer to centre to track that ring. */
#advantage .moat-orbit .orbit-pip.n { top: 24%; }
#advantage .moat-orbit .orbit-pip.e { left: 76%; }
#advantage .moat-orbit .orbit-pip.s { top: 76%; }
#advantage .moat-orbit .orbit-pip.w { left: 24%; }
#advantage .moat-orbit .orbit-pip span {
  font-size: 9px;
  padding: 2px 5px;
}
/* Compounding layer is now text-only — no orbit, no special body grid */
#advantage .moat-layer.compounding .moat-layer-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

/* Layer rail wide enough that "EARNING · YEAR 2-5" stays on one line */
#advantage .moat-layer { grid-template-columns: 220px 1fr; padding: 18px 24px; }
#advantage .moat-stack { gap: 14px; margin-top: clamp(20px, 3vh, 32px); }
#advantage .moat-layer-body { gap: 12px; }
#advantage .moat-claim { font-size: clamp(17px, 1.4vw, 22px); }
#advantage .moat-why { font-size: clamp(13px, 0.95vw, 15px); line-height: 1.45; max-width: 760px; }
#advantage .moat-proofs { padding-top: 8px; gap: 8px clamp(12px, 1.4vw, 22px); }
#advantage .mp .mp-v { font-size: 12.5px; line-height: 1.35; }
#advantage .moat-num { font-size: clamp(28px, 3vw, 48px); }
#advantage .moat-tense { white-space: nowrap; }

/* Pin the status pill to the top-right of the layer card itself,
   not whatever positioning context the body grid created */
#advantage .moat-layer { position: relative; }
#advantage .moat-pill { position: absolute; top: 18px; right: 24px; z-index: 2; }

/* ============================================================
   TEAM — slide 20
   ============================================================ */
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(24px, 3vw, 44px);
  align-content: start;
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .team-grid { grid-template-columns: 1fr; } }
.person {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 22px; border-top: 1px solid var(--rule-2);
  position: relative;
}
.person.hi { border-top-color: var(--cool); }
.person::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--cool); box-shadow: 0 0 8px rgba(109,184,255,0.5);
  display: none;
}
.person.hi::before { display: block; }
.person-role { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--cool); font-weight: 600; }
.person-name {
  font-size: clamp(20px, 1.7vw, 30px); font-weight: 400; color: var(--ink); letter-spacing: -0.02em;
}
.person-bio { font-size: clamp(13px, 1vw, 15px); line-height: 1.6; color: var(--ink-mid); }
.person-bio strong { color: var(--warm); font-weight: 600; }
.person-tag {
  font-size: clamp(13px, 1vw, 16px); color: var(--ink); font-style: italic; line-height: 1.45;
  margin-top: 4px;
}
.person-advisor { grid-column: 1 / -1; padding-top: 18px; }
.person-advisor .row {
  display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: baseline;
}
@media (max-width: 700px) { .person-advisor .row { grid-template-columns: 1fr; } }

/* ============================================================
   ASK — slide 21
   ============================================================ */
.funds { display: flex; flex-direction: column; gap: 22px; }
.fund-row {
  display: grid; grid-template-columns: 90px 1fr 320px;
  align-items: center; gap: 22px;
}
@media (max-width: 900px) { .fund-row { grid-template-columns: 70px 1fr; } .fund-row .fund-label { grid-column: 1 / -1; } }
.fund-pct {
  font-size: clamp(28px, 2.6vw, 42px); font-weight: 300; color: var(--ink); letter-spacing: -0.03em;
}
.fund-bar { height: 10px; background: var(--rule); border-radius: 1px; position: relative; overflow: hidden; }
.fund-bar > span {
  position: absolute; inset: 0;
  background: var(--cool); border-radius: 1px;
  transform-origin: left; transform: scaleX(0);
  transition: transform 1100ms cubic-bezier(.2,.8,.2,1);
}
.slide[data-active="true"] .fund-bar > span { transform: scaleX(var(--bar-target, 1)); }
.fund-row.compliance .fund-bar > span { background: var(--warm); }
.fund-row.reserve .fund-bar > span { background: var(--ink-low); }
.fund-row.gtm .fund-bar > span { background: var(--cool); opacity: 0.7; }
.fund-label { font-size: var(--fs-body); color: var(--ink); font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.fund-label small { display: block; font-size: 13px; color: var(--ink-mid); font-weight: 400; margin-top: 4px; letter-spacing: 0; }

.ask-line {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--rule-2);
  font-size: clamp(22px, 2.4vw, 38px); font-weight: 400; color: var(--ink); letter-spacing: -0.02em;
}
.ask-line .fill { color: var(--warm); font-family: var(--mono); font-weight: 500; font-size: clamp(18px, 1.8vw, 28px); font-style: normal; letter-spacing: 0.04em; }

/* ============================================================
   CLOSER — slide 22
   ============================================================ */
.closer-stack {
  display: flex; flex-direction: column; gap: clamp(18px, 3vh, 32px);
  max-width: 1700px;
  margin: auto 0;
}
.closer-line {
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink-mid);
  opacity: 0; transform: translateY(10px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.slide[data-active="true"] .closer-line { opacity: 1; transform: translateY(0); }
.slide[data-active="true"] .closer-line:nth-child(1) { transition-delay: 80ms; }
.slide[data-active="true"] .closer-line:nth-child(2) { transition-delay: 480ms; }
.slide[data-active="true"] .closer-line:nth-child(3) { transition-delay: 880ms; }
.closer-line.final { color: var(--ink); font-weight: 400; font-style: italic; }
.closer-line .neutral-brand { color: var(--ink-low); font-weight: 300; }
.closer-line .av { color: var(--warm); font-weight: 400; font-style: italic; }
.closer-line em { color: var(--warm); font-style: italic; }
.closer-secondary {
  margin-top: clamp(40px, 6vh, 64px); padding-top: 22px;
  border-top: 1px solid var(--rule); font-style: italic;
  font-size: clamp(16px, 1.3vw, 22px); color: var(--ink-low);
  letter-spacing: -0.005em; max-width: 900px;
  opacity: 0; transition: opacity 800ms ease 1300ms;
}
.slide[data-active="true"] .closer-secondary { opacity: 1; }
.closer-secondary .av-mini { color: var(--ink-mid); font-weight: 600; font-style: normal; font-family: var(--sans); }

.closer-pulse {
  margin-top: 44px; display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cool-2);
  opacity: 0; transition: opacity 800ms ease 1700ms;
}
.slide[data-active="true"] .closer-pulse { opacity: 1; }
.closer-pulse .dot {
  width: 7px; height: 7px; background: var(--cool-2); border-radius: 50%;
  animation: live-pulse 1.6s infinite;
}

/* ============================================================
   BACKUP section break
   ============================================================ */
.backup-break .marker {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.32em;
  color: var(--warm); text-transform: uppercase;
}
.backup-break h1 {
  font-size: clamp(36px, 4.4vw, 72px);
  font-weight: 300; letter-spacing: -0.025em; font-style: italic;
  color: var(--ink); margin-top: 18px; line-height: 1;
}
.backup-break .body { font-size: clamp(15px, 1.05vw, 19px); color: var(--ink-mid); margin-top: 18px; max-width: 900px; }

/* ============================================================
   Utilities
   ============================================================ */
.stack { display: flex; flex-direction: column; }
.gap-3 { gap: 10px; }
.gap-4 { gap: 14px; }
.gap-6 { gap: 22px; }
.gap-8 { gap: 30px; }
.gap-10 { gap: 38px; }
.gap-12 { gap: 46px; }
.grow { flex: 1; min-height: 12px; }
.row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.row.between { justify-content: space-between; }
.row.start { align-items: flex-start; }
.between { justify-content: space-between; }
.max-1100 { max-width: 1100px; }
.max-1300 { max-width: 1300px; }
.max-1500 { max-width: 1500px; }
.max-1700 { max-width: 1700px; }
.mono { font-family: var(--mono); }
.center { text-align: center; }
.alt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3vw, 56px); }
@media (max-width: 900px) { .alt-grid-2 { grid-template-columns: 1fr; } }

strong.av { color: var(--cool-2); font-weight: 700; }
strong.warm { color: var(--warm); font-weight: 600; }
strong.ink { color: var(--ink); font-weight: 700; }

/* Slide 03 — Averum hero (chapter break between Problem and What you get). */
.hero-inner {
  justify-content: flex-start;
}
.hero-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vh, 56px);
  text-align: center;
  padding: clamp(40px, 8vh, 96px) 0;
}
.av-mark-hero {
  width: clamp(96px, 11vw, 160px);
  height: clamp(96px, 11vw, 160px);
  background: linear-gradient(140deg, var(--cool-2), var(--cool) 60%, var(--cool-3));
  clip-path: polygon(50% 0%, 100% 100%, 75% 100%, 50% 50%, 25% 100%, 0% 100%);
  filter: drop-shadow(0 0 42px rgba(109, 184, 255, 0.55));
  animation: glyph-breath 4s ease-in-out infinite;
}
.hero-headline {
  max-width: 16ch;
  margin: 0;
}
.hero-subhead {
  max-width: 32ch;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
}

/* Slide 04 — "What you get" benefit grid (3×2 cards). */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(24px, 4vh, 48px);
}
.benefit-card {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid var(--rule, rgba(243, 236, 219, 0.10));
  background: rgba(243, 236, 219, 0.02);
  border-radius: 2px;
}
.benefit-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cool-2);
  margin-bottom: 14px;
}
.benefit-illustration {
  margin: 0 calc(-1 * clamp(20px, 2vw, 28px)) 16px;
  padding: 8px clamp(20px, 2vw, 28px);
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid rgba(243, 236, 219, 0.06);
  border-bottom: 1px solid rgba(243, 236, 219, 0.06);
}
.benefit-illustration svg {
  width: 100%;
  height: auto;
  max-height: 110px;
  display: block;
}
.benefit-name {
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.benefit-body {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Slide 08 — GTM timeline track.
   Backs the .gtm-* HTML classes which had no styling previously. */
.gtm-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
  margin-top: clamp(28px, 4vh, 56px);
  padding-top: 28px;
}
.gtm-track {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule, rgba(243, 236, 219, 0.18));
}
.gtm-segment {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: clamp(8px, 1vw, 16px);
}
.gtm-segment + .gtm-segment {
  border-left: 1px solid var(--rule, rgba(243, 236, 219, 0.10));
  padding-left: clamp(16px, 1.6vw, 28px);
}
.gtm-marker {
  position: absolute;
  top: -19px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--ink-low);
}
.gtm-segment.now .gtm-marker.hi {
  border-color: var(--warm);
  box-shadow: 0 0 14px rgba(232, 201, 122, 0.45);
}
.gtm-segment.future .gtm-marker {
  border-color: rgba(127, 212, 163, 0.5);
}
.arrow-sep { color: var(--ink-low); }
.gtm-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-low);
  font-weight: 600;
}
.gtm-time.accent { color: var(--warm); }
.gtm-time.warm { color: var(--green); opacity: 0.85; }
.gtm-goal {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.gtm-segment.now .gtm-goal { color: var(--warm-2, var(--warm)); }
.gtm-body {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .gtm-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .gtm-segment + .gtm-segment { border-left: none; padding-left: 0; }
}

/* Slide 05 — BYO Claw companion tile inside the Navigator side panel */
.byo-claw-tile {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(154, 214, 255, 0.32);
  background: rgba(109, 184, 255, 0.06);
  border-radius: 2px;
}
.byo-claw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.byo-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cool-2);
}
.byo-presence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.byo-claw-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  margin-bottom: 4px;
  color: var(--ink-low);
}
.byo-claw-row .byo-v {
  color: var(--ink-mid);
}
.byo-claw-msg {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(154, 214, 255, 0.22);
}
.byo-msg-who {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cool-2);
}
.byo-claw-msg p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-mid);
}

/* Slide 09 — Competition: 2x2 scatter plot (Governed × AI-driven) */
.scatter-chart {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: 1fr 56px;
  gap: 12px;
  margin-top: clamp(20px, 3vh, 36px);
  flex: 1;
  min-height: clamp(380px, 56vh, 580px);
}
.sc-axis-y {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.sc-axis-x {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 1.5vw, 24px);
}
.sc-axis-end {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  white-space: nowrap;
}
.sc-axis-y .sc-axis-end {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.sc-axis-end.sc-axis-hi { color: var(--cool-2); font-weight: 600; }

.sc-plot {
  grid-row: 1;
  grid-column: 2;
  position: relative;
  border: 1px solid rgba(243, 236, 219, 0.10);
  background: rgba(243, 236, 219, 0.012);
  overflow: hidden;
}
.sc-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sc-svg .sc-grid line { stroke: rgba(243, 236, 219, 0.06); stroke-width: 1; }
.sc-svg .sc-cross { stroke: rgba(243, 236, 219, 0.18); stroke-width: 1; }
.sc-svg .sc-dot {
  fill: var(--ink-low);
  opacity: 0;
  transition: opacity 600ms ease;
}
.slide[data-active="true"] .sc-svg .sc-dot { opacity: 0.85; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(1) { transition-delay: 200ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(2) { transition-delay: 320ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(3) { transition-delay: 440ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(4) { transition-delay: 560ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(5) { transition-delay: 680ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(6) { transition-delay: 800ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(7) { transition-delay: 920ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(8) { transition-delay: 1040ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(9) { transition-delay: 1160ms; }
.slide[data-active="true"] .sc-svg .sc-dot:nth-of-type(10) { transition-delay: 1280ms; }
.sc-svg .sc-averum-pip,
.sc-svg .sc-averum-pip-outer,
.sc-svg .sc-averum-pip-core {
  opacity: 0;
  transition: opacity 600ms ease 1500ms;
}
.slide[data-active="true"] .sc-svg .sc-averum-pip,
.slide[data-active="true"] .sc-svg .sc-averum-pip-outer,
.slide[data-active="true"] .sc-svg .sc-averum-pip-core { opacity: 1; }

/* Cluster labels — HTML overlay positioned absolutely on the plot */
.sc-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 280px;
  padding: 8px 12px;
  border-left: 1px solid rgba(243, 236, 219, 0.20);
  background: linear-gradient(90deg, rgba(243, 236, 219, 0.04), transparent 80%);
  opacity: 0;
  transition: opacity 600ms ease;
}
.slide[data-active="true"] .sc-label { opacity: 1; }
.slide[data-active="true"] .sc-label.sc-l-tl { transition-delay: 1300ms; }
.slide[data-active="true"] .sc-label.sc-l-bl { transition-delay: 1450ms; }
.slide[data-active="true"] .sc-label.sc-l-br { transition-delay: 1600ms; }
.slide[data-active="true"] .sc-label.sc-l-tr { transition-delay: 1800ms; }

.sc-l-tl { left: 4%; top: 4%; }
.sc-l-bl { left: 4%; bottom: 4%; }
.sc-l-br { right: 4%; bottom: 4%; max-width: 320px; text-align: right; border-left: none; border-right: 1px solid rgba(243, 236, 219, 0.20); background: linear-gradient(270deg, rgba(243, 236, 219, 0.04), transparent 80%); }
.sc-l-tr { right: 4%; top: 4%; max-width: 320px; text-align: right; border-left: none; border-right: 2px solid var(--cool-2); background: linear-gradient(270deg, rgba(109, 184, 255, 0.14), transparent 80%); padding: 12px 16px; box-shadow: 0 18px 40px -16px rgba(109, 184, 255, 0.45); }

.sc-l-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  font-weight: 600;
}
.sc-hi .sc-l-cat { color: var(--cool-2); }
.sc-l-eg {
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.45;
}
.sc-hi .sc-l-eg { color: var(--ink); font-size: 13px; }

.sc-glyph {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: linear-gradient(140deg, var(--cool-2), var(--cool) 60%, var(--cool-3));
  clip-path: polygon(50% 0%, 100% 100%, 75% 100%, 50% 50%, 25% 100%, 0% 100%);
  filter: drop-shadow(0 0 12px rgba(109, 184, 255, 0.55));
  vertical-align: middle;
  margin-bottom: 4px;
  animation: glyph-breath 4s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .scatter-chart { min-height: clamp(420px, 60vh, 560px); }
  .sc-label { max-width: 200px; font-size: 11px; }
}

/* Slide 09 — Competition: 2x2 quadrant (Governed × AI-driven) — legacy/orphan */
.quadrant-chart {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: 1fr 56px;
  gap: 12px;
  margin-top: clamp(20px, 3vh, 36px);
  flex: 1;
  min-height: clamp(380px, 56vh, 560px);
}
.quad-axis-y {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.quad-axis-y .axis-high,
.quad-axis-y .axis-low {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.quad-axis-y .axis-high { color: var(--cool-2); font-weight: 600; }

.quad-grid {
  grid-row: 1;
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border: 1px solid rgba(243, 236, 219, 0.12);
}
.quad {
  position: relative;
  padding: clamp(18px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(243, 236, 219, 0.015);
}
.quad.q-tl { border-right: 1px dashed rgba(243, 236, 219, 0.18); border-bottom: 1px dashed rgba(243, 236, 219, 0.18); }
.quad.q-bl { border-right: 1px dashed rgba(243, 236, 219, 0.18); }
.quad.q-tr { border-bottom: 1px dashed rgba(243, 236, 219, 0.18); }

/* Averum quadrant — top-right, the open lane */
.quad.q-hi {
  background: linear-gradient(135deg, rgba(109, 184, 255, 0.10), rgba(154, 214, 255, 0.04) 70%);
  box-shadow: inset 0 0 32px rgba(109, 184, 255, 0.08);
}
.quad-glyph {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  width: clamp(28px, 2.4vw, 36px);
  height: clamp(28px, 2.4vw, 36px);
  background: linear-gradient(140deg, var(--cool-2), var(--cool) 60%, var(--cool-3));
  clip-path: polygon(50% 0%, 100% 100%, 75% 100%, 50% 50%, 25% 100%, 0% 100%);
  filter: drop-shadow(0 0 16px rgba(109, 184, 255, 0.55));
  animation: glyph-breath 4s ease-in-out infinite;
}

.quad-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  font-weight: 600;
  margin-bottom: 4px;
}
.quad.q-hi .quad-cat { color: var(--cool-2); }

.quad-name {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.quad.q-hi .quad-name { color: var(--cool-2); font-weight: 600; }

.quad-examples {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-top: 2px;
}

.quad-note {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.45;
  margin-top: 6px;
}
.quad.q-hi .quad-note { color: var(--ink); }

.quad-axis-x {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 1.5vw, 24px);
}
.quad-axis-x .axis-low,
.quad-axis-x .axis-high {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
}
.quad-axis-x .axis-high { color: var(--cool-2); font-weight: 600; }

@media (max-width: 1100px) {
  .quadrant-chart { min-height: auto; }
  .quad-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, auto); }
  .quad.q-tl, .quad.q-bl { border-right: none; }
}

/* Slide 06 — Wedge: audience-product ladder + Averum runtime foundation */
.ladder {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
  margin-top: clamp(20px, 3vh, 36px);
}
.rung {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(12px, 1.6vh, 18px) clamp(16px, 1.8vw, 24px);
  border-left: 3px solid currentColor;
  background: rgba(243, 236, 219, 0.02);
  border-top: 1px solid rgba(243, 236, 219, 0.06);
  border-right: 1px solid rgba(243, 236, 219, 0.06);
  border-bottom: 1px solid rgba(243, 236, 219, 0.06);
}
.rung.rung-a { color: var(--cool-2); }
.rung.rung-b { color: var(--warm); }
.rung.rung-c { color: var(--alarm); }
.rung.rung-inst { color: var(--green); }

.rung-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rung-aud {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.rung-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: 0.85;
}

.rung-body {
  display: grid;
  grid-template-columns: minmax(320px, auto) minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  align-items: center;
}
.rung-products {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 1.4vw, 20px);
}
.rung-prod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 110px;
}
.rung-prod-mock {
  width: 110px;
  height: 66px;
  border: 1px solid rgba(243, 236, 219, 0.10);
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rung-prod-mock svg {
  width: 100%;
  height: 100%;
  display: block;
}
.rung-prod-name {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  text-align: center;
}
.rung-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* Foundation strip — what every rung above sits on */
.foundation {
  position: relative;
  margin-top: clamp(14px, 2.4vh, 24px);
  padding: clamp(12px, 1.4vh, 18px) clamp(20px, 2.2vw, 32px);
  background: linear-gradient(180deg, rgba(109, 184, 255, 0.08), rgba(109, 184, 255, 0.04));
  border-top: 1px solid var(--cool-3);
  border-bottom: 1px solid var(--cool-3);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
}
.foundation::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--cool-3);
  transform: translateX(-50%);
  opacity: 0.7;
}
.foundation-title {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cool-2);
  font-weight: 600;
  white-space: nowrap;
}
.foundation-primitives {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
}

@media (max-width: 1100px) {
  .rung-body { grid-template-columns: 1fr; }
  .foundation { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Slide 07 — concentric audience rings + wedge proof bar (legacy — replaced by .ladder above) */
.audience-rings {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-top: clamp(24px, 4vh, 48px);
  align-items: center;
}
.audience-rings-diagram {
  width: 100%;
  max-width: 520px;
  justify-self: center;
}
.audience-rings-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}
.audience-rings-legend {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ring-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 14px 18px;
  border-left: 2px solid currentColor;
  background: rgba(243, 236, 219, 0.02);
}
.ring-row.ring-a { color: var(--cool-2); }
.ring-row.ring-b { color: var(--warm); }
.ring-row.ring-c { color: var(--alarm); }
.ring-row.ring-inst { color: var(--green); }
.ring-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  grid-row: 1;
  grid-column: 1;
}
.ring-role {
  font-size: 13px;
  color: var(--ink-mid);
  grid-row: 1;
  grid-column: 2;
  align-self: center;
}
.ring-products {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-low);
  grid-row: 2;
  grid-column: 1 / -1;
  letter-spacing: 0.04em;
}
@media (max-width: 1100px) {
  .audience-rings { grid-template-columns: 1fr; }
  .ring-row { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .ring-tag, .ring-role, .ring-products {
    grid-column: 1; grid-row: auto;
  }
}

.wedge-proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(24px, 4vh, 40px);
  padding: 16px 0;
  border-top: 1px dashed rgba(243, 236, 219, 0.16);
  border-bottom: 1px dashed rgba(243, 236, 219, 0.16);
}
.wedge-proof-bar > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wpk {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
}
.wpv {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .wedge-proof-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Slide 11 — pricing ladder rung tints + launch footnote */
.pricing-matrix tr.rung-free td { color: var(--ink-mid); }
.pricing-matrix tr.rung-operator td { background: rgba(232, 201, 122, 0.04); }
.pricing-matrix tr.rung-sdk td { background: rgba(109, 184, 255, 0.04); }
.pricing-matrix tr.rung-embed td {
  background: rgba(127, 212, 163, 0.04);
  font-style: italic;
}
.benchmark-row .bm-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .benchmark-row .bm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.launch-footnote {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-low);
  line-height: 1.5;
  font-style: italic;
}

/* Slide 10 — audience-default-by-segment row */
.audience-map {
  margin-top: clamp(20px, 3vh, 36px);
  padding: clamp(16px, 2.4vh, 24px);
  border: 1px dashed rgba(243, 236, 219, 0.16);
  background: rgba(243, 236, 219, 0.02);
}
.audience-map-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 12px;
}
.audience-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.audience-map-grid > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.amk {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--warm);
  text-transform: uppercase;
}
.amv {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .audience-map-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Smaller screens */
@media (max-width: 760px) {
  :root { --pad-y: 30px; --rail-h: 36px; }
  .menu-toggle { top: 4px; right: 12px; }
  .chrome-header .h-volume { display: none; }
}
