/* ─────────────────────────────────────────────────────────
   say.hello deck — shared design system
   16:9 slides (1920×1080) scaled responsively via deck.js
   ───────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700;1,800&display=swap');

:root {
  --black: #0a0a0a;
  --text: #0a0a0a;
  --muted: #7a7a7a;
  --faint: #aaaaaa;
  --hairline: #e6e6e6;
  --white: #ffffff;
  --bg: #ececec;
  --accent: #7a1f1f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
}

.deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 40px 20px 80px;
}

/* ── Top toolbar ────────────────────────────────────────── */
.toolbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}

.toolbar-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.toolbar-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.toolbar-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 12px;
  transition: all 0.15s;
}

.toolbar-links a:hover {
  background: var(--black);
  color: white;
}

.toolbar-links a.active {
  background: var(--black);
  color: white;
}

/* ── Slide frame (responsive container) ─────────────────── */
.slide-frame {
  width: min(1820px, calc(100vw - 80px));
  aspect-ratio: 16 / 9;
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  transform-origin: top left;
  /* scale set by deck.js */
}

/* ── Chrome (top header, bottom footer) ─────────────────── */
.chrome-top {
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.smile {
  width: 34px;
  height: 34px;
}

.wordmark {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--black);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.45em;
  color: var(--muted);
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
}

.chrome-bottom {
  position: absolute;
  bottom: 40px;
  left: 80px;
  right: 80px;
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--faint);
  letter-spacing: 0.02em;
}

/* ── Slide body ─────────────────────────────────────────── */
.slide-body {
  position: absolute;
  inset: 160px 80px 120px 80px;
}

.eyebrow {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
}

.headline {
  font-weight: 700;
  font-size: 112px;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--black);
}

.headline em {
  font-style: italic;
  font-weight: 800;
}

.headline.xl { font-size: 140px; }
.headline.lg { font-size: 120px; }
.headline.md { font-size: 100px; }
.headline.sm { font-size: 92px; }
.headline.giant { font-size: 200px; }

.body-text {
  font-size: 22px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 1100px;
  font-weight: 400;
}

.body-text.dark { color: var(--text); }
.body-text.narrow { max-width: 600px; }

/* ── Two-column slide layout ────────────────────────────── */
.two-col {
  position: absolute;
  inset: 160px 80px 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1px 600px;
  gap: 60px;
}

.two-col .divider {
  background: var(--hairline);
  margin: 60px 0 80px;
}

.two-col .col-right {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── Capability / pillar grid ───────────────────────────── */
.grid {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 120px;
  display: grid;
  gap: 60px 50px;
}

.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.grid-item .num {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--faint);
  margin-bottom: 14px;
}

.grid-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.grid-item p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.grid-item.with-hairline { padding-top: 24px; border-top: 1px solid var(--hairline); }

/* ── Memory table (slide 7) ─────────────────────────────── */
.memory-table {
  position: absolute;
  top: 200px;
  right: 80px;
  width: 740px;
}

.memory-table .row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  padding: 22px 12px;
  border-top: 1px solid var(--hairline);
}

.memory-table .row:last-child {
  border-bottom: 1px solid var(--hairline);
}

.memory-table .label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--black);
}

.memory-table .value {
  font-size: 18px;
  color: var(--text);
}

/* ── Pricing cards (slide 12) ───────────────────────────── */
.pricing-cards {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.pricing-card {
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 50px 48px;
}

.pricing-card .tier {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 18px;
}

.pricing-card .name {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 28px;
}

.pricing-card .price {
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-card .billing {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card li {
  font-size: 17px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.pricing-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
  transform: translateY(-3px);
}

/* ── FAQ grid (slide 13) ────────────────────────────────── */
.faq-grid {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.faq-grid .q {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.faq-grid .a {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* ── Contact (slide 14) ─────────────────────────────────── */
.contact-info {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 120px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-info .label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.contact-info .value {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
}

/* ── Cover slide ────────────────────────────────────────── */
.cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 160px 80px 120px;
}

.cover-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex: 1;
}

.cover-smile {
  width: 200px;
  height: 200px;
}

.cover-word {
  font-weight: 700;
  font-size: 220px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cover-tagline {
  border-top: 1px solid var(--hairline);
  padding-top: 60px;
}

.cover-tagline h1 {
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.cover-tagline h1 em {
  font-style: italic;
  font-weight: 800;
}

.cover-tagline p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 1100px;
}

/* ── Misc helpers ───────────────────────────────────────── */
.feats {
  position: absolute;
  bottom: 160px;
  left: 80px;
  right: 80px;
  display: flex;
  gap: 56px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.stats {
  position: absolute;
  left: 80px;
  bottom: 120px;
  display: flex;
  gap: 100px;
}

.stat .value {
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
}

.stat .label {
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
}

.kpis {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 100px;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.kpi .value {
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 10px;
}

.kpi .label {
  font-size: 14px;
  color: var(--muted);
}

/* ── Phone mockup ──────────────────────────────────────── */
.phone {
  width: 460px;
  height: 920px;
  background: white;
  border: 10px solid #0a0a0a;
  border-radius: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 16px;
  z-index: 10;
}

.phone .status-bar {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  z-index: 5;
}

.phone .video {
  position: absolute;
  top: 70px;
  left: 16px;
  right: 16px;
  bottom: 200px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0 0%, #d4d4d4 60%, #a8a8a8 100%);
}

.phone .video.warm {
  background: linear-gradient(135deg, #ffd5b4 0%, #e8a87c 40%, #c38d6e 100%);
}

.phone .video.cool {
  background: linear-gradient(135deg, #2a2a3a 0%, #1a1a28 60%, #0a0a18 100%);
}

.phone .live-badge {
  position: absolute;
  top: 88px;
  left: 36px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone .live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.phone .signal-badge {
  position: absolute;
  top: 88px;
  right: 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 600;
  color: #0a0a0a;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 6;
}

.phone .avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.95);
  z-index: 5;
}

.phone .caller {
  position: absolute;
  left: 36px;
  bottom: 240px;
  color: white;
  z-index: 5;
}

.phone .caller .name {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.phone .caller .role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.phone .controls {
  position: absolute;
  bottom: 80px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone .control-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0a0a0a;
}

.phone .control-btn.end {
  background: #ef4444;
  color: white;
}

.phone .home-indicator {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 5px;
  background: #0a0a0a;
  border-radius: 3px;
}

/* ── Voice orb (Slide 6) ───────────────────────────────── */
.voice-orb {
  width: 460px;
  height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-orb .ring {
  position: absolute;
  border: 1px solid var(--hairline);
  border-radius: 50%;
}

.voice-orb .ring.r1 { width: 100%; height: 100%; }
.voice-orb .ring.r2 { width: 80%; height: 80%; }
.voice-orb .ring.r3 { width: 60%; height: 60%; }

.voice-orb .core {
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: #0a0a0a;
  position: relative;
  z-index: 2;
}

.voice-orb .waves {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  height: 50px;
}

.voice-orb .wave-bar {
  width: 4px;
  background: #0a0a0a;
  border-radius: 2px;
}

.voice-orb .caption {
  position: absolute;
  bottom: -160px;
  width: 480px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── Earnings dashboard card ───────────────────────────── */
.earnings-card {
  width: 520px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.earnings-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.earnings-card .head .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.earnings-card .head .pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #10a85a;
  background: #e8f7ee;
  padding: 5px 10px;
  border-radius: 999px;
}

.earnings-card .amount {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.earnings-card .delta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.earnings-card .chart {
  margin: 0 -10px;
}

.earnings-card .legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.earnings-card .legend .l-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.earnings-card .legend .l-value {
  font-size: 20px;
  font-weight: 700;
}

/* ── Scenario picker ───────────────────────────────────── */
.scenario-card {
  width: 520px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.scenario-card .head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.scenario-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
}

.scenario-card .title-row {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.scenario-card .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  border-top: 1px solid var(--hairline);
}

.scenario-card .item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.scenario-card .item .label {
  font-size: 16px;
  font-weight: 600;
}

.scenario-card .item .price {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.scenario-card .item.active .price {
  background: #0a0a0a;
  color: white;
}

/* ── Gateway logos visualization ──────────────────────── */
.gateway-tile {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
}

.gateway-tile .logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gateway-tile .logo.paxum { color: #f47521; }
.gateway-tile .logo.ccbill { color: #1c3d8b; }
.gateway-tile .logo.segpay { color: #6b46c1; }
.gateway-tile .logo.crypto {
  background: linear-gradient(135deg, #f7931a 0%, #627eea 50%, #2775ca 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gateway-tile .desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.gateway-tile .badge {
  margin-top: auto;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4f4f4;
  color: var(--muted);
}

/* ── Deployment dashboard panel ────────────────────────── */
.deploy-panel {
  width: 720px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
}

.deploy-panel .dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--hairline);
}

.deploy-panel .dp-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

.deploy-panel .dp-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #10a85a;
}

.deploy-panel .dp-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10a85a;
  box-shadow: 0 0 0 4px rgba(16, 168, 90, 0.18);
}

.deploy-panel .region {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
}

.deploy-panel .region:last-child { border-bottom: none; }

.deploy-panel .flag {
  width: 44px;
  height: 32px;
  border-radius: 6px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--black);
}

.deploy-panel .region.active .flag {
  background: #0a0a0a;
  color: white;
}

.deploy-panel .region-info .name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deploy-panel .region-info .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10a85a;
}

.deploy-panel .region.idle .status-dot {
  background: #d4d4d4;
}

.deploy-panel .region.idle .name { color: var(--muted); }

.deploy-panel .region-info .meta {
  font-size: 13px;
  color: var(--muted);
}

.deploy-panel .region-info .meta .sep {
  margin: 0 8px;
  color: var(--hairline);
}

.deploy-panel .latency {
  text-align: right;
  font-size: 15px;
  font-weight: 700;
}

.deploy-panel .latency .num {
  font-variant-numeric: tabular-nums;
}

.deploy-panel .latency .unit {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 2px;
}

.deploy-panel .region.idle .latency {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--faint);
  text-transform: uppercase;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Profile card (memory) ─────────────────────────────── */
.profile-card {
  width: 380px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.profile-card .pc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline);
}

.profile-card .pc-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4c4c4 0%, #4a4a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: white;
}

.profile-card .pc-name {
  font-weight: 700;
  font-size: 18px;
}

.profile-card .pc-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.profile-card .pc-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.profile-card .pc-stat .k { color: var(--muted); }
.profile-card .pc-stat .v { font-weight: 600; }

/* ── Concentric AI orb (slide 3) ───────────────────────── */
.ai-orb {
  width: 480px;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orb .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--hairline);
}

.ai-orb .ring.r1 { width: 100%; height: 100%; }
.ai-orb .ring.r2 { width: 80%; height: 80%; }
.ai-orb .ring.r3 { width: 60%; height: 60%; }

.ai-orb .core {
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background: #0a0a0a;
  position: relative;
}

.ai-orb.warm .core {
  background: linear-gradient(135deg, #ff8c5a, #c38d6e);
}

.ai-orb .ping {
  position: absolute;
  top: 6%;
  right: 14%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10a85a;
  box-shadow: 0 0 0 4px rgba(16, 168, 90, 0.18);
}

.ai-orb .ping.red {
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

/* ── Checklist (compliance slide) ──────────────────────── */
.checklist {
  width: 520px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.checklist .head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.checklist .item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  font-size: 16px;
}

.checklist .item:last-child { border-bottom: 1px solid var(--hairline); }

.checklist .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10a85a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
}

.checklist .check::before { content: "✓"; }

/* ── Comparison matrix ─────────────────────────────────── */
.compare {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 100px;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: white;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--hairline);
}

.compare-row:first-child {
  border-top: none;
  background: #f8f8f8;
}

.compare-row .cell {
  padding: 18px 24px;
  font-size: 16px;
  border-left: 1px solid var(--hairline);
}

.compare-row .cell:first-child {
  border-left: none;
  font-weight: 600;
}

.compare-row.head .cell {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 22px 24px;
  text-align: center;
}

.compare-row.head .cell.us {
  color: var(--black);
  background: #0a0a0a;
  color: white;
}

.compare-row .cell:not(:first-child) {
  text-align: center;
}

.check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10a85a;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.check-yes::before { content: "✓"; }

.check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #bdbdbd;
  font-weight: 700;
  font-size: 14px;
}
.check-no::before { content: "–"; }

.check-partial {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c8881f;
  background: #fdf4e3;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ── Ownership list (slide 14) ─────────────────────────── */
.own-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 60px;
  padding-top: 20px;
}

.own-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.own-item .own-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a0a0a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
}
.own-item .own-check::before { content: "✓"; }

.own-item .own-text {
  padding-top: 2px;
}

.own-item .own-title {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.own-item .own-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* ── 12-months dashboard (slide 15) ────────────────────── */
.vision-dashboard {
  width: 100%;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.vd-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #f7f7f7;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}

.vd-bar .left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.vd-bar .right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--muted);
}

.vd-bar .right::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10a85a;
  margin-right: 4px;
}

.vd-bar .dots {
  display: flex;
  gap: 6px;
}

.vd-bar .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d4d4d4;
}

.vd-body {
  padding: 30px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
}

.vd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.vd-stat {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 24px;
}

.vd-stat .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vd-stat .value {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.vd-stat .delta {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #10a85a;
}

.vd-stat .delta.muted {
  color: var(--muted);
}

.vd-chart-card {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}

.vd-chart-card .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vd-chart-card .big {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.vd-chart-card svg {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
}

/* ── Why now (slide 2) ─────────────────────────────────── */
.timeline {
  position: absolute;
  left: 80px;
  right: 80px;
  bottom: 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.timeline-step {
  position: relative;
  padding: 30px 24px 0;
  border-top: 2px solid var(--hairline);
}

.timeline-step.active {
  border-top-color: var(--black);
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--hairline);
}

.timeline-step.active::before {
  background: var(--black);
  border-color: var(--black);
}

.timeline-step .year {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.timeline-step.active .year { color: var(--black); }

.timeline-step .what {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.timeline-step .desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════
   MOTION GRAPHICS
   ════════════════════════════════════════════════════════ */

/* ── Reveal-on-scroll for slide content ─────────────────── */
.slide-frame .slide .chrome-top,
.slide-frame .slide .slide-body,
.slide-frame .slide .chrome-bottom,
.slide-frame .slide > div:not(.chrome-top):not(.slide-body):not(.chrome-bottom) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.slide-frame.in-view .slide .chrome-top { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.slide-frame.in-view .slide .slide-body { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.slide-frame.in-view .slide .chrome-bottom { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.slide-frame.in-view .slide > div:not(.chrome-top):not(.slide-body):not(.chrome-bottom) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

/* ── Continuous: pulsing rings on AI orb + voice orb ──── */
@keyframes ring-pulse {
  0%   { transform: scale(0.85); opacity: 0.85; }
  100% { transform: scale(1.15); opacity: 0; }
}

.ai-orb .ring,
.voice-orb .ring {
  animation: ring-pulse 3.2s ease-out infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

.ai-orb .ring.r2, .voice-orb .ring.r2 { animation-delay: -1.07s; }
.ai-orb .ring.r3, .voice-orb .ring.r3 { animation-delay: -2.13s; }

/* ── Orb core gentle breath ─────────────────────────────── */
@keyframes orb-breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.ai-orb .core,
.voice-orb .core {
  animation: orb-breath 4.8s ease-in-out infinite;
}

/* ── Status ping dot (top-right of AI orb) ──────────────── */
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16, 168, 90, 0.18); }
  50%      { box-shadow: 0 0 0 14px rgba(16, 168, 90, 0); }
}

@keyframes ping-red {
  0%, 100% { box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2); }
  50%      { box-shadow: 0 0 0 14px rgba(239, 68, 68, 0); }
}

.ai-orb .ping        { animation: ping 2s ease-out infinite; }
.ai-orb .ping.red    { animation: ping-red 2s ease-out infinite; }

/* ── Phone LIVE badge pulse ─────────────────────────────── */
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  60%      { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.phone .live-badge {
  animation: live-pulse 1.6s ease-out infinite;
}

.phone .live-badge::before {
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ── Voice orb waveform bars ───────────────────────────── */
@keyframes wave {
  0%, 100% { transform: scaleY(0.6); }
  50%      { transform: scaleY(1.4); }
}

.voice-orb .wave-bar {
  animation: wave 1.5s ease-in-out infinite;
  transform-origin: bottom center;
  will-change: transform;
}

/* Stagger waveform bars by varying delays */
.voice-orb .wave-bar:nth-child(3n)   { animation-delay: -0.2s; animation-duration: 1.3s; }
.voice-orb .wave-bar:nth-child(3n+1) { animation-delay: -0.5s; animation-duration: 1.7s; }
.voice-orb .wave-bar:nth-child(3n+2) { animation-delay: -0.8s; animation-duration: 1.4s; }
.voice-orb .wave-bar:nth-child(5n)   { animation-delay: -1.0s; animation-duration: 1.6s; }
.voice-orb .wave-bar:nth-child(7n)   { animation-delay: -1.2s; animation-duration: 1.5s; }

/* ── Status dot breathing (deploy panel, dashboards) ───── */
@keyframes status-breath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 168, 90, 0.42); }
  60%      { box-shadow: 0 0 0 7px rgba(16, 168, 90, 0); }
}

.deploy-panel .region.active .status-dot,
.deploy-panel .dp-status::before,
.vd-bar .right::before,
.scenario-card .head .dot {
  animation: status-breath 2.4s ease-out infinite;
}

/* ── Live tip menu (NSFW slide 8) dot is red ───────────── */
@keyframes status-breath-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45); }
  60%      { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
}

.scenario-card .head .dot {
  animation: status-breath-red 2s ease-out infinite;
}

/* ── Active timeline dot pulses ────────────────────────── */
.timeline-step.active::before {
  animation: status-breath 2.4s ease-out infinite;
}

/* ── Timeline connector line draws in on reveal ─────────── */
.slide-frame.in-view .timeline-step {
  position: relative;
  overflow: visible;
}

@keyframes timeline-line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ── Chart sparkline draws in on reveal ─────────────────── */
.slide-frame.in-view .earnings-card svg path:nth-of-type(1),
.slide-frame.in-view .vd-chart-card svg path:nth-of-type(1) {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: chart-draw 2.2s 0.5s cubic-bezier(0.25, 0.7, 0.3, 1) forwards;
}

.slide-frame.in-view .earnings-card svg path:nth-of-type(2),
.slide-frame.in-view .vd-chart-card svg path:nth-of-type(2) {
  opacity: 0;
  animation: fade-in 1.4s 1.2s ease-out forwards;
}

.slide-frame.in-view .earnings-card svg circle,
.slide-frame.in-view .vd-chart-card svg circle {
  opacity: 0;
  animation: fade-in 0.6s 1.8s ease-out forwards;
}

@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes fade-in {
  to { opacity: 1; }
}

/* ── Compare matrix rows stagger in ─────────────────────── */
.slide-frame.in-view .compare-row {
  opacity: 0;
  transform: translateY(8px);
  animation: row-in 0.5s ease-out forwards;
}

.slide-frame.in-view .compare-row:nth-child(1) { animation-delay: 0.40s; }
.slide-frame.in-view .compare-row:nth-child(2) { animation-delay: 0.48s; }
.slide-frame.in-view .compare-row:nth-child(3) { animation-delay: 0.56s; }
.slide-frame.in-view .compare-row:nth-child(4) { animation-delay: 0.64s; }
.slide-frame.in-view .compare-row:nth-child(5) { animation-delay: 0.72s; }
.slide-frame.in-view .compare-row:nth-child(6) { animation-delay: 0.80s; }
.slide-frame.in-view .compare-row:nth-child(7) { animation-delay: 0.88s; }
.slide-frame.in-view .compare-row:nth-child(8) { animation-delay: 0.96s; }
.slide-frame.in-view .compare-row:nth-child(9) { animation-delay: 1.04s; }

@keyframes row-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Memory table rows stagger in ──────────────────────── */
.slide-frame.in-view .memory-table .row {
  opacity: 0;
  transform: translateY(6px);
  animation: row-in 0.4s ease-out forwards;
}

.slide-frame.in-view .memory-table .row:nth-child(1) { animation-delay: 0.45s; }
.slide-frame.in-view .memory-table .row:nth-child(2) { animation-delay: 0.52s; }
.slide-frame.in-view .memory-table .row:nth-child(3) { animation-delay: 0.59s; }
.slide-frame.in-view .memory-table .row:nth-child(4) { animation-delay: 0.66s; }
.slide-frame.in-view .memory-table .row:nth-child(5) { animation-delay: 0.73s; }
.slide-frame.in-view .memory-table .row:nth-child(6) { animation-delay: 0.80s; }

/* ── Deploy panel regions stagger in ───────────────────── */
.slide-frame.in-view .deploy-panel .region {
  opacity: 0;
  transform: translateX(-8px);
  animation: region-in 0.5s ease-out forwards;
}

.slide-frame.in-view .deploy-panel .region:nth-child(2) { animation-delay: 0.45s; }
.slide-frame.in-view .deploy-panel .region:nth-child(3) { animation-delay: 0.55s; }
.slide-frame.in-view .deploy-panel .region:nth-child(4) { animation-delay: 0.65s; }
.slide-frame.in-view .deploy-panel .region:nth-child(5) { animation-delay: 0.75s; }
.slide-frame.in-view .deploy-panel .region:nth-child(6) { animation-delay: 0.85s; }

@keyframes region-in {
  to { opacity: 1; transform: translateX(0); }
}

/* ── Scenario picker items stagger in ──────────────────── */
.slide-frame.in-view .scenario-card .item {
  opacity: 0;
  transform: translateX(-6px);
  animation: region-in 0.4s ease-out forwards;
}

.slide-frame.in-view .scenario-card .item:nth-child(2) { animation-delay: 0.40s; }
.slide-frame.in-view .scenario-card .item:nth-child(3) { animation-delay: 0.48s; }
.slide-frame.in-view .scenario-card .item:nth-child(4) { animation-delay: 0.56s; }
.slide-frame.in-view .scenario-card .item:nth-child(5) { animation-delay: 0.64s; }
.slide-frame.in-view .scenario-card .item:nth-child(6) { animation-delay: 0.72s; }

/* ── Checklist items stagger in ────────────────────────── */
.slide-frame.in-view .checklist .item {
  opacity: 0;
  transform: translateX(-6px);
  animation: region-in 0.45s ease-out forwards;
}

.slide-frame.in-view .checklist .item:nth-child(2) { animation-delay: 0.40s; }
.slide-frame.in-view .checklist .item:nth-child(3) { animation-delay: 0.48s; }
.slide-frame.in-view .checklist .item:nth-child(4) { animation-delay: 0.56s; }
.slide-frame.in-view .checklist .item:nth-child(5) { animation-delay: 0.64s; }
.slide-frame.in-view .checklist .item:nth-child(6) { animation-delay: 0.72s; }
.slide-frame.in-view .checklist .item:nth-child(7) { animation-delay: 0.80s; }

/* ── Ownership list items stagger in ───────────────────── */
.slide-frame.in-view .own-item {
  opacity: 0;
  transform: translateY(8px);
  animation: row-in 0.5s ease-out forwards;
}

.slide-frame.in-view .own-item:nth-child(1) { animation-delay: 0.35s; }
.slide-frame.in-view .own-item:nth-child(2) { animation-delay: 0.42s; }
.slide-frame.in-view .own-item:nth-child(3) { animation-delay: 0.49s; }
.slide-frame.in-view .own-item:nth-child(4) { animation-delay: 0.56s; }
.slide-frame.in-view .own-item:nth-child(5) { animation-delay: 0.63s; }
.slide-frame.in-view .own-item:nth-child(6) { animation-delay: 0.70s; }
.slide-frame.in-view .own-item:nth-child(7) { animation-delay: 0.77s; }
.slide-frame.in-view .own-item:nth-child(8) { animation-delay: 0.84s; }

/* ── Timeline steps stagger ────────────────────────────── */
.slide-frame.in-view .timeline-step {
  opacity: 0;
  transform: translateY(10px);
  animation: row-in 0.6s ease-out forwards;
}

.slide-frame.in-view .timeline-step:nth-child(1) { animation-delay: 0.45s; }
.slide-frame.in-view .timeline-step:nth-child(2) { animation-delay: 0.58s; }
.slide-frame.in-view .timeline-step:nth-child(3) { animation-delay: 0.71s; }
.slide-frame.in-view .timeline-step:nth-child(4) { animation-delay: 0.84s; }

/* ── Stat cards stagger (capabilities + vision dashboard) */
.slide-frame.in-view .grid-item,
.slide-frame.in-view .vd-stat {
  opacity: 0;
  transform: translateY(8px);
  animation: row-in 0.5s ease-out forwards;
}

.slide-frame.in-view .grid-item:nth-child(1),
.slide-frame.in-view .vd-stat:nth-child(1) { animation-delay: 0.35s; }
.slide-frame.in-view .grid-item:nth-child(2),
.slide-frame.in-view .vd-stat:nth-child(2) { animation-delay: 0.43s; }
.slide-frame.in-view .grid-item:nth-child(3),
.slide-frame.in-view .vd-stat:nth-child(3) { animation-delay: 0.51s; }
.slide-frame.in-view .grid-item:nth-child(4),
.slide-frame.in-view .vd-stat:nth-child(4) { animation-delay: 0.59s; }
.slide-frame.in-view .grid-item:nth-child(5) { animation-delay: 0.67s; }
.slide-frame.in-view .grid-item:nth-child(6) { animation-delay: 0.75s; }
.slide-frame.in-view .grid-item:nth-child(7) { animation-delay: 0.83s; }

/* ── Gateway tiles stagger ─────────────────────────────── */
.slide-frame.in-view .gateway-tile {
  opacity: 0;
  transform: translateY(10px);
  animation: row-in 0.55s ease-out forwards;
}

.slide-frame.in-view .gateway-tile:nth-child(1) { animation-delay: 0.40s; }
.slide-frame.in-view .gateway-tile:nth-child(2) { animation-delay: 0.50s; }
.slide-frame.in-view .gateway-tile:nth-child(3) { animation-delay: 0.60s; }
.slide-frame.in-view .gateway-tile:nth-child(4) { animation-delay: 0.70s; }

/* ── Cover smile mark subtle breath ────────────────────── */
@keyframes cover-breath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

.cover-logo {
  animation: cover-breath 6s ease-in-out infinite;
  transform-origin: center;
}

/* ── Reduced-motion override ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .slide-frame .slide .chrome-top,
  .slide-frame .slide .slide-body,
  .slide-frame .slide .chrome-bottom,
  .slide-frame .slide > div:not(.chrome-top):not(.slide-body):not(.chrome-bottom),
  .compare-row, .memory-table .row, .deploy-panel .region,
  .scenario-card .item, .checklist .item, .own-item,
  .timeline-step, .grid-item, .vd-stat, .gateway-tile {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .ai-orb .ring, .voice-orb .ring,
  .ai-orb .core, .voice-orb .core,
  .ai-orb .ping, .phone .live-badge, .phone .live-badge::before,
  .voice-orb .wave-bar, .cover-logo,
  .deploy-panel .region.active .status-dot,
  .deploy-panel .dp-status::before, .vd-bar .right::before,
  .scenario-card .head .dot, .timeline-step.active::before {
    animation: none !important;
  }
  .earnings-card svg path, .vd-chart-card svg path,
  .earnings-card svg circle, .vd-chart-card svg circle {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    animation: none !important;
  }
}

/* ════════════════════════════════════════════════════════
   NSFW DARK MODE — body.nsfw flips the whole color system
   ════════════════════════════════════════════════════════ */

body.nsfw {
  --black: #fafafa;       /* "ink" color — flips to light */
  --text: #fafafa;
  --muted: #888888;       /* mid-gray for secondary text */
  --faint: #555555;       /* footer / faint accent */
  --hairline: #1f1f1f;    /* divider lines */
  --white: #0a0a0a;       /* "paper" color — flips to dark */
  --bg: #050505;          /* page background */
  --accent: #ef4444;      /* punchier on dark */
}

body.nsfw .edition-tag { color: var(--accent); }

/* Slide canvas itself */
body.nsfw .slide-frame {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45),
              0 2px 6px rgba(0, 0, 0, 0.30);
}

/* Toolbar (top SFW/NSFW switcher) */
body.nsfw .toolbar {
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid #1a1a1a;
}
body.nsfw .toolbar-title { color: #fafafa; }
body.nsfw .toolbar-links a { color: #888888; }
body.nsfw .toolbar-links a:hover,
body.nsfw .toolbar-links a.active {
  background: #fafafa;
  color: #0a0a0a;
}

/* Cards / panels — any literal "background: white" or "bg-card" surface */
body.nsfw .deploy-panel,
body.nsfw .vision-dashboard,
body.nsfw .earnings-card,
body.nsfw .scenario-card,
body.nsfw .checklist,
body.nsfw .compare,
body.nsfw .gateway-tile,
body.nsfw .profile-card,
body.nsfw .pricing-card,
body.nsfw .vd-stat,
body.nsfw .vd-chart-card,
body.nsfw .grid-item.with-hairline {
  background: #0e0e0e;
  border-color: #1f1f1f;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

body.nsfw .compare-row:first-child,
body.nsfw .vd-bar,
body.nsfw .deploy-panel .dp-head {
  background: #060606;
  border-bottom-color: #1f1f1f;
}

body.nsfw .compare-row { border-top-color: #1f1f1f; }
body.nsfw .compare-row .cell { border-left-color: #1f1f1f; }

body.nsfw .compare-row.head .cell.us {
  background: #fafafa;
  color: #0a0a0a;
}

/* "Check no" dash badge — dark in light mode, lighter dark in dark mode */
body.nsfw .check-no { background: #1a1a1a; color: #444444; }

/* Memory table */
body.nsfw .memory-table .row .label { color: #fafafa; }
body.nsfw .memory-table .row .value { color: #d4d4d8; }

/* Tip menu (scenario card on slide 8) */
body.nsfw .scenario-card .item { border-top-color: #1f1f1f; }
body.nsfw .scenario-card .item:last-child { border-bottom-color: #1f1f1f; }
body.nsfw .scenario-card .item .price { background: #1a1a1a; color: #fafafa; }
body.nsfw .scenario-card .item.active .price { background: #fafafa; color: #0a0a0a; }

/* Deploy panel rows */
body.nsfw .deploy-panel .region { border-bottom-color: #1f1f1f; }
body.nsfw .deploy-panel .flag { background: #1a1a1a; color: #fafafa; }
body.nsfw .deploy-panel .region.active .flag { background: #fafafa; color: #0a0a0a; }

/* Gateway tile inner pieces */
body.nsfw .gateway-tile .badge { background: #1a1a1a; color: #888888; }

/* Ownership list — black circles → light circles on dark */
body.nsfw .own-item .own-check { background: #fafafa; color: #0a0a0a; }

/* Phone mockup adjustments — keep white phone bezel readable */
body.nsfw .phone {
  background: #0a0a0a;
  border-color: #fafafa;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
body.nsfw .phone .status-bar { color: #fafafa; }
body.nsfw .phone .video {
  background: linear-gradient(135deg, #1a1a2e 0%, #0e0e1a 60%, #050510 100%);
}
body.nsfw .phone .control-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #fafafa;
}

/* AI orb / voice orb rings */
body.nsfw .ai-orb .ring,
body.nsfw .voice-orb .ring {
  border-color: #2a2a2a;
}
body.nsfw .ai-orb .core,
body.nsfw .voice-orb .core,
body.nsfw .voice-orb .wave-bar {
  background: #fafafa;
}

/* Timeline (Why Now slide) */
body.nsfw .timeline-step { border-top-color: #1f1f1f; }
body.nsfw .timeline-step.active { border-top-color: #fafafa; }
body.nsfw .timeline-step::before { background: #0a0a0a; border-color: #2a2a2a; }
body.nsfw .timeline-step.active::before { background: #fafafa; border-color: #fafafa; }

/* Chrome (header + footer of each slide) — already use vars */
body.nsfw .section-label::before { background: #fafafa; }

/* Chart sparkline strokes */
body.nsfw .earnings-card svg path,
body.nsfw .vd-chart-card svg path { stroke: #fafafa; }
body.nsfw .earnings-card svg circle,
body.nsfw .vd-chart-card svg circle { fill: #fafafa; stroke: #fafafa; }

/* Cover smile (the big mark on slide 1) */
body.nsfw .cover-smile rect,
body.nsfw .cover-smile path { stroke: #fafafa; }
body.nsfw .cover-smile circle[r="5"] { fill: #fafafa; }
body.nsfw .cover-smile circle[r="2"] { fill: #0a0a0a; }

/* Chrome smile (small mark in each slide header) */
body.nsfw .smile rect,
body.nsfw .smile path { stroke: #fafafa; }
body.nsfw .smile circle[r="5"] { fill: #fafafa; }
body.nsfw .smile circle[r="2"] { fill: #0a0a0a; }

/* Cards bg gradients (ownership slide etc.) — punch a darker version */
body.nsfw .accent\/20 { background: #1a0e1a; }

/* Progress bar fill */
body.nsfw .deck-progress-fill { background: #fafafa; }
body.nsfw .deck-counter,
body.nsfw .deck-hint {
  background: rgba(15, 15, 15, 0.92);
  border-color: #1f1f1f;
  color: #888888;
}
body.nsfw .deck-hint kbd {
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: #fafafa;
}
body.nsfw .deck-hint span { color: #444444; }

/* ── Top progress bar + counter + keyboard hint ─────────── */
.deck-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}

.deck-progress-fill {
  height: 100%;
  background: #0a0a0a;
  transition: width 0.25s ease-out;
}

.deck-counter {
  position: fixed;
  bottom: 24px;
  left: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  z-index: 60;
  pointer-events: none;
}

.deck-hint {
  position: fixed;
  bottom: 24px;
  right: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.deck-hint kbd {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  background: #f4f4f4;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  color: var(--black);
}

.deck-hint span {
  color: var(--faint);
}

/* ── Presenter mode (fullscreen) ────────────────────────── */
body.presenter-mode {
  background: #000;
  overflow: hidden;
}

body.presenter-mode .toolbar,
body.presenter-mode .deck-hint {
  display: none;
}

body.presenter-mode .deck {
  padding: 0;
  gap: 0;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body.presenter-mode .slide-frame {
  width: calc(100vh * 16 / 9);
  max-width: 100vw;
  height: 100vh;
  max-height: calc(100vw * 9 / 16);
  aspect-ratio: 16 / 9;
  border-radius: 0;
  box-shadow: none;
  scroll-snap-align: center;
  margin: auto;
}

body.presenter-mode .deck-counter {
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

body.presenter-mode .deck-progress-fill {
  background: white;
}

/* ── Grid mode (overview of all slides) ────────────────── */
body.grid-mode .toolbar { z-index: 80; }
body.grid-mode .deck {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
  padding: 80px 28px 60px;
}

body.grid-mode .slide-frame {
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

body.grid-mode .slide-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

/* ── Print to PDF ───────────────────────────────────────── */
@media print {
  @page {
    size: 1920px 1080px;
    margin: 0;
  }
  body { background: white; }
  .toolbar { display: none; }
  .deck { padding: 0; gap: 0; }
  .slide-frame {
    width: 1920px;
    height: 1080px;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
    page-break-after: always;
    break-after: page;
  }
  .slide { transform: none !important; }
}
