/* ═══════════════════════════════════════════════════════════════
   SECUREWISE.AI — INVESTOR PITCH DECK
   Design System: Enterprise Dark · Syne + Plus Jakarta Sans
   Palette: Deep Navy · Cyan Teal · Slate
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg:          #0A1628;
  --surface:     #111F36;
  --surface-2:   #162840;
  --border:      #1E3A5F;
  --border-2:    #243F66;
  --accent:      #00D4AA;
  --accent-2:    #00A896;
  --accent-dim:  rgba(0,212,170,0.12);
  --accent-glow: rgba(0,212,170,0.25);
  --text:        #F8FAFC;
  --text-muted:  #94A3B8;
  --text-dim:    #64748B;
  --red:         #FF4D6D;
  --red-dim:     rgba(255,77,109,0.12);
  --orange:      #FF8C42;
  --orange-dim:  rgba(255,140,66,0.12);
  --green:       #4ADE80;
  --green-dim:   rgba(74,222,128,0.12);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --slide-w: 1280px;
  --slide-h: 720px;
  --nav-h:   56px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.accent { color: var(--accent); }
strong  { font-weight: 700; color: var(--text); }

/* ── NAVIGATION ──────────────────────────────────────────────── */
.deck-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-btn {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.nav-btn:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
}
.slide-counter {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  min-width: 48px;
  text-align: center;
}
#currentSlide { color: var(--accent); font-weight: 700; }

.nav-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  cursor: pointer;
  transition: all 0.25s;
}
.nav-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

/* ── DECK CONTAINER ──────────────────────────────────────────── */
.deck-container {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  overflow: hidden;
}

/* ── SLIDES ──────────────────────────────────────────────────── */
.slide {
  position: absolute;
  inset: 0;
  padding: 32px 52px 44px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1),
              transform 0.45s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

/* ── BACKGROUND GRID ─────────────────────────────────────────── */
.slide-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,95,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,95,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── SLIDE HEADER ────────────────────────────────────────────── */
.slide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.slide-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.slide-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.slide-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
}

/* ── SLIDE HEADLINE ──────────────────────────────────────────── */
.slide-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

/* ── SLIDE FOOTER ────────────────────────────────────────────── */
.slide-footer {
  position: absolute;
  bottom: 16px; left: 52px; right: 52px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  z-index: 1;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.8; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: var(--delay, 0s);
}
.slide.active .animate-in {
  animation-play-state: running;
}
.slide:not(.active) .animate-in {
  animation-play-state: paused;
  opacity: 0;
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 1 — COVER
════════════════════════════════════════════════════════════════ */
.slide-cover {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 0;
}

.cover-glow {
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cover-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.cover-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  font-family: var(--font-mono);
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-glow 2s ease-in-out infinite;
}

.cover-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cover-logo-mark {
  animation: float 4s ease-in-out infinite;
}
.cover-company {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.cover-headline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.cover-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.cover-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.cover-meta {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
}
.meta-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}
.meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
}
.meta-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Cover visual */
.cover-visual {
  flex: 0 0 380px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,168,150,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orb-3 {
  width: 360px; height: 360px;
  border: 1px solid rgba(0,212,170,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 30s linear infinite;
}

.hex-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.hex-row {
  display: flex;
  gap: 8px;
}
.hex-row.offset {
  margin-left: 52px;
}
.hex {
  width: 88px; height: 88px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.hex::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0,212,170,0.03) 100%);
}
.hex.active {
  border-color: rgba(0,212,170,0.4);
  background: rgba(0,212,170,0.06);
  color: var(--accent);
}
.hex span { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════════════
   SLIDE 2 — PROBLEM
════════════════════════════════════════════════════════════════ */
.problem-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
}

.problem-pains {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  transition: border-color 0.2s;
}
.pain-item:hover { border-color: rgba(255,77,109,0.3); }
.pain-icon { flex-shrink: 0; margin-top: 1px; }
.pain-item strong { color: var(--text); }

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.stat-red::before  { background: var(--red); }
.stat-orange::before { background: var(--orange); }
.stat-red   { border: 1px solid rgba(255,77,109,0.2); }
.stat-orange { border: 1px solid rgba(255,140,66,0.2); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-source {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 4px;
  font-family: var(--font-mono);
}

.problem-conclusion {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0,212,170,0.06) 0%, rgba(0,212,170,0.02) 100%);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
}
.conclusion-line {
  width: 3px;
  height: 48px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.problem-conclusion p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 3 — SOLUTION
════════════════════════════════════════════════════════════════ */
.solution-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.solution-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  flex: 1;
}

/* Hub and spoke */
.solution-hub {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-container {
  position: relative;
  width: 280px;
  height: 280px;
}
.hub-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: linear-gradient(135deg, rgba(0,212,170,0.15) 0%, rgba(0,168,150,0.1) 100%);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 10;
  box-shadow: 0 0 30px rgba(0,212,170,0.2);
}
.hub-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.hub-sub {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spoke {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  display: flex;
  align-items: center;
}
.spoke-node {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.3s;
  position: absolute;
}
.spoke-node:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* Position spokes around circle */
.spoke-1  { transform: translate(-50%,-50%) rotate(0deg)   translateX(110px) rotate(0deg); }
.spoke-2  { transform: translate(-50%,-50%) rotate(36deg)  translateX(110px) rotate(-36deg); }
.spoke-3  { transform: translate(-50%,-50%) rotate(72deg)  translateX(110px) rotate(-72deg); }
.spoke-4  { transform: translate(-50%,-50%) rotate(108deg) translateX(110px) rotate(-108deg); }
.spoke-5  { transform: translate(-50%,-50%) rotate(144deg) translateX(110px) rotate(-144deg); }
.spoke-6  { transform: translate(-50%,-50%) rotate(180deg) translateX(110px) rotate(-180deg); }
.spoke-7  { transform: translate(-50%,-50%) rotate(216deg) translateX(110px) rotate(-216deg); }
.spoke-8  { transform: translate(-50%,-50%) rotate(252deg) translateX(110px) rotate(-252deg); }
.spoke-9  { transform: translate(-50%,-50%) rotate(288deg) translateX(110px) rotate(-288deg); }
.spoke-10 { transform: translate(-50%,-50%) rotate(324deg) translateX(110px) rotate(-324deg); }

/* Draw lines from center */
.hub-container::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 110px; height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  transform-origin: 0 0;
  opacity: 0.3;
}

.solution-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-flow {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.flow-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.flow-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}
.flow-num {
  width: 18px; height: 18px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.flow-text {
  font-size: 11px;
  color: var(--text-muted);
}
.flow-text strong { color: var(--text); }
.flow-arrow {
  color: var(--accent);
  font-size: 14px;
  opacity: 0.5;
}

.maina-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.maina-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}
.maina-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.maina-label {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}

.framework-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ftag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.accent-tag {
  border-color: rgba(0,212,170,0.3);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 4 — PLATFORM
════════════════════════════════════════════════════════════════ */
.platform-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 200px repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.module-card:hover {
  border-color: rgba(0,212,170,0.3);
  background: var(--surface-2);
}
.module-card:hover::before { opacity: 1; }

.module-num {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.1em;
}
.module-icon { opacity: 0.8; }
.module-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.module-desc {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Center module — Maina AI */
.module-center {
  grid-column: 4;
  grid-row: 1 / 4;
  background: linear-gradient(135deg, rgba(0,212,170,0.1) 0%, rgba(0,168,150,0.05) 100%);
  border-color: rgba(0,212,170,0.35);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.module-center:hover { border-color: var(--accent); }
.module-center-icon { animation: float 4s ease-in-out infinite; }
.module-center-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.module-center-sub {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}
.module-center-tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.module-center-tags span {
  font-size: 9px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 4px;
  padding: 2px 8px;
  font-family: var(--font-mono);
}

.platform-roi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
}
.roi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.roi-label {
  font-size: 11px;
  color: var(--text-muted);
}
.roi-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.roi-red   { color: var(--red); }
.roi-green { color: var(--green); }
.roi-arrow {
  font-size: 20px;
  color: var(--text-dim);
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 5 — TRACTION
════════════════════════════════════════════════════════════════ */
.slide-traction { position: relative; }
.traction-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.traction-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.metric-card:hover {
  border-color: rgba(0,212,170,0.3);
  transform: translateY(-2px);
}
.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.metric-card:hover::before { opacity: 1; }

.metric-hero {
  background: linear-gradient(135deg, rgba(0,212,170,0.1) 0%, rgba(0,168,150,0.05) 100%);
  border-color: rgba(0,212,170,0.3);
}
.metric-hero::before { opacity: 1; }
.metric-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,170,0.08) 0%, transparent 70%);
}

.metric-zero {
  border-color: rgba(74,222,128,0.2);
  background: rgba(74,222,128,0.04);
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.metric-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.metric-sub {
  font-size: 10px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.traction-built {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
}
.built-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.built-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.built-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
.built-check {
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

.traction-cta {
  display: flex;
  justify-content: center;
}
.cta-box {
  background: linear-gradient(135deg, rgba(0,212,170,0.08) 0%, rgba(0,168,150,0.04) 100%);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: var(--radius-xl);
  padding: 16px 32px;
  text-align: center;
}
.cta-text {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 6 — MARKET
════════════════════════════════════════════════════════════════ */
.market-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.market-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  flex: 1;
}

/* TAM circles */
.market-tam {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tam-circles {
  position: relative;
  width: 260px;
  height: 200px;
  margin: 0 auto;
}
.tam-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tam-outer {
  width: 200px; height: 200px;
  top: 0; left: 30px;
  background: rgba(0,212,170,0.04);
  border: 1px solid rgba(0,212,170,0.15);
}
.tam-middle {
  width: 140px; height: 140px;
  top: 30px; left: 60px;
  background: rgba(0,212,170,0.07);
  border: 1px solid rgba(0,212,170,0.25);
}
.tam-inner {
  width: 80px; height: 80px;
  top: 60px; left: 90px;
  background: rgba(0,212,170,0.15);
  border: 1px solid rgba(0,212,170,0.5);
}
.tam-label-outer, .tam-label-middle, .tam-label-inner {
  position: absolute;
  text-align: center;
}
.tam-label-outer { top: 8px; left: 50%; transform: translateX(-50%); }
.tam-label-middle { top: 8px; left: 50%; transform: translateX(-50%); }
.tam-label-inner { top: 50%; left: 50%; transform: translate(-50%,-50%); }
.tam-title {
  font-size: 9px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
}
.tam-val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.tam-sub {
  font-size: 9px;
  color: var(--text-muted);
}

.tam-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tam-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.tam-cat { color: var(--text-muted); font-weight: 500; }
.tam-growth { color: var(--accent); font-family: var(--font-mono); font-size: 10px; }

/* Geo cards */
.market-geos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.geo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
}
.geo-card:hover { border-color: rgba(0,212,170,0.3); }
.geo-india { border-left: 3px solid #FF9933; }
.geo-gcc   { border-left: 3px solid #00843D; }
.geo-us    { border-left: 3px solid #3C3B6E; }

.geo-flag { font-size: 22px; }
.geo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.geo-tag {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
}
.geo-sam {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}
.geo-drivers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.geo-driver {
  font-size: 10px;
  color: var(--text-muted);
}
.geo-som {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.why-now {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
}
.why-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.why-items {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.why-item { font-size: 12px; color: var(--text-muted); }
.why-sep  { color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════════
   SLIDE 7 — COMPETITIVE
════════════════════════════════════════════════════════════════ */
.competitive-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.comp-table-wrap {
  flex: 1;
  overflow: hidden;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.comp-table thead tr {
  background: var(--surface-2);
}
.comp-table th {
  padding: 10px 12px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}
.comp-table th.col-company { text-align: left; }
.comp-table th.col-price   { text-align: right; }

.comp-row td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
.comp-row:hover td { background: rgba(255,255,255,0.02); }

.comp-name { text-align: left !important; }
.comp-logo-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.comp-flaw {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 2px;
}

.check {
  font-size: 14px;
  font-weight: 700;
}
.check.yes { color: var(--accent); }
.check.no  { color: var(--text-dim); opacity: 0.4; }
.check.winner-check {
  color: var(--accent);
  font-size: 16px;
  text-shadow: 0 0 8px rgba(0,212,170,0.5);
}

.price-cell {
  text-align: right !important;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.comp-winner td {
  background: rgba(0,212,170,0.05) !important;
  border-bottom: 1px solid rgba(0,212,170,0.2) !important;
  border-top: 1px solid rgba(0,212,170,0.2) !important;
}
.winner-name {
  color: var(--accent) !important;
  font-size: 14px !important;
}
.winner-sub { color: var(--accent) !important; opacity: 0.7; }
.winner-price { color: var(--accent) !important; }

.moat-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0,212,170,0.06) 0%, rgba(0,212,170,0.02) 100%);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.moat-callout p strong { color: var(--text); }

/* ════════════════════════════════════════════════════════════════
   SLIDE 8 — BUSINESS MODEL
════════════════════════════════════════════════════════════════ */
.bizmodel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.bizmodel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  flex: 1;
}

.biz-stream {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stream-header {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
}
.primary-stream  { background: rgba(0,212,170,0.08); }
.expansion-stream { background: rgba(0,168,150,0.06); }
.secondary-stream { background: rgba(30,58,95,0.5); }
.mssp-stream     { background: rgba(22,40,64,0.8); }

.stream-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-family: var(--font-mono);
}
.stream-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.stream-tiers {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.tier-row:last-child { border-bottom: none; padding-bottom: 0; }
.tier-row.blended {
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 6px;
  padding: 6px 8px;
  margin-top: 4px;
}
.tier-geo  { font-size: 11px; color: var(--text-muted); }
.tier-price { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.tier-note { font-size: 10px; color: var(--text-dim); }

.stream-items {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stream-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.stream-item:last-child { border-bottom: none; padding-bottom: 0; }
.stream-item .accent { font-weight: 700; font-family: var(--font-mono); font-size: 11px; }

.unit-economics {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
}
.ue-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.ue-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ue-item { text-align: center; }
.ue-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ue-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}
.ue-note {
  font-size: 9px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 9 — GO-TO-MARKET
════════════════════════════════════════════════════════════════ */
.gtm-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.gtm-phases {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  flex: 1;
  align-items: stretch;
}

.phase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
}
.phase-card:hover { border-color: rgba(0,212,170,0.3); }
.phase-1 { border-top: 2px solid var(--accent); }
.phase-2 { border-top: 2px solid var(--accent-2); }
.phase-3 { border-top: 2px solid rgba(0,212,170,0.4); }

.phase-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phase-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.phase-geo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.phase-timeline {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  width: fit-content;
  font-family: var(--font-mono);
}

.phase-why { flex: 1; }
.phase-why-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.phase-why-item {
  font-size: 11px;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.phase-why-item::before {
  content: '→';
  color: var(--accent);
  font-size: 10px;
  flex-shrink: 0;
}

.phase-target {
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius);
  padding: 10px 14px;
  text-align: center;
}
.phase-target-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.phase-target-arr {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 24px;
  color: var(--accent);
  opacity: 0.4;
}

.series-a-milestone {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0,212,170,0.06) 0%, rgba(0,212,170,0.02) 100%);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
}
.milestone-line {
  width: 3px;
  height: 40px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.milestone-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.milestone-metrics {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.m-metric { font-size: 13px; color: var(--text-muted); }
.m-sep    { color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════════
   SLIDE 10 — TECHNOLOGY MOAT
════════════════════════════════════════════════════════════════ */
.moat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.moats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  flex: 1;
}

.moat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.moat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,170,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.moat-card:hover {
  border-color: rgba(0,212,170,0.3);
  background: var(--surface-2);
}
.moat-card:hover::after { opacity: 1; }

.moat-wide {
  grid-column: 1 / 3;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.moat-wide .moat-body { flex: 1; }

.moat-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 0.1em;
}
.moat-icon-wrap { opacity: 0.9; }
.moat-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.moat-body {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 11 — FINANCIALS
════════════════════════════════════════════════════════════════ */
.financials-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.financials-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  flex: 1;
}

.chart-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.proj-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.proj-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  align-items: center;
}
.proj-row:last-child { border-bottom: none; }
.proj-header-row {
  background: var(--surface-2);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.current-row {
  background: rgba(0,212,170,0.04);
  border-left: 2px solid var(--accent);
}
.proj-row .accent {
  font-family: var(--font-mono);
  font-weight: 700;
}

.key-assumptions {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
}
.ka-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.ka-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.ka-item { text-align: center; }
.ka-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.ka-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.series-b-box {
  background: linear-gradient(135deg, rgba(0,212,170,0.06) 0%, rgba(0,212,170,0.02) 100%);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
}
.sb-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.sb-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.sb-detail {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════
   SLIDE 12 — THE ASK
════════════════════════════════════════════════════════════════ */
.slide-ask { position: relative; }
.ask-glow {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ask-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.ask-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  flex: 1;
}

.ask-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.raise-box {
  background: linear-gradient(135deg, rgba(0,212,170,0.1) 0%, rgba(0,168,150,0.05) 100%);
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: var(--radius-xl);
  padding: 20px;
  text-align: center;
}
.raise-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.raise-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.raise-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.raise-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,212,170,0.1);
  color: var(--text-muted);
}
.raise-detail-row:last-child { border-bottom: none; }
.raise-detail-row .accent { font-weight: 700; }

.funds-chart-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  flex: 1;
}
.funds-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
}
#fundsChart {
  display: block;
  margin: 0 auto;
}
.funds-legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-muted);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.ask-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.milestones {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.milestones-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.milestone-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.ms-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border-2);
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 3px;
  z-index: 1;
}
.ms-dot.ms-done {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(0,212,170,0.4);
}
.ms-dot.ms-target {
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0,212,170,0.3);
}
.ms-line {
  position: absolute;
  left: 5px;
  top: 15px;
  width: 2px;
  height: calc(100% + 8px);
  background: var(--border);
}
.ms-content {
  padding-bottom: 14px;
  flex: 1;
}
.ms-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.ms-val {
  font-size: 12px;
  color: var(--text-muted);
}

.investor-value {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  flex: 1;
}
.iv-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.iv-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.iv-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.iv-item:last-child { border-bottom: none; }
.iv-check {
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.closing-statement {
  background: linear-gradient(135deg, rgba(0,212,170,0.06) 0%, rgba(0,212,170,0.02) 100%);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
}
.closing-statement p {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ── KEYBOARD HINT ────────────────────────────────────────────── */
.keyboard-hint {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  z-index: 50;
  transition: opacity 0.5s;
  pointer-events: none;
}
.keyboard-hint.hidden { opacity: 0; }

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── PRINT / EXPORT ──────────────────────────────────────────── */
@media print {
  body { overflow: visible; height: auto; }
  .deck-nav, .keyboard-hint { display: none; }
  .deck-container { position: static; overflow: visible; }
  .slide {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    page-break-after: always;
    height: 720px;
    pointer-events: all;
  }
  .animate-in { opacity: 1 !important; animation: none !important; }
}