/* ─── Condūk Intro Deck — Stylesheet ────────────────────────────────────── */

:root {
  /* Condūk brand palette — navy #0B1323 · orange #FF6A00 · white · slate
     #2A2F3A · light gray #E6E8EB. Backgrounds/accent are also set by the
     treatment via JS (see deck-tweaks.jsx); foregrounds live here. */
  --bg-0: #070d1a;
  --bg-1: #0b1323;
  --bg-2: #141d30;
  --bg-3: #2a2f3a;
  --fg-0: #ffffff;
  --fg-1: #e6e8eb;
  --fg-2: #9aa3b4;
  --fg-3: #5b6478;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  --accent: #ff6a00;
  --accent-2: #ff8a3d;
  --accent-3: #ffae73;
  --accent-deep: #c24e00;
  --accent-glow: rgba(255, 106, 0, 0.4);

  /* Role colors (used in avatars / The Pit / chat) */
  --c-cos: #ff6a00;
  --c-cmo: #ec4899;
  --c-cfo: #10b981;
  --c-cro: #3b82f6;
  --c-coo: #a855f7;
  --c-cto: #06b6d4;

  /* Type */
  --font-display: 'Outfit', 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-sans: 'Geist', 'Outfit', ui-sans-serif, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-wordmark: 'Outfit', 'Arial Black', sans-serif;

  --type-mega: 220px;
  --type-display: 168px;
  --type-title: 96px;
  --type-h2: 72px;
  --type-h3: 56px;
  --type-subtitle: 44px;
  --type-body: 32px;
  --type-small: 26px;
  --type-eyebrow: 22px;
  --type-mono: 22px;

  --pad-top: 100px;
  --pad-bottom: 100px;
  --pad-x: 120px;
  --gap-title: 56px;
  --gap-item: 32px;

  --ease-out: cubic-bezier(.16,.84,.24,1);
  --ease-soft: cubic-bezier(.45,.05,.15,1);
  --t-slow: 1.4s;
  --t-med: 0.9s;
  --t-fast: 0.5s;
}

html, body { background: #000; color: var(--fg-0); margin: 0; padding: 0;
  font-family: var(--font-sans); font-feature-settings: 'ss01', 'cv11'; }

deck-stage { background: #000; }

/* Condūk wordmark — the ū is always orange wherever the name appears in text.
   Markup: Cond<span class="cdk-u">ū</span>k. -webkit-text-fill-color wins
   inside gradient background-clip headings (e.g. the title wordmark). */
.cdk-u {
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
}

/* Reduced motion */
html[data-anim="reduced"] *,
html[data-anim="reduced"] *::before,
html[data-anim="reduced"] *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}

/* ─── Slide base ─────────────────────────────────────────────────────────── */
.slide {
  background: var(--bg-1);
  color: var(--fg-0);
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.slide.dark { background: var(--bg-0); }
.slide.light { background: var(--bg-2); }

/* Background film grain.
   No mix-blend-mode: in WebKit it forces a slide-wide blend group, and every
   animated descendant gets composited into it — Safari paints each one's
   layer backing as a dark "ghost box" during the re-composite. Plain alpha
   compositing reads as film grain just fine on this dark deck. */
html[data-grain="1"] .slide::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .22;
  pointer-events: none;
  z-index: 100;
}

/* Subtle ambient orbs */
.slide.ambient::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 18% 110%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 60%),
    radial-gradient(45% 50% at 92% -10%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.slide > * { position: relative; z-index: 1; }

/* Typography utilities */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--type-eyebrow);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 32px; height: 1px;
  background: var(--accent);
}
.eyebrow.plain::before { display: none; }

h1.title, .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--type-title);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--fg-0);
  text-wrap: balance;
  margin: 0;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--type-h2);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--type-h3);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--type-subtitle);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin: 0;
  text-wrap: pretty;
}
.body {
  font-size: var(--type-body);
  line-height: 1.4;
  color: var(--fg-1);
  margin: 0;
  text-wrap: pretty;
}
.small {
  font-size: var(--type-small);
  line-height: 1.4;
  color: var(--fg-2);
  margin: 0;
}
.mono {
  font-family: var(--font-mono);
  font-size: var(--type-mono);
  letter-spacing: .04em;
  color: var(--fg-2);
}
.serif { font-family: var(--font-serif); }
.accent { color: var(--accent); }
.accent-2 { color: var(--accent-2); }

/* Frames */
.frame {
  padding: var(--pad-top) var(--pad-x) var(--pad-bottom);
  display: flex; flex-direction: column;
  height: 100%; box-sizing: border-box;
}
.frame.center { justify-content: center; align-items: flex-start; }
.frame.center-x { align-items: center; text-align: center; }
.frame.between { justify-content: space-between; }

/* Slide nav bar - top */
.slide-chrome {
  position: absolute; top: 40px; left: var(--pad-x); right: var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 16px; color: var(--fg-3);
  letter-spacing: .14em; text-transform: uppercase;
  z-index: 10;
  white-space: nowrap;
}
.slide-chrome .logo-mark {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--fg-2);
}
.slide-chrome .logo-mark img {
  height: 32px; width: auto;
  display: block;
}
.slide-chrome .pageno { color: var(--fg-3); }
.slide-chrome .section { color: var(--accent-2); }

/* ─── Entrance animations ──────────────────────────────────────────────── */
/* No animated filter: blur() here — Safari composites it onto an expanded
   layer and paints a "ghost box" that snaps away when blur hits 0. The
   opacity + translateY entrance reads cleanly on every browser. */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes wipeIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(1.4); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes orbit-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* When deck-stage adds .active to current slide, kick entrance anims */
deck-stage > [data-deck-active] .rise,
deck-stage > [data-deck-active] .rise-stagger > * {
  animation: riseIn .9s var(--ease-out) both;
}
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(1) { animation-delay: 0.05s; }
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(2) { animation-delay: 0.18s; }
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(3) { animation-delay: 0.32s; }
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(4) { animation-delay: 0.46s; }
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(5) { animation-delay: 0.60s; }
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(6) { animation-delay: 0.74s; }
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(7) { animation-delay: 0.86s; }
deck-stage > [data-deck-active] .rise-stagger > *:nth-child(8) { animation-delay: 0.98s; }
deck-stage > [data-deck-active] .fade { animation: fadeIn 1.2s var(--ease-out) both; }
deck-stage > [data-deck-active] .scale-in { animation: scaleIn 1.0s var(--ease-out) both; }
deck-stage > [data-deck-active] .wipe { animation: wipeIn 1.1s var(--ease-soft) both; }
deck-stage > [data-deck-active] .draw-line { animation: drawLine 1.2s var(--ease-soft) both; transform-origin: left center; }

/* Delay utility */
.delay-1 { animation-delay: 0.15s !important; }
.delay-2 { animation-delay: 0.3s !important; }
.delay-3 { animation-delay: 0.55s !important; }
.delay-4 { animation-delay: 0.8s !important; }
.delay-5 { animation-delay: 1.1s !important; }
.delay-6 { animation-delay: 1.4s !important; }
.delay-7 { animation-delay: 1.7s !important; }

/* ─── Slide 01 — Title ─────────────────────────────────────────────────── */
.s-title { background: var(--bg-0); }
.s-title .wordmark {
  font-family: var(--font-wordmark);
  font-weight: 900;
  font-size: var(--type-mega);
  line-height: 0.85;
  letter-spacing: -0.01em;
  margin: 0;
  background: linear-gradient(180deg, var(--fg-0) 0%, var(--fg-0) 50%, color-mix(in oklab, var(--fg-0) 65%, var(--bg-1)) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.s-title .wordmark .dot {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}
/* Title wordmark is the real condūk logo asset, not type. */
.s-title .wordmark img {
  height: 188px; width: auto;
  display: block;
}
.s-title .strap {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg-0);
  margin: 0;
  max-width: 1400px;
}
.s-title .strap .em { color: var(--accent-2); }
.s-title .by {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.s-title .meta-bar {
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 17px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-3);
}
.s-title .meta-bar span { white-space: nowrap; }
.s-title .meta-bar span { color: var(--fg-2); }
/* Title-slide sound-wave — an equalizer of orange bars along the bottom, the
   visual for "Sound into Symphony". deck-demos.js drives it through three
   acts: noise → harmony → symphony. Bottom edge sits 30px above the meta-bar. */
.s-title .soundwave {
  position: absolute;
  bottom: 152px; right: var(--pad-x);
  display: flex; align-items: flex-end;
  gap: 14px;
  height: 240px;
  pointer-events: none;
  z-index: 0;
}
.s-title .soundwave .sw-bar {
  width: 12px; height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  transform-origin: bottom;
  /* Static waveform until deck-demos.js takes over; also the printed and
     reduced-motion state. */
  transform: scaleY(var(--h, 0.6));
}
/* Act caption — deck-demos.js crossfades "The Noise / The Harmony /
   The Symphony" over the wave in step with the three animation acts. */
.s-title .soundwave .sw-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 60px;
  letter-spacing: 0.01em;
  color: var(--fg-0);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.s-title .orbit {
  position: absolute;
  right: -240px; top: 50%;
  width: 1400px; height: 1400px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.s-title .orbit svg { width: 100%; height: 100%; }
.s-title .orbit .ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.25;
  transform-origin: center;
  animation: orbit-ring 80s linear infinite;
}
.s-title .orbit .ring-2 { animation-duration: 120s; animation-direction: reverse; opacity: 0.18; }
.s-title .orbit .ring-3 { animation-duration: 160s; opacity: 0.12; }
.s-title .orbit .dot-sm {
  fill: var(--accent);
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

/* ─── Slide 02 — Cold open ─────────────────────────────────────────────── */
.s-cold .lines {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 156px;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
}
.s-cold .lines .strike {
  display: inline-block;
  position: relative;
  color: var(--fg-3);
}
.s-cold .lines .strike::after {
  content: ""; position: absolute; left: -.05em; right: -.05em;
  top: 55%; height: 8px;
  background: var(--accent);
  transform-origin: left center;
  animation: drawLine 1.2s var(--ease-soft) both;
  animation-delay: 1.6s;
}
.s-cold .lines em {
  font-style: normal;
  color: var(--accent);
}

/* ─── Problem slide (3 cards) ──────────────────────────────────────────── */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 24px;
}
.problem-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 44px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.problem-card .num {
  font-family: var(--font-mono);
  font-size: 18px; letter-spacing: .14em;
  color: var(--accent-2);
}
.problem-card h3 {
  font-size: 52px; line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.problem-card p {
  font-size: 26px; line-height: 1.45;
  color: var(--fg-1);
}
.problem-card .glyph {
  position: absolute; right: -30px; bottom: -40px;
  width: 240px; height: 240px;
  opacity: 0.07;
  color: var(--accent);
}

/* ─── Definition slide ─────────────────────────────────────────────────── */
.s-def .word {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 280px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
  padding-right: 0.18em;
  color: var(--fg-0);
}
.s-def .pron {
  font-family: var(--font-mono);
  font-size: 36px;
  color: var(--accent-2);
  letter-spacing: 0.04em;
}
.s-def .pos {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--fg-2);
}
.s-def .def-text {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1.2;
  color: var(--fg-0);
  max-width: 1400px;
  text-wrap: balance;
}
.s-def .def-text .hl {
  color: var(--accent);
  font-style: normal;
}

/* ─── Thesis orbiters ──────────────────────────────────────────────── */
.thesis-orbiters {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orbiter {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  transform: translate(var(--start-tx), var(--start-ty)) scale(0.35);
  opacity: 0;
  box-shadow:
    0 0 0 2px var(--bg-1),
    0 0 0 3px var(--c, var(--accent)),
    0 24px 60px -12px color-mix(in oklab, var(--c, var(--accent)) 60%, transparent);
  overflow: hidden;
}
.orbiter > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

deck-stage > [data-deck-active] .orbiter {
  animation: orbiter-in 1.4s cubic-bezier(.18,.84,.32,1.18) both;
  animation-delay: var(--delay);
}
/* scale + opacity only — see riseIn note re: Safari animated-blur ghosting. */
@keyframes orbiter-in {
  0%   { transform: translate(var(--start-tx), var(--start-ty)) scale(0.35); opacity: 0; }
  60%  { opacity: 0.95; }
  100% { transform: translate(var(--end-tx, 0), var(--end-ty, 0)) scale(1); opacity: 1; }
}

/* Ensure thesis frame text floats above orbiters */
.s-thesis .frame { position: relative; z-index: 2; }
.s-thesis .big {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 124px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.s-thesis .big .accent { color: var(--accent); }
.s-thesis .big .dim { color: var(--fg-3); }

/* ─── Team grid ────────────────────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 28px; margin-top: 64px;
}
.exec-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
  min-height: 380px;
  transition: transform .4s var(--ease-out), border-color .4s;
}
.exec-card .avatar { width: 120px; height: 120px; }
.exec-card .role {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .18em;
  color: var(--c, var(--accent));
  text-transform: uppercase;
}
.exec-card .name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.exec-card .title {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--font-sans);
}
.exec-card .bio {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.45;
  margin-top: auto;
}

/* Avatar (monogram circle with role-color ring, or photo) */
.avatar {
  position: relative;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 30%, color-mix(in oklab, var(--c, var(--accent)) 38%, var(--bg-3)) 0%, var(--bg-3) 70%);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px var(--bg-1),
    0 0 0 3px var(--c, var(--accent)),
    0 12px 32px -8px color-mix(in oklab, var(--c, var(--accent)) 60%, transparent);
}
.avatar > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  /* Inner ring + subtle vignette to soften the photo edge against the ring */
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.04),
    inset 0 -28% 32px -16px rgba(0, 0, 0, 0.35);
}
.avatar.lg { width: 120px; height: 120px; font-size: 44px; }
.avatar.md { width: 80px; height: 80px; font-size: 30px; }
.avatar.sm { width: 56px; height: 56px; font-size: 22px; }
.avatar.xs { width: 40px; height: 40px; font-size: 16px; }
.avatar .status {
  position: absolute; bottom: 4%; right: 4%;
  width: 18%; height: 18%; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px var(--bg-2);
}

/* ─── Chatbot vs Condūk comparison ─────────────────────────────────────── */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 64px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.compare > div {
  padding: 56px 56px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 540px;
}
.compare .col-dim {
  background: var(--bg-2);
  color: var(--fg-2);
  border-right: 1px solid var(--line);
}
.compare .col-em {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  color: var(--fg-0);
  position: relative;
}
.compare .col-em::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
}
.compare .lbl {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: .2em; text-transform: uppercase;
}
.compare .col-dim .lbl { color: var(--fg-3); }
.compare .col-em .lbl { color: var(--accent-2); }
.compare h3 {
  font-size: 64px; font-weight: 600;
  letter-spacing: -0.02em;
}
.compare ul { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 14px; }
.compare li {
  font-size: 26px; line-height: 1.4;
  padding-left: 36px;
  position: relative;
}
.compare .col-dim li::before {
  content: "—"; position: absolute; left: 0; color: var(--fg-3);
}
.compare .col-em li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 22px; height: 2px; background: var(--accent);
}

/* ─── The Pit intro / demo ─────────────────────────────────────────────── */
.s-warroom { background: var(--bg-0); }

.wr-app {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 24px; height: 100%;
  margin-top: 28px;
}
.wr-stage {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.wr-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.wr-header .topic {
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.01em;
}
.wr-header .topic .label {
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: .14em;
  color: var(--accent-2);
  margin-left: 14px; text-transform: uppercase;
}
.wr-live {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: #fb7185;
}
.wr-live .pip {
  width: 9px; height: 9px; border-radius: 50%;
  background: #fb7185;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.18);
  animation: pulse 1.6s infinite;
}
.wr-avatars {
  display: flex; gap: 10px; padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.wr-avatar { position: relative; transition: transform .35s; }
.wr-avatar.speaking { transform: translateY(-4px); }
.wr-avatar.speaking::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid var(--c, var(--accent));
  animation: pulse 1s infinite;
}
.wr-msgs {
  display: flex; flex-direction: column; gap: 16px;
  flex: 1; overflow: hidden;
}
.wr-msg {
  display: flex; gap: 16px;
  opacity: 0; transform: translateY(12px) scale(0.98);
  transition: opacity .5s, transform .5s var(--ease-out);
}
.wr-msg.in { opacity: 1; transform: translateY(0) scale(1); }
.wr-msg .ava-col { flex-shrink: 0; }
.wr-msg .b-col { flex: 1; min-width: 0; }
.wr-msg .b-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 6px;
}
.wr-msg .b-name { font-weight: 600; font-size: 18px; }
.wr-msg .b-role {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c, var(--accent));
  padding: 3px 8px; border-radius: 4px;
  background: color-mix(in oklab, var(--c, var(--accent)) 14%, transparent);
}
.wr-msg .b-kind {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--fg-3);
}
.wr-msg .b-body {
  font-size: 19px; line-height: 1.45;
  color: var(--fg-1);
}
.wr-typing {
  display: none;
  align-items: center; gap: 4px;
  font-size: 14px; color: var(--fg-3); padding-left: 70px;
  font-family: var(--font-mono); letter-spacing: .04em;
  margin: -8px 0 0;
}
.wr-typing.on { display: flex; }
.wr-typing .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fg-2);
  animation: pulse 1.1s infinite;
}
.wr-typing .dot:nth-child(2) { animation-delay: .15s; }
.wr-typing .dot:nth-child(3) { animation-delay: .3s; }

.wr-side {
  display: flex; flex-direction: column; gap: 18px;
}
.wr-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.wr-panel .ptitle {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 16px;
}
.wr-args { display: flex; flex-direction: column; gap: 10px; }
.wr-args .side {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em;
  margin-top: 6px;
}
.wr-args .side.for { color: var(--c-cfo); }
.wr-args .side.against { color: #fb7185; }
.wr-arg {
  display: flex; gap: 10px;
  font-size: 16px; line-height: 1.35;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .4s, transform .4s var(--ease-out);
  color: var(--fg-1);
}
.wr-arg.in { opacity: 1; transform: translateX(0); }
.wr-arg::before {
  content: ""; width: 4px; flex-shrink: 0; align-self: stretch;
  background: var(--c-cfo); border-radius: 2px;
}
.wr-arg.against::before { background: #fb7185; }
.wr-actions { display: flex; flex-direction: column; gap: 10px; }
.wr-action {
  font-size: 15px; line-height: 1.35;
  padding: 11px 14px;
  background: var(--bg-3);
  border-radius: 10px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s var(--ease-out);
  color: var(--fg-1);
  display: flex; align-items: start; gap: 10px;
}
.wr-action.in { opacity: 1; transform: translateY(0); }
.wr-action::before {
  content: "→"; color: var(--accent-2); font-family: var(--font-mono);
  flex-shrink: 0;
}
.wr-wrap-btn {
  margin-top: 18px;
  padding: 14px 18px; border-radius: 12px;
  background: var(--bg-3);
  color: var(--fg-3);
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  text-align: center;
  transition: background .4s, color .4s, box-shadow .4s;
}
.wr-wrap-btn.on {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 32px var(--accent-glow);
}

/* ─── Platform grid ────────────────────────────────────────────────────── */
.platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 44px;
}
.cap-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 32px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 230px;
}
.cap-card .owner {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--c, var(--accent));
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.cap-card .owner::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c, var(--accent));
}
.cap-card h3 {
  font-size: 38px; font-weight: 600;
  letter-spacing: -0.015em;
}
.cap-card p {
  font-size: 20px; line-height: 1.45;
  color: var(--fg-2);
  margin: 0;
}

/* ─── Browser frame ────────────────────────────────────────────────────── */
.browser {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.55);
}
.browser .b-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.browser .b-dots { display: flex; gap: 8px; }
.browser .b-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.13); }
.browser .b-url {
  flex: 1; padding: 8px 16px;
  background: var(--bg-1);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-2);
}
.browser .b-body { background: var(--bg-1); }

/* ─── Animated dashboard slide ─────────────────────────────────────────── */
.dash {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.dash-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.dash-card.in { opacity: 1; transform: translateY(0); }
.dash-card .lbl {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 10px;
}
.dash-card .v {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.dash-card .delta { font-size: 14px; color: var(--c-cfo); font-family: var(--font-mono); margin-top: 4px; }
.dash-card .pill {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em;
  padding: 4px 10px; border-radius: 6px;
  background: color-mix(in oklab, var(--accent) 20%, transparent);
  color: var(--accent-2);
  text-transform: uppercase;
  white-space: nowrap;
}
.dash-live { white-space: nowrap; }

.dash-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; margin-top: 18px; }
.dash-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 28px;
}
.dash-panel h4 {
  font-size: 22px; font-weight: 600;
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 14px;
}
.dash-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .15em;
  color: var(--c-cfo);
  text-transform: uppercase;
}
.dash-live .pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-cfo);
  opacity: 0;
}
.dash-live.on .pip {
  opacity: 1;
  animation: pulse 1.6s infinite;
}
.dash-activity {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.dash-activity li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateX(-12px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.dash-activity li.in { opacity: 1; transform: translateX(0); }
.dash-activity li:last-child { border-bottom: 0; }
.dash-activity .who { font-weight: 600; font-size: 17px; }
.dash-activity .role { color: var(--c, var(--accent)); font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; }
.dash-activity .what { color: var(--fg-1); font-size: 16px; line-height: 1.4; margin-top: 2px; }
.dash-activity .ago { color: var(--fg-3); font-family: var(--font-mono); font-size: 12px; flex-shrink: 0; }

.dash-decision {
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 14%, var(--bg-2)) 0%, var(--bg-2) 100%);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, var(--line));
  border-radius: 14px;
  padding: 20px;
  margin-top: 12px;
}
.dash-decision .pri {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em;
  color: var(--accent);
}
.dash-decision .title {
  font-size: 18px; font-weight: 600; line-height: 1.3;
  margin: 8px 0;
  font-family: var(--font-sans);
  letter-spacing: 0;
}
.dash-decision .review {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em;
  color: var(--accent-2); text-transform: uppercase;
  padding-top: 8px; border-top: 1px solid var(--line);
}

/* ─── Chat demo slide ──────────────────────────────────────────────────── */
.chat-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin-top: 32px;
  flex: 1;
  min-height: 0;
}
.chat-side {
  display: flex; flex-direction: column;
  gap: 32px;
}
.chat-app {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.chat-head {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
  display: flex; align-items: center; gap: 16px;
}
.chat-head .who {
  display: flex; flex-direction: column;
}
.chat-head .name { font-weight: 600; font-size: 20px; }
.chat-head .role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em;
  color: var(--c, var(--accent));
  text-transform: uppercase;
}
.chat-thread {
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 18px;
  flex: 1; min-height: 0;
  overflow-y: auto;
}
.chat-bubble {
  display: flex; flex-direction: column; gap: 6px;
  max-width: 86%;
  animation: riseIn .45s var(--ease-out) both;
}
.chat-bubble.user {
  align-self: flex-end; align-items: flex-end;
}
.chat-bubble.user.from-composer {
  animation: user-bubble-up .42s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes user-bubble-up {
  0%   { opacity: 0; transform: translateY(40px) scale(0.92); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-bubble.user .chat-body {
  background: var(--accent);
  color: #fff;
  padding: 14px 18px; border-radius: 18px 18px 4px 18px;
  font-size: 19px; line-height: 1.4;
  white-space: pre-wrap;
}
.chat-bubble.agent .chat-body {
  background: var(--bg-3);
  color: var(--fg-0);
  padding: 14px 18px; border-radius: 4px 18px 18px 18px;
  font-size: 19px; line-height: 1.4;
  white-space: pre-wrap;
}
.chat-bubble.agent.typing .chat-body {
  display: inline-flex; gap: 5px; align-items: center;
}
.chat-bubble.agent.typing .chat-body .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--fg-2);
  animation: pulse 1.1s infinite;
}
.chat-bubble.agent.typing .chat-body .dot:nth-child(2) { animation-delay: .15s; }
.chat-bubble.agent.typing .chat-body .dot:nth-child(3) { animation-delay: .3s; }
.chat-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.chat-meta .chat-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 30%, color-mix(in oklab, var(--ring) 38%, var(--bg-3)) 0%, var(--bg-3) 70%);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 0 0 2px var(--ring);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.chat-meta .chat-avatar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.chat-meta .chat-name { font-weight: 600; color: var(--fg-0); }
.chat-meta .chat-role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em;
  color: var(--ring, var(--accent)); text-transform: uppercase;
}
.chat-composer {
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--fg-0);
  position: relative;
}
.chat-composer .chat-input {
  flex: 1; min-width: 0;
  color: var(--fg-0);
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.chat-composer .chat-input:empty::before {
  content: attr(data-placeholder);
  color: var(--fg-3);
}
.chat-composer .chat-input::after {
  content: "";
  display: inline-block;
  width: 2px; height: 1.1em;
  background: var(--fg-2);
  margin-left: 2px;
  vertical-align: middle;
  opacity: 0;
}
.chat-composer .chat-input.typing::after {
  opacity: 1;
  animation: caret-blink 1s steps(2) infinite;
}
@keyframes caret-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
.chat-composer .send {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.chat-composer .send.sending {
  animation: send-flash .55s var(--ease-out);
}
@keyframes send-flash {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 var(--accent-glow); }
  40%  { transform: scale(1.18); box-shadow: 0 0 24px 6px var(--accent-glow); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 transparent; }
}

/* Send animation: a temporary user bubble flies up out of the composer */
.chat-app .send-ghost {
  position: absolute;
  left: 22px; right: 22px;
  bottom: 22px;
  pointer-events: none;
  z-index: 5;
}
.chat-app .send-ghost .chat-bubble {
  margin-left: auto;
  animation: ghost-fly .55s cubic-bezier(.4,.0,.2,1) forwards;
}
@keyframes ghost-fly {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-120px); opacity: 0; }
}
.chat-pitch {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 700px;
}

/* ─── Proof / quote / steps slides ────────────────────────────────────── */
.quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 88px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg-0);
  margin: 0;
  text-wrap: balance;
  max-width: 1600px;
}
.quote .open, .quote .close { color: var(--accent); }
.attribution {
  display: flex; align-items: center; gap: 20px;
  margin-top: 64px;
}
.attribution .ava { width: 80px; height: 80px; }
.attribution .name { font-size: 26px; font-weight: 600; letter-spacing: -0.005em; }
.attribution .title { font-size: 18px; color: var(--fg-2); font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; font-weight: 400; }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 44px 52px;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 480px;
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
  color: transparent;
}
.step h3 { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; }
.step p { font-size: 22px; line-height: 1.45; color: var(--fg-1); margin: 0; }
.step .seq {
  position: absolute; right: 36px; top: 36px;
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: .18em;
  color: var(--accent-2);
}

/* ─── Proof / built-on slide ──────────────────────────────────────────── */
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.proof-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.proof-item .who {
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: .14em;
  color: var(--c, var(--accent));
  text-transform: uppercase;
}
.proof-item h4 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
}
.proof-item p {
  font-size: 19px; line-height: 1.45;
  color: var(--fg-1); margin: 0;
}

/* ─── Numbers / counters ──────────────────────────────────────────────── */
.bignums {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px;
}
.bignum-cell {
  display: flex; flex-direction: column; gap: 12px;
  border-left: 2px solid var(--accent);
  padding-left: 32px;
}
.bignum {
  font-family: var(--font-display);
  font-size: 168px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bignum-cell .lbl {
  font-size: 22px;
  color: var(--fg-1);
  line-height: 1.4;
}

/* ─── Closing / transition ────────────────────────────────────────────── */
.s-close .lines {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 124px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 1500px;
  text-wrap: balance;
}
.s-close .lines .dim { color: var(--fg-3); }
.s-close .next {
  display: inline-flex; align-items: center; gap: 18px;
  margin-top: 64px;
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 22px 34px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background: color-mix(in oklab, var(--accent) 8%, transparent);
  white-space: nowrap;
}
.s-close .next .arrow {
  display: inline-block;
  animation: float 1.6s ease-in-out infinite;
}

/* ─── Section divider slides ──────────────────────────────────────────── */
.section-marker {
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: .26em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-marker .num { color: var(--fg-3); margin-right: 14px; }

/* ─── Close section ──────────────────────────────────────────────── */

/* Founder offer slide */
.s-founder { background: var(--bg-0); }
.founder-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background: color-mix(in oklab, var(--accent) 8%, transparent);
  font-family: var(--font-mono);
  font-size: 18px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-2);
  align-self: flex-start;
}
.founder-badge .pip {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse 1.6s infinite;
}
.founder-bigprice {
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
}
.founder-bigprice .strike {
  font-size: 96px;
  color: var(--fg-3);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  margin-right: 18px;
  vertical-align: 24px;
}
.founder-bigprice .accent { color: var(--accent); }
.founder-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.founder-pillar {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.founder-pillar .lbl {
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.founder-pillar .v {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.founder-pillar p {
  font-size: 18px; line-height: 1.4;
  color: var(--fg-2); margin: 0;
}

/* Pricing tiers */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  min-height: 600px;
}
.price-card.featured {
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 10%, var(--bg-2)) 0%, var(--bg-2) 100%);
  border-color: color-mix(in oklab, var(--accent) 40%, var(--line));
  box-shadow: 0 24px 60px -20px color-mix(in oklab, var(--accent) 30%, transparent);
}
.price-card .tier {
  font-family: var(--font-mono);
  font-size: 14px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.price-card.featured .tier { color: var(--accent); }
.price-card h3 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.price-card .price {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  margin: 8px 0;
}
.price-card .price .v {
  font-size: 72px; letter-spacing: -0.03em;
  color: var(--fg-0);
  line-height: 1;
}
.price-card .price .per {
  font-size: 22px; color: var(--fg-2); font-weight: 400;
  font-family: var(--font-sans);
}
.price-card .price .was {
  font-size: 26px; color: var(--fg-3);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  font-weight: 500;
}
.price-card .pill {
  position: absolute; top: -14px; right: 28px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em;
  padding: 6px 14px; border-radius: 100px;
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
}
.price-card .desc {
  font-size: 17px; color: var(--fg-2);
  line-height: 1.4;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.price-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.price-card li {
  font-size: 17px; line-height: 1.4;
  color: var(--fg-1);
  padding-left: 30px;
  position: relative;
}
.price-card li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}
.price-card .note {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .14em;
  color: var(--fg-3); text-transform: uppercase;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* Trial slide — big stats */
.trial-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 80px;
}
.trial-pillar {
  display: flex; flex-direction: column; gap: 18px;
}
.trial-pillar .num {
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.trial-pillar .num.dim { color: var(--fg-0); }
.trial-pillar .num .small {
  font-size: 80px;
  color: inherit;
  letter-spacing: -0.03em;
}
.trial-pillar .lbl {
  font-family: var(--font-mono);
  font-size: 18px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.trial-pillar p {
  font-size: 22px; line-height: 1.4;
  color: var(--fg-1); margin: 0;
}

/* Final CTA */
.s-final { background: var(--bg-0); }
.s-final .megacta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 168px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.s-final .megacta .accent { color: var(--accent); }
.s-final .cta-row {
  display: flex; gap: 24px; margin-top: 72px;
  flex-wrap: wrap;
}
.s-final .cta {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 24px 36px;
  font-family: var(--font-mono);
  font-size: 22px; letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}
.s-final .cta.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 32px var(--accent-glow);
}
.s-final .cta.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.s-final .cta .arrow { display: inline-block; animation: float 1.6s ease-in-out infinite; }
.s-final .endmark {
  position: absolute;
  right: var(--pad-x); bottom: var(--pad-bottom);
  width: 200px; height: 200px;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.s-final .endmark svg,
.s-final .endmark img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* ─── Tweaks panel slot ───────────────────────────────────────────────── */
#tweaks-root { position: fixed; z-index: 9999; }
