/* ================================================================
   HALO — INVESTOR DECK  |  DESIGN SYSTEM v2
   Entity: HALO  |  Stack: HTML + CSS + Vanilla JS
   ================================================================ */

/* ── 1. RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ── 2. TOKENS ────────────────────────────────────────────── */
:root {
  /* Palette */
  --c-paper:   #F5F5F2;
  --c-ink:     #0F0F0E;
  --c-black:   #0B0B09;
  --c-white:   #FFFFFF;
  --c-orange:  #F04020;
  --c-muted:   #6E6E68;

  /* Rule colors */
  --rule-light:  rgba(0,0,0,0.10);
  --rule-dark:   rgba(255,255,255,0.10);
  --rule-orange: rgba(255,255,255,0.25);

  /* Typography */
  --f-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --f-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --f-serif:   'DM Serif Display', Georgia, serif;

  /* Motion */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-enter:   0.85s;
  --dur-fast:    0.25s;

  /* Layout */
  --pad-x:    clamp(32px, 6vw, 96px);
  --pad-y:    clamp(24px, 4vh, 60px);
  --header-h: 48px;
}

/* ── 3. BASE ──────────────────────────────────────────────── */
html, body { height: 100%; overflow: hidden; background: var(--c-black); }

/* ── 4. GATE ──────────────────────────────────────────────── */
.gate { position: fixed; inset: 0; background: var(--c-black); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 200; }
.gate__card { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; max-width: 320px; }

/* Gate wordmark — clean lowercase wordmark */
.gate__wordmark {
  font-family: var(--f-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -0.055em;
  text-transform: lowercase;
}

/* Gate wordmark — use the logo image */
.gate__logo {
  width: clamp(160px, 30vw, 280px);
  height: auto;
  margin-bottom: 32px;
  filter: drop-shadow(0 0 20px rgba(255,200,80,0.35)) drop-shadow(0 0 50px rgba(255,100,30,0.18));
  animation: gateBreath 3s ease-in-out infinite alternate;
}
@keyframes gateBreath {
  from { filter: drop-shadow(0 0 20px rgba(255,200,80,0.35)) drop-shadow(0 0 50px rgba(255,100,30,0.18)); }
  to   { filter: drop-shadow(0 0 32px rgba(255,220,100,0.55)) drop-shadow(0 0 80px rgba(255,120,40,0.28)); }
}

/* Fallback wordmark if logo fails */
.gate__wordmark-fallback {
  font-family: 'Satisfy', cursive;
  font-size: clamp(64px, 12vw, 140px);
  color: var(--c-white); line-height: 1; margin-bottom: 28px;
  text-shadow: 0 0 24px rgba(255,255,255,0.8), 0 0 60px rgba(255,200,80,0.4), 0 0 120px rgba(255,100,30,0.2);
}

.gate__tagline { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 28px; }
.gate__divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 28px; }
.gate__label { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 10px; }
.gate__input {
  width: 100%; padding: 14px 20px; background: transparent;
  border: 1px solid rgba(255,255,255,0.18); color: #fff;
  font-family: var(--f-body); font-size: 14px; letter-spacing: 0.12em;
  text-align: center; text-transform: uppercase; outline: none; margin-bottom: 10px;
  transition: border-color var(--dur-fast) ease;
}
.gate__input::placeholder { color: rgba(255,255,255,0.22); }
.gate__input:focus { border-color: rgba(255,255,255,0.55); }
.gate__input.error { border-color: var(--c-orange); }
.gate__btn {
  width: 100%; padding: 14px; background: #fff; color: var(--c-black);
  font-family: var(--f-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 14px;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}
.gate__btn:hover { background: var(--c-orange); color: #fff; }
.gate__error { font-family: var(--f-body); font-size: 11px; letter-spacing: 0.06em; color: var(--c-orange); height: 16px; opacity: 0; transition: opacity var(--dur-fast) ease; }
.gate__error.visible { opacity: 1; }
.gate__confidential { position: absolute; bottom: 24px; font-family: var(--f-body); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.16); }

/* ── 5. DECK CONTAINER ────────────────────────────────────── */
.deck-container {
  height: 100vh; height: 100dvh;
  overflow-y: scroll; scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
}
.deck-container::-webkit-scrollbar { display: none; }

/* ── 6. SLIDE BASE ────────────────────────────────────────── */
.slide { height: 100vh; height: 100dvh; min-height: 100svh; scroll-snap-align: start; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.slide--light  { background: var(--c-paper); color: var(--c-ink); }
.slide--dark   {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(240,64,32,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(240,64,32,0.04) 0%, transparent 50%),
    var(--c-black);
  color: var(--c-white);
}
.slide--orange {
  background:
    radial-gradient(ellipse 75% 55% at 12% 75%, rgba(255,90,40,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 88% 12%, rgba(185,10,0,0.40) 0%, transparent 55%),
    var(--c-orange);
  color: var(--c-white);
}

/* ── 7. SLIDE HEADER ──────────────────────────────────────── */
.slide-header { height: var(--header-h); flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad-x); border-bottom: 1px solid; gap: 16px; }
.slide--light  .slide-header { border-color: var(--rule-light); }
.slide--dark   .slide-header { border-color: var(--rule-dark); }
.slide--orange .slide-header { border-color: var(--rule-orange); }
.slide-header > span { font-family: var(--f-body); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; }
.slide--light  .slide-header > span { color: var(--c-orange); }
.slide--dark[class*="slide--bg-"] .slide-header > span { color: var(--c-orange); }
.slide--dark:not([class*="slide--bg-"]) .slide-header > span { color: #F5F0E8; }
.slide--orange .slide-header > span { color: rgba(255,255,255,0.90); }
.slide-header > span.h-center { flex: 1; text-align: center; }

/* ── 8. SLIDE CONTENT ─────────────────────────────────────── */
.slide-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: var(--pad-y) var(--pad-x); min-height: 0; }
.slide-content--center { align-items: center; text-align: center; }
.slide-content--between { justify-content: space-between; }

/* ── 9. SLIDE FOOTER ──────────────────────────────────────── */
.slide-footer { position: absolute; bottom: 22px; left: var(--pad-x); right: var(--pad-x); display: flex; justify-content: space-between; align-items: flex-end; pointer-events: none; }
.slide-footer > span { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.5; }
.slide--dark   .slide-footer > span { color: rgba(255,255,255,0.18); }
.slide--light  .slide-footer > span { color: rgba(0,0,0,0.22); }
.slide--orange .slide-footer > span { color: rgba(255,255,255,0.35); }

/* ── 10. UTILITY ──────────────────────────────────────────── */
.rule { width: 100%; height: 1px; background: currentColor; flex-shrink: 0; }
.slide--light  .rule { opacity: 0.10; }
.slide--dark   .rule { opacity: 0.12; }
.slide--orange .rule { opacity: 0.25; }
.rule--sm { margin: 24px 0; }
.rule--md { margin: 36px 0; }
.rule--lg { margin: 44px 0; }

/* Section label */
.s-label { display: flex; align-items: center; gap: 14px; font-family: var(--f-display); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 32px; }
.s-label::before { content: ''; display: block; width: 24px; height: 1px; background: currentColor; flex-shrink: 0; }
.slide--light  .s-label { color: var(--c-muted); }
.slide--dark   .s-label { color: rgba(255,255,255,0.62); }
.slide--orange .s-label { color: rgba(255,255,255,0.62); }

.push-top { margin-top: auto; padding-top: 44px; }

/* ── 11. TYPOGRAPHY — CALIBRATED FOR PITCH DECK LEGIBILITY ── */

/* HERO — Massive impact numbers: 97.7%, market stats */
.t-hero {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(100px, 22vw, 320px);
  line-height: 0.82; letter-spacing: -0.045em;
}

/* DISPLAY — Opening statements, slide statements */
.t-display {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(44px, 7.5vw, 112px);
  line-height: 0.92; letter-spacing: -0.03em;
}

/* XL — Sub-statements, large headings */
.t-xl {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(32px, 5vw, 76px);
  line-height: 0.95; letter-spacing: -0.025em;
}

/* LG — Section titles, integration labels */
.t-lg {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(24px, 3.5vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
}

/* MD — Sub-headings, key statements */
.t-md {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 1.2; letter-spacing: -0.015em;
}

/* BODY — Readable at all sizes. THIS IS NON-NEGOTIABLE. */
.t-body {
  font-family: var(--f-body); font-weight: 400;
  font-size: clamp(16px, 1.7vw, 22px); line-height: 1.65;
}

/* SM — Supporting text, captions, descriptors */
.t-sm {
  font-family: var(--f-body); font-weight: 400;
  font-size: clamp(14px, 1.2vw, 17px); line-height: 1.55; letter-spacing: 0.01em;
}

/* Color */
.t-orange { color: var(--c-orange); }
.t-muted  { opacity: 0.72; }
.t-faint  { opacity: 0.52; }

/* ── 12. INTRO SLIDE (S01) ────────────────────────────────── */
.slide-content--intro {
  justify-content: flex-end;
  padding-bottom: clamp(52px, 9vh, 108px);
}

.intro-wordmark {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--c-orange);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 28px;
  display: block;
}

.intro-statement {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(44px, 7.8vw, 116px);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: rgba(255,255,255,0.97);
  margin-bottom: 0;
}

.intro-tagline {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 38px);
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.44);
  line-height: 1.2;
  margin-top: 0;
}

/* ── 12b. COVER SLIDE ─────────────────────────────────────── */
.wordmark-script {
  font-family: 'Satisfy', cursive;
  font-size: clamp(72px, 14vw, 180px);
  color: var(--c-ink);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  display: block;
}
.cover-tagline {
  font-family: var(--f-body); font-weight: 300;
  font-size: clamp(16px, 1.9vw, 24px);
  color: rgba(0,0,0,0.52); max-width: 520px;
  line-height: 1.5; text-align: center;
}
.cover-sub {
  font-family: var(--f-body); font-weight: 400;
  font-size: clamp(11px, 1vw, 13px); letter-spacing: 0.20em;
  text-transform: uppercase; color: rgba(0,0,0,0.42);
  margin-top: 18px; text-align: center;
}

/* ── 13. MANIFESTO SLIDE (S01) ────────────────────────────── */
.manifesto {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.manifesto-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.manifesto-eyebrow::before,
.manifesto-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-orange);
  opacity: 0.6;
}
.manifesto-headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.96);
  margin-bottom: 28px;
}
.manifesto-sub {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.01em;
  margin-bottom: 52px;
  line-height: 1.6;
  max-width: 640px;
}
.manifesto-brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(88px, 18vw, 260px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: var(--c-white);
  text-shadow: 0 0 100px rgba(240,64,32,0.28), 0 0 200px rgba(240,64,32,0.10);
  margin-bottom: 48px;
}
.manifesto-close {
  font-family: var(--f-body);
  font-size: clamp(13px, 1.3vw, 16px);
  color: rgba(255,255,255,0.34);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 480px;
  line-height: 1.8;
}

/* Legacy quote classes — kept for backwards compat */
.quote-block { max-width: 720px; text-align: center; }
.quote-line { font-family: var(--f-serif); font-style: italic; font-size: clamp(22px, 3vw, 44px); line-height: 1.5; color: rgba(255,255,255,0.85); display: block; }
.quote-brand-name { font-family: var(--f-serif); font-style: italic; font-size: clamp(52px, 9vw, 128px); line-height: 1.0; color: var(--c-orange); display: block; margin: 16px 0; text-shadow: 0 0 60px rgba(240,64,32,0.4); }
.quote-line-2 { font-family: var(--f-serif); font-style: italic; font-size: clamp(22px, 3vw, 44px); line-height: 1.5; color: rgba(255,255,255,0.85); display: block; margin-top: 8px; }
.quote-attr { font-family: var(--f-body); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-top: 52px; display: block; }

/* ── 14. COMPARISON TABLE ─────────────────────────────────── */
.compare-table { width: 100%; }
.compare-table th, .compare-table td { padding: 18px 0; border-bottom: 1px solid; text-align: left; vertical-align: middle; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { padding-left: 28px; }
.compare-table th { font-family: var(--f-body); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.compare-table td { font-family: var(--f-body); font-size: clamp(15px, 1.5vw, 19px); font-weight: 400; line-height: 1.4; }
.compare-table td:first-child { font-weight: 700; }
.slide--light  .compare-table th, .slide--light  .compare-table td { border-color: rgba(0,0,0,0.09); }
.slide--light  .compare-table th { color: var(--c-muted); }
.slide--orange .compare-table th, .slide--orange .compare-table td { border-color: rgba(255,255,255,0.22); }
.slide--orange .compare-table th { color: rgba(255,255,255,0.72); }
.slide--orange .compare-table td { color: #fff; font-weight: 500; }

.tag { display: inline-block; padding: 4px 12px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.tag--missing { background: rgba(240,64,32,0.14); color: var(--c-orange); }
.tag--win { background: rgba(240,64,32,0.10); color: var(--c-orange); }
.slide--orange .tag--missing { background: rgba(0,0,0,0.22); color: #fff; }
.slide--light  .tag--win { background: rgba(240,64,32,0.10); color: var(--c-orange); }

/* ── 15. STATS GRID ───────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 36px 0; border-bottom: 1px solid; }
.stat-cell:not(:last-child) { border-right: 1px solid; padding-right: 32px; }
.stat-cell:not(:first-child) { padding-left: 32px; }
.slide--dark  .stat-cell { border-color: rgba(255,255,255,0.10); }
.slide--light .stat-cell { border-color: rgba(0,0,0,0.09); }
.stat-lbl { font-family: var(--f-body); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; margin-bottom: 12px; }
.stat-val { font-family: var(--f-display); font-weight: 700; font-size: clamp(44px, 7.5vw, 104px); letter-spacing: -0.03em; line-height: 0.88; }
.stat-sub { font-family: var(--f-body); font-size: clamp(13px, 1.2vw, 16px); opacity: 0.75; margin-top: 10px; font-weight: 400; line-height: 1.45; }

/* ── 16. MARKET ROWS ──────────────────────────────────────── */
.market-row { display: grid; grid-template-columns: minmax(140px, 0.8fr) 1fr; gap: 0 48px; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.market-num { font-family: var(--f-display); font-weight: 700; font-size: clamp(48px, 7.5vw, 108px); letter-spacing: -0.035em; line-height: 0.86; }
.market-label { font-family: var(--f-body); font-weight: 400; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.5; color: rgba(255,255,255,0.82); }

/* ── 17. STATEMENT ROWS ───────────────────────────────────── */
.statement-row { display: flex; gap: 28px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid; }
.slide--light  .statement-row { border-color: rgba(0,0,0,0.09); }
.slide--dark   .statement-row { border-color: rgba(255,255,255,0.10); }
.slide--orange .statement-row { border-color: rgba(255,255,255,0.22); }
.statement-n { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 4vw, 64px); letter-spacing: -0.025em; line-height: 1; flex-shrink: 0; min-width: 40px; }
.slide--light  .statement-n { color: rgba(0,0,0,0.14); }
.slide--dark   .statement-n { color: rgba(255,255,255,0.12); }
.slide--orange .statement-n { color: rgba(255,255,255,0.25); }
.statement-body { display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.statement-title { font-family: var(--f-display); font-weight: 700; font-size: clamp(17px, 2.4vw, 36px); letter-spacing: -0.015em; line-height: 1.05; }
.statement-sub { font-family: var(--f-body); font-weight: 400; font-size: clamp(15px, 1.4vw, 19px); opacity: 0.78; line-height: 1.5; }

/* ── 18. PHASE LIST ───────────────────────────────────────── */
.phase-item { display: flex; gap: 28px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.09); }
.phase-item:last-child { border-bottom: none; }
.phase-n { font-family: var(--f-display); font-weight: 700; font-size: clamp(36px, 5.5vw, 80px); line-height: 1; letter-spacing: -0.025em; flex-shrink: 0; width: clamp(48px, 7.5vw, 88px); color: rgba(0,0,0,0.18); }
.phase-body { padding-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.phase-title { font-family: var(--f-display); font-weight: 700; font-size: clamp(18px, 2.4vw, 34px); letter-spacing: -0.015em; line-height: 1; }
.phase-desc { font-family: var(--f-body); font-weight: 400; font-size: clamp(15px, 1.4vw, 18px); color: #4A4A44; line-height: 1.58; }

/* ── 19. INTEGRATION GRID ─────────────────────────────────── */
.integration-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.int-cell { padding: 28px 28px 28px 0; border-right: 1px solid rgba(0,0,0,0.09); }
.int-cell:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.int-cell:nth-child(2), .int-cell:nth-child(3) { padding-left: 28px; }
.int-platform { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 8px; }
.int-function { font-family: var(--f-display); font-weight: 700; font-size: clamp(20px, 2.8vw, 40px); letter-spacing: -0.02em; line-height: 1; }
.int-desc { font-family: var(--f-body); font-weight: 400; font-size: clamp(13px, 1.15vw, 16px); color: var(--c-muted); margin-top: 10px; line-height: 1.5; }

/* ── 20. TRACTION ─────────────────────────────────────────── */
.traction-item { display: flex; align-items: center; gap: 22px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.10); font-family: var(--f-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 30px); letter-spacing: -0.01em; color: rgba(255,255,255,0.92); }
.traction-item:last-child { border-bottom: none; }
.traction-item::before { content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--c-orange); flex-shrink: 0; box-shadow: 0 0 10px rgba(240,64,32,0.55); }

/* ── 21. TEAM ─────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; }
.team-member { padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,0.09); }
.team-name { font-family: var(--f-display); font-weight: 700; font-size: clamp(22px, 3.2vw, 48px); letter-spacing: -0.025em; line-height: 1; margin-bottom: 6px; }
.team-role { font-family: var(--f-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 16px; }
.team-bio { font-family: var(--f-body); font-weight: 400; font-size: clamp(14px, 1.3vw, 17px); color: var(--c-ink); opacity: 0.62; line-height: 1.65; }

/* ── 22. FINANCIALS ───────────────────────────────────────── */
.fin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.fin-cell { padding: 28px 36px 28px 0; border-right: 1px solid rgba(0,0,0,0.09); }
.fin-cell:last-child { border-right: none; }
.fin-cell:not(:first-child) { padding-left: 36px; padding-right: 0; }
.fin-cell:last-child { padding-left: 36px; }
.fin-lbl { font-family: var(--f-body); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #4A4A44; margin-bottom: 12px; }
.fin-val { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px, 4vw, 56px); letter-spacing: -0.025em; line-height: 0.92; }
.fin-sub { font-family: var(--f-body); font-weight: 400; font-size: clamp(13px, 1.15vw, 16px); color: #4A4A44; margin-top: 8px; line-height: 1.45; }
.strategic-item { padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.09); display: flex; flex-direction: column; gap: 6px; }
.strategic-item:last-child { border-bottom: none; }
.si-title { font-family: var(--f-display); font-weight: 600; font-size: clamp(15px, 1.7vw, 22px); letter-spacing: -0.01em; }
.si-desc { font-family: var(--f-body); font-weight: 400; font-size: clamp(13px, 1.2vw, 16px); color: var(--c-muted); line-height: 1.58; }

/* ── 23. BULLET LIST ──────────────────────────────────────── */
.bullet-list { display: flex; flex-direction: column; gap: 16px; }
.bullet-item { display: flex; gap: 16px; align-items: flex-start; font-family: var(--f-body); font-weight: 400; font-size: clamp(15px, 1.6vw, 20px); line-height: 1.5; }
.bullet-item::before { content: '—'; flex-shrink: 0; opacity: 0.38; margin-top: 1px; }

/* Stat descriptor (Problem slide) */
.stat-descriptor { font-family: var(--f-body); font-weight: 400; font-size: clamp(17px, 2vw, 26px); line-height: 1.4; margin-top: 10px; }
.slide--light .stat-descriptor { color: var(--c-ink); opacity: 0.70; }
.slide--dark  .stat-descriptor { color: rgba(255,255,255,0.70); }

/* ── 24. THREE COLUMN BAR ─────────────────────────────────── */
.three-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid; border-bottom: 1px solid; }
.slide--light  .three-bar { border-color: rgba(0,0,0,0.10); }
.slide--dark   .three-bar { border-color: rgba(255,255,255,0.10); }
.slide--orange .three-bar { border-color: rgba(255,255,255,0.25); }
.three-bar-item { padding: 20px 22px 20px 0; font-family: var(--f-display); font-weight: 600; font-size: clamp(13px, 1.5vw, 18px); letter-spacing: -0.01em; line-height: 1.35; border-right: 1px solid; }
.three-bar-item:last-child { border-right: none; }
.three-bar-item:not(:first-child) { padding-left: 22px; padding-right: 0; }
.slide--light  .three-bar-item { border-color: rgba(0,0,0,0.10); }
.slide--dark   .three-bar-item { border-color: rgba(255,255,255,0.10); }
.slide--orange .three-bar-item { border-color: rgba(255,255,255,0.25); }

/* ── 25. PROGRESS DOTS ────────────────────────────────────── */
/* Positioning handled by .right-panel — these are just the dot styles */
.slide-progress { display: flex; flex-direction: column; gap: 7px; }
.slide-progress__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.28); cursor: pointer; border: none; padding: 0; transition: background var(--dur-fast) ease, transform var(--dur-fast) ease, height var(--dur-fast) var(--ease-expo), border-radius var(--dur-fast) ease; }
.slide-progress__dot.is-active { background: #fff; height: 18px; border-radius: 2px; transform: none; }

/* ── 26. NAV CONTROLS ─────────────────────────────────────── */
.nav-controls { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); display: none; align-items: center; gap: 10px; z-index: 100; background: rgba(11,11,9,0.72); border: 1px solid rgba(255,255,255,0.09); border-radius: 100px; padding: 5px 12px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.nav-btn { width: 26px; height: 26px; border-radius: 50%; background: transparent; color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; font-size: 12px; border: none; transition: color var(--dur-fast) ease; }
.nav-btn:hover { color: #fff; }
.nav-count { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.14em; color: rgba(255,255,255,0.50); min-width: 44px; text-align: center; }

/* ── 27. KEYBOARD HINT ────────────────────────────────────── */
.keyboard-hint { position: fixed; bottom: 72px; left: 50%; transform: translateX(-50%); font-family: var(--f-body); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); z-index: 50; transition: opacity 1s ease; pointer-events: none; white-space: nowrap; }

/* ── 28. ENTRANCE ANIMATIONS ──────────────────────────────── */
.slide-content > * { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-enter) var(--ease-expo), transform var(--dur-enter) var(--ease-expo); will-change: transform, opacity; }
.slide-header { opacity: 0; transition: opacity 0.5s ease 0.05s; }
.slide.is-active .slide-header { opacity: 1; }
.slide-footer { opacity: 0; transition: opacity 0.5s ease 0.85s; }
.slide.is-active .slide-footer { opacity: 1; }

/* Organic stagger — logarithmically spaced so early elements reveal fast, trailing elements slow */
.slide.is-active .slide-content > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.06s; }
.slide.is-active .slide-content > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.14s; }
.slide.is-active .slide-content > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.24s; }
.slide.is-active .slide-content > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.35s; }
.slide.is-active .slide-content > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.48s; }
.slide.is-active .slide-content > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay:0.60s; }
.slide.is-active .slide-content > *:nth-child(7) { opacity:1; transform:translateY(0); transition-delay:0.72s; }
.slide.is-active .slide-content > *:nth-child(8) { opacity:1; transform:translateY(0); transition-delay:0.82s; }

/* Wordmark script entrance on cover */
.wordmark-script { opacity: 0; transform: translateY(20px); transition: opacity 1.0s var(--ease-expo), transform 1.0s var(--ease-expo); }
.slide.is-active .wordmark-script { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* Quote slide animation */
.quote-block { opacity: 0; transform: scale(0.98); transition: opacity 1.0s var(--ease-expo), transform 1.0s var(--ease-expo); }
.slide.is-active .quote-block { opacity: 1; transform: scale(1); transition-delay: 0.1s; }
.quote-attr { opacity: 0; transition: opacity 0.7s ease; }
.slide.is-active .quote-attr { opacity: 1; transition-delay: 0.9s; }

/* Manifesto — orange slide overrides (S01 is slide--orange) */
.manifesto, .manifesto-eyebrow, .manifesto-headline, .manifesto-sub, .manifesto-brand, .manifesto-close { will-change: transform, opacity; }

.slide--orange .manifesto-eyebrow {
  color: rgba(255,255,255,0.90);
}
.slide--orange .manifesto-eyebrow::before,
.slide--orange .manifesto-eyebrow::after {
  background: rgba(255,255,255,0.45);
  opacity: 1;
}
.slide--orange .manifesto-headline {
  color: rgba(255,255,255,0.98);
}
.slide--orange .manifesto-sub {
  color: rgba(255,255,255,0.68);
}
.slide--orange .manifesto-brand {
  color: var(--c-white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.18);
}
.slide--orange .manifesto-close {
  color: rgba(255,255,255,0.64);
}

/* Manifesto slide animation */
.manifesto { opacity: 0; transform: translateY(32px); transition: opacity 1.0s var(--ease-expo), transform 1.0s var(--ease-expo); }
.slide.is-active .manifesto { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.manifesto-eyebrow { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s var(--ease-expo); }
.slide.is-active .manifesto-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.manifesto-headline { opacity: 0; transform: translateY(24px); transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo); }
.slide.is-active .manifesto-headline { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.manifesto-sub { opacity: 0; transform: translateY(20px); transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo); }
.slide.is-active .manifesto-sub { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }
.manifesto-brand { opacity: 0; transform: scale(0.96); transition: opacity 1.0s var(--ease-expo), transform 1.1s var(--ease-expo); }
.slide.is-active .manifesto-brand { opacity: 1; transform: scale(1); transition-delay: 0.52s; }
.manifesto-close { opacity: 0; transition: opacity 0.7s ease; }
.slide.is-active .manifesto-close { opacity: 1; transition-delay: 0.95s; }

/* ── 29. REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .slide-content > *, .slide-header, .slide-footer, .quote-block, .quote-attr, .wordmark-script,
  .manifesto, .manifesto-eyebrow, .manifesto-headline, .manifesto-sub, .manifesto-brand, .manifesto-close,
  .slide-progress__dot { transition: none !important; animation: none !important; filter: none !important; }
  .slide.is-active .slide-content > * { opacity: 1 !important; transform: none !important; }
  .slide.is-active .slide-header, .slide.is-active .slide-footer, .slide.is-active .quote-block,
  .slide.is-active .quote-attr, .slide.is-active .wordmark-script,
  .slide.is-active .manifesto, .slide.is-active .manifesto-eyebrow, .slide.is-active .manifesto-headline,
  .slide.is-active .manifesto-sub, .slide.is-active .manifesto-brand, .slide.is-active .manifesto-close { opacity: 1 !important; transform: none !important; }
  .slide-progress__dot.is-active { height: 4px; }
}

/* ── 30. GAP CALCULATOR (S02) ────────────────────────────── */

.gap-calc { justify-content: center; }

/* Select state */
.gap-select { display: flex; flex-direction: column; }

.gap-results { display: none; flex-direction: column; width: 100%; }

.gap-headline {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: var(--c-white);
  margin-bottom: 24px;
}

.gap-prompt {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 19px);
  color: rgba(255,255,255,0.42);
  max-width: 54ch;
  line-height: 1.55;
  margin-bottom: 40px;
}

/* Pills */
.gap-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }

.gap-pill {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.50);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.gap-pill:hover { border-color: rgba(255,255,255,0.44); color: rgba(255,255,255,0.88); }
.gap-pill.is-active { border-color: var(--c-orange); color: var(--c-white); background: rgba(240,64,32,0.14); }
.gap-pills--sm { margin-bottom: 0; }
.gap-pill--sm { padding: 6px 14px; font-size: clamp(11px, 1.2vw, 15px); }

.gap-pills-title {
  font-family: var(--f-body);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 10px;
}

.gap-pills-label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}

/* ── Results state ── */

/* Header row: label left, pill selector right */
.gap-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(20px, 3vh, 36px);
  padding-bottom: clamp(14px, 2vh, 22px);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.gap-results-pills-wrap { display: flex; flex-direction: column; align-items: flex-end; }

/* Three-column board: equal left/right, narrow center accent */
.gap-board {
  display: grid;
  grid-template-columns: 9fr 3fr 9fr;
  gap: 0;
  align-items: center;
}

/* TODAY column — right border as divider */
.gap-col-today {
  padding-right: clamp(28px, 4vw, 60px);
  border-right: 1px solid rgba(255,255,255,0.09);
}

/* Center multiplier column — top-aligned badge */
.gap-divider-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
}

/* ON HALO column — left padding mirrors today's right padding */
.gap-col-halo {
  display: flex;
  flex-direction: column;
  padding-left: clamp(28px, 4vw, 60px);
}

.gap-col-label {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.gap-col-label--halo { color: var(--c-orange); opacity: 0.90; }

.gap-platform-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.gap-platform-id { display: flex; align-items: center; gap: 10px; }
.gap-platform-name { font-family: var(--f-body); font-size: clamp(13px, 1.3vw, 16px); color: rgba(255,255,255,0.38); }
.gap-platform-amt { font-family: var(--f-display); font-weight: 700; font-size: clamp(15px, 1.8vw, 22px); letter-spacing: -0.02em; color: rgba(255,255,255,0.42); }

.gap-today-footer { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 4px; }
.gap-today-label { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.32); }
.gap-today-total { font-family: var(--f-display); font-weight: 700; font-size: clamp(22px, 3vw, 44px); letter-spacing: -0.03em; color: rgba(255,255,255,0.60); }

/* Multiplier — elegant badge, not a monster */
.gap-mult-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.gap-mult-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 100% 80% at center, rgba(240,64,32,0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.gap-mult-x {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.85;
  letter-spacing: -0.055em;
  color: var(--c-orange);
  display: block;
  position: relative;
  text-shadow: 0 0 32px rgba(240,64,32,0.22);
}
.gap-mult-caption {
  font-family: var(--f-body);
  font-size: clamp(9px, 0.85vw, 11px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  line-height: 1.7;
  display: block;
  margin-top: 8px;
  position: relative;
}

/* HALO figure — the hero number */
.gap-halo-figure {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(64px, 10vw, 144px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--c-orange);
  display: block;
  margin-bottom: 10px;
}
.gap-halo-per {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
}

.gap-today-rates { font-family: var(--f-body); font-size: 10px; letter-spacing: 0.04em; color: rgba(255,255,255,0.18); line-height: 1.75; margin-top: 16px; }
.gap-halo-note { font-family: var(--f-body); font-size: clamp(12px, 1.2vw, 15px); color: rgba(255,255,255,0.42); line-height: 1.55; margin-top: 0; max-width: 30ch; }
.gap-halo-note--sub { font-size: 10px; letter-spacing: 0.03em; color: rgba(255,255,255,0.22); margin-top: 8px; max-width: 34ch; line-height: 1.75; }

/* ── (S16 calculator removed — dead calc-* CSS pruned below) ── */
.DEAD_calc-search-row {
  display: flex;
  gap: 0;
  max-width: 600px;
  margin-bottom: 18px;
}

.calc-input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  color: #fff;
  font-family: var(--f-body);
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color var(--dur-fast) ease;
  min-width: 0;
}
.calc-input::placeholder { color: rgba(255,255,255,0.26); }
.calc-input:focus { border-color: rgba(255,255,255,0.50); }

.calc-submit-btn {
  padding: 14px 28px;
  background: var(--c-orange);
  color: #fff;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--c-orange);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--dur-fast) ease;
}
.calc-submit-btn:hover { background: #c73010; border-color: #c73010; }

.calc-presets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.calc-presets-label {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
}

.calc-preset-btn {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.52);
  font-family: var(--f-body);
  font-size: 13px;
  cursor: pointer;
  background: transparent;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.calc-preset-btn:hover { border-color: rgba(255,255,255,0.42); color: rgba(255,255,255,0.85); }

.calc-disclaimer {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.18);
  max-width: 600px;
}

/* Loading state */
.calc-state--loading {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-loading-inner { text-align: center; }

.calc-loading-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.calc-loading-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
  animation: calcPulse 1.2s ease-in-out infinite;
}
.calc-loading-dots span:nth-child(2) { animation-delay: 0.18s; }
.calc-loading-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes calcPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.75); }
  40% { opacity: 1; transform: scale(1.25); }
}

.calc-loading-label {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.34);
}

/* Results state */
.calc-state--results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-artist-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.calc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.calc-artist-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255,255,255,0.96);
}

.calc-artist-meta {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.36);
  margin-top: 5px;
  line-height: 1.5;
}

.calc-reset-btn {
  margin-left: auto;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  transition: color var(--dur-fast) ease;
}
.calc-reset-btn:hover { color: rgba(255,255,255,0.65); }

.calc-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0 48px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.calc-col-label {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 12px;
}

/* Content list */
.calc-content-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.calc-content-item:last-child { border-bottom: none; }

.calc-content-icon {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.calc-content-title {
  font-family: var(--f-body);
  font-size: clamp(12px, 1.15vw, 14px);
  color: rgba(255,255,255,0.76);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.calc-content-date {
  font-family: var(--f-body);
  font-size: 10px;
  color: rgba(255,255,255,0.20);
  white-space: nowrap;
  flex-shrink: 0;
}

.calc-content-earn {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(12px, 1.15vw, 14px);
  color: rgba(255,255,255,0.58);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Platform bars */
.calc-platform-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.calc-platform-item:last-child { border-bottom: none; }

.calc-platform-name {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.44);
  width: 80px;
  flex-shrink: 0;
}

.calc-platform-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.calc-platform-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  transition: width 1.0s var(--ease-expo);
  border-radius: 0 2px 2px 0;
}

.calc-platform-earn {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(12px, 1.15vw, 14px);
  color: rgba(255,255,255,0.70);
  width: 72px;
  text-align: right;
  flex-shrink: 0;
}

/* Comparison block */
.calc-comparison {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  flex-shrink: 0;
}

.calc-comp-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.calc-comp-lbl {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.calc-comp-amt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(255,255,255,0.78);
}

.calc-comp-amt--orange { color: var(--c-orange); }

.calc-comp-sub {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.24);
}

.calc-comp-vs {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  padding: 0 28px;
  padding-top: 6px;
  flex-shrink: 0;
}

.calc-mult-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.09);
  flex-shrink: 0;
  min-width: 110px;
}

.calc-mult-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--c-orange);
  text-shadow: 0 0 40px rgba(240,64,32,0.30);
}

.calc-mult-lbl {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-top: 6px;
  text-align: center;
}

/* ── 31. COMPETITOR BRAND BACKGROUNDS ────────────────────── */
/* Each uses slide--dark for text/rule/header rules + this for background only */

.slide--bg-spotify {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(29,185,84,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(29,185,84,0.08) 0%, transparent 50%),
    #06110A;
}
.slide--bg-apple {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(252,60,68,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(252,60,68,0.10) 0%, transparent 50%),
    #12060A;
}
.slide--bg-youtube {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(255,0,0,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(255,0,0,0.10) 0%, transparent 50%),
    #120404;
}
.slide--bg-tiktok {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(105,201,208,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(238,29,82,0.12) 0%, transparent 50%),
    #06080E;
}
.slide--bg-soundcloud {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(255,85,0,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(255,85,0,0.10) 0%, transparent 50%),
    #110600;
}
.slide--bg-instagram {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(131,58,180,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(225,48,108,0.14) 0%, transparent 50%),
    #0C0610;
}
.slide--bg-meta {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(24,119,242,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(24,119,242,0.10) 0%, transparent 50%),
    #020A16;
}
.slide--bg-pandora {
  background:
    radial-gradient(ellipse 65% 45% at 5% 85%, rgba(54,104,255,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 5%, rgba(0,80,158,0.14) 0%, transparent 50%),
    #02060E;
}

/* ── 32. RIGHT PANEL NAV ──────────────────────────────────── */

.right-panel {
  position: fixed;
  right: clamp(14px, 2vw, 22px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 100;
}

.rpanel-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.36);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--dur-fast) ease;
  flex-shrink: 0;
}
.rpanel-btn:hover { color: rgba(255,255,255,0.85); }

.rpanel-count {
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.24);
  text-align: center;
  padding-top: 2px;
}

/* Slide-progress inside right-panel — remove fixed positioning */
.right-panel .slide-progress {
  position: static;
  transform: none;
  right: auto;
  top: auto;
}

/* Dot contrast on light-background slides */
.right-panel.is-on-light .slide-progress__dot { background: rgba(0,0,0,0.20); }
.right-panel.is-on-light .slide-progress__dot.is-active { background: var(--c-ink); }
.right-panel.is-on-light .rpanel-btn { color: rgba(0,0,0,0.36); }
.right-panel.is-on-light .rpanel-btn:hover { color: rgba(0,0,0,0.80); }
.right-panel.is-on-light .rpanel-count { color: rgba(0,0,0,0.28); }

/* ── 33. GAP CALC — LIGHT SLIDE OVERRIDES ────────────────── */
/* Applied when gap calc lives on a slide--light background  */

.slide--light .gap-headline { color: var(--c-ink); }
.slide--light .gap-prompt { color: rgba(0,0,0,0.44); }
.slide--light .gap-pills-label { color: rgba(0,0,0,0.24); }
.slide--light .gap-pill { border-color: rgba(0,0,0,0.13); color: rgba(0,0,0,0.44); }
.slide--light .gap-pill:hover { border-color: rgba(0,0,0,0.36); color: rgba(0,0,0,0.82); }
.slide--light .gap-pill.is-active { border-color: var(--c-orange); color: var(--c-ink); background: rgba(240,64,32,0.08); }
.slide--light .gap-results-header { border-bottom-color: rgba(0,0,0,0.09); }
.slide--light .gap-results-header .s-label { color: var(--c-muted); }
.slide--light .gap-col-today { border-right-color: rgba(0,0,0,0.09); }
.slide--light .gap-col-label { color: rgba(0,0,0,0.36); }
.slide--light .gap-platform-row { border-bottom-color: rgba(0,0,0,0.08); }
.slide--light .gap-platform-name { color: rgba(0,0,0,0.62); }
.slide--light .gap-platform-amt { color: rgba(0,0,0,0.72); }
.slide--light .gap-today-label { color: rgba(0,0,0,0.44); }
.slide--light .gap-today-total { color: rgba(0,0,0,0.76); }
.slide--light .gap-mult-caption { color: rgba(0,0,0,0.44); }
.slide--light .gap-mult-wrap::before { background: radial-gradient(ellipse 100% 80% at center, rgba(240,64,32,0.10) 0%, transparent 70%); }
.slide--light .gap-halo-per { color: rgba(0,0,0,0.44); }
.slide--light .gap-halo-note { color: rgba(0,0,0,0.56); }
.slide--light .gap-halo-note--sub { color: rgba(0,0,0,0.36); }
.slide--light .gap-today-rates { color: rgba(0,0,0,0.32); }

/* ── 34. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --pad-x: clamp(24px, 5vw, 56px); --pad-y: clamp(20px, 3.5vh, 44px); }
  /* Gap calculator responsive */
  .gap-board { grid-template-columns: 1fr; gap: 20px 0; }
  .gap-col-today { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.09); padding-bottom: 20px; }
  .gap-col-halo { padding-left: 0; }
  .gap-divider-col { padding: 14px 0; padding-top: 14px; }
  .gap-mult-wrap { flex-direction: row; gap: 14px; align-items: baseline; }
  .gap-mult-x { font-size: clamp(48px, 10vw, 72px); }
  .gap-mult-wrap::before { display: none; }
  .calc-mult-block { border-left: none; border-top: 1px solid rgba(255,255,255,0.09); padding: 12px 0 0; width: 100%; flex-direction: row; gap: 12px; align-items: baseline; }
  .calc-mult-num { font-size: clamp(40px, 8vw, 72px); }
  .integration-grid { grid-template-columns: 1fr 1fr; }
  .int-cell { padding: 24px 24px 24px 0; }
  .int-cell:nth-child(2) { border-right: none; padding-left: 24px; padding-right: 0; }
  .int-cell:nth-child(3) { padding-left: 0; border-right: 1px solid rgba(0,0,0,0.09); border-top: 1px solid rgba(0,0,0,0.09); }
  .int-cell:nth-child(4) { padding-left: 24px; border-right: none; border-top: 1px solid rgba(0,0,0,0.09); }
  .team-grid { grid-template-columns: 1fr; gap: 0; }
  .fin-grid  { grid-template-columns: 1fr 1fr; }
  .fin-cell:nth-child(3) { grid-column: 1 / -1; border-right: none; border-top: 1px solid rgba(0,0,0,0.09); padding-top: 22px; padding-left: 0; }
  .three-bar { grid-template-columns: 1fr; }
  .three-bar-item { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.10); padding: 16px 0; }
  .three-bar-item:last-child { border-bottom: none; }
  .three-bar-item:not(:first-child) { padding-left: 0; }
  .market-row { grid-template-columns: 1fr; gap: 6px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); padding-right: 36px; }
  .stat-cell:nth-child(even) { padding-left: 36px; border-right: none; padding-right: 0; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 28px; }
  .stat-cell:nth-child(3) { padding-left: 0; }
  .stat-cell:nth-child(4) { padding-right: 0; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell:nth-child(odd) { border-right: none; padding-right: 0; }
  .stat-cell:nth-child(even) { padding-left: 0; }
  .stat-cell:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; }
  .compare-table th:nth-child(3), .compare-table td:nth-child(3) { display: none; }
  .slide-progress { display: none; }
  .fin-grid { grid-template-columns: 1fr; }
  .fin-cell { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; border-bottom: 1px solid rgba(0,0,0,0.09); }
  .fin-cell:last-child { border-bottom: none; }
  .quote-block { max-width: 100%; }
}
