:root {
  --night: #050816;
  --navy: #071126;
  --cobalt: #0d47ff;
  --electric: #42c2ff;
  --cyan: #9ee7ff;
  --gold: #ffc857;
  --amber: #f59e0b;
  --ivory: #f8fafc;
  --muted: #9ca8c7;
  --panel: rgba(10, 20, 48, 0.74);
  --panel-strong: rgba(9, 18, 44, 0.92);
  --line: rgba(158, 231, 255, 0.22);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(13, 71, 255, 0.35), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(66, 194, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #020617 0%, #050816 52%, #071126 100%);
  color: var(--ivory);
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 75%, transparent 100%);
  z-index: 0;
}

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
  animation: float 14s var(--ease) infinite alternate;
}
.ambient-one { width: 260px; height: 260px; left: -70px; top: 140px; background: rgba(13, 71, 255, .36); }
.ambient-two { width: 360px; height: 360px; right: -120px; top: 42%; background: rgba(66, 194, 255, .20); animation-delay: -4s; }
.ambient-three { width: 220px; height: 220px; right: 18%; bottom: -80px; background: rgba(255, 200, 87, .16); animation-delay: -8s; }
@keyframes float { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px,-28px,0) scale(1.08); } }

.topbar {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 48px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ivory); text-decoration: none; }
.brand img { width: 44px; height: 44px; border-radius: 14px; }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-family: "Space Grotesk", Inter, sans-serif; letter-spacing: .01em; font-size: 15px; }
.brand em { color: var(--muted); font-size: 11px; font-style: normal; margin-top: 4px; text-transform: uppercase; letter-spacing: .18em; }
.topnav { display: flex; align-items: center; gap: 8px; }
.topnav a, .menu-button {
  color: var(--muted);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 16px;
  background: transparent;
  font: 700 12px/1 Inter, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .28s var(--ease);
}
.topnav a:hover, .menu-button:hover { color: var(--ivory); border-color: rgba(158, 231, 255, .25); background: rgba(255,255,255,.05); }
.menu-button { display: none; }
.mobile-menu {
  position: fixed;
  right: 24px;
  top: 96px;
  z-index: 55;
  display: none;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(5, 8, 22, .92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: grid; }
.mobile-menu a { color: var(--ivory); padding: 14px; border-radius: 16px; text-decoration: none; font-weight: 700; }
.mobile-menu a:hover { background: rgba(255,255,255,.07); }

.progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 4px;
  width: 0%;
  z-index: 80;
  background: linear-gradient(90deg, var(--cobalt), var(--electric), var(--gold));
  box-shadow: 0 0 22px rgba(66,194,255,.6);
}
.rail {
  position: fixed;
  right: max(18px, calc((100vw - 1240px) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 76px;
  display: grid;
  gap: 16px;
  place-items: center;
  color: var(--muted);
}
.rail-number { font-family: "Space Grotesk", Inter, sans-serif; color: var(--ivory); }
.rail-number span { font-size: 30px; font-weight: 700; }
.rail-number small { font-size: 12px; color: var(--muted); margin-left: 3px; }
.rail-line { height: 180px; width: 2px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.rail-line span { display: block; width: 100%; height: 0%; background: linear-gradient(to bottom, var(--electric), var(--gold)); border-radius: inherit; }
.rail-copy { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }

.deck { position: relative; z-index: 1; }
.slide {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px max(28px, calc((100vw - 1120px) / 2)) 76px;
  scroll-margin-top: 84px;
}
@supports (height: 100dvh) {
  .slide { min-height: 100dvh; }
}
.slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.slide-copy { max-width: 640px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt), var(--electric));
  border-radius: 99px;
}
.title {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.06em;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
}
.slide-copy { min-width: 0; }
.title .accent { color: transparent; background: linear-gradient(95deg, var(--electric), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.body {
  margin: 26px 0 0;
  color: #d7def8;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.64;
  max-width: 720px;
}
.body strong { color: var(--ivory); }
.action-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(158,231,255,.24);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--ivory);
  background: rgba(255,255,255,.05);
  box-shadow: 0 8px 26px rgba(0,0,0,.2);
  font-size: 13px;
  font-weight: 800;
}
.pill.gold { border-color: rgba(255,200,87,.4); color: var(--gold); }

.visual {
  min-height: 520px;
  display: grid;
  align-items: center;
  position: relative;
}
.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(66,194,255,.14), transparent 30%, rgba(255,200,87,.08));
}

.hero-card { padding: 28px; min-height: 520px; display: grid; align-content: space-between; }
.hero-orbit {
  position: relative;
  height: 300px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(66,194,255,.18), transparent 28%),
    linear-gradient(135deg, rgba(13,71,255,.24), rgba(255,200,87,.08));
  border: 1px solid rgba(158,231,255,.16);
  overflow: hidden;
}
.hero-orbit::after {
  content: "24 → 16 → 8 → 4";
  position: absolute;
  inset: auto 26px 26px 26px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -.05em;
}
.orbit-ring { position: absolute; border: 1px solid rgba(158,231,255,.24); border-radius: 999px; animation: spin 18s linear infinite; }
.orbit-ring.one { width: 250px; height: 250px; top: 25px; left: 50%; margin-left: -125px; }
.orbit-ring.two { width: 390px; height: 180px; top: 75px; left: 50%; margin-left: -195px; transform: rotate(-16deg); animation-duration: 24s; }
.orbit-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 24px rgba(255,200,87,.8); }
.orbit-dot.a { top: 48px; left: 46%; }
.orbit-dot.b { right: 58px; top: 142px; background: var(--electric); }
.orbit-dot.c { left: 68px; bottom: 72px; background: var(--cobalt); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.meta-box { padding: 16px; border-radius: 20px; background: rgba(0,0,0,.18); border: 1px solid rgba(255,255,255,.1); }
.meta-box small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; margin-bottom: 8px; }
.meta-box strong { font: 800 20px/1 "Space Grotesk", Inter, sans-serif; }

.stack { display: grid; gap: 14px; }
.stack-card { padding: 22px; border-radius: 24px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.055); display: grid; gap: 8px; transform: translateX(var(--offset, 0)); }
.stack-card:nth-child(2) { --offset: 26px; }
.stack-card:nth-child(3) { --offset: 52px; }
.stack-card:nth-child(4) { --offset: 78px; }
.stack-card small { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-weight: 900; }
.stack-card strong { font: 800 26px/1.08 "Space Grotesk", Inter, sans-serif; }
.stack-card span { color: #ccd5f6; line-height: 1.45; }

.team-card { padding: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.team-member { display: grid; grid-template-columns: 56px 1fr; gap: 14px; padding: 14px; border-radius: 18px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); align-items: start; }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font: 800 18px/1 "Space Grotesk", Inter, sans-serif; letter-spacing: .04em; color: #08142e; background: linear-gradient(135deg, var(--electric), var(--gold)); box-shadow: 0 6px 18px rgba(66,194,255,.18); }
.team-meta { display: grid; gap: 4px; min-width: 0; }
.team-meta strong { font: 800 15px/1.15 "Space Grotesk", Inter, sans-serif; }
.team-meta small { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; }
.team-meta span { color: #ccd5f6; font-size: 12.5px; line-height: 1.45; }
@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr; } }

.poster-card { padding: 14px; display: grid; gap: 14px; align-content: stretch; }
.poster-image { width: 100%; height: auto; max-height: 520px; object-fit: cover; object-position: center top; border-radius: 22px; display: block; }
.poster-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.poster-meta .meta-box { padding: 14px; border-radius: 18px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.poster-meta .meta-box small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; margin-bottom: 6px; }
.poster-meta .meta-box strong { font: 800 16px/1.1 "Space Grotesk", Inter, sans-serif; }
@media (max-width: 640px) { .poster-meta { grid-template-columns: 1fr; } }

.pillars { padding: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar { padding: 22px; border-radius: 20px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); display: grid; gap: 10px; align-content: start; }
.pillar-num { font: 900 14px/1 "Space Grotesk", Inter, sans-serif; letter-spacing: .22em; color: var(--gold); }
.pillar strong { font: 800 22px/1.1 "Space Grotesk", Inter, sans-serif; }
.pillar span { color: #ccd5f6; line-height: 1.45; font-size: 14px; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

.bracket { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 24px; min-height: 520px; align-items: stretch; }
.bracket-col { display: grid; align-content: center; gap: 12px; }
.bracket-node { padding: 18px 14px; min-height: 86px; display: grid; place-items: center; text-align: center; border-radius: 18px; border: 1px solid rgba(158,231,255,.18); background: rgba(255,255,255,.06); font-weight: 900; }
.bracket-node.large { min-height: 172px; color: var(--gold); border-color: rgba(255,200,87,.28); background: rgba(255,200,87,.08); }
.bracket-label { color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; text-align: center; }

.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.stat { padding: 24px; min-height: 165px; display: grid; align-content: space-between; border-radius: 24px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.055); }
.stat strong { font: 900 clamp(34px, 4vw, 56px)/.95 "Space Grotesk", Inter, sans-serif; letter-spacing: -.05em; color: transparent; background: linear-gradient(100deg, var(--electric), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.stat span { color: #cdd7f7; line-height: 1.4; font-weight: 700; }

.network { position: relative; min-height: 520px; padding: 34px; display: grid; place-items: center; }
.hub { width: 168px; height: 168px; border-radius: 999px; display: grid; place-items: center; text-align: center; font: 900 20px/1.08 "Space Grotesk", Inter, sans-serif; background: linear-gradient(135deg, rgba(13,71,255,.65), rgba(66,194,255,.22)); border: 1px solid rgba(158,231,255,.35); box-shadow: 0 0 70px rgba(13,71,255,.34); z-index: 2; }
.node { position: absolute; width: 132px; min-height: 98px; padding: 14px; display: grid; place-items: center; text-align: center; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #dce5ff; font-weight: 800; }
.node:nth-of-type(2) { top: 34px; left: 50%; transform: translateX(-50%); }
.node:nth-of-type(3) { top: 150px; right: 28px; }
.node:nth-of-type(4) { bottom: 56px; right: 70px; }
.node:nth-of-type(5) { bottom: 56px; left: 70px; }
.node:nth-of-type(6) { top: 150px; left: 28px; }
.network-line { position: absolute; width: 78%; height: 78%; border-radius: 50%; border: 1px dashed rgba(158,231,255,.20); animation: spin 38s linear infinite reverse; }

.timeline { display: grid; gap: 14px; padding: 28px; }
.timeline-item { display: grid; grid-template-columns: 68px 1fr; gap: 16px; align-items: start; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); }
.timeline-item b { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: rgba(66,194,255,.14); border: 1px solid rgba(66,194,255,.22); color: var(--cyan); }
.timeline-item strong { display: block; font: 800 21px/1.1 "Space Grotesk", Inter, sans-serif; margin-bottom: 8px; }
.timeline-item span { color: #cdd7f7; line-height: 1.45; }

.chart-card { padding: 30px; display: grid; gap: 22px; }
.chart-title { display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.chart-title strong { font: 800 26px/1 "Space Grotesk", Inter, sans-serif; }
.chart-title span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; }
.bar-row { display: grid; gap: 10px; }
.bar-label { display: flex; justify-content: space-between; color: #dce5ff; font-weight: 800; }
.bar { height: 16px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.bar span { display: block; height: 100%; width: var(--w); border-radius: inherit; background: linear-gradient(90deg, var(--cobalt), var(--electric), var(--gold)); transform-origin: left; transform: scaleX(.15); transition: transform 1.2s var(--ease); }
.slide.in-view .bar span { transform: scaleX(1); }

.table-card { padding: 26px; overflow: hidden; }
.clean-table { width: 100%; border-collapse: collapse; }
.clean-table th, .clean-table td { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.1); text-align: left; }
.clean-table th { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.clean-table td { color: #e6ecff; font-weight: 700; }
.clean-table tr:last-child td { border-bottom: 0; }
.clean-table .money { color: var(--gold); font-family: "Space Grotesk", Inter, sans-serif; }

.ask-card { padding: 32px; display: grid; gap: 22px; }
.ask-number { font: 900 clamp(62px, 8vw, 118px)/.85 "Space Grotesk", Inter, sans-serif; letter-spacing: -.08em; color: transparent; background: linear-gradient(100deg, var(--electric), var(--gold)); -webkit-background-clip: text; background-clip: text; }
.ask-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ask-tile { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); }
.ask-tile small { color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; margin-bottom: 8px; }
.ask-tile strong { font: 900 22px/1.1 "Space Grotesk", Inter, sans-serif; }

.source-note { margin-top: 18px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.reach-out { margin-top: 22px; padding: 18px 20px; border-radius: 18px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); display: grid; gap: 6px; }
.reach-out small { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 900; }
.reach-out strong { font: 800 18px/1.1 "Space Grotesk", Inter, sans-serif; }
.reach-out a { color: var(--ivory); text-decoration: none; font-size: 14px; }
.reach-out a:hover { color: var(--electric); }
.footer-note { position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 30; color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; text-align: center; pointer-events: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.slide.in-view .reveal { opacity: 1; transform: translateY(0); }
.slide.in-view .reveal:nth-child(2) { transition-delay: .07s; }
.slide.in-view .reveal:nth-child(3) { transition-delay: .13s; }
.slide.in-view .reveal:nth-child(4) { transition-delay: .19s; }

@media (max-width: 980px) {
  .topnav { display: none; }
  .menu-button { display: inline-flex; }
  .rail { display: none; }
  .slide { padding: 96px 22px 48px; }
  .slide-inner { grid-template-columns: 1fr; gap: 22px; }
  .visual { min-height: auto; }
  .hero-card, .network, .bracket { min-height: 460px; }
  .title { font-size: clamp(34px, 9vw, 60px); }
  .footer-note { display: none; }
}
@media (max-width: 640px) {
  .topbar { top: 12px; width: calc(100% - 22px); height: 64px; }
  .brand em { display: none; }
  .brand img { width: 40px; height: 40px; }
  .slide { padding: 88px 16px 40px; }
  .title { font-size: clamp(30px, 8.4vw, 46px); }
  .hero-meta, .stats-grid, .ask-grid { grid-template-columns: 1fr; }
  .bracket { grid-template-columns: 1fr; }
  .bracket-node.large { min-height: 86px; }
  .network { min-height: 680px; }
  .node { position: static; transform: none !important; width: 100%; margin-top: 10px; }
  .network-line { display: none; }
  .hub { margin: 0 auto 12px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .clean-table th:nth-child(3), .clean-table td:nth-child(3) { display: none; }
}

.download-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(13,71,255,.22), rgba(66,194,255,.18));
  color: var(--ivory);
  font: 700 12px/1 "Inter", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  margin-left: 18px;
}
.download-btn:hover { transform: translateY(-1px); border-color: rgba(255,200,87,.5); background: linear-gradient(135deg, rgba(13,71,255,.32), rgba(255,200,87,.18)); }
.download-btn:disabled { opacity: .6; cursor: progress; transform: none; }
.download-btn .dl-icon { font-size: 14px; font-weight: 900; color: var(--gold); }
.download-btn.is-loading .dl-label::after { content: "…"; }
@media (max-width: 900px) { .download-btn { display: none; } }

.export-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,10,28,.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: none; align-items: center; justify-content: center;
}
.export-overlay.is-active { display: flex; }
.export-card {
  padding: 36px 44px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(13,71,255,.22), rgba(4,10,28,.6));
  border: 1px solid rgba(255,255,255,.14);
  text-align: center; min-width: 320px;
}
.export-spinner {
  width: 36px; height: 36px; margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.export-status { color: var(--ivory); font: 700 14px/1.3 "Space Grotesk", sans-serif; letter-spacing: .04em; }
.export-sub { margin-top: 6px; color: var(--muted); font-size: 12px; }

/* PDF export mode: freeze each slide at 1600x900 and hide UI chrome */
body.exporting { overflow: visible !important; }
body.exporting .topbar,
body.exporting .rail,
body.exporting .footer-note,
body.exporting .progress,
body.exporting .mobile-menu,
body.exporting .ambient { display: none !important; }
body.exporting .deck { scroll-snap-type: none !important; height: auto !important; overflow: visible !important; display: block !important; }
body.exporting .slide {
  width: 1920px !important;
  height: 1080px !important;
  min-height: 0 !important;
  max-height: 1080px !important;
  scroll-snap-align: none !important;
  page-break-after: always;
  padding: 72px 96px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
body.exporting img { image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
body.exporting .slide-inner {
  height: 100% !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}
body.exporting .reveal { opacity: 1 !important; transform: none !important; }
