/* ============================================================
   Stimuler Pitch Deck — 2026
   Visual system: dark cinematic, violet glow, ghosted display type
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@200;300;400;500;600;700;800;900&family=Work+Sans:wght@600;700;800;900&display=swap');

:root {
  /* Core palette — matte black, pure white */
  --bg:         #000000;        /* matte black base */
  --bg-2:       #0E0B14;        /* barely-lifted card surface */
  --fg:         #FFFFFF;        /* primary text */
  --fg-80:      rgba(255, 255, 255, 0.80);
  --fg-60:      rgba(255, 255, 255, 0.60);
  --fg-40:      rgba(255, 255, 255, 0.40);
  --fg-20:      rgba(255, 255, 255, 0.20);
  --fg-12:      rgba(255, 255, 255, 0.12);
  --fg-06:      rgba(255, 255, 255, 0.06);

  /* Violet accent — the brand glow */
  --violet:     #8B5CF6;        /* core violet */
  --violet-bright: #A78BFA;     /* lifted / lavender */
  --violet-deep:   #6D28D9;     /* saturated */
  --violet-soft:   rgba(139, 92, 246, 0.5);
  --violet-glow:   rgba(139, 92, 246, 0.35);

  /* Type scale (px @ 1920×1080) */
  --ts-mega:     220px;
  --ts-stat:     160px;
  --ts-display:  112px;
  --ts-title:    88px;
  --ts-subtitle: 44px;
  --ts-lede:     32px;
  --ts-body:     28px;
  --ts-small:    22px;
  --ts-caption:  18px;
  --ts-micro:    14px;

  /* Title anchor — every slide title shares this X/Y */
  --title-x:        96px;
  --title-y:        66px;
  --title-line-h:   1.04;

  /* Letter spacing (Figma %) */
  --track-display: -0.06em;     /* mega, stat, display */
  --track-title:   -0.05em;     /* title, subtitle */
  --track-body:    -0.04em;     /* lede, body, small, caption, micro */

  /* Heading weights */
  --w-display:  700;
  --w-title:    700;
  --w-body:     400;

  /* Spacing */
  --pad-x: 96px;
  --pad-top: 56px;
  --pad-bottom: 56px;

  /* Type family — sans only (mono dropped) */
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: var(--sans);          /* legacy alias — `.mono` callsites resolve to sans */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: var(--sans);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01" 1, "cv11" 1;
}

/* ============================================================
   SLIDE BASE
   ============================================================ */
.slide {
  position: absolute;
  inset: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: var(--ts-body);
  line-height: 1.35;
  overflow: hidden;
}

/* Matte finish — atmospheric overlay disabled at the base layer.
   Individual slides can opt back in by re-declaring their own ::before. */
.slide::before {
  content: "";
  position: absolute; inset: 0;
  background: none;
  pointer-events: none;
  z-index: 1;
}

/* Every slide places its real content above the atmosphere layers */
.slide > * { position: relative; z-index: 2; }

/* ============================================================
   GLOW LAYERS — signature violet bloom
   ============================================================ */
.glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  border-radius: 50%;
}

.glow--primary {
  width: 900px; height: 900px;
  left: 50%; top: 58%;
  transform: translate(-50%, 0);
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.55), rgba(139, 92, 246, 0.15) 45%, transparent 75%);
}

.glow--bottom-center {
  width: 1200px; height: 700px;
  left: 50%; bottom: -200px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.45), transparent 70%);
}

.glow--left {
  width: 900px; height: 900px;
  left: -250px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.4), transparent 70%);
}

.glow--right {
  width: 900px; height: 900px;
  right: -250px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.4), transparent 70%);
}

.glow--corner-tl {
  width: 800px; height: 800px;
  left: -200px; top: -200px;
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.5), transparent 70%);
}

.glow--top {
  width: 1400px; height: 600px;
  left: 50%; top: -200px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.4), transparent 70%);
}

/* ============================================================
   CHROME (top + bottom meta rows)
   ============================================================ */
.chrome {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--ts-caption);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-40);
  font-family: var(--sans);
  z-index: 3;
  white-space: nowrap;
  gap: 40px;
}
.chrome--top { top: 40px; }
.chrome--bottom { bottom: 40px; color: var(--fg-40); }

.chrome .logo {
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--fg-60);
}
.chrome .sep { color: var(--fg-20); margin: 0 10px; }
.chrome .idx { color: var(--fg-60); font-variant-numeric: tabular-nums; }
.chrome .mid {
  flex: 1;
  display: flex;
  justify-content: center;
  color: var(--fg-40);
}

/* ============================================================
   TYPE UTILITIES
   ============================================================ */
.eyebrow {
  font-size: var(--ts-caption);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-60);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  background: rgba(139, 92, 246, 0.22);
  border: 1px solid rgba(139, 92, 246, 0.45);
  font-variant-numeric: tabular-nums;
}
.pill--subtle {
  background: rgba(242, 241, 247, 0.06);
  border-color: rgba(242, 241, 247, 0.15);
  color: var(--fg-80);
}

.title {
  font-family: var(--sans);
  font-size: var(--ts-title);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
  color: var(--fg);
}

.display {
  font-family: var(--sans);
  font-size: var(--ts-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
  color: var(--fg);
}

.lede {
  font-size: var(--ts-lede);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--fg-60);
  max-width: 1320px;
  text-wrap: pretty;
  margin: 0;
}

.body-text {
  font-size: var(--ts-body);
  line-height: 1.45;
  color: var(--fg-80);
  text-wrap: pretty;
}

.small {
  font-size: var(--ts-small);
  color: var(--fg-60);
}

.mono {
  font-family: var(--mono);
  font-feature-settings: "tnum" 1;
  letter-spacing: 0;
}

/* ============================================================
   HERO NUMBER — the signature stat treatment
   Lightweight, large, with a subtle vertical gradient
   ============================================================ */
.hero-num {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.92;
  background: #FFFFFF;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  margin: 0;
}

.hero-num--sm { font-size: 120px; }
.hero-num--md { font-size: 160px; }
.hero-num--lg { font-size: 200px; }
.hero-num--xl { font-size: 260px; }

.hero-num--outline {
  background: none;
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fg-60);
}

/* ============================================================
   COVER SLIDE — slide 1
   ============================================================ */
.cover {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 100px var(--pad-x);
}

.cover__meta-top,
.cover__meta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--ts-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  gap: 40px;
}
.cover__meta-top {
  padding-top: 40px;
  color: var(--fg-40);
}
.cover__meta-top .brand { color: var(--fg); letter-spacing: 0.22em; }
.cover__meta-top .mid {
  flex: 1;
  display: flex;
  justify-content: center;
  color: var(--fg-40);
}
.cover__meta-top .right { color: var(--fg-40); }
.cover__meta-bottom {
  padding-bottom: 40px;
  color: var(--fg-40);
}

.cover__hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  padding: 40px 0;
  position: relative;
  overflow: visible;
}
[data-label="Cover"] {
  overflow: visible;
}

.cover__eyebrow {
  font-size: var(--ts-caption);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-bright);
}

.cover__title {
  font-family: var(--sans);
  font-weight: var(--w-display);
  font-size: 280px;
  letter-spacing: var(--track-display);
  line-height: 1;
  overflow: visible;
  color: var(--fg);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 56px;
}
.cover__wordmark {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cover__logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
  /* Source PNG is dark-on-transparent; invert so it renders white on matte black */
  filter: invert(1);
}

.cover__tagline {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.25;
  letter-spacing: var(--track-body);
  color: var(--fg-80);
  margin: 0;
}

.cover__awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 36px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  align-items: start;
}
.cover__award { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.cover__award-eyebrow {
  font-size: var(--ts-micro);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-bright);
}
.cover__award-name {
  font-size: 32px;
  font-weight: 500;
  color: var(--violet-bright);
  line-height: 1.2;
  letter-spacing: var(--track-body);
}
.cover__award-sub {
  font-size: 20px;
  color: var(--fg);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============================================================
   VARIANT SWITCHER (per-slide)
   Only active when slide has data-variants attribute.
   Otherwise, hide all non-default variants (B, C, etc.).
   ============================================================ */
.slide:not([data-variants]) .variant[data-variant]:not([data-variant="A"]) {
  display: none !important;
}

/* Variant wrapper fills the slide so inner absolute children anchor here */
.slide[data-variants] > .variant {
  position: absolute;
  inset: 0;
}
.var-switch {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 50;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid var(--fg-12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.slide--light .var-switch {
  background: rgba(255,255,255,0.7);
  border-color: rgba(11,11,12,0.1);
}
.var-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--fg-60);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}
.slide--light .var-switch button { color: rgba(11,11,12,0.55); }
.var-switch button:hover { color: var(--fg); }
.var-switch button.active {
  background: var(--violet-core, #8B5CF6);
  color: #fff;
}

/* ============================================================
   SLIDE 1 — Split black / violet gradient with phone
   ============================================================ */
.coverB {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #000;
  overflow: hidden;
}
.coverB__left {
  position: relative;
  background: #0A0A0E;
  padding: 72px 80px 72px 96px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.coverB__left::after {
  content: "";
  position: absolute; left: -40%; bottom: -40%;
  width: 120%; height: 120%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.35), rgba(139,92,246,0.1) 50%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
}
.coverB__left > * { position: relative; z-index: 2; }

.coverB__brand {
  display: flex; align-items: center; gap: 14px;
  font-size: 26px; font-weight: 500; letter-spacing: -0.01em; color: #fff;
}
.coverB__brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #C4B5FD 0%, #8B5CF6 100%);
  display: grid; place-items: center;
  font-weight: 700; font-size: 20px; color: #14141C;
  box-shadow: 0 0 24px rgba(167,139,250,0.45);
}

.coverB__body {
  display: flex; flex-direction: column; gap: 28px;
  max-width: 780px;
}
.coverB__title {
  font-family: var(--sans);
  font-size: 108px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  margin: 0;
}
.coverB__tagline {
  font-size: 30px;
  line-height: 1.35;
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-weight: 400;
  max-width: 700px;
}

.coverB__awards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 780px;
}
.coverB__award-name { font-size: 20px; font-weight: 500; color: #fff; line-height: 1.3; }
.coverB__award-sub { font-size: 15px; color: rgba(255,255,255,0.55); margin-top: 4px; line-height: 1.4; }

.coverB__footer {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.coverB__right {
  position: relative;
  background:
    radial-gradient(80% 60% at 30% 40%, rgba(196, 181, 253, 0.95) 0%, rgba(139, 92, 246, 0.75) 35%, rgba(76, 29, 149, 0.9) 75%, #1a0b33 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.coverB__right::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 75% 85%, rgba(30, 5, 55, 0.65), transparent 60%),
    radial-gradient(40% 40% at 15% 15%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
/* noise grain */
.coverB__right::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 30%, rgba(255,255,255,0.15), transparent 100%),
    radial-gradient(1px 1px at 38% 62%, rgba(255,255,255,0.1), transparent 100%),
    radial-gradient(1px 1px at 67% 22%, rgba(255,255,255,0.12), transparent 100%),
    radial-gradient(1px 1px at 83% 78%, rgba(255,255,255,0.14), transparent 100%),
    radial-gradient(1px 1px at 48% 88%, rgba(255,255,255,0.08), transparent 100%);
  opacity: 0.6;
  pointer-events: none;
}

.coverB__phone {
  position: relative;
  width: 460px;
  height: 920px;
  border-radius: 58px;
  background: #0A0A0C;
  padding: 12px;
  box-shadow:
    0 0 0 2px #1a1a22,
    0 60px 140px rgba(30, 0, 60, 0.7),
    0 0 80px rgba(167, 139, 250, 0.3);
  transform: translateY(50px);
  z-index: 3;
}
.coverB__phone::before {
  content: "";
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 130px; height: 32px; border-radius: 99px;
  background: #000;
  z-index: 4;
}
.coverB__screen {
  width: 100%; height: 100%;
  border-radius: 48px;
  background: #FAFAF7;
  padding: 72px 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
}

.coverB__hello { font-size: 15px; color: #6B6B78; }
.coverB__name {
  font-size: 32px; font-weight: 600; color: #111114; letter-spacing: -0.01em; line-height: 1.1;
  display: flex; align-items: center; justify-content: space-between;
}
.coverB__bell {
  width: 44px; height: 44px; border-radius: 50%;
  background: #F0F0EC; display: grid; place-items: center;
  font-size: 18px;
}

.coverB__cards {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 12px; margin-top: 6px;
}
.coverB__card {
  background: #F3F3EE;
  border-radius: 22px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.coverB__card--tall { grid-row: span 2; }
.coverB__card-head { font-size: 14px; font-weight: 600; color: #111114; }
.coverB__card-time { font-size: 12px; color: #8B8B95; font-weight: 500; margin-top: 6px; }
.coverB__card-sub { font-size: 14px; font-weight: 600; color: #111114; line-height: 1.3; }
.coverB__card-divide { height: 1px; background: #E4E4DE; margin: 8px 0; }

.coverB__small-card { padding: 14px 16px; }
.coverB__small-head { font-size: 12px; color: #8B8B95; }
.coverB__small-title { font-size: 14px; font-weight: 600; color: #111114; }

.coverB__section-head {
  display: flex; justify-content: space-between; align-items: center; margin-top: 8px;
}
.coverB__section-title { font-size: 16px; font-weight: 600; color: #111114; }
.coverB__section-link { font-size: 13px; color: #8B5CF6; font-weight: 500; }

.coverB__proj {
  background: #F3F3EE;
  border-radius: 22px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.coverB__proj-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: #E8E8E2; display: grid; place-items: center;
  font-size: 14px;
}
.coverB__proj-name { font-size: 14px; font-weight: 600; color: #111114; flex: 1; }
.coverB__proj-bar {
  width: 60px; height: 6px; border-radius: 99px;
  background: linear-gradient(90deg, #111114 60%, #E4E4DE 60%);
}
.phone {
  width: 420px;
  height: 860px;
  border-radius: 56px;
  background: linear-gradient(180deg, #1a1a22, #0b0b12);
  border: 1.5px solid rgba(167,139,250,0.35);
  box-shadow:
    0 0 0 6px rgba(10,10,18,0.9),
    0 40px 120px rgba(139,92,246,0.35),
    0 0 100px rgba(139,92,246,0.25);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 44px;
  background: linear-gradient(180deg, #14141c 0%, #1c1428 60%, #2a1842 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 60px 26px 30px;
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px; border-radius: 99px;
  background: #000;
}
.phone__brand {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 8px;
}
.phone__brand .dot { color: var(--violet-bright); }
.phone__greet {
  font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 22px;
}
.phone__wave {
  width: 100%; height: 110px;
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 50% 50%, rgba(167,139,250,0.35), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(167,139,250,0.3);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; gap: 3px;
  padding: 0 20px;
}
.phone__wave span {
  display:block; width: 3px; border-radius: 3px;
  background: linear-gradient(180deg, #C4B5FD, #8B5CF6);
}
.phone__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 14px;
}
.phone__card-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--violet-bright); margin-bottom: 10px; font-weight: 600;
}
.phone__card-body {
  font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.4;
}
.phone__score-row { display: flex; gap: 10px; margin-top: 12px; }
.phone__score {
  flex: 1;
  padding: 10px 8px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 12px;
  text-align: center;
}
.phone__score-num { font-size: 18px; font-weight: 600; color: #fff; }
.phone__score-lab { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; }

/* ============================================================
   SLIDE 1 · VARIANT C — Section-number intro (ghost "01")
   ============================================================ */
.cover-c {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 100px 1fr 100px;
  padding: 0 var(--pad-x);
}
.cover-c__meta-top,
.cover-c__meta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-40);
  font-weight: 500;
}
.cover-c__meta-top { padding-top: 40px; }
.cover-c__meta-top .brand { color: var(--fg); letter-spacing: 0.22em; }
.cover-c__meta-bottom { padding-bottom: 40px; }

.cover-c__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  padding: 40px 0;
}
.cover-c__ghost {
  font-size: 540px;
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(167,139,250,0.55);
  font-family: var(--sans);
}
.cover-c__ghost-sub {
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-bright);
  margin-top: 16px;
  padding-left: 6px;
}
.cover-c__content {
  display: flex; flex-direction: column; gap: 28px;
  max-width: 900px;
}
.cover-c__eyebrow {
  font-size: 16px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet-bright);
}
.cover-c__title {
  font-size: 84px; font-weight: 500; letter-spacing: -0.028em;
  line-height: 1; margin: 0; color: var(--fg);
}
.cover-c__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cover-c__tagline {
  font-size: 24px; color: var(--fg-60); line-height: 1.45;
  max-width: 760px; margin: 0;
}
.cover-c__chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.cover-c__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(167,139,250,0.4);
  background: rgba(139,92,246,0.12);
  border-radius: 999px;
  font-size: 15px; font-weight: 500; color: var(--fg); letter-spacing: 0.02em;
}
.cover-c__chip b { font-weight: 600; color: var(--violet-bright); }

/* ============================================================
   SLIDE 2 · VARIANT B — Light mode
   Variant wrapper fully covers the dark slide frame.
   ============================================================ */
.variant.slide--light {
  position: absolute;
  inset: 0;
  background: #F4F1EA;
  color: #111114;
  overflow: hidden;
  z-index: 2; /* above the parent .slide::before atmospheric overlay */
}
.variant.slide--light::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(139,92,246,0.08) 0%, transparent 55%),
    radial-gradient(100% 100% at 50% 0%, rgba(255,255,255,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.variant.slide--light .glow { display: none; }
.variant.slide--light .team-light { color: #111114; }
.team-light {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: 260px 1fr 100px;
  padding: 0 var(--pad-x);
}
.team-light__header {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 64px 0 24px; gap: 18px;
}
.team-light__eyebrow {
  font-size: 16px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: #6D28D9;
}
.team-light__title {
  font-size: 68px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.05;
  margin: 0; max-width: 1500px; color: #111114;
}
.team-light__title em {
  font-style: normal;
  background: linear-gradient(180deg, #6D28D9, #A78BFA);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-light__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  align-content: center; padding: 40px 0;
}
.team-light__card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 32px 28px;
  background: #FFFFFF;
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: 20px;
  box-shadow: 0 1px 0 rgba(11,11,12,0.03), 0 20px 40px rgba(11,11,12,0.04);
}
.team-light__photo {
  width: 130px; height: 130px; border-radius: 50%;
  background: linear-gradient(160deg, #EDE9FE, #C4B5FD);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #4C1D95; font-weight: 500;
  letter-spacing: -0.02em;
  border: 1px solid rgba(109,40,217,0.2);
}
.team-light__name { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; color: #111114; }
.team-light__role {
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #6D28D9; margin-top: 4px;
}
.team-light__bio { font-size: 16px; line-height: 1.5; color: rgba(17,17,20,0.65); margin: 0; }
.team-light__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0 40px; border-top: 1px solid rgba(11,11,12,0.08);
  font-size: 16px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(11,11,12,0.4);
}
.team-light__meta .brand { color: rgba(11,11,12,0.7); letter-spacing: 0.22em; }

/* ============================================================
   SLIDE 2 · VARIANT C — Bento founder cards
   ============================================================ */
.team-bento {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: 220px 1fr 100px;
  padding: 0 var(--pad-x);
  gap: 16px 0;
}
.team-bento__header {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 56px 0 16px; gap: 14px;
}
.team-bento__eyebrow {
  font-size: 16px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet-bright);
}
.team-bento__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.05;
  margin: 0; max-width: 1500px; color: var(--fg);
}
.team-bento__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-bento__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-content: stretch;
}
.bento {
  border-radius: 24px;
  border: 1px solid var(--fg-12);
  background:
    linear-gradient(180deg, rgba(167,139,250,0.08), rgba(139,92,246,0) 55%),
    rgba(242, 241, 247, 0.03);
  padding: 28px 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.bento--tall { grid-row: span 2; flex-direction: column; gap: 22px; justify-content: space-between; }
.bento--wide { grid-column: span 2; flex-direction: row; gap: 24px; align-items: center; }
.bento__photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(160deg, rgba(167,139,250,0.35), rgba(109,40,217,0.5));
  border: 1px solid rgba(167,139,250,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 400; color: #fff; letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(139,92,246,0.3);
}
.bento--tall .bento__photo { width: 150px; height: 150px; font-size: 44px; }
.bento__text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bento__name { font-size: 24px; font-weight: 500; color: var(--fg); letter-spacing: -0.01em; line-height: 1.15; }
.bento--tall .bento__name { font-size: 28px; }
.bento__role {
  font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--violet-bright); margin-top: 2px;
}
.bento__bio { font-size: 15px; line-height: 1.5; color: var(--fg-60); margin: 10px 0 0; }
.bento--tall .bento__bio { font-size: 17px; }
.bento__tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-bright);
  padding: 4px 10px; background: rgba(139,92,246,0.15); border-radius: 999px;
}

/* ============================================================
   TEAM SLIDE
   ============================================================ */
.team {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr 100px;
  padding: var(--title-y) var(--title-x) 0;
}

.team__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 40px;
}
.team__eyebrow {
  font-size: var(--ts-caption);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-bright);
}
.team__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 60px;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--fg);
  margin: 0;
  max-width: 1500px;
  text-wrap: balance;
}
.team__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-content: center;
  padding: 40px 0;
}

.team__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px;
  border: 1px solid var(--fg-12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.06), rgba(139, 92, 246, 0) 60%),
    rgba(242, 241, 247, 0.025);
  position: relative;
  overflow: hidden;
}
.team__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.35), transparent 50%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.team__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(167, 139, 250, 0.28), rgba(109, 40, 217, 0.35));
  border: 1px solid var(--fg-12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.team__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.35), inset 0 0 30px rgba(139, 92, 246, 0.15);
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team__photo-initials {
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-family: var(--sans);
}

.team__name {
  font-size: 26px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.team__role {
  font-size: var(--ts-micro);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-bright);
  margin: 6px 0 0 0;
}
.team__bio {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg-60);
  margin: 0;
}

.team__meta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  font-size: var(--ts-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-40);
  font-weight: 500;
  border-top: 1px solid var(--fg-12);
  padding-top: 24px;
  white-space: nowrap;
}
.team__meta-bottom .brand { color: var(--fg-60); letter-spacing: 0.22em; }


/* ============================================================
   SLIDE 3 — STATS (Where We Are Today)
   ============================================================ */
.stats {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: var(--title-y) var(--title-x) 0;
}
.stats__header {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 0;
  max-width: 1400px;
}
.stats__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.stats__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.04; margin: 0; color: var(--fg);
  text-wrap: balance;
}
.stats__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats__lede {
  font-size: 28px; font-weight: 400; color: var(--fg-60);
  margin: 0; max-width: 900px; line-height: 1.35;
}

.stats__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
  align-content: center;
  padding: 40px 0;
}

.stat-card {
  position: relative;
  padding: 36px 36px 32px;
  border-radius: 24px;
  aspect-ratio: 1.1 / 1;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.09) 0%, rgba(139,92,246,0.03) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.16);
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: center;
  opacity: 1;
  transform: none;
}

.stat-card__glow {
  position: absolute;
  top: -40%; left: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.20), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.65;
}

.stat-card__index {
  position: absolute;
  top: 36px; left: 36px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 14px; font-weight: 500; letter-spacing: 0.2em;
  color: var(--violet-bright);
  opacity: 0.8;
}

.stat-card__value {
  font-size: 128px; font-weight: 500; letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--fg);
  display: flex; align-items: baseline;
  margin-bottom: 18px;
}
.stat-card__value .stat-prefix {
  font-size: 128px;
  font-weight: 500;
  color: #C1B0FF;
  margin-right: 4px;
  letter-spacing: -0.045em;
}
.stat-card__value .stat-num {
  color: #C1B0FF;
  -webkit-text-fill-color: #C1B0FF;
  font-variant-numeric: tabular-nums;
}

.stat-card__label {
  font-size: 32px; font-weight: 600; color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.stat-card__sub {
  font-size: 20px; font-weight: 400; color: var(--fg-60);
  line-height: 1.45;
  max-width: 95%;
}

.stat-card__bar {
  margin-top: auto;
  height: 4px; border-radius: 99px;
  background: rgba(167,139,250,0.14);
  overflow: hidden;
  position: relative;
}
.stat-card__bar i {
  display: block; height: 100%;
  width: 0;
  background: linear-gradient(90deg, #8B5CF6, #C4B5FD);
  border-radius: 99px;
  transition: width 1.4s cubic-bezier(0.22,0.61,0.36,1) 0.35s;
  box-shadow: 0 0 16px rgba(167,139,250,0.6);
}
.stat-card.is-in .stat-card__bar i { width: var(--p, 80%); }

.stats__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 40px;
  font-size: var(--ts-caption, 14px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-40); font-weight: 500;
  border-top: 1px solid var(--fg-12);
  white-space: nowrap;
}
.stats__footer .brand { color: var(--fg-60); letter-spacing: 0.22em; }


/* ============================================================
   SLIDE 4 — MARKET / CHART (gap Stimuler closes)
   ============================================================ */
.market {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 66px var(--pad-x) 0;
  color: var(--fg);
}
.market__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--fg-12);
}
.market__top-left {
  display: flex; flex-direction: column;
}
.market__eyebrow {
  font-size: 16px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--violet-bright);
  line-height: 1;
}
.market__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.04; margin: 10px 0 0; text-wrap: balance;
}
.market__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.market__context {
  display: flex; align-items: center; gap: 28px;
  justify-content: flex-end;
}
.market__ctx-item {
  text-align: right;
  min-width: 180px;
}
.market__ctx-val {
  font-size: 52px; font-weight: 500; letter-spacing: -0.03em; line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.market__ctx-lab {
  font-size: 15px; color: var(--fg-60); margin-top: 8px;
  letter-spacing: 0.02em; line-height: 1.3;
}
.market__ctx-arrow {
  font-size: 44px; color: var(--violet-bright); opacity: 0.9;
  transform: translateY(-8px);
}

.chart {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px 0 10px;
  position: relative;
}
.chart__col-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-40);
  margin-bottom: 10px;
}
.chart__bars {
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.chart__row {
  display: grid;
  grid-template-columns: 220px 1fr 120px;
  align-items: center;
  gap: 24px;
  color: var(--fg);
}
.chart__name {
  font-size: 18px; font-weight: 500; color: var(--fg-80);
  text-align: right;
  line-height: 1.25;
}
.chart__track {
  height: 28px;
  background: rgba(167,139,250,0.05);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.chart__fill {
  display: block; height: 100%;
  width: 0;
  background: linear-gradient(90deg, #6D28D9 0%, #8B5CF6 60%, #C4B5FD 100%);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(139,92,246,0.35);
}
.chart__val {
  font-size: 17px; font-weight: 500;
  color: var(--fg-80);
  font-variant-numeric: tabular-nums;
}

/* bracket label between filled bars and gap row */
.chart__bracket {
  display: grid;
  grid-template-columns: 220px 1fr 120px;
  gap: 24px;
  align-items: center;
  margin: 4px 0 2px;
}
.chart__bracket-line {
  grid-column: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fg-40) 30%, var(--fg-40) 70%, transparent);
  position: relative;
}
.chart__bracket-line::before,
.chart__bracket-line::after {
  content: ""; position: absolute;
  top: -5px; width: 1px; height: 10px;
  background: var(--fg-40);
}
.chart__bracket-line::before { left: 2%; }
.chart__bracket-line::after  { right: 2%; }
.chart__bracket-label {
  grid-column: 2;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-60);
  text-align: center;
  margin-top: 6px;
}

/* GAP row — dashed, extends past frame */
.chart__row--gap {
  margin-top: 2px;
  position: relative;
}
.chart__row--gap .chart__name {
  color: var(--violet-bright);
  font-weight: 600;
}
.chart__track--gap {
  height: 36px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  position: relative;
  border: none;
}
.chart__gap-fill {
  display: block;
  position: absolute;
  inset: 0;
  /* extend past the track right edge */
  right: -80px;
  border-top: 2px dashed rgba(196, 181, 253, 0.85);
  border-bottom: 2px dashed rgba(196, 181, 253, 0.85);
  border-left: 2px dashed rgba(196, 181, 253, 0.85);
  border-radius: 6px 0 0 6px;
  background: linear-gradient(90deg, rgba(139,92,246,0.14) 0%, rgba(139,92,246,0.04) 60%, transparent 100%);
  mask: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
}
.chart__gap-tag {
  position: absolute;
  right: -40px; top: 50%; transform: translateY(-50%);
  font-size: 14px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-bright);
  background: var(--bg);
  padding: 4px 10px;
  z-index: 2;
}
.chart__val--gap { display: none; }

/* callout under gap bar */
.chart__callout-wrap {
  margin-top: 18px;
  display: block;
  width: 100%;
}
.chart__arrow {
  display: none;
}
.chart__callout {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 36px;
  row-gap: 6px;
  align-items: center;
  padding: 28px 40px;
  background: linear-gradient(135deg, rgba(139,92,246,0.22), rgba(139,92,246,0.06));
  border: 1px solid rgba(167,139,250,0.45);
  border-radius: 18px;
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: 0 30px 80px rgba(139,92,246,0.18);
}
.chart__callout-eyebrow {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-size: 15px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--violet-bright);
  align-self: center;
  padding-right: 32px;
  border-right: 1px solid rgba(167,139,250,0.3);
  white-space: nowrap;
}
.chart__callout-title {
  grid-column: 2;
  font-size: 32px; font-weight: 600; color: var(--fg);
  letter-spacing: -0.015em; line-height: 1.15;
}
.chart__callout-sub {
  grid-column: 2;
  font-size: 17px; color: var(--fg-70, rgba(242,241,247,0.72)); line-height: 1.5;
}

.market__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px; margin-top: auto;
  font-size: var(--ts-caption, 14px);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-40); font-weight: 500;
  border-top: 1px solid var(--fg-12);
  white-space: nowrap;
}
.market__footer .brand { color: var(--fg-60); letter-spacing: 0.22em; }
.market__footer span:nth-child(2) { text-transform: none; letter-spacing: 0.08em; font-size: 13px; }


/* Hand-drawn annotation arrow pointing to the fluency-gap row */
.chart__handarrow {
  position: absolute;
  /* Anchored inside .chart__bars (relative). Authored units: bars is ~1728×405. */
  left: 30px;
  top: 180px;
  width: 280px;
  height: 180px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(255, 77, 61, 0.35));
}


/* ============================================================
   Slide — Compare (UX flow comparison)
   ============================================================ */
.compare {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--fg);
  overflow: hidden;
}
.compare__head {
  display: flex; flex-direction: column; gap: 12px;
}
.compare__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.compare__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; color: var(--fg);
  max-width: 1700px;
}
.compare__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.compare__legend {
  font-size: 16px; color: var(--fg-60); text-align: right;
  font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Main stage */
.compare__stage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 44px;
  align-items: stretch;
  margin-top: 36px;
  min-height: 0;
}

.cmp-col {
  display: grid;
  grid-template-rows: auto 1fr auto;  /* head, phone (flex middle), demerits at bottom */
  gap: 18px;
  min-height: 0;
}
.cmp-col .iphone {
  /* override the global align-self: start (added for slide 7's earlier grid context)
     so phones centre in their 1fr row across all 3 columns */
  align-self: center;
}
.cmp-col__head {
  display: flex; justify-content: center; align-items: baseline; gap: 12px;
}
.cmp-col__name {
  font-size: 30px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--fg);
  text-align: center;
}
.cmp-col__kind {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--fg-40); text-transform: uppercase; letter-spacing: 0.18em;
}
.cmp-col--hero .cmp-col__name { color: var(--violet-bright); }
.cmp-col--hero .cmp-col__kind { color: var(--violet); }

.cmp-col__demerits {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--fg-12);
}
.cmp-col__demerit {
  font-size: 17px; color: var(--fg-40); line-height: 1.4;   /* competitors: greyed out */
  display: grid; grid-template-columns: 16px 1fr; gap: 10px;
  align-items: baseline;
}
.cmp-col__demerit::before {
  content: "×";
  color: #E9938A; font-weight: 600; font-size: 20px;
  line-height: 1;
}
.cmp-col--hero .cmp-col__demerit { color: var(--fg); font-size: 17px; }   /* Stimuler: bright white, same size */

/* Per-item bullet modifiers (override default + hero overrides) */
.cmp-col__demerit.cmp-col__demerit--good::before {
  content: "✓";
  color: var(--violet-bright);
  font-weight: 700;
  font-size: 18px;
}
.cmp-col__demerit.cmp-col__demerit--bad::before {
  content: "×";
  color: #E9938A;
  font-weight: 600;
  font-size: 20px;
}

/* Phone frame (compact) */
.phone-x {
  position: relative;
  border-radius: 40px;
  background: linear-gradient(180deg, #1a1a22, #0b0b12);
  border: 1.5px solid rgba(167,139,250,0.25);
  box-shadow:
    0 0 0 5px rgba(10,10,18,0.9),
    0 30px 80px rgba(0,0,0,0.5);
  padding: 10px;
  overflow: hidden;
  min-height: 0;
}
.phone-x--hero {
  border-color: rgba(167,139,250,0.5);
  box-shadow:
    0 0 0 5px rgba(10,10,18,0.9),
    0 40px 120px rgba(139,92,246,0.35),
    0 0 100px rgba(139,92,246,0.2);
}
.phone-x__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; border-radius: 99px; background: #000;
  z-index: 3;
}
.phone-x__screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, #0F0F17 0%, #15121F 70%, #1e1630 100%);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 44px 18px 18px;
  min-height: 0;
}
.phone-x__screen--hero {
  background: linear-gradient(180deg, #12101C 0%, #1A1228 60%, #261844 100%);
  padding: 44px 20px 20px;
}
.phone-x__appbar {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.phone-x__app {
  font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -0.01em;
}
.phone-x__appbar-sub {
  font-size: 11px; color: rgba(255,255,255,0.5); margin-left: auto;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.phone-x__body {
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
  min-height: 0;
}
.phone-x__input {
  margin-top: 10px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.phone-x__input--hero {
  background: rgba(139,92,246,0.08);
  border-color: rgba(167,139,250,0.3);
  color: var(--violet-bright);
}
.phone-x__mic {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--violet);
  display: grid; place-items: center;
  color: #fff; font-size: 11px; font-weight: 700;
}

/* ======= Speak bubbles ======= */
.spk-bubble {
  padding: 10px 13px;
  border-radius: 14px;
  max-width: 88%;
  font-size: 13px; line-height: 1.4;
  animation: compareFadeIn 0.35s ease-out both;
}
.spk-bubble--ai {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.spk-bubble__who {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5); margin-bottom: 3px;
}
.spk-sug-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4); padding-top: 4px;
  animation: compareFadeIn 0.35s ease-out both;
}
.spk-pick {
  padding: 9px 12px;
  border: 1.5px solid rgba(167,139,250,0.4);
  background: rgba(139,92,246,0.08);
  border-radius: 12px;
  font-size: 13px; color: #fff;
  align-self: flex-end;
  max-width: 92%;
  position: relative;
  animation: compareFadeIn 0.35s ease-out both;
}
.spk-pick::after {
  content: "TAPPED";
  position: absolute; right: 8px; top: -8px;
  font-size: 8px; letter-spacing: 0.16em;
  padding: 2px 6px; background: var(--violet); color: #fff; border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* ======= Praktika bubbles ======= */
.prk-bubble {
  padding: 10px 13px;
  border-radius: 14px;
  max-width: 88%;
  font-size: 13px; line-height: 1.4;
  animation: compareFadeIn 0.35s ease-out both;
}
.prk-bubble--ai {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  align-self: flex-start;
  border-top-left-radius: 4px;
}
.prk-bubble--user {
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.3);
  color: #fff;
  align-self: flex-end;
  border-top-right-radius: 4px;
}

/* ======= Stimuler live ======= */
.stm-topic {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--violet-bright);
  padding: 8px 10px;
  border: 1px dashed rgba(167,139,250,0.4);
  border-radius: 10px;
  animation: compareFadeIn 0.35s ease-out both;
}
.stm-live {
  padding: 12px 14px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 16px;
  animation: compareFadeIn 0.35s ease-out both;
}
.stm-live__lab {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--violet-bright); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.stm-live__lab::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #E9938A; animation: compareLivePulse 1s ease-in-out infinite;
}
.stm-live__text { font-size: 14px; line-height: 1.5; color: #fff; }
.stm-tok { display: inline; }
.stm-tok--ok { color: rgba(255,255,255,0.9); }
.stm-tok--filler {
  color: #FFA47A; background: rgba(255,164,122,0.12);
  border-radius: 3px; padding: 0 3px; text-decoration: line-through;
  text-decoration-color: rgba(255,164,122,0.5);
}
.stm-tok--grammar {
  color: #FFE083; background: rgba(255,224,131,0.12);
  border-radius: 3px; padding: 0 3px;
  border-bottom: 2px wavy #FFE083;
}

.stm-fluency {
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  animation: compareFadeIn 0.35s ease-out both;
}
.stm-fluency__row { display: flex; align-items: center; gap: 10px; }
.stm-fluency__lab {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6); min-width: 48px;
}
.stm-fluency__bar {
  flex: 1; height: 6px; border-radius: 99px; background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.stm-fluency__bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, #8B5CF6, #C4B5FD);
  border-radius: 99px;
  transition: width 0.6s ease;
  animation: compareGrow 0.6s ease-out both;
}
.stm-fluency__val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: #fff; font-weight: 600;
}
.stm-fluency__chips { display: flex; gap: 6px; margin-top: 8px; }
.stm-chip {
  font-size: 10px; padding: 3px 8px; border-radius: 99px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase;
}
.stm-chip--filler { background: rgba(255,164,122,0.14); color: #FFA47A; }
.stm-chip--grammar { background: rgba(255,224,131,0.14); color: #FFE083; }

.stm-push {
  padding: 10px 13px;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.35);
  border-radius: 14px;
  animation: compareFadeIn 0.35s ease-out both;
}
.stm-push__who {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--violet-bright); margin-bottom: 4px;
}
.stm-push__text { font-size: 13px; color: #fff; line-height: 1.4; }

/* Compare footer */
.compare__footer {
  margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--fg-40);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.14em; text-transform: uppercase;
}

/* animations */
@keyframes compareFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes compareGrow {
  from { width: 0 !important; }
}
@keyframes compareLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}


/* ============================================================
   Compare slide — iPhone frames + video + Tweaks panel
   ============================================================ */
.iphone {
  position: relative;
  aspect-ratio: 9 / 19.5;
  width: 100%;
  max-width: 260px;
  max-height: 520px;
  justify-self: center;
  align-self: start;          /* anchor phones to the top of their row */
}
.iphone__frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1a22, #0a0a10);
  border: 1.5px solid rgba(167,139,250,0.28);
  box-shadow:
    0 0 0 4px rgba(10,10,18,0.9),
    0 30px 80px rgba(0,0,0,0.55);
  padding: 8px;
  overflow: hidden;
}
.iphone--hero .iphone__frame {
  border-color: rgba(167,139,250,0.55);
  box-shadow:
    0 0 0 5px rgba(10,10,18,0.9),
    0 40px 120px rgba(139,92,246,0.4),
    0 0 100px rgba(139,92,246,0.25);
}
.iphone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 24px; border-radius: 99px; background: #000;
  z-index: 3;
}
.iphone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 36px;
  background: #000;
  overflow: hidden;
  display: block;
}
.iphone__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}
/* Live-prototype iframe — scaled so the embedded site's fixed-size
   phone fills our mockup screen (no phone-in-phone). */
.iphone[data-phone-live] .iphone__screen {
  container-type: size;
  background: #050508;
}
/* Mask any artifact at the top of the live iframe (status-bar separator) */
.iphone[data-phone-live] .iphone__screen::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: #050508;
  z-index: 2;
  pointer-events: none;
}
/* Stimuler hero phone print fallback — hidden on screen, shown in print */
.iphone__print-fallback {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column;
  align-items: stretch;
  padding: 32px 16px 18px;
  background: #050508;
  gap: 8px;
  overflow: hidden;
  z-index: 1;
}
.iphone__print-fallback-eyebrow {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em;
  color: #FBBF24;
  margin-bottom: 6px;
}
.iphone__print-fallback-bubble {
  font-size: 9px;
  line-height: 1.35;
  padding: 7px 10px;
  border-radius: 12px;
  max-width: 78%;
  color: #FFFFFF;
}
.iphone__print-fallback-bubble--me {
  background: #8B5CF6;
  align-self: flex-end;
}
.iphone__print-fallback-bubble--coach {
  background: rgba(255,255,255,0.08);
  align-self: flex-start;
}
.iphone__print-fallback-mode {
  margin-top: auto;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.22em;
  color: #FBBF24;
  text-align: center;
  padding-top: 8px;
}

.iphone__live {
  --proto-scale: calc(100cqh / 800px);   /* fit prototype .phone height to our screen */

  position: absolute;
  top: 0;
  left: 0;
  width: 422px;    /* prototype's body width:  16 + 390 + 16 */
  height: 928px;   /* prototype's body height: 48 + 800 + 80 */
  border: 0;
  background: #050508;
  display: block;
  color-scheme: dark;
  transform-origin: top left;
  /* scale first (right-to-left composition), so translate values are in
     the iframe's pre-scale design pixels.
       - x translate centers the prototype's phone (design center x = 211)
         on our screen center (50cqw); recomputed live for any mockup width.
       - y translate of -48px lifts the prototype's body padding off the
         top of our screen so the prototype's .phone aligns with screen y=0.
     Net effect: prototype phone fills the mockup screen vertically; its
     bezel corners are clipped slightly past the sides; its own notch lands
     directly behind our mockup notch and is hidden. */
  transform:
    scale(var(--proto-scale))
    translate(
      calc(50cqw / var(--proto-scale) - 211px),
      -48px
    );
}
.iphone__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  color: rgba(255,255,255,0.4);
  background: linear-gradient(180deg, #14141c 0%, #1c1428 60%, #2a1842 100%);
}
.iphone__placeholder-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(167,139,250,0.3);
  display: grid; place-items: center;
  color: var(--violet-bright); font-size: 22px;
}
.iphone__placeholder-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.iphone[data-has-video] .iphone__placeholder { display: none; }

/* --------- Tweaks panel --------- */
.tweaks {
  position: absolute;
  right: 40px; bottom: 90px;
  z-index: 20;
  width: 460px;
  background: rgba(12, 12, 18, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  color: var(--fg);
}
.tweaks__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fg-12);
}
.tweaks__title {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--violet-bright);
}
.tweaks__hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-40);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.tweaks__grid { display: grid; gap: 10px; }
.tweaks__slot {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--fg-12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.tweaks__slot:hover { border-color: rgba(167,139,250,0.5); background: rgba(139,92,246,0.06); }
.tweaks__slot.is-loaded { border-color: rgba(167,139,250,0.4); background: rgba(139,92,246,0.08); }
.tweaks__slot-label {
  font-size: 14px; font-weight: 500; color: var(--fg);
}
.tweaks__slot-btn {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 7px;
  background: var(--violet);
  color: #fff;
  white-space: nowrap;
}
.tweaks__slot.is-loaded .tweaks__slot-btn::after { content: " · replace"; }
.tweaks__slot-state {
  grid-column: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-40); letter-spacing: 0.06em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tweaks__slot.is-loaded .tweaks__slot-state { color: var(--violet-bright); }
.tweaks__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
}
.tweaks__clear {
  background: none; border: 1px solid var(--fg-20); color: var(--fg-60);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 6px; cursor: pointer;
}
.tweaks__clear:hover { color: var(--fg); border-color: var(--fg-40); }
.tweaks__note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--fg-40); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================================
   SLIDE 05 — Problem · Unsolved fluency
   ============================================================ */
.problem {
  position: absolute; inset: 0;
  padding: 66px 96px 36px;
  display: flex; flex-direction: column;
  gap: 40px;
  color: var(--fg);
}
.problem__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
}
.problem__eyebrow {
  font-size: 16px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--violet-bright);
}
.problem__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.04; margin: 10px 0 0; text-wrap: balance;
  max-width: 1400px;
}
.problem__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.problem__legend {
  font-size: 14px; color: var(--fg-60);
  font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap; padding-bottom: 10px;
}

/* --- Body: tweet | gap --- */
.problem__body {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 80px;
  align-items: stretch;
  min-height: 0;
}
.problem__tweet-col,
.problem__diag-col {
  display: flex; flex-direction: column; gap: 14px;
  min-height: 0;
}
.problem__diag-col { justify-content: center; padding-top: 22px; }

.tweet-eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-40);
}

/* --- Tweet card (X-style, dark) --- */
.tweet {
  background: #000;
  border: 1px solid #2F3336;
  border-radius: 20px;
  padding: 22px 24px 14px;
  color: #E7E9EA;
  font-family: 'Inter Tight', -apple-system, Segoe UI, sans-serif;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  width: 100%;
  flex: 1;
  display: flex; flex-direction: column;
}
.tweet__head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tweet__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; background: #333;
  display: block;
}
.tweet__id { min-width: 0; }
.tweet__name {
  display: flex; align-items: center; gap: 4px;
  font-size: 18px; font-weight: 700; color: #E7E9EA;
  letter-spacing: -0.01em;
}
.tweet__verified { width: 20px; height: 20px; flex: none; }
.tweet__building { width: 18px; height: 18px; flex: none; }
.tweet__handle {
  font-size: 15px; color: #71767B; font-weight: 400;
}
.tweet__more {
  background: transparent; border: 0; color: #71767B;
  font-size: 18px; cursor: pointer; align-self: flex-start;
  padding: 0 4px;
}
.tweet__body p {
  font-size: 24px; line-height: 1.35; letter-spacing: -0.003em;
  color: #E7E9EA; margin: 0 0 18px;
  font-weight: 400;
}
.tweet__meta {
  font-size: 15px; color: #71767B;
  display: flex; gap: 6px; align-items: baseline; flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid #2F3336;
}
.tweet__meta strong { color: #E7E9EA; font-weight: 700; }
.tweet__meta-dot { color: #71767B; }
.tweet__actions {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  gap: 8px;
  margin-top: auto;
}
.tweet__act {
  background: transparent; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  color: #71767B; font-size: 14px; font-weight: 500;
  padding: 6px; border-radius: 999px;
  transition: color .15s ease;
}
.tweet__act svg { width: 18px; height: 18px; }
.tweet__act--rt { color: #00BA7C; }
.tweet__act--rt span { color: #00BA7C; font-weight: 700; }
.tweet__act--like { color: #F91880; }
.tweet__act--like span { color: #F91880; font-weight: 700; }
.tweet__act--share { margin-left: auto; }

/* --- Structural gap (right col) --- */
.diag {
  border-left: 2px solid rgba(167,139,250,0.45);
  padding-left: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.diag__eyebrow {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet-bright); margin-bottom: 6px;
}
.diag__body {
  font-size: 30px; line-height: 1.4; color: var(--fg-80);
  margin: 0; font-weight: 300; letter-spacing: -0.006em;
  text-wrap: pretty;
}
.diag__body em {
  font-style: italic;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diag__body--coda {
  font-size: 26px; color: var(--violet-bright);
  font-weight: 400;
}

/* --- Full-width result stake band --- */
.stake--wide {
  padding: 30px 44px;
  background:
    radial-gradient(80% 140% at 0% 50%, rgba(139,92,246,0.16), transparent 60%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.28);
  border-radius: 18px;
  margin-top: auto;
}
.stake--wide .stake__eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet-bright); margin-bottom: 4px;
}
.stake__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.stake__stat {
  display: flex; align-items: baseline; gap: 16px;
  white-space: nowrap;
}
.stake__num {
  font-size: 140px; font-weight: 400; line-height: 0.9; letter-spacing: -0.04em;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-feature-settings: "tnum" 1;
}
.stake__unit {
  font-size: 22px; color: var(--fg-60); font-weight: 500;
  letter-spacing: 0.02em;
}
.stake__sub {
  font-size: 26px; color: var(--fg-80); font-weight: 300;
  line-height: 1.35; text-wrap: pretty;
}


/* ============================================================
   SLIDE 06 — Why Now · three tech shifts
   ============================================================ */
.whynow {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: flex; flex-direction: column;
  color: var(--fg);
}
.whynow__head {
  display: flex; flex-direction: column; gap: 12px;
}
.whynow__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.whynow__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.whynow__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.whynow__legend {
  font-size: 13px; color: var(--fg-60);
  font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding-bottom: 10px; white-space: nowrap;
}
.whynow__intro {
  font-size: 22px; color: var(--fg-60); font-weight: 300;
  margin-top: 24px; max-width: 900px;
}

.whynow__stack {
  display: flex; flex-direction: column;
  gap: 32px;
  margin-top: 48px;
  flex: 1;
  justify-content: center;
}
@keyframes wnFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wn-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 36px;
  align-items: center;
  padding: 50px 44px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(139,92,246,0.08), rgba(139,92,246,0.02) 60%, transparent);
  border: 1px solid rgba(167,139,250,0.22);
  opacity: 0;
  animation: wnFadeUp 0.7s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: var(--wn-delay, 0s);
}
[data-deck-active] .wn-row { animation-play-state: running; }
.wn-row__num {
  font-size: 56px; font-weight: 500; color: var(--violet-bright);
  letter-spacing: -0.02em; line-height: 1;
}
.wn-row__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(167,139,250,0.3);
  color: var(--violet-bright);
}
.wn-row__icon svg { width: 40px; height: 40px; }
.wn-row__text {
  display: flex; align-items: center;
}
.wn-row__title {
  font-size: 34px; font-weight: 500; line-height: 1.3;
  color: var(--fg); letter-spacing: -0.01em; text-wrap: pretty;
  max-width: 1300px;
}
.wn-row__year {
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-40);
  white-space: nowrap;
  padding: 6px 12px;
  border: 1px solid var(--fg-12);
  border-radius: 999px;
}

.whynow__punch {
  margin-top: 32px;
  padding: 22px 28px;
  font-size: 22px; line-height: 1.4; color: var(--fg-80);
  background: rgba(255,255,255,0.02);
  border-left: 2px solid rgba(167,139,250,0.55);
  border-radius: 0 12px 12px 0;
  font-weight: 300;
}
.whynow__punch em {
  font-style: normal; color: var(--fg); font-weight: 500;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}


/* ============================================================
   SLIDE 07 — Solution · Practice / Feedback / Improve
   ============================================================ */
.solution {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--fg);
  overflow: hidden;
}
.solution__head {
  display: flex; flex-direction: column; gap: 12px;
}
.solution__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.solution__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.solution__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.solution__legend {
  font-size: 13px; color: var(--fg-60);
  font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding-bottom: 10px; white-space: nowrap;
}

.solution__stage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 80px;
  min-height: 0;
  align-items: start;
}
.sol-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 0;
}
.sol-col .iphone {
  width: 280px;
  height: 560px;
  max-width: 280px;
  max-height: 560px;
  flex-shrink: 0;
  aspect-ratio: auto;     /* override the global aspect-ratio so width+height are honored */
  align-self: center;     /* override global align-self:start — centre phone in its flex column */
}
.sol-col__meta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  max-width: 360px;
}
.sol-col__num {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--violet-bright);
}
.sol-col__name {
  font-size: 36px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.05;
}
/* sol-col--hero name treatment removed — all three steps equal */
.sol-col__desc {
  font-size: 18px; color: var(--fg-60); line-height: 1.45;
  font-weight: 300; text-wrap: pretty;
}


/* Scale Solution slide videos up to hide the built-in mobile mockup */
.sol-col .iphone__video {
  transform: scale(1.14);
  transform-origin: center center;
}
/* Feedback video has a larger built-in bezel — scale more aggressively */
.sol-col[data-step="feedback"] .iphone__video {
  transform: scale(1.22);
}


/* ============================================================
   SLIDE 09 — Pillars · Two-tile thesis
   ============================================================ */
.pillars {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 40px;
  color: var(--fg);
}
.pillars__head {
  display: flex; flex-direction: column; gap: 12px;
}
.pillars__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.pillars__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.pillars__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pillars__legend {
  font-size: 13px; color: var(--fg-60);

  letter-spacing: 0.2em; text-transform: uppercase;
  padding-top: 14px; white-space: nowrap;
}

.pillars__stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  min-height: 0;
}
.pillars__divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(167,139,250,0.35) 30%, rgba(167,139,250,0.35) 70%, transparent);
}
.pillar-tile {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 22px;
  padding: 56px 40px;
  border-radius: 20px;
  background:
    radial-gradient(600px 400px at 10% 0%, rgba(139,92,246,0.09), transparent 60%),
    rgba(255,255,255,0.015);
  border: 1px solid rgba(167,139,250,0.18);
  position: relative;
  overflow: hidden;
}
.pillar-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.5), transparent);
}
.pillar-tile__num {

  font-size: 72px; font-weight: 500; line-height: 1;
  color: rgba(167,139,250,0.45);
  letter-spacing: -0.03em;
}
.pillar-tile__num--icon {
  width: 68px; height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(167,139,250,0.65);
}
.pillar-tile__num--icon svg {
  width: 100%; height: 100%;
  display: block;
}
.pillar-tile__name {
  font-size: 46px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.05; color: var(--fg);
}
.pillar-tile__body {
  font-size: 22px; font-weight: 300; line-height: 1.45;
  color: var(--fg-60);
  margin: 0; max-width: 560px; text-wrap: pretty;
}
.pillar-tile__tag {
  justify-self: start;

  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet-bright);
  padding: 8px 14px;
  border: 1px solid rgba(167,139,250,0.35);
  border-radius: 999px;
  background: rgba(139,92,246,0.08);
}

.pillars__punch {
  padding: 20px 28px;
  font-size: 24px; line-height: 1.4;
  background: rgba(255,255,255,0.02);
  border-left: 2px solid rgba(167,139,250,0.55);
  border-radius: 0 12px 12px 0;
  color: var(--fg-80);
}
.pillars__punch em {
  font-style: normal; font-weight: 500;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}


/* ============================================================
   SLIDE 10 — Speech · Pillar 1 benchmark
   ============================================================ */
.speech {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  color: var(--fg);
}
.speech__head {
  display: flex; flex-direction: column; gap: 12px;
}
.speech__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.speech__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.speech__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.speech__lede {
  margin: 14px 0 0; font-size: 22px; color: var(--fg-60);
  font-weight: 300; line-height: 1.4; max-width: 1100px;
}
.speech__legend {
  font-size: 13px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.2em; text-transform: uppercase;
  padding-top: 14px; white-space: nowrap;
}

.speech__stage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  min-height: 0;
  align-items: stretch;
}

/* ---------- Left: hero stat + proofs ---------- */
.speech__left {
  display: flex; flex-direction: column; gap: 32px;
  justify-content: center;
}
.speech-hero {
  display: flex; flex-direction: column; gap: 8px;
}
.speech-hero__label {
  font-family: var(--sans);
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--violet-bright);
}
.speech-hero__num {
  display: flex; align-items: baseline; gap: 6px;
}
.speech-hero__range {
  font-size: 180px; font-weight: 500; line-height: 0.92;
  letter-spacing: -0.04em;
  white-space: nowrap;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.speech-hero__range .dash {
  display: inline-block;
  margin: 0 0.04em;
  font-weight: 400;
  letter-spacing: 0;
}
.speech-hero__pct {
  font-size: 80px; letter-spacing: -0.03em;
}
.speech-hero__sub {
  font-size: 22px; color: var(--fg-60); font-weight: 300; margin-top: 6px;
}
.speech__proof {
  list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--fg-12);
  display: flex; flex-direction: column; gap: 14px;
}
.speech__proof li {
  display: grid; grid-template-columns: 160px 1fr; align-items: baseline; gap: 24px;
}
.speech__proof-num {
  font-size: 42px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--fg); line-height: 1;
}
.speech__proof-num .x {
  font-size: 24px; color: var(--fg-60); letter-spacing: 0;
}
.speech__proof-txt {
  font-size: 20px; color: var(--fg-60); line-height: 1.4; font-weight: 300;
}

/* ---------- Right: bar chart ---------- */
.speech__right {
  display: flex; flex-direction: column; min-height: 0;
}
.speech-chart {
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--fg-12);
  border-radius: 18px;
  padding: 32px 36px 28px;
  display: grid; grid-template-rows: auto 1fr auto; gap: 20px;
  min-height: 0;
  height: 100%;
}
.speech-chart__head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.speech-chart__title {
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
}
.speech-chart__unit {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-60);
}

.speech-chart__plot {
  position: relative;
  display: grid; grid-template-columns: 40px 1fr; gap: 20px;
  min-height: 0;
}
.speech-chart__grid {
  position: relative; height: 100%;
  display: flex; flex-direction: column-reverse;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 12px; color: var(--fg-40);
  padding-bottom: 80px; /* reserves label area */
}
.speech-chart__grid span {
  position: relative;
  text-align: right;
}
.speech-chart__grid span::after {
  content: ""; position: absolute; left: 60px; right: -9999px; top: 50%;
  border-top: 1px dashed var(--fg-12);
}

.speech-chart__bars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: end; height: 100%;
  padding-bottom: 80px;
}
.bar {
  display: grid; grid-template-rows: 1fr auto auto; gap: 10px;
  align-items: end; justify-items: center;
  height: 100%; position: relative;
}
.bar__track {
  width: 70%; height: 100%;
  display: flex; align-items: flex-end;
  position: relative;
}
.bar__flag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--val) / 15 * 100% + 16px);
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet-bright);
  white-space: nowrap;
  padding: 6px 10px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(167,139,250,0.4);
  border-radius: 999px;
  z-index: 2;
}
.bar__fill {
  width: 100%;
  height: calc(var(--val) / 15 * 100%);
  background: linear-gradient(180deg, rgba(139,92,246,0.35), rgba(139,92,246,0.12));
  border-top: 2px solid rgba(167,139,250,0.55);
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s cubic-bezier(.2,.7,.2,1) forwards;
  transform-origin: bottom;
}
.bar--ours .bar__fill {
  background: linear-gradient(180deg, rgba(167,139,250,0.9), rgba(139,92,246,0.55));
  border-top: 2px solid #C4B5FD;
  box-shadow: 0 0 40px rgba(139,92,246,0.35);
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.bar__label {
  position: absolute; bottom: -68px;
  font-size: 16px; color: var(--fg-80); white-space: nowrap;
  font-weight: 400;
}
.bar--ours .bar__label {
  color: var(--fg); font-weight: 500;
}
.bar__value {
  position: absolute; bottom: -40px;
  font-family: var(--sans);
  font-size: 15px; color: var(--fg-60);
  font-weight: 500;
}
.bar--ours .bar__value {
  color: var(--violet-bright);
}
.bar__value .bar__pct { opacity: 0.7; }
/* Flag is now positioned inside the track; old fixed rule removed */

.speech-chart__note {
  font-size: 13px; color: var(--fg-60); font-style: italic;
  border-top: 1px solid var(--fg-12); padding-top: 12px;
}

/* === Speech slope chart (multi-region WER) === */
.speech-slope {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.speech-slope svg {
  width: 100%;
  height: 100%;
  display: block;
  font-family: var(--sans);
}

/* Gridlines (horizontal y-axis lines) */
.speech-slope__grid line {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

/* Y-axis labels */
.speech-slope__ylabels text {
  font-size: 11px;
  fill: var(--fg-40);
  letter-spacing: 0.04em;
}

/* X-axis (region) labels */
.speech-slope__xlabels text {
  font-size: 13px;
  font-weight: 500;
  fill: var(--fg-70);
  letter-spacing: 0.02em;
}

/* Competitor lines · muted */
.speech-slope__line {
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.speech-slope__line--alt {
  stroke: rgba(167,139,250,0.32);
  stroke-width: 1.6;
}
/* Our line · bright, prominent */
.speech-slope__line--ours {
  stroke: rgb(196,181,253);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 8px rgba(167,139,250,0.55));
}

/* Dots */
.speech-slope__dot--alt circle {
  fill: rgba(167,139,250,0.55);
}
.speech-slope__dot--ours circle {
  fill: rgb(196,181,253);
  filter: drop-shadow(0 0 4px rgba(167,139,250,0.6));
}

/* Right-side model labels */
.speech-slope__legend text {
  font-size: 12px;
  letter-spacing: 0.04em;
}
.speech-slope__legend-alt {
  fill: rgba(167,139,250,0.65);
}
.speech-slope__legend-ours {
  fill: rgb(196,181,253);
  font-weight: 600;
}

/* Endpoint values for Our line */
.speech-slope__value text {
  font-size: 12px;
  font-weight: 600;
  fill: rgb(196,181,253);
}

/* ===== Grouped bar chart (replaces slope chart) ===== */
.speech-bars {
  display: flex; flex-direction: column; gap: 14px;
  width: 100%; height: 100%;
  min-height: 0;
}
.speech-bars__legend {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 13px; color: var(--fg-60);
}
.speech-bars__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.speech-bars__chip::before {
  content: ""; width: 10px; height: 10px; border-radius: 3px; display: inline-block;
}
.speech-bars__chip--india::before { background: #C4B5FD; }
.speech-bars__chip--indo::before  { background: #A78BFA; }
.speech-bars__chip--latam::before { background: #7C3AED; }
.speech-bars svg {
  width: 100%; height: 100%; display: block; flex: 1; min-height: 0;
}
.speech-bars__grid line {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
  stroke-dasharray: 2 4;
  vector-effect: non-scaling-stroke;
}
.speech-bars__ylabels text {
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  fill: var(--fg-60);
}
.speech-bars__xlabels text {
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  fill: var(--fg-80);
}
.speech-bars__bar {
  rx: 4;
}
.speech-bars__bar--india { fill: rgba(196,181,253,0.55); }
.speech-bars__bar--indo  { fill: rgba(167,139,250,0.55); }
.speech-bars__bar--latam { fill: rgba(124,58,237,0.55); }
/* Our Model group — solid hero colours */
.speech-bars__group--ours .speech-bars__bar--india { fill: #C4B5FD; }
.speech-bars__group--ours .speech-bars__bar--indo  { fill: #A78BFA; }
.speech-bars__group--ours .speech-bars__bar--latam { fill: #7C3AED; }
.speech-bars__group--ours .speech-bars__bar {
  filter: drop-shadow(0 0 8px rgba(167,139,250,0.35));
}

.speech__cite {
  font-size: 13px; color: var(--fg-40);
  font-family: var(--sans);
  letter-spacing: 0.05em;
}
.speech__cite em {
  font-style: italic; color: var(--fg-60);
}


/* ============================================================
   SLIDE 11 — Assess · Exam-grade + Then go further
   ============================================================ */
.assess {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  color: var(--fg);
}
.assess__head {
  display: flex; flex-direction: column; gap: 12px;
}
.assess__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.assess__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.assess__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.assess__legend {
  font-size: 15px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 14px; white-space: nowrap;
  text-align: right;
  line-height: 1.6;
}
.assess__legend-names {
  display: inline-block; margin-top: 8px;
  color: var(--violet-bright);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.26em;
}

.assess__stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  min-height: 0;
  align-items: stretch;
}

.assess-col {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 20px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--fg-12);
  min-height: 0;
}
.assess-col--more {
  border-color: rgba(167,139,250,0.28);
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(139,92,246,0.09), transparent 70%),
    rgba(255,255,255,0.015);
}
.assess-col__header {}
.assess-col__kicker {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-60);
}
.assess-col__kicker--accent { color: var(--violet-bright); }
.assess-col__title {
  margin-top: 8px;
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.1;
}
.assess-col--more .assess-col__title {
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.assess-col__foot {
  font-size: 15px; color: var(--fg-60); font-style: italic;
  padding-top: 14px; border-top: 1px solid var(--fg-12);
}
.assess-col__foot--accent {
  color: var(--fg-80); font-style: normal; font-weight: 500;
  border-top-color: rgba(167,139,250,0.2);
}

/* Dimensions list (left column) */
.assess-dims {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  height: 100%;
}
.assess-dims li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--fg-12);
  border-radius: 14px;
  align-items: start;
  flex: 1;
}
.assess-dims__num {
  font-family: var(--sans);
  font-size: 15px; color: var(--violet-bright);
  letter-spacing: 0.12em; padding-top: 4px;
}
.assess-dims__name {
  font-size: 26px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.15;
}
.assess-dims__desc {
  margin-top: 8px;
  font-size: 17px; color: var(--fg-60); line-height: 1.4;
  font-weight: 300;
}

/* Bridge divider */
.assess__bridge {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
  justify-content: center;
}
.assess__bridge-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(167,139,250,0.35) 50%, transparent);
}
.assess__bridge-badge {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--violet-bright);
  padding: 10px 16px;
  border: 1px solid rgba(167,139,250,0.45);
  border-radius: 999px;
  background: rgba(10,10,18,0.9);
  white-space: nowrap;
  writing-mode: vertical-rl;
  margin: 16px 0;
}

/* Right column: loop */
.assess-loop {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 24px 0;
}
.assess-loop__step {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.assess-loop__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(167,139,250,0.35);
  color: var(--violet-bright);
}
.assess-loop__icon svg { width: 26px; height: 26px; }
.assess-loop__label {
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--fg);
}
.assess-loop__desc {
  font-size: 14px; color: var(--fg-60); line-height: 1.35;
  font-weight: 300; max-width: 160px;
}
.assess-loop__arrow {
  color: rgba(167,139,250,0.5);
}
.assess-loop__arrow svg { width: 32px; height: 12px; }


/* ============================================================
   SLIDE 12 — Agent · Self-improving loop + stats
   ============================================================ */
.agent {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  color: var(--fg);
}
.agent__head {
  display: flex; flex-direction: column; gap: 12px;
}
.agent__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.agent__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.agent__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.agent__legend {
  font-size: 15px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 14px; white-space: nowrap;
  text-align: right; line-height: 1.6;
}
.agent__legend-sub {
  display: inline-block; margin-top: 6px;
  color: var(--violet-bright); font-weight: 500;
  font-size: 13px;
}

/* ---------- loop stage ---------- */
.agent__stage {
  display: grid;
  place-items: center;
  min-height: 0;
}
.agent-loop {
  position: relative;
  width: 100%;
  max-width: 1100px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.agent-loop__caption {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-60);
}
.agent-loop__ring {
  position: relative;
  width: 800px; height: 520px;
}

/* SVG arrows layer */
.agent-loop__arrows {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Center orchestrator — compact, kicker + body sit as one tight stack */
.agent-loop__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(139,92,246,0.18), rgba(139,92,246,0.06) 70%, transparent 100%),
    rgba(10,10,18,0.9);
  border: 1px solid rgba(167,139,250,0.35);
  box-shadow:
    inset 0 0 60px rgba(139,92,246,0.08),
    0 0 90px rgba(139,92,246,0.15);
  padding: 40px;
}
.agent-loop__center-kicker {
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--fg);
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.agent-loop__center-body {
  font-size: 14px; color: var(--fg-60); line-height: 1.4;
  font-weight: 300; max-width: 200px;
}

/* 4 capability cards positioned at NW, NE, SE, SW.
   Diagonal rhythm: NE + SW highlighted (match centre disc), NW + SE subdued. */
.agent-step {
  position: absolute;
  width: 280px;
  padding: 20px 24px;
  border-radius: 14px;
  /* Default = subdued (NW + SE) */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01) 70%, rgba(255,255,255,0) 100%),
    rgba(20,18,28,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  column-gap: 16px; row-gap: 6px;
  align-items: center;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}
.agent-step:hover {
  transform: translateY(-4px);
  background: rgba(18,14,32,0.95);
  border-color: rgba(167,139,250,0.7);
  box-shadow:
    0 24px 60px rgba(139,92,246,0.28),
    0 0 50px rgba(167,139,250,0.20),
    inset 0 0 30px rgba(139,92,246,0.10);
}
.agent-step:hover .agent-step__num {
  color: #C4B5FD;
}
.agent-step__num {
  grid-row: 1 / 3;
  font-family: var(--sans);
  font-size: 32px; font-weight: 500;
  color: var(--violet-bright);
  line-height: 1;
  align-self: center;
}
.agent-step__name {
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--fg);
}
.agent-step__desc {
  font-size: 15px; color: var(--fg); line-height: 1.4;
  font-weight: 400;
}

/* Positions — NW, NE, SW, SE */
.agent-step--1 { top: 30px;   left: 20px; }   /* Conversation (NW) */
.agent-step--2 { top: 30px;   right: 20px; }  /* Feedback (NE) */
.agent-step--3 { bottom: 30px; right: 20px; } /* Exercise Generation (SE) */
.agent-step--4 { bottom: 30px; left: 20px; }  /* Pedagogical Decisions (SW) */

/* Highlighted diagonal pair — match the centre disc's violet tone */
.agent-step--2,
.agent-step--4 {
  background:
    linear-gradient(180deg, rgba(139,92,246,0.18), rgba(139,92,246,0.06) 70%, rgba(139,92,246,0.02) 100%),
    rgba(20,15,32,0.95);
  border: 1px solid rgba(167,139,250,0.45);
}

/* ---------- stats band ---------- */
.agent-stats {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 24px 28px;
  border-top: 1px solid var(--fg-12);
  border-bottom: 1px solid var(--fg-12);
  background: rgba(255,255,255,0.015);
}
.agent-stats__kicker {
  font-size: 20px; font-weight: 400; color: var(--fg-80);
  line-height: 1.35; max-width: 600px;
}
.agent-stats__grid {
  display: flex; gap: 40px;
}
.agent-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  min-width: 220px;
}
.agent-stat__num {
  font-size: 52px; font-weight: 500; letter-spacing: -0.035em;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.agent-stat__plus {
  font-size: 32px;
}
.agent-stat__unit {
  font-size: 30px; margin-left: 6px;
}
.agent-stat__label {
  font-size: 14px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 4px;
}


/* ============================================================
   SLIDE 13 — MATS · Pillar 2 (chart left · 2×2 metrics right)
   ============================================================ */
.mats {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  color: var(--fg);
}
.mats__head {
  display: flex; flex-direction: column; gap: 12px;
}
.mats__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.mats__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.mats__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mats__legend {
  font-size: 22px; color: var(--violet-bright);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 6px; white-space: nowrap;
  text-align: right; line-height: 1.35;
  font-weight: 600;
}
.mats__legend-sub {
  display: inline-block; margin-top: 10px;
  color: var(--fg-60);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
}

/* ---------- Body: chart left · metrics right ---------- */
.mats__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  min-height: 0;
  align-items: stretch;
  margin-top: 18px;
}

/* ---------- Chart column ---------- */
.mats__chart {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.mats-chart {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  min-height: 0;
}
.mats-chart__head {
  display: flex; justify-content: space-between; align-items: flex-end;
}
.mats-chart__y-title {
  font-size: 20px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--fg);
  white-space: nowrap;
}
.mats-chart__y-unit {
  font-size: 13px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 4px;
}
.mats-chart__unit {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-60);
}

/* Plot area contains: SVG (stretchy), gridlines, dot markers, y-axis, badge */
.mats-chart__plot {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0 0 0 54px; /* space for y-axis labels */
  grid-row: 2;
}

/* Y-axis labels (HTML, fixed size) */
.mats-chart__yaxis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 46px;
  pointer-events: none;
}
.mats-chart__yaxis span {
  position: absolute;
  right: 0;
  top: var(--p);
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg-60);
  letter-spacing: 0.08em;
}

/* Gridlines (HTML, won't stretch) */
.mats-chart__grid {
  position: absolute;
  inset: 0 0 0 54px;
  pointer-events: none;
}
.mats-chart__grid > div {
  position: absolute;
  left: 0; right: 0;
  top: var(--p);
  height: 1px;
  border-top: 1px dashed rgba(242,241,247,0.09);
}

/* SVG fills plot area — stretches, path uses non-scaling-stroke */
.mats-chart__svg {
  position: absolute;
  inset: 0 0 0 54px;
  width: calc(100% - 54px);
  height: 100%;
  display: block;
  overflow: visible;
}

/* Line draw animation — disabled, static clean line */
.mats-chart__line {
  stroke-width: 3.5;
  filter: drop-shadow(0 0 8px rgba(139,92,246,0.6));
}
.mats-chart__area { opacity: 1; }

@keyframes matsLineDraw { to { stroke-dashoffset: 0; } }
@keyframes matsFadeIn {
  to { opacity: 1; }
}

/* Hide SVG dots — we use HTML markers instead so they stay circular */
.mats-chart__dots { display: none; }
.mats-chart__endtether { opacity: 0.7; }

/* HTML dot markers — static, all visible */
.mats-chart__markers {
  position: absolute;
  inset: 0 0 0 54px;
  pointer-events: none;
}
.mats-chart__marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: #C4B5FD;
  box-shadow: 0 0 12px rgba(196,181,253,0.6);
}
@keyframes matsDot { to { opacity: 1; transform: scale(1); } }
.mats-chart__marker--end {
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  box-shadow: 0 0 24px rgba(196,181,253,0.9);
}
.mats-chart__marker--end::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(196,181,253,0.7);
  animation: matsPulse 1.8s ease-out infinite;
}
@keyframes matsPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Endpoint floating badge — static, left of end dot, inside plot */
.mats-chart__endbadge {
  position: absolute;
  left: calc(54px + var(--x));
  top: var(--y);
  transform: translate(calc(-100% - 130px), 30px);
  padding: 12px 20px;
  background: rgba(139,92,246,0.16);
  border: 1px solid rgba(167,139,250,0.6);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  box-shadow: 0 0 50px rgba(139,92,246,0.45);
  white-space: nowrap;
  z-index: 5;
}
@keyframes matsBadgeIn {
  from { opacity: 0; transform: translate(calc(-100% - 130px), 30px) scale(0.85); }
  to   { opacity: 1; transform: translate(calc(-100% - 130px), 30px) scale(1); }
}
.mats-chart__endbadge-val {
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.mats-chart__endbadge-lab {
  font-size: 11px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* X-axis labels (HTML) */
.mats-chart__xaxis {
  position: relative;
  height: 20px;
  margin-left: 54px;
  grid-row: 3;
}
.mats-chart__xaxis span {
  position: absolute;
  left: var(--x);
  top: 0;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg-60);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ---------- Metrics column ---------- */
.mats__metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  justify-content: center;
}
.mats-metrics__kicker {
  font-size: 12px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
}
.mats-metrics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 0;
  flex: 1;
}
.mats-metric {
  position: relative;
  padding: 28px 30px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.06) 0%, rgba(139,92,246,0.02) 100%),
    rgba(12,12,18,0.6);
  border: 1px solid rgba(167,139,250,0.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
}
[data-deck-active] .mats-metric {
  animation: matsMetricIn 0.7s cubic-bezier(.22,.7,.2,1) forwards;
  animation-delay: var(--d, 0.1s);
}
@keyframes matsMetricIn {
  to { opacity: 1; transform: none; }
}
.mats-metric__index {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-40);
}
.mats-metric__val {
  font-size: 78px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
  white-space: nowrap;
}
.mats-metric__plus {
  font-size: 44px;
  letter-spacing: -0.03em;
}
.mats-metric__tilde {
  font-size: 52px;
  margin-right: 2px;
  opacity: 0.85;
}
.mats-metric__label {
  font-size: 22px; font-weight: 600; color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.mats-metric__sub {
  font-size: 14px; color: var(--fg-60);
  font-weight: 300;
  line-height: 1.4;
}

/* Hero metric highlight */
.mats-metric--hero {
  background:
    linear-gradient(180deg, rgba(139,92,246,0.16) 0%, rgba(139,92,246,0.04) 100%),
    rgba(12,12,18,0.6);
  border-color: rgba(167,139,250,0.5);
  box-shadow: 0 0 50px -10px rgba(139,92,246,0.35);
}

/* ---------- Goal strip ---------- */
.mats__goal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 16px 20px 0;
  border-top: 1px solid var(--fg-12);
}
.mats__goal-label {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet-bright);
}
.mats__goal-text {
  font-size: 18px; font-weight: 300; color: var(--fg-80);
  line-height: 1.4;
}


/* ============================================================
   SLIDE 14 — ECONOMICS · The scissors (CAC flat vs MRR 5×)
   ============================================================ */
.econ {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  color: var(--fg);
}
.econ__head {
  display: flex; flex-direction: column; gap: 12px;
}
.econ__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.econ__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.econ__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.econ__legend {
  font-size: 22px; color: var(--violet-bright);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 6px; white-space: nowrap;
  text-align: right; line-height: 1.35;
  font-weight: 600;
}
.econ__legend-sub {
  display: inline-block; margin-top: 10px;
  color: var(--fg-60);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
}

/* Body: stats left, chart right */
.econ__body {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 48px;
  min-height: 0;
  align-items: stretch;
  margin-top: 18px;
}

/* ---------- LEFT · two hero stats ---------- */
.econ__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 0;
}
.econ-stat {
  position: relative;
  padding: 32px 34px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.06) 0%, rgba(139,92,246,0.02) 100%),
    rgba(12,12,18,0.6);
  border: 1px solid rgba(167,139,250,0.22);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
}
[data-deck-active] .econ-stat {
  animation: econStatIn 0.7s cubic-bezier(.22,.7,.2,1) forwards;
  animation-delay: var(--d, 0.1s);
}
@keyframes econStatIn {
  to { opacity: 1; transform: none; }
}
.econ-stat--hero {
  background:
    linear-gradient(180deg, rgba(139,92,246,0.16) 0%, rgba(139,92,246,0.04) 100%),
    rgba(12,12,18,0.6);
  border-color: rgba(167,139,250,0.5);
  box-shadow: 0 0 50px -10px rgba(139,92,246,0.35);
}
.econ-stat__index {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-40);
}
.econ-stat__val {
  font-size: 96px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
  white-space: nowrap;
}
.econ-stat__prefix {
  font-size: 60px;
  margin-right: 6px;
  color: rgba(167,139,250,0.95);
  -webkit-text-fill-color: rgba(167,139,250,0.95);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  vertical-align: 0.1em;
  font-weight: 400;
}
.econ-stat__suffix {
  font-size: 60px;
  letter-spacing: -0.02em;
}
.econ-stat__dash {
  display: inline-block;
  width: 32px;
  height: 6px;
  margin: 0 12px 16px;
  background: rgba(167,139,250,0.9);
  border-radius: 3px;
  -webkit-text-fill-color: transparent;
  color: transparent;
  vertical-align: middle;
  font-size: 0;
  box-shadow: 0 0 12px rgba(139,92,246,0.5);
}
.econ-stat__label {
  font-size: 24px; font-weight: 600; color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.econ-stat__sub {
  font-size: 14px; color: var(--fg-60);
  font-weight: 300;
  line-height: 1.45;
  max-width: 480px;
}

/* ---------- RIGHT · Chart ---------- */
.econ__chart {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.econ-chart {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  min-height: 0;
}
.econ-chart__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.econ-chart__title {
  font-size: 18px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.econ-chart__legend {
  display: flex; gap: 20px;
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-60);
}
.econ-chart__legend-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.econ-chart__legend-item i {
  display: inline-block;
  width: 18px; height: 3px;
  border-radius: 2px;
}
.econ-chart__legend-item--mrr i {
  background: rgba(167,139,250,0.95);
  box-shadow: 0 0 8px rgba(139,92,246,0.6);
}
.econ-chart__legend-item--cac i {
  background: repeating-linear-gradient(to right, rgba(242,241,247,0.55) 0 4px, transparent 4px 8px);
}

/* Plot area */
.econ-chart__plot {
  position: relative;
  width: 100%; height: 100%;
  min-height: 0;
  padding: 0 60px; /* reserve room for both y-axes */
  grid-row: 2;
}

/* Gridlines */
.econ-chart__grid {
  position: absolute;
  inset: 0 60px;
  pointer-events: none;
}
.econ-chart__grid > div {
  position: absolute;
  left: 0; right: 0;
  top: var(--p);
  height: 1px;
  border-top: 1px dashed rgba(242,241,247,0.09);
}

/* Y-axis labels */
.econ-chart__yaxis {
  position: absolute;
  top: 0; bottom: 0;
  width: 46px;
  pointer-events: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.econ-chart__yaxis--left {
  left: 0;
  color: rgba(167,139,250,0.75);
}
.econ-chart__yaxis--right {
  right: 0;
  color: rgba(242,241,247,0.55);
}
.econ-chart__yaxis span {
  position: absolute;
  top: var(--p);
  transform: translateY(-50%);
}
.econ-chart__yaxis--left span { right: 0; }
.econ-chart__yaxis--right span { left: 0; }

/* SVG (stretchy) */
.econ-chart__svg {
  position: absolute;
  inset: 0 52px 0 54px;
  width: calc(100% - 106px);
  height: 100%;
  display: block;
  overflow: visible;
}
.econ-chart__mrr {
  stroke-width: 3.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  filter: drop-shadow(0 0 8px rgba(139,92,246,0.55));
}
.econ-chart__cac {
  stroke-width: 2;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}
.econ-chart__mrr-area,
.econ-chart__gap {
  opacity: 0;
}
[data-deck-active] .econ-chart__mrr {
  animation: econLine 2.2s cubic-bezier(.22,.7,.2,1) 0.4s forwards;
}
[data-deck-active] .econ-chart__cac {
  animation: econCacLine 1.4s ease-out 0.4s forwards;
}
[data-deck-active] .econ-chart__mrr-area {
  animation: econFadeIn 0.8s 2.3s ease-out forwards;
}
[data-deck-active] .econ-chart__gap {
  animation: econFadeIn 0.8s 2.6s ease-out forwards;
}
@keyframes econLine {
  to { stroke-dashoffset: 0; }
}
@keyframes econCacLine {
  to { stroke-dashoffset: 0; }
}
@keyframes econFadeIn {
  to { opacity: 1; }
}

/* Markers */
.econ-chart__markers {
  position: absolute;
  inset: 0 52px 0 54px;
  pointer-events: none;
}
.econ-chart__marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.3);
}
[data-deck-active] .econ-chart__marker {
  animation: econDot 0.5s ease-out forwards;
  animation-delay: var(--d, 1.8s);
}
@keyframes econDot {
  to { opacity: 1; transform: scale(1); }
}
.econ-chart__marker--mrr {
  background: #C4B5FD;
  box-shadow: 0 0 10px rgba(196,181,253,0.6);
}
.econ-chart__marker--cac {
  background: rgba(242,241,247,0.65);
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
}
.econ-chart__marker--end {
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  box-shadow: 0 0 20px rgba(196,181,253,0.9);
}
.econ-chart__marker--end::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(196,181,253,0.7);
  animation: econPulse 1.8s ease-out infinite;
}
@keyframes econPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Endpoint badges */
.econ-chart__endbadge {
  position: absolute;
  padding: 16px 26px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
  white-space: nowrap;
  opacity: 0;
  z-index: 5;
}
[data-deck-active] .econ-chart__endbadge {
  animation: econFadeIn 0.5s 2.7s ease-out forwards;
}
.econ-chart__endbadge-val {
  font-size: 34px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1;
}
.econ-chart__endbadge-lab {
  font-size: 13px; color: var(--fg-60);
  font-family: var(--sans);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.econ-chart__endbadge--mrr {
  top: 8px;
  left: 50%;
  transform: translateX(-20%);
  background: rgba(139,92,246,0.2);
  border: 1.5px solid rgba(167,139,250,0.65);
  box-shadow: 0 0 48px rgba(139,92,246,0.45);
}
[data-deck-active] .econ-chart__endbadge--mrr {
  animation: econFadeIn 0.5s 1.6s ease-out forwards;
}
.econ-chart__endbadge--mrr .econ-chart__endbadge-val {
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.econ-chart__endbadge--cac {
  transform: translate(calc(-100% - 16px), calc(-100% - 12px));
  background: rgba(12,12,18,0.8);
  border: 1px solid rgba(242,241,247,0.15);
}
.econ-chart__endbadge--cac .econ-chart__endbadge-val {
  color: var(--fg-80);
}

/* "The scissors" floating label */
.econ-chart__gap-label {
  position: absolute;
  left: 48%;
  top: 62%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  max-width: 260px;
}
[data-deck-active] .econ-chart__gap-label {
  animation: econFadeIn 0.6s 2.9s ease-out forwards;
}
.econ-chart__gap-label-tag {
  display: block;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet-bright);
  margin-bottom: 6px;
}
.econ-chart__gap-label-txt {
  display: block;
  font-size: 14px;
  color: var(--fg-80);
  font-weight: 400;
  line-height: 1.35;
}

/* X-axis */
.econ-chart__xaxis {
  position: relative;
  height: 20px;
  margin: 0 12px 0 60px;
  grid-row: 3;
}
.econ-chart__xaxis span {
  position: absolute;
  left: var(--x);
  top: 0;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg-60);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ---------- Takeaway strip ---------- */
.econ__takeaway {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 16px 20px 0;
  border-top: 1px solid var(--fg-12);
}
.econ__takeaway-label {

  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet-bright);
}
.econ__takeaway-text {
  font-size: 20px; font-weight: 400; color: var(--fg-80);
  line-height: 1.4;
}
.econ__takeaway-text em {
  font-style: normal; font-weight: 500;
  color: var(--fg);
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}


/* ---------- SLIDE 14 · Bar chart ---------- */
.econ-bars {
  position: absolute;
  inset: 0 60px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  padding: 0 12px;
  align-items: end;
}

/* ===== CAC overlay (right axis) ===== */
.econ-cac {
  position: absolute;
  inset: 0 60px;
  width: calc(100% - 120px);
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}
.econ-cac__line {
  stroke: rgba(255,255,255,0.9);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.30));
  vector-effect: non-scaling-stroke;
}

/* Dots on the line — value pill sits right above each dot */
.econ-cac__dots {
  position: absolute;
  inset: 0 60px;
  pointer-events: none;
  z-index: 3;
}
.econ-cac__dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(10,10,18,0.85);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(255,255,255,0.45);
}
.econ-cac__dot b {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  background: rgba(0,0,0,0.92);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.econ-bar {
  position: relative;
  width: 100%;
  height: var(--h, 10%);
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(180deg, rgba(167,139,250,0.9) 0%, rgba(139,92,246,0.55) 60%, rgba(139,92,246,0.25) 100%);
  border: 1px solid rgba(167,139,250,0.35);
  box-shadow: 0 0 24px -6px rgba(139,92,246,0.5);
  transform-origin: bottom;
  transform: scaleY(0);
  opacity: 0;
}
[data-deck-active] .econ-bar {
  animation: econBarGrow 0.9s cubic-bezier(.22,.7,.2,1) forwards;
  animation-delay: var(--d, 0.2s);
}
@keyframes econBarGrow {
  to { transform: scaleY(1); opacity: 1; }
}
.econ-bar--hero {
  background: linear-gradient(180deg, #DDD0FF 0%, rgba(167,139,250,0.9) 50%, rgba(139,92,246,0.4) 100%);
  border-color: rgba(196,181,253,0.7);
  box-shadow: 0 0 40px -4px rgba(139,92,246,0.8);
}
.econ-bar__val {
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-80);
  white-space: nowrap;
  opacity: 0;
}
.econ-bar--hero .econ-bar__val {
  color: #E9DFFF;
  font-size: 16px;
  font-weight: 600;
}
[data-deck-active] .econ-bar__val {
  animation: econFadeIn 0.4s ease-out forwards;
  animation-delay: calc(var(--d, 0.2s) + 0.7s);
}


/* ============================================================
   SLIDE 15 — ARR GROWTH · Zero to ~$2.9M in 30 months
   ============================================================ */
.arr {
  position: absolute; inset: 0;
  padding: 66px 96px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 22px;
  color: var(--fg);
}
.arr__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
}
.arr__eyebrow {
  font-size: 16px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--violet-bright); line-height: 1;
}
.arr__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.04; margin: 10px 0 0; text-wrap: balance;
  max-width: 1400px;
}
.arr__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.arr__legend {
  font-size: 22px; color: var(--violet-bright);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 6px; white-space: nowrap;
  text-align: right; line-height: 1.35;
  font-weight: 600;
}
.arr__legend-sub {
  display: inline-block; margin-top: 10px;
  color: var(--fg-60);
  font-weight: 400; font-size: 13px;
  letter-spacing: 0.2em;
}

/* Chart */
.arr__chart {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-height: 0;
  margin-top: 12px;
}
.arr-chart__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  position: relative;
  z-index: 4;
  min-height: 0;
}
.arr-chart__title {
  font-size: 20px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.005em;
  padding-top: 6px;
}
.arr-chart__endcard {
  position: relative;
  top: -11px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(139,92,246,0.22) 0%, rgba(139,92,246,0.08) 100%);
  border: 1.5px solid rgba(167,139,250,0.6);
  box-shadow: 0 0 50px rgba(139,92,246,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.arr-chart__endcard-pulse {
  position: relative;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #DDD0FF;
  box-shadow: 0 0 14px rgba(196,181,253,0.9);
  flex-shrink: 0;
}
.arr-chart__endcard-pulse::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(196,181,253,0.7);
  animation: matsPulse 1.8s ease-out infinite;
}
.arr-chart__endcard-body {
  display: flex;
  align-items: center;
  gap: 14px;
}
.arr-chart__endcard-val {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.arr-chart__endcard-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.arr-chart__endcard-tag {
  font-weight: 700;
  color: #A78BFA;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(167,139,250,0.15);
}
.arr-chart__endcard-sep {
  width: 10px; height: 1px;
  background: rgba(167,139,250,0.35);
}
.arr-chart__endcard-date {
  color: var(--fg-80);
  font-weight: 500;
}

.arr-chart__plot {
  position: relative;
  width: 100%; height: 100%;
  min-height: 0;
  padding: 0 68px 0 0;
  grid-row: 2;
}

.arr-chart__grid {
  position: absolute;
  inset: 0 68px 0 0;
  pointer-events: none;
}
.arr-chart__grid > div {
  position: absolute;
  left: 0; right: 0;
  top: var(--p);
  height: 1px;
  border-top: 1px dashed rgba(242,241,247,0.09);
}

.arr-chart__yaxis {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 58px;
  pointer-events: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(167,139,250,0.75);
}
.arr-chart__yaxis span {
  position: absolute;
  left: 10px;
  top: var(--p);
  transform: translateY(-50%);
}

.arr-chart__svg {
  position: absolute;
  inset: 0 68px 0 0;
  width: calc(100% - 68px);
  height: 100%;
  display: block;
  overflow: visible;
}
.arr-chart__line {
  stroke-width: 3;
  filter: drop-shadow(0 0 10px rgba(139,92,246,0.5));
}

.arr-chart__endmarker {
  position: absolute;
  left: calc(var(--x) * (100% - 68px) / 100%);
  top: var(--y);
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: #DDD0FF;
  box-shadow: 0 0 24px rgba(196,181,253,0.9);
  z-index: 3;
}
.arr-chart__endmarker::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(196,181,253,0.7);
  animation: matsPulse 1.8s ease-out infinite;
}

.arr-chart__xaxis {
  position: relative;
  height: 20px;
  margin-right: 68px;
  grid-row: 3;
}
.arr-chart__xaxis span {
  position: absolute;
  left: var(--x);
  top: 0;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--fg-60);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* 3 stat cards */
.arr__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--fg-12);
  margin-top: 8px;
}
.arr-stat {
  position: relative;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(139,92,246,0.06) 0%, rgba(139,92,246,0.02) 100%), rgba(12,12,18,0.5);
  border: 1px solid rgba(167,139,250,0.22);
  text-align: center;
}
.arr-stat__index {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--fg-40);
}
.arr-stat__val {
  font-size: 64px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 12px;
}
.arr-stat__plus {
  font-size: 44px;
  margin-left: 2px;
}
.arr-stat__label {
  font-size: 18px; font-weight: 500;
  color: var(--fg-80);
  letter-spacing: -0.005em;
}


/* ============================================================
   SLIDE 16 — RETENTION & REVIEWS
   ============================================================ */
.rrv {
  position: absolute; inset: 0;
  padding: 66px 96px 28px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 24px;
  color: var(--fg);
}
.rrv__head {
  display: flex; flex-direction: column; gap: 10px;
}
.rrv__eyebrow {
  font-size: 16px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--violet-bright);
  line-height: 1;
}
.rrv__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.04; margin: 10px 0 0; text-wrap: balance;
}
.rrv__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Body split */
.rrv__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  min-height: 0;
}

.rrv-panel {
  position: relative;
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(12,12,18,0.55);
  border: 1px solid var(--fg-12);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  min-height: 0;
}
.rrv-panel__head {
  display: flex; flex-direction: column; gap: 4px;
}
.rrv-panel__title {
  font-size: 20px; font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.rrv-panel__sub {

  font-size: 13px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-60);
}
.rrv-panel__sub em {
  font-style: normal;
  color: var(--violet-bright);
  font-weight: 600;
}

/* Chart */
.rrv-chart {
  position: relative;
  width: 100%; height: 100%;
  min-height: 0;
  padding: 0 0 28px 54px;
}
.rrv-chart__grid {
  position: absolute;
  inset: 0 0 28px 54px;
  pointer-events: none;
}
.rrv-chart__grid > div {
  position: absolute;
  left: 0; right: 0;
  top: var(--p);
  border-top: 1px dashed rgba(242,241,247,0.08);
}
.rrv-chart__yaxis {
  position: absolute;
  left: 0; top: 0;
  width: 48px;
  height: calc(100% - 28px);
  pointer-events: none;

  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--fg-60);
}
.rrv-chart__yaxis span {
  position: absolute;
  right: 8px; top: var(--p);
  transform: translateY(-50%);
}
.rrv-chart__svg {
  position: absolute;
  inset: 0 0 28px 54px;
  width: calc(100% - 54px);
  height: calc(100% - 28px);
  overflow: visible;
}
.rrv-chart__line {
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rrv-chart__line--d1 {
  stroke: #C4B5FD;
  filter: drop-shadow(0 0 8px rgba(196,181,253,0.55));
}
.rrv-chart__line--d7 {
  stroke: rgba(167,139,250,0.75);
  filter: drop-shadow(0 0 6px rgba(139,92,246,0.35));
  stroke-dasharray: 6 4;
}

.rrv-chart__dot {
  position: absolute;
  left: calc(54px + (100% - 54px) * var(--x) / 100%);
  top: calc(var(--y) * (100% - 28px) / 100%);
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  z-index: 3;
}
.rrv-chart__dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.5;
  animation: matsPulse 1.8s ease-out infinite;
}
.rrv-chart__dot--d1 {
  background: #DDD0FF;
  box-shadow: 0 0 18px rgba(196,181,253,0.85);
  color: #C4B5FD;
}
.rrv-chart__dot--d7 {
  background: #B197FC;
  box-shadow: 0 0 14px rgba(167,139,250,0.6);
  color: #A78BFA;
  animation-delay: 0.6s;
}
.rrv-chart__dot-label {
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(calc(-50% - 16px));

  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(139,92,246,0.9);
}

.rrv-chart__startlabel {
  position: absolute;
  left: 60px;
  top: var(--y);
  transform: translate(-100%, -50%);
  padding-right: 10px;

  font-size: 13px; font-weight: 600;
  color: var(--fg-80);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.rrv-chart__startlabel--d1 { color: rgba(196,181,253,0.85); }
.rrv-chart__startlabel--d7 { color: rgba(167,139,250,0.7); }

.rrv-chart__xaxis {
  position: absolute;
  left: 54px; right: 0; bottom: 0;
  height: 20px;
}
.rrv-chart__xaxis span {
  position: absolute;
  left: var(--x);
  top: 0;
  transform: translateX(-50%);

  font-size: 12px; font-weight: 400;
  color: var(--fg-60);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.rrv-chart__legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.rrv-legend-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(167,139,250,0.3);
  font-size: 15px;
}
.rrv-legend-chip--d7 {
  background: rgba(139,92,246,0.05);
  border-color: rgba(167,139,250,0.18);
}
.rrv-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.rrv-legend-chip--d1 .rrv-legend-dot {
  background: #C4B5FD;
  box-shadow: 0 0 8px rgba(196,181,253,0.7);
}
.rrv-legend-chip--d7 .rrv-legend-dot {
  background: rgba(167,139,250,0.75);
  box-shadow: 0 0 6px rgba(167,139,250,0.5);
}
.rrv-legend-name {
  color: var(--fg);
  font-weight: 500;
}
.rrv-legend-delta {

  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  color: #DDD0FF;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(167,139,250,0.22);
}

/* Reviews panel */
.rrv-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 0;
}
.rrv-review {
  position: relative;
  padding: 22px 20px;
  border-radius: 14px;
  background: rgba(18,18,26,0.5);
  border: 1px solid var(--fg-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.rrv-review--hero {
  grid-column: 1 / 3;
  background: linear-gradient(180deg, rgba(167,139,250,0.1) 0%, rgba(139,92,246,0.04) 100%), rgba(18,18,26,0.55);
  border-color: rgba(167,139,250,0.45);
  box-shadow: 0 0 60px rgba(139,92,246,0.18);
}
.rrv-review__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rrv-review__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rrv-review__rating {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rrv-review--hero .rrv-review__rating {
  font-size: 82px;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rrv-review__label {
  font-size: 11px; font-weight: 400;

  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-60);
  margin-top: 4px;
}
.rrv-review__stars {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #E6C75A;
  margin-top: 4px;
  text-shadow: 0 0 10px rgba(230,199,90,0.4);
}
.rrv-review--hero .rrv-review__stars {
  font-size: 26px;
}
.rrv-review__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.rrv-review__when {

  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg);
  text-transform: uppercase;
}
.rrv-review--hero .rrv-review__when {
  font-size: 28px;
  color: #DDD0FF;
}
.rrv-review__vol {

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-60);
  text-transform: uppercase;
}
.rrv-review--hero .rrv-review__vol {
  font-size: 18px;
  color: rgba(196,181,253,0.85);
}
.rrv-review__sep { display: none; }
.rrv-review__nowchip {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #A78BFA;
  color: #0b0b12;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  box-shadow: 0 0 20px rgba(167,139,250,0.6);
}


/* ============================================================
   SLIDE 13 — UNLOCK · What the AI infrastructure enables
   ============================================================ */
.unlock {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 var(--pad-x);
  gap: 16px;
}
.unlock__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-top: 66px;
}
.unlock__eyebrow {
  font-size: 16px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--violet-bright); line-height: 1;
}
.unlock__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.04; margin: 10px 0 0; text-wrap: balance;
}
.unlock__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.unlock__legend {
  font-size: 18px; color: var(--violet-bright);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 6px; white-space: nowrap;
  text-align: right; line-height: 1.35; font-weight: 600;
}
.unlock__legend-sub {
  display: inline-block; margin-top: 8px;
  color: var(--fg-60); font-weight: 400; font-size: 12px;
  letter-spacing: 0.2em;
}

.unlock__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  align-self: center;
}
.unlock__col {
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
  padding: 40px 32px 36px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.12) 0%, rgba(139,92,246,0.04) 60%, rgba(139,92,246,0) 100%),
    rgba(242,241,247,0.02);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.unlock__col::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.3), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.unlock__col:hover {
  border-color: rgba(167,139,250,0.4);
}
.unlock__col-icon {
  width: 44px; height: 44px;
  color: var(--violet-bright);
  opacity: 0.8;
}
.unlock__col-icon svg {
  width: 100%; height: 100%;
}
.unlock__col-num {
  font-family: var(--sans);
  font-size: 12px; color: var(--fg-40);
  letter-spacing: 0.15em;
}
.unlock__col-title {
  font-size: 26px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.15; margin: 0;
}
.unlock__col-desc {
  font-size: 15px; color: var(--fg-60);
  line-height: 1.5; margin: 0;
}
.unlock__col-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.unlock__col-tags span {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--violet-bright);
  padding: 5px 10px;
  background: rgba(139,92,246,0.12);
  border-radius: 6px;
  white-space: nowrap;
}

/* ============================================================
   SLIDE — INDONESIA · Market deep-dive
   ============================================================ */
.indo {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: var(--title-y) var(--title-x) 56px;
  gap: 28px;
}
.indo__head {
  display: flex; flex-direction: column; gap: 12px;
}
.indo__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.indo__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.indo__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.indo__legend {
  font-size: 18px; color: var(--violet-bright);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 6px; white-space: nowrap;
  text-align: right; line-height: 1.35; font-weight: 600;
}
.indo__legend-sub {
  display: inline-block; margin-top: 8px;
  color: var(--fg-60); font-weight: 400; font-size: 12px;
  letter-spacing: 0.2em;
}

.indo__body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 0;
  padding-top: 32px;
  padding-bottom: 0;
}

/* Top Education Apps ranking image (replaces phone mockup) */
.indo__rank-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.indo__rank-img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

/* Chart */
.indo__chart-wrap {
  display: flex; flex-direction: column; gap: 14px; min-height: 0;
  max-height: 580px;
  height: 580px;
}
.indo__chart-label {
  font-size: 16px; font-weight: 500; color: var(--fg-80);
  letter-spacing: -0.01em;
}
.indo__chart {
  display: flex; flex-direction: column; gap: 8px; min-height: 0; flex: 1;
}
.indo__chart-plot {
  position: relative; width: 100%; height: 100%; min-height: 0;
  padding: 0 60px 0 0;
  flex: 1;
}
.indo__grid {
  position: absolute; inset: 0; right: 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  pointer-events: none;
}
.indo__grid > div {
  border-top: 1px dashed var(--fg-12);
}
.indo__yaxis {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55px;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--sans); font-size: 11px; color: var(--fg-40);
  text-align: right;
}
.indo__svg {
  position: absolute; inset: 0; right: 60px;
  width: calc(100% - 60px); height: 100%;
}
.indo__line {
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(139,92,246,0.5));
}
.indo__endmarker {
  position: absolute;
  right: 60px;
  top: var(--y);
  width: 16px; height: 16px;
  margin: -8px -8px 0 0;
  border-radius: 50%;
  background: #DDD0FF;
  box-shadow: 0 0 20px rgba(196,181,253,0.9);
}
.indo__endmarker::after {
  content: '';
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(196,181,253,0.7);
  animation: matsPulse 1.8s ease-out infinite;
}
.indo__xaxis {
  position: relative; height: 24px;
  padding-right: 60px;
}
.indo__xaxis span {
  position: absolute;
  left: var(--x);
  transform: translateX(-50%);
  font-family: var(--sans); font-size: 11px; color: var(--fg-40);
  white-space: nowrap;
}

/* Floating ~$1.4M callout, offset from endpoint so it sits above graph curve */
.indo__callout {
  position: absolute;
  top: -26px;
  right: calc(60px + 80px);
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 26px;
  background: rgba(18,14,32,0.85);
  border: 1px solid rgba(167,139,250,0.4);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  z-index: 3;
}
.indo__callout-val {
  font-size: 42px; font-weight: 600; letter-spacing: -0.02em;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.indo__callout-lab {
  font-size: 13px; color: var(--fg-70);
  font-family: var(--sans); letter-spacing: 0.14em;
  text-transform: uppercase;
}
/* L-shape connector: horizontal from card's right edge, then short drop to endpoint */
.indo__callout-line {
  position: absolute;
  top: 16px;
  right: 60px;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196,181,253,0.5) 0%, rgba(196,181,253,0.95) 100%);
  z-index: 2;
}
.indo__callout-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px; height: 14px;
  background: rgba(196,181,253,0.85);
}

/* ~270× text label (no card), lifted above bottom so it doesn't overlap the line */
.indo__270 {
  position: absolute;
  left: 4px;
  bottom: 60px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
  pointer-events: none;
}
.indo__270-val {
  font-size: 44px; font-weight: 600; letter-spacing: -0.02em;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.indo__270-lab {
  font-size: 12px; color: var(--fg-70);
  font-family: var(--sans); letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Right column: mockup image + arrow + #1 card */
.indo__phone-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
  height: 100%;
}
.indo__phone-stack {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

/* Mockup image (image already has its own phone frame; no iphone wrapper) */
.indo__mockup-wrap {
  position: relative;
  display: flex; justify-content: center;
  width: 100%;
}
.indo__mockup-img {
  display: block;
  width: auto;
  height: 640px;
  min-height: 640px;
  max-width: 100%;
  object-fit: contain;
}

/* #1 Education App rank card below mockup */
.indo__rank-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(139,92,246,0.22) 0%, rgba(139,92,246,0.08) 100%);
  border: 1px solid rgba(167,139,250,0.55);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(139,92,246,0.18);
  min-width: 300px;
  max-width: 100%;
}
.indo__rank-val {
  font-size: 46px; font-weight: 600; letter-spacing: -0.02em;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.indo__rank-lab {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.92);
  font-family: var(--sans); letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   SLIDE 18 — INVESTORS · Backed by $3.75M
   ============================================================ */
.inv {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 32px;
  color: var(--fg);
}
.inv__head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 48px;
  row-gap: 6px;
  align-items: start;
}
.inv__eyebrow {
  grid-column: 1;
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.inv__title {
  grid-column: 1;
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 10px 0 0; text-wrap: balance;
  max-width: 1700px;
}
.inv__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.inv__totals {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  padding-left: 40px;
  border-left: 1px solid var(--fg-12);
  padding-right: 0;
}
.inv__totals-num {
  font-size: 52px; font-weight: 600; letter-spacing: -0.03em;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.inv__totals-div { display: none; }
.inv__totals-lab {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-60);
}

/* Grid 4×2 */
.inv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 22px;
  min-height: 0;
}
.inv-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.inv-card__frame {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(167,139,250,0.15);
  padding: 24px;
  overflow: hidden;
  min-height: 0;
}
.inv-card__frame--dark {
  background: #0D2A35;
}
.inv-card__frame--accent {
  background: linear-gradient(180deg, rgba(139,92,246,0.16) 0%, rgba(139,92,246,0.04) 100%);
  border: 1.5px dashed rgba(167,139,250,0.45);
}
.inv-card__logo {
  display: none;
  max-width: 85%;
  max-height: 75%;
  object-fit: contain;
}
.inv-card__logo[src]:not([src=""]) { display: block; }
.inv-card__logo[src]:not([src=""]) + .inv-card__fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #1a1a1a;
  text-align: center;
  width: 100%;
}
.inv-card__fallback--dark { color: #FFFFFF; }
.inv-card__fallback-mark {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-family: 'Inter', system-ui, sans-serif;
}
.inv-card__fallback-mark[data-accent="coral"] { color: #E86B5C; }
.inv-card__fallback-mark[data-accent="gold"] { color: #B8904E; font-family: 'Times New Roman', serif; letter-spacing: 0.05em; font-weight: 400; font-size: 46px; }
.inv-card__fallback-mark[data-accent="cyan"] {
  color: #FFFFFF;
  background: #4DC3E5;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 40px;
}
.inv-card__fallback-mark[data-accent="maroon"] { color: #7A2424; font-family: 'Times New Roman', serif; letter-spacing: 0.05em; font-weight: 400; }
.inv-card__fallback-mark[data-accent="maroon"] span { color: #C4A28C; margin-left: 4px; }
.inv-card__fallback-mark[data-accent="teal"] {
  background: #FFFFFF;
  color: #0F3A3D;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.inv-card__fallback-mark[data-accent="teal"] span { color: #0F3A3D; opacity: 0.85; }
.inv-card__fallback-mark[data-accent="graphite"] {
  color: #2b2b2b;
  font-weight: 500;
  font-size: 30px;
}
.inv-card__fallback-mark--box {
  border: 1.5px solid #2b2b2b;
  padding: 14px 22px;
  font-size: 22px !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  line-height: 1.2;
  text-align: center;
}
.inv-card__fallback-sub {
  font-size: 11px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}
.inv-card__fallback--dark .inv-card__fallback-sub { color: rgba(255,255,255,0.7); }

.inv-card__caption {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-60);
  letter-spacing: -0.005em;
  padding-left: 2px;
}
.inv-card__caption--accent {
  color: var(--violet-bright);
  font-weight: 600;
}

/* Angels card */
.inv-angels {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: var(--fg);
}
.inv-angels__plus {
  font-size: 60px;
  font-weight: 300;
  line-height: 0.8;
  color: rgba(196,181,253,0.9);
  margin-bottom: 4px;
}
.inv-angels__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.inv-angels__sub {
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-60);
  line-height: 1.5;
}

/* Tweak panel */
.tw-panel {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 340px;
  max-height: 70vh;
  overflow-y: auto;
  background: rgba(18,18,26,0.96);
  border: 1px solid rgba(167,139,250,0.35);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  padding: 18px;
  z-index: 10000;
  font-family: 'Inter', system-ui, sans-serif;
  color: #FFFFFF;
  display: none;
}
.tw-panel.open { display: block; }
.tw-panel__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(167,139,250,0.2);
}
.tw-panel__title {
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: #C4B5FD;
}
.tw-panel__hint {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}
.tw-panel__row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tw-panel__row-label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.tw-panel__row-thumb {
  width: 44px; height: 32px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.tw-panel__row-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tw-panel__row-thumb-empty { font-size: 10px; color: rgba(255,255,255,0.3); }
.tw-panel__upload {
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(167,139,250,0.15);
  border: 1px solid rgba(167,139,250,0.35);
  font-size: 11px; font-weight: 500;
  color: #C4B5FD;
  cursor: pointer;
}
.tw-panel__upload:hover { background: rgba(167,139,250,0.25); }
.tw-panel__upload input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
}
.tw-panel__clear {
  padding: 4px 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  border-radius: 4px;
  font-size: 10px;
  cursor: pointer;
}
.tw-panel__clear:hover { color: #FFFFFF; border-color: rgba(255,255,255,0.3); }

/* Partial star fill for Learner's rating (4.69 / 4.80 / 4.88) */
.rrv-review__star-partial {
  position: relative;
  display: inline-block;
  color: rgba(230,199,90,0.22);
  text-shadow: none;
}
.rrv-review__star-partial::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: var(--fill, 100%);
  overflow: hidden;
  color: #E6C75A;
  text-shadow: 0 0 10px rgba(230,199,90,0.4);
  white-space: nowrap;
}

/* Labels inside chart (left of endpoint dots) instead of overflowing right */
.rrv-chart__dot-label--left {
  left: auto !important;
  right: calc(100% + 10px) !important;
  margin-left: 0 !important;
}

/* Investor logo tweaks grid — 7 compact slots */
.tweaks--logos {
  max-width: 1100px;
}
.tweaks__grid--logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.tweaks__grid--logos .tweaks__slot {
  padding: 10px;
  font-size: 12px;
}
.tweaks__grid--logos .tweaks__slot-label {
  font-size: 11px;
  letter-spacing: 0.05em;
}
.tweaks__grid--logos .tweaks__slot-state {
  font-size: 10px;
  opacity: 0.65;
}

/* ============================================================
   SLIDE 20 — CLOSE · Contact & tagline
   ============================================================ */
.close {
  position: absolute; inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 var(--pad-x);
}
.close__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52px;
  padding: 80px 0 40px;
}
.close__hero {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.close__title {
  font-family: var(--sans);
  font-size: 220px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 20px;
}
.close__title .accent {
  background: #FFFFFF;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.close__wordmark {
  display: inline-block;
}
.close__logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  flex-shrink: 0;
  filter: invert(1);
}
.close__tagline {
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--fg-80);
  max-width: 1500px;
  margin: 0;
  text-wrap: balance;
}
.close__tagline em {
  font-style: normal;
  font-weight: 600;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.close__divider {
  height: 1px;
  background: var(--fg-12);
  width: 100%;
}
.close__contact {
  display: flex; flex-direction: column; gap: 14px;
}
.close__name {
  font-family: var(--sans);
  font-size: 24px;
  color: var(--fg-90);
  display: flex; align-items: center; gap: 14px;
  line-height: 1.2;
}
.close__name strong { font-weight: 600; color: #FFFFFF; }
.close__dash { color: var(--fg-40); }
.close__role { color: var(--fg-70); font-weight: 400; margin-left: 14px; }
.close__email {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 500;
  color: #C4B5FD;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(196,181,253,0.55);
  width: fit-content;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.close__email:hover {
  color: #DDD0FF;
  text-decoration-color: rgba(196,181,253,0.95);
}
.close__date {
  margin-top: 10px;
  font-family: var(--sans);
  font-style: italic;
  font-size: 16px;
  color: var(--fg-50);
}



/* ============================================================
   SLIDE 19 — TARGET · Three bets / next 12 months
   Each column gets its own illustration that micro-animates
   ONCE when the slide becomes active, then stays static.
   ============================================================ */

.target {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: var(--title-y) var(--title-x) 56px;
  gap: 48px;
}
.target__head {
  display: flex; flex-direction: column; gap: 12px;
}
.target__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.target__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.target__title em {
  font-style: normal;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.target__legend {
  font-size: 18px; color: var(--violet-bright);
  font-family: var(--sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  padding-top: 6px; white-space: nowrap;
  text-align: right; line-height: 1.35; font-weight: 600;
}
.target__legend-sub {
  display: inline-block; margin-top: 8px;
  color: var(--fg-60); font-weight: 400; font-size: 12px;
  letter-spacing: 0.2em;
}

.target__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  align-self: center;
  /* Centre the card row vertically in the remaining space below the title */
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}
/* Aligned with slide 3's .stat-card visual vocabulary */
.target__col {
  position: relative;
  display: flex; flex-direction: column; gap: 24px;
  padding: 52px 40px 48px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.09) 0%, rgba(139,92,246,0.03) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.16);
  border-radius: 24px;
  overflow: hidden;
}
.target__col::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.20), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.65;
}
.target__col-icon {
  width: 64px; height: 64px;
  color: var(--violet-bright);
  opacity: 0.9;
}
.target__col-icon svg {
  width: 100%; height: 100%;
}
.target__col-num {
  font-family: var(--sans);
  font-size: 12px; color: var(--fg-40);
  letter-spacing: 0.15em;
}
.target__col-title {
  font-size: 38px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.15; margin: 0;
}
.target__col-desc {
  font-size: 20px; color: var(--fg-60);
  line-height: 1.5; margin: 0;
}
.target__col-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.target__col-tags span {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--violet-bright);
  padding: 5px 10px;
  background: rgba(139,92,246,0.12);
  border-radius: 6px;
  white-space: nowrap;
}


/* ============================================================
   SLIDE 9 & 10 — RETENTION HERO CARDS
   Each metric = a hero card with truncated Y-axis chart to
   make modest absolute moves feel dramatic.
   ============================================================ */

.retn {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: var(--title-y) var(--title-x) 56px;
  gap: 36px;
}
.retn__head {
  display: flex; flex-direction: column; gap: 12px;
}
.retn__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.retn__title {
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h); margin: 0; text-wrap: balance;
  max-width: 1700px;
}
.retn__title em {
  font-style: normal;
  color: var(--fg);
}

/* Body grid: 2×2 chart grid on the left, slimmer reviews column on the right */
.retn__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  min-height: 0;
}
.retn__charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 32px;
  min-height: 0;
}

/* ===== Hero retention card ===== */
.retn-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 30px 24px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.06) 0%, rgba(139,92,246,0.02) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.015);
  border: 1px solid rgba(167,139,250,0.14);
  border-radius: 20px;
  overflow: hidden;
  min-height: 0;
  gap: 14px;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.retn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,0.42);
  box-shadow:
    0 24px 70px rgba(139,92,246,0.22),
    0 0 0 1px rgba(167,139,250,0.12);
}
.retn-card:hover::before {
  background: radial-gradient(closest-side, rgba(167,139,250,0.26), transparent 70%);
}
.retn-card::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 120%; height: 110%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.10), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.retn-card__eyebrow {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-60);
  position: relative;
}

/* Hero block — growth delta is dominant, current range is secondary */
.retn-card__hero {
  display: flex; align-items: baseline; gap: 18px;
  position: relative;
  flex-wrap: wrap;
}
.retn-card__delta {
  font-family: var(--sans);
  font-size: 80px; font-weight: 600; letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.retn-card__arrow {
  display: inline-block;
  color: var(--fg-60);
  font-size: 0.65em;
  font-weight: 500;
  transform: translateY(-0.05em);
}
.retn-card__range {
  font-family: var(--sans);
  font-size: 22px; font-weight: 500;
  color: var(--fg-60);
  letter-spacing: 0;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.retn-card__range i {
  font-style: normal;
  color: var(--fg-40);
  font-weight: 400;
}

/* Growth pill — small badge with NE arrow next to the hero % */
.retn-card__growth {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  color: #C1B0FF;
  background: rgba(167,139,250,0.10);
  border: 1px solid rgba(167,139,250,0.22);
  padding: 5px 13px 5px 11px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.retn-card__growth-arrow {
  font-size: 0.85em;
  color: #C1B0FF;
  display: inline-block;
  line-height: 1;
}

/* Chart value labels — start at left, end above the endpoint dot */
.retn-card__chart-start {
  position: absolute;
  left: 0;
  top: var(--y-start, 90%);
  /* Lift fully above the chart line (label height + 14px gap) */
  transform: translate(0, calc(-100% - 24px));
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-80);
  letter-spacing: 0;
  pointer-events: none;
  /* Opaque pill so the line behind never bleeds through */
  background: rgba(14, 11, 22, 0.75);
  padding: 2px 7px;
  border-radius: 4px;
}
.retn-card__chart-end {
  position: absolute;
  right: 0;
  top: var(--y, 50%);
  transform: translate(50%, -130%);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0;
  pointer-events: none;
}

.retn-card__chart {
  position: relative;
  flex: 1;
  min-height: 110px;
  margin: 4px 0 0;
}
.retn-card__chart svg {
  width: 100%; height: 100%;
  display: block;
}
.retn-card__line {
  stroke: rgb(196,181,253);
  stroke-width: 2.5;
  fill: none;
  filter: drop-shadow(0 0 6px rgba(167,139,250,0.5));
}
/* HTML endpoint dot — keeps a perfect circle regardless of the SVG's
   non-uniform stretching. Centred horizontally on the line endpoint
   (right edge of the chart) and vertically via --y (% of chart height). */
.retn-card__endpoint {
  position: absolute;
  left: 100%;
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgb(196,181,253);
  box-shadow: 0 0 10px rgba(167,139,250,0.7), 0 0 3px rgba(167,139,250,1);
  pointer-events: none;
}

.retn-card__caption {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: 13px; color: var(--fg-60);
  letter-spacing: 0.04em;
  position: relative;
  padding-top: 4px;
}
.retn-card__caption-end {
  color: var(--fg);
  font-weight: 600;
}

/* ===== Vertical reviews column (slim, on slide 10 only) ===== */
.retn-reviews {
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
  height: 100%;
}
.retn-review {
  position: relative;
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.05) 0%, rgba(139,92,246,0.01) 100%),
    rgba(242,241,247,0.012);
  border: 1px solid rgba(167,139,250,0.10);
  border-radius: 18px;
  overflow: hidden;
}
.retn-review--hero {
  border-color: rgba(167,139,250,0.42);
  padding: 36px 28px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.18) 0%, rgba(139,92,246,0.06) 100%),
    rgba(242,241,247,0.02);
}
.retn-review::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.06), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.retn-review--hero::before {
  background: radial-gradient(closest-side, rgba(167,139,250,0.30), transparent 70%);
}
.retn-review__rating {
  font-size: 44px; font-weight: 500; letter-spacing: -0.03em;
  line-height: 1;
  background: #FFFFFF;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  position: relative;
}
.retn-review__stars {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 0.05em;
  position: relative;
}
.retn-review__meta {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-60);
  position: relative;
  margin-top: 2px;
}
.retn-review__now {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-bright);
  padding: 4px 8px;
  background: rgba(167,139,250,0.15);
  border: 1px solid rgba(167,139,250,0.45);
  border-radius: 999px;
}

/* ============================================================
   MATTE OVERRIDE — 2026-05-18
   Reduces decorative gradients globally to match the matte-black
   brief. To restore drama on a specific slide, add an override
   *below* this block — order wins.
   ============================================================ */

/* ---- Global glow blooms (was rgba 0.40–0.55) ---- */
.glow                  { opacity: 0.35; }
.glow--primary         { background: radial-gradient(closest-side, rgba(139,92,246,0.22), rgba(139,92,246,0.06) 45%, transparent 75%); }
.glow--bottom-center,
.glow--left,
.glow--right,
.glow--top,
.glow--corner-tl       { background: radial-gradient(closest-side, rgba(139,92,246,0.18), transparent 70%); }

/* ---- Cover B — the violet cloud + starfield ---- */
.coverB__right {
  background:
    radial-gradient(70% 50% at 35% 45%,
      rgba(139,92,246,0.55) 0%,
      rgba(76,29,149,0.35) 50%,
      #0A0510 100%) !important;
}
.coverB__right::before {
  background:
    radial-gradient(50% 60% at 75% 85%, rgba(0,0,0,0.55), transparent 60%) !important;
}
.coverB__right::after { display: none !important; }      /* hide starfield */

/* ---- Cover B glow halos ---- */
.coverB__left::after {
  background: radial-gradient(closest-side, rgba(167,139,250,0.18), transparent 70%) !important;
}

/* ---- Variant alt-theme atmosphere (light slides) ---- */
.variant.slide--light::before {
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(139,92,246,0.04) 0%, transparent 55%) !important;
}

/* ============================================================
   SLIDE 4 — MARKET + PROBLEM (combined)
   Layout per Figma reference, theme aligned with slides 02/03.
   ============================================================ */
.mp {
  position: absolute;
  inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mp__header { display: flex; flex-direction: column; gap: 12px; }

.mp__eyebrow {
  font-size: var(--ts-caption);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-bright);
}
.mp__title {
  margin: 0;
  font-family: var(--sans);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: var(--title-line-h);
  color: var(--fg);
  max-width: 1700px;
  text-wrap: balance;
}
.mp__title em {
  font-style: normal;
  color: var(--fg);
}

.mp__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  min-height: 0;
}

/* ---- LEFT column ---- */
.mp__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.mp__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mp__stat-card {
  position: relative;
  padding: 40px 36px 36px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.09) 0%, rgba(139,92,246,0.03) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.16);
  overflow: hidden;
}
.mp__stat-card__glow {
  position: absolute;
  top: -40%; left: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.20), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.65;
  z-index: 0;
}
.mp__stat-card > *:not(.mp__stat-card__glow) { position: relative; z-index: 1; }
.mp__stat-card__index {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--violet-bright);
  opacity: 0.8;
  margin-bottom: 18px;
}
.mp__stat-val {
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  color: #C1B0FF;
  letter-spacing: -0.035em;
}
.mp__stat-sub {
  font-size: 18px;
  color: var(--fg-60);
  margin-top: 16px;
  font-weight: 400;
}

.mp__bars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mp__bar-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
}
.mp__bar-lab {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-80);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mp__bar {
  height: 40px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  width: var(--w);
  min-width: 80px;
}
.mp__bar span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}
/* Matched to slide 10's WER chart palette (lavender mid-tone, dimmer
   variant for smaller competitors) */
.mp__bar--strong { background: #A78BFA; }
.mp__bar--weak   { background: rgba(167,139,250,0.40); }
.mp__bar--weak span { color: rgba(255,255,255,0.85); }

.mp__foot {
  margin-top: 22px;
  font-size: 15px;
  color: var(--fg-60);
}

/* ---- RIGHT column ---- */
.mp__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  min-height: 0;
}

.mp__quote {
  border-left: 3px solid var(--violet-bright);
  padding: 8px 0 8px 28px;
  font-size: 24px;
  line-height: 1.55;
  color: var(--fg-80);
  font-weight: 400;
}

/* Pearson card — uses deck's glow+gradient card pattern */
.mp__card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.09) 0%, rgba(139,92,246,0.03) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.16);
  border-radius: 20px;
  padding: 34px 36px 34px;
  overflow: hidden;
}
.mp__card::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.mp__card > * { position: relative; z-index: 1; }
.mp__card-head {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.015em;
}
.mp__card-cite {
  margin-top: 16px;
  font-size: 17px;
  color: var(--violet-bright);
  font-style: italic;
}

/* Tweet card — kept visually distinct (looks like a real tweet),
   but border + radius pulled toward the deck system */
.mp__tweet {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px 34px 24px;
}
.mp__tweet-body {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg);
}
.mp__tweet-meta {
  margin-top: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: var(--fg-60);
}
.mp__tweet-meta b { color: var(--fg); font-weight: 700; }

.mp__tweet-actions {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}
.mp__tweet-act {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-60);
  font-size: 14px;
  font-weight: 500;
}
.mp__tweet-act svg { width: 18px; height: 18px; flex-shrink: 0; }
.mp__tweet-act--rt   { color: #2ECC71; }
.mp__tweet-act--like { color: #F91880; }
.mp__tweet-act--share svg { color: var(--fg-60); }

/* ============================================================
   APPENDIX SLIDES (A: internal research, B: academic validation)
   ============================================================ */
.appx {
  position: absolute; inset: 0;
  padding: var(--title-y) var(--title-x) 56px;
  display: flex; flex-direction: column;
  gap: 48px;
}
.appx__head {
  display: flex; flex-direction: column; gap: 12px;
}
.appx__eyebrow {
  font-size: var(--ts-caption); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--violet-bright);
}
.appx__title {
  margin: 0;
  font-size: 60px; font-weight: 500; letter-spacing: -0.03em;
  line-height: var(--title-line-h);
  color: var(--fg);
  max-width: 1700px;
  text-wrap: balance;
}
.appx__title em {
  font-style: normal;
  color: var(--fg);
}

.appx__grid {
  flex: 1;
  display: grid;
  gap: 24px;
  min-height: 0;
}
.appx__grid--4 { grid-template-columns: repeat(4, 1fr); }
.appx__grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
/* Slide 19: 3 wide horizontal cards stacked vertically, filling height */
.appx__grid--3 {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
  /* inherits flex: 1 from .appx__grid — fills the available vertical space */
}

.appx__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-size: 18px; color: var(--fg-60);
}
.appx__foot-dot { color: var(--fg-40); }

/* ----- Appendix A: stat cards (slide-3 style) ----- */
.appx-stat {
  position: relative;
  padding: 32px 28px 30px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.09) 0%, rgba(139,92,246,0.03) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.16);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.appx-stat__glow {
  position: absolute;
  top: -40%; left: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.18), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.appx-stat > *:not(.appx-stat__glow) { position: relative; z-index: 1; }
.appx-stat__index {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--violet-bright);
  opacity: 0.85;
  margin-bottom: 16px;
}
.appx-stat__hero { margin-bottom: 14px; }
.appx-stat__delta {
  font-size: 88px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 1;
  color: #C1B0FF;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.appx-stat__arrow {
  display: inline-block;
  color: var(--fg-60);
  font-size: 0.5em;
  font-weight: 500;
  transform: translateY(-0.05em);
}
.appx-stat__label {
  font-size: 32px; font-weight: 500; color: var(--fg);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.appx-stat__range {
  margin-top: auto;
  font-size: 17px; color: var(--fg-60);
  display: flex; flex-direction: column; gap: 6px;
}
.appx-stat__range i { font-style: normal; color: var(--fg-40); }
.appx-stat__d {
  font-size: 15px; color: var(--violet-bright);
  letter-spacing: 0.04em;
}

.appx-stat--hero {
  border-color: rgba(167,139,250,0.32);
  background:
    linear-gradient(180deg, rgba(139,92,246,0.16) 0%, rgba(139,92,246,0.05) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.025);
}
.appx-stat--hero .appx-stat__glow {
  background: radial-gradient(closest-side, rgba(167,139,250,0.30), transparent 70%);
  opacity: 0.7;
}
.appx-stat--hero .appx-stat__delta { color: #FFFFFF; }

/* Wide / rectangular variant for the 2×2 grid */
.appx-stat--wide {
  padding: 28px 36px 24px;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1),
              border-color 0.25s ease,
              box-shadow 0.25s ease,
              background 0.25s ease;
}
.appx-stat--wide:hover {
  border-color: rgba(167,139,250,0.45);
}
.appx-stat--wide:hover .appx-stat__glow {
  opacity: 1;
  background: radial-gradient(closest-side, rgba(167,139,250,0.40), transparent 70%);
}
.appx-stat--wide .appx-stat__body {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 1.4fr;
  gap: 32px;
  align-items: center;
  flex: 1;
  min-height: 0;
}
.appx-stat--wide .appx-stat__hero { margin: 0; }
.appx-stat--wide .appx-stat__txt {
  display: flex; flex-direction: column; gap: 10px;
}
.appx-stat--wide .appx-stat__label { margin: 0; }
.appx-stat--wide .appx-stat__range {
  margin: 0;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

/* ----- Appendix B: academic paper cards (horizontal, anchor → PDF) ----- */
.appx-paper {
  position: relative;
  padding: 24px 32px 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.07) 0%, rgba(139,92,246,0.02) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.16);
  overflow: hidden;
  /* Horizontal grid: journal eyebrow on top full-width, then title+hero row, then meta row */
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "journal hero"
    "title   hero"
    "meta    meta";
  column-gap: 40px;
  row-gap: 10px;
  align-items: center;
  /* Anchor styling */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1),
              border-color 0.25s ease,
              box-shadow 0.25s ease,
              background 0.25s ease;
}
.appx-paper:hover {
  border-color: rgba(167,139,250,0.45);
}
.appx-paper:hover .appx-paper__glow {
  opacity: 1;
  background: radial-gradient(closest-side, rgba(167,139,250,0.35), transparent 70%);
}
.appx-paper__glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.14), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.appx-paper > *:not(.appx-paper__glow) { position: relative; z-index: 1; }
.appx-paper__journal {
  grid-area: journal;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-bright);
}
.appx-paper__title {
  grid-area: title;
  font-size: 22px; font-weight: 500;
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.01em;
  align-self: start;
}
.appx-paper__hero {
  grid-area: hero;
  align-self: center;
  text-align: right;
  display: flex; flex-direction: column; gap: 4px;
  padding: 0;
  border: none;
}
.appx-paper__num {
  font-size: 52px; font-weight: 500; letter-spacing: -0.035em;
  line-height: 1;
  color: #C1B0FF;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.appx-paper__vs {
  font-size: 14px; color: var(--fg-60);
}
.appx-paper__bars {
  display: flex; flex-direction: column; gap: 10px;
}
.appx-paper__bar {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 10px;
}
.appx-paper__bar-lab {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-60);
}
.appx-paper__bar-fill {
  height: 22px;
  border-radius: 4px;
  background: #A78BFA;
  width: var(--w);
  min-width: 44px;
  display: flex; align-items: center;
  padding: 0 10px;
}
.appx-paper__bar-fill b {
  font-size: 12px; font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0;
}
.appx-paper__bar-fill--dim {
  background: rgba(167,139,250,0.35);
}
.appx-paper__pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.appx-paper__pills span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.28);
  color: var(--violet-bright);
}
.appx-paper__meta {
  grid-area: meta;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  font-size: 14px; color: var(--fg-60);
}
.appx-paper__flag {
  color: var(--fg);
  font-weight: 500;
}
.appx-paper__open {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--violet-bright);
  white-space: nowrap;
}

/* ----- Appendix B (v2): detailed study cards stacked vertically ----- */
.appx--b {
  gap: 32px;                /* tighter than default appx 48px */
}
.appx--b .appx__head { gap: 8px; }
.appx__subhead {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-60);
  letter-spacing: -0.005em;
}

.appx__grid--stack {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
  flex: 1;
  min-height: 0;
}

.appx-study {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 10px;
  padding: 22px 28px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.06) 0%, rgba(139,92,246,0.02) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(167,139,250,0.14);
  overflow: hidden;
  /* Anchor */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.appx-study:hover { border-color: rgba(167,139,250,0.4); }
.appx-study:hover .appx-study__glow {
  opacity: 1;
  background: radial-gradient(closest-side, rgba(167,139,250,0.30), transparent 70%);
}
.appx-study__glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 120%; height: 140%;
  background: radial-gradient(closest-side, rgba(167,139,250,0.12), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.appx-study > *:not(.appx-study__glow) { position: relative; z-index: 1; }

.appx-study__head {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.appx-study__pin {
  font-size: 14px; font-weight: 600;
  color: var(--violet-bright);
  letter-spacing: 0.02em;
}
.appx-study__pin--gov {
  color: var(--violet-bright);
  font-weight: 700;
}
.appx-study__count {
  font-size: 12px; font-weight: 500;
  color: var(--fg-40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.appx-study__num {
  margin: 0;
  font-size: 30px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.1;
}
.appx-study__desc {
  margin: 0;
  font-size: 15px; font-weight: 400;
  line-height: 1.5;
  color: var(--fg-60);
}
.appx-study__desc b {
  color: var(--fg);
  font-weight: 600;
}
.appx-study__pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 2px;
}
.appx-study__pill {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(167,139,250,0.10);
  border: 1px solid rgba(167,139,250,0.22);
  color: var(--violet-bright);
}
.appx-study__pill--method {
  /* All chips share the same violet palette as the default pill */
  background: rgba(167,139,250,0.10);
  border-color: rgba(167,139,250,0.22);
  color: var(--violet-bright);
}
.appx-study__cite {
  margin-top: 4px;
  font-size: 12px;
  color: var(--fg-40);
  font-style: italic;
  line-height: 1.5;
}
.appx-study__cite b { color: var(--violet-bright); font-style: normal; font-weight: 700; }
.appx-study__cite i { font-style: italic; }
.appx-study__open {
  font-style: normal;
  font-weight: 600;
  color: var(--violet-bright);
  letter-spacing: 0.04em;
  margin-left: 8px;
}

/* Hero variant (first card — Ecuador): subtle violet glow, brighter border */
.appx-study--hero {
  border-color: rgba(167,139,250,0.36);
  background:
    linear-gradient(180deg, rgba(139,92,246,0.12) 0%, rgba(139,92,246,0.04) 60%, rgba(139,92,246,0) 100%),
    rgba(255,255,255,0.025);
}
.appx-study--hero .appx-study__glow {
  background: radial-gradient(closest-side, rgba(167,139,250,0.28), transparent 70%);
  opacity: 0.75;
}
.appx-study--hero:hover {
  border-color: rgba(167,139,250,0.55);
}

/* ============================================================
   PRINT-MODE OVERRIDES — fixes for Chrome's print-to-PDF rendering
   - box-shadow circles → simple borders/fills (PDF clips wrong)
   - radial-gradients on round shapes → solid fills (PDF squares them)
   - transform animations → final state
   - live iframes → show static placeholder (iframes don't print)
   ============================================================ */
@media print {

  /* Force final state on all animated bars/elements that start hidden */
  .stat-card, .stat-num, .market__bar, .chart__row,
  .chart__fill, .econ-bar, .mats-chart__line, .mats-chart__area,
  .retn-card__line, .speech-bars__bar, .wn-row,
  .target__col, .mats-metric, .econ-stat,
  .iphone, .iphone__frame, .iphone__screen,
  .indo-chart__line, .indo-chart__area, .indo-chart__endpoint,
  .indo-chart__endbadge {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* Bar charts: ensure scaleY/scaleX animations land at 100% */
  .econ-bar, .chart__fill, .stat-card__bar i {
    transform: scaleY(1) !important;
  }
  .econ-bar { --h-rendered: var(--h); height: var(--h, 0%) !important; }

  /* === Slide 8 (Retention) — endpoint dots: replace glowing box-shadow
        circles with simple solid-fill dots so Chrome print doesn't square them === */
  .retn-card__endpoint {
    box-shadow: none !important;
    background: #C4B5FD !important;
    border: 2px solid rgba(196,181,253,0.4);
  }

  /* === Slide 13 (MATS) and Slide 15 (Indonesia) — chart endpoint dots === */
  .mats-chart__marker,
  .mats-chart__marker--end,
  .indo-chart__endpoint {
    box-shadow: none !important;
    background: #C4B5FD !important;
  }
  .mats-chart__dot--pulse { display: none !important; }

  /* === Slide 12 (Agent) — orchestrating circle:
        replace radial-gradient (which prints as square box) with solid fill === */
  .agent-loop__center {
    background: rgba(46, 30, 80, 0.92) !important;
    box-shadow: inset 0 0 60px rgba(139,92,246,0.10) !important;
  }
  /* Hide stat-card glow blobs that print as huge squares */
  .stat-card__glow,
  .appx-stat__glow,
  .appx-paper__glow,
  .appx-study__glow,
  .mp__stat-card__glow,
  .retn-card::before {
    display: none !important;
  }

  /* === Slide 2 (Team) — flatten card backgrounds so the seams don't show */
  .team__card {
    background: #0E0B14 !important;
    border-color: rgba(167,139,250,0.18) !important;
    backdrop-filter: none !important;
  }
  .team__card::before, .team__card::after { display: none !important; }

  /* === Slide 6 (Solution) — force step name + desc fully white in print */
  .sol-col__name, .sol-col__desc {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
  }
  .sol-col__num { color: var(--violet-bright) !important; }

  /* === Slide 7 (Compare/Product) — replace live iframe with our static
        print fallback so users see the Stimuler conversation flow === */
  .iphone__live { display: none !important; }
  .iphone[data-phone-live] .iphone__print-fallback { display: flex !important; }
  /* Remove the top mask overlay so it doesn't cover the fallback */
  .iphone[data-phone-live] .iphone__screen::after { display: none !important; }

  /* Generic: ensure box-shadow doesn't bloat circles in print
     by removing it from anything that's already a small circular dot */
  [class*="__dot"],
  [class*="__endpoint"],
  [class*="__marker"] {
    box-shadow: none !important;
  }

  /* Slide 14: speech grouped bars — keep their fill */
  .speech-bars__bar { opacity: 1 !important; }

  /* === Kill all violet/glow box-shadows in print — they all render as
        rectangles instead of soft glows ===
        Targeted to elements known to have heavy glow shadows. */
  .iphone--hero,
  .iphone--hero .iphone__frame,
  .stat-card,
  .econ-bar,
  .econ-bar--hero,
  .econ-cac__dot,
  .mats-metric,
  .mats-metric--hero,
  .indo-chart__endpoint,
  .indo-chart__endpoint::before,
  .indo-chart__endpoint::after,
  .retn-card,
  .agent-loop__center,
  .agent-step,
  .iphone__frame,
  .phone__frame,
  .phone-x,
  .phone-x--hero {
    box-shadow: none !important;
  }
  /* Keep just a thin 1px border outline on the iphone hero so it still
     reads as a phone in print */
  .iphone--hero .iphone__frame {
    border-color: rgba(167,139,250,0.5) !important;
  }

  /* === Enforce 1920×1080 hard clip on every slide so no element
        overflow can spill onto a second page === */
  section.slide {
    width: 1920px !important;
    height: 1080px !important;
    max-height: 1080px !important;
    overflow: hidden !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  /* Slide-13 specific: MATS chart end-badge had its own glow */
  .mats-chart__endbadge {
    box-shadow: none !important;
  }
  .mats-chart__endbadge-val::after,
  .mats-chart__endbadge::before { display: none !important; }

  /* Slide 15 (Indonesia) endpoint dot — drop animation/pulse rings */
  .indo-chart__pulse,
  .indo-chart__endpoint__pulse,
  [class*="pulse"] {
    display: none !important;
  }

  /* Force black background everywhere in print so any phantom/extra page
     doesn't render as white */
  html, body { background: #000 !important; }
  body::before { content: ""; position: fixed; inset: 0; background: #000; z-index: -1; }

  /* MATS slide overflow guard — clip everything inside the slide bounds */
  [data-label="Mats"] .mats,
  [data-label="Mats"] .mats__body,
  [data-label="Mats"] .mats__chart,
  [data-label="Mats"] .mats-chart {
    max-height: 100% !important;
    overflow: hidden !important;
  }

  /* MATS chart endpoint badge — its position:absolute with --x/--y can
     drift outside the chart in print. Lock its bounds. */
  .mats-chart__endbadge {
    z-index: 2 !important;
  }
}
