/* ==========================================
   KINIQ AI — Investor Deck Stylesheet
   ========================================== */

:root {
  --bg: #111827;
  --bg2: #1a2535;
  --teal: #00d4be;
  --teal-dim: rgba(0,212,190,0.12);
  --teal-glow: rgba(0,212,190,0.28);
  --purple: #8b5cf6;
  --purple-dim: rgba(139,92,246,0.12);
  --purple-glow: rgba(139,92,246,0.3);
  --red: #f87171;
  --red-dim: rgba(248,113,113,0.1);
  --amber: #fbbf24;
  --text: #f9fafb;
  --text2: rgba(249,250,251,0.68);
  --text3: rgba(249,250,251,0.38);
  --border: rgba(255,255,255,0.09);
  --border-teal: rgba(0,212,190,0.28);
  --font-d: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;
  --r: 14px;
  --r-sm: 8px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ===== DECK SHELL ===== */
#deck { position: fixed; inset: 0; display: flex; flex-direction: column; }

/* ===== NAV ===== */
#deck-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  background: rgba(5,11,24,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  z-index: 50;
}
.deck-logo {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 900;
}
.logo-k { color: var(--teal); }
.logo-rest { color: var(--text); }
.logo-ai { color: var(--purple); font-size: 0.85rem; vertical-align: super; }
#slide-counter {
  font-family: var(--font-d);
  font-size: 0.9rem;
  color: var(--text3);
  font-weight: 600;
}
#slide-counter #current-slide { color: var(--teal); font-size: 1.1rem; }
#deck-controls { display: flex; align-items: center; gap: 0.75rem; }
.deck-home-btn {
  color: var(--text3);
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  margin-right: 0.5rem;
}
.deck-home-btn:hover { color: var(--teal); }
.ctrl-btn {
  background: var(--teal-dim);
  border: 1px solid var(--border-teal);
  color: var(--teal);
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.ctrl-btn:hover { background: var(--teal); color: var(--bg); }
.ctrl-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  height: 3px;
  background: var(--border);
  flex-shrink: 0;
}
#progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  transition: width 0.4s var(--ease);
  box-shadow: 0 0 8px var(--teal-glow);
}

/* ===== SLIDE DOTS ===== */
#slide-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1.5px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.3s;
}
.slide-dot.active {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 8px var(--teal-glow);
  transform: scale(1.4);
}
.slide-dot:hover:not(.active) { background: rgba(0,229,204,0.3); }

/* ===== SLIDES CONTAINER ===== */
#slides-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* ===== SLIDE BASE ===== */
.slide {
  position: absolute;
  inset: 0;
  padding: 2.5rem 3rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

/* Backgrounds */
.slide-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.glow-teal { background: radial-gradient(ellipse 60% 60% at 15% 50%, rgba(0,229,204,0.07) 0%, transparent 70%); }
.glow-purple { background: radial-gradient(ellipse 60% 60% at 20% 40%, rgba(124,58,237,0.09) 0%, transparent 70%); }
.glow-purple.right { background: radial-gradient(ellipse 50% 50% at 85% 20%, rgba(124,58,237,0.09) 0%, transparent 70%); }
.glow-red { background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(239,68,68,0.06) 0%, transparent 70%); }
.slide-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,204,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,204,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-red {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.teal-text { color: var(--teal); }
.red-text { color: #ef4444; }
.slide-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(0,229,204,0.2);
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.slide-label.red { color: var(--red); background: var(--red-dim); border-color: rgba(239,68,68,0.2); }
.slide-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.slide-inner h2 {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
.slide-inner.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.col-text h2 { font-family: var(--font-d); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; }
.slide-body { color: var(--text2); font-size: 0.95rem; line-height: 1.8; margin-bottom: 0.9rem; }
.slide-body strong { color: var(--text); }
.slide-body em { color: var(--teal); font-style: normal; }
.slide-body-small { color: var(--text3); font-size: 0.82rem; line-height: 1.7; margin-top: 0.75rem; }

/* ==================== SLIDE 1: COVER ==================== */
#slide-1 { text-align: center; align-items: center; }
.cover-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cover-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,229,204,0.08); border: 1px solid rgba(0,229,204,0.2);
  border-radius: var(--r-pill); padding: 0.4rem 1rem;
  font-size: 0.75rem; font-weight: 600; color: var(--teal);
  margin-bottom: 2rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.cover-logo {
  font-family: var(--font-d);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.logo-k-xl { color: var(--teal); }
.logo-rest-xl { color: var(--text); }
.logo-ai-xl { color: var(--purple); font-size: 0.45em; vertical-align: super; }
.cover-headline {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text2);
}
.cover-sub { font-size: 1rem; color: var(--text3); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cover-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.cstat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.cstat-n { font-family: var(--font-d); font-size: 2rem; font-weight: 800; color: var(--text); }
.cstat-l { font-size: 0.72rem; color: var(--text3); text-align: center; max-width: 120px; }
.cstat-div { width: 1px; height: 44px; background: var(--border); }
.cover-contact { font-size: 0.78rem; color: var(--text3); letter-spacing: 0.05em; }

/* ==================== SLIDE 2: PROBLEM ==================== */
.problem-triptych { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 1.75rem; }
.trip-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.trip-card.accent { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.05); }
.trip-card:hover { transform: translateY(-3px); }
.trip-num {
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.trip-card.accent .trip-num { color: #ef4444; }
.trip-label { font-size: 0.875rem; color: var(--text2); line-height: 1.6; }
.trip-label strong { color: var(--text); }
.trip-icon { position: absolute; bottom: 1rem; right: 1rem; font-size: 2rem; opacity: 0.15; }
.problem-quote {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
}
.pq-bar { width: 3px; flex-shrink: 0; background: var(--purple); border-radius: 3px; align-self: stretch; }
.problem-quote p { font-size: 0.9rem; color: var(--text2); line-height: 1.75; font-style: italic; }
.problem-quote em { color: var(--teal); font-style: normal; font-weight: 600; }

/* ==================== SLIDE 3: INSIGHT ==================== */
.insight-pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.insight-pill {
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid;
}
.insight-pill.teal { color: var(--teal); background: var(--teal-dim); border-color: rgba(0,229,204,0.2); }
.insight-pill.purple { color: #c4b5fd; background: var(--purple-dim); border-color: rgba(124,58,237,0.25); }
.insight-card {
  background: rgba(8,15,32,0.8);
  border: 1px solid var(--border-teal);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.ic-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.9rem; font-size: 0.8rem; font-weight: 700; color: var(--text); }
.ic-tag { font-size: 0.65rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: var(--r-pill); }
.red-tag { color: #ef4444; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); }
.green-tag { color: #4ade80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); }
.ic-metrics { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.ic-metrics.dim { opacity: 0.5; }
.ic-metric { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.ic-label { color: var(--text3); }
.ic-val { color: var(--text2); font-weight: 600; }
.ic-val.teal-text { color: var(--teal); }
.ic-val.red-text { color: var(--red); }
.ic-vs {
  text-align: center;
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text3);
  padding: 0.75rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin: 0.75rem 0;
}

/* ==================== SLIDE 4: SOLUTION ==================== */
.solution-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.sf-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: all 0.3s;
}
.sf-step:hover { border-color: var(--border-teal); background: rgba(0,229,204,0.04); transform: translateY(-3px); }
.sf-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.sf-num { font-family: var(--font-d); font-size: 0.65rem; font-weight: 800; color: var(--teal); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.sf-step h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.sf-step p { font-size: 0.8rem; color: var(--text2); line-height: 1.65; margin-bottom: 0.75rem; }
.sf-tag { font-size: 0.65rem; font-weight: 600; color: var(--teal); background: var(--teal-dim); border: 1px solid rgba(0,229,204,0.15); padding: 0.2rem 0.6rem; border-radius: var(--r-pill); display: inline-block; }
.sf-arrow { font-size: 1.5rem; color: var(--teal); opacity: 0.35; flex-shrink: 0; padding: 0 0.25rem; }

/* ==================== SLIDE 5: MARKET ==================== */
.tam-stack { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.5rem; }
.tam-row { display: flex; align-items: center; gap: 1rem; }
.tam-color { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; }
.tam-info { display: flex; flex-direction: column; gap: 0.15rem; }
.tam-label { font-size: 0.8rem; color: var(--text2); }
.tam-size { font-family: var(--font-d); font-size: 1.1rem; font-weight: 800; color: var(--text); }
.market-note { font-size: 0.85rem; color: var(--text2); background: var(--teal-dim); border: 1px solid rgba(0,229,204,0.15); border-radius: var(--r-sm); padding: 0.9rem 1.1rem; line-height: 1.65; }
.market-note strong { color: var(--text); }
/* TAM Circles */
.tam-circles { position: relative; width: 100%; aspect-ratio: 1; max-width: 380px; margin: 0 auto; }
.tam-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.6s var(--ease);
}
.tam-circle.outer { width: 100%; height: 100%; border: 2px solid rgba(124,58,237,0.3); background: rgba(124,58,237,0.05); }
.tam-circle.mid { width: 68%; height: 68%; border: 2px solid rgba(0,229,204,0.35); background: rgba(0,229,204,0.07); }
.tam-circle.inner { width: 38%; height: 38%; border: 2px solid var(--teal); background: rgba(0,229,204,0.15); box-shadow: 0 0 30px var(--teal-glow); animation: circlePulse 3s ease-in-out infinite; }
@keyframes circlePulse { 0%,100%{box-shadow:0 0 30px var(--teal-glow)} 50%{box-shadow:0 0 50px var(--teal-glow), 0 0 80px rgba(0,229,204,0.15)} }
.tc-label { font-family: var(--font-d); font-weight: 800; font-size: 0.85rem; color: var(--text); line-height: 1; }
.tc-sublabel { font-size: 0.55rem; color: var(--text3); margin-top: 0.2rem; text-align: center; max-width: 90%; }
.tam-circle.outer .tc-label { font-size: 1.1rem; }
.tam-circle.outer .tc-sublabel { font-size: 0.65rem; }
.tam-circle.inner .tc-label { color: var(--teal); }

/* ==================== SLIDE 6: BUSINESS MODEL ==================== */
.biz-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.25rem; }
.biz-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem;
  transition: all 0.3s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.biz-card.highlight { border-color: var(--border-teal); background: rgba(0,229,204,0.04); }
.biz-card:hover { transform: translateY(-3px); border-color: var(--border-teal); }
.biz-icon { font-size: 1.6rem; }
.biz-stream { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text3); text-transform: uppercase; }
.biz-card h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; }
.biz-price { font-family: var(--font-d); font-size: 1.2rem; font-weight: 800; color: var(--teal); line-height: 1; }
.biz-price span { font-size: 0.7rem; font-weight: 500; color: var(--text3); }
.biz-card p { font-size: 0.78rem; color: var(--text2); line-height: 1.6; flex: 1; }
.biz-yr5 { font-size: 0.75rem; color: var(--text3); }
.biz-yr5 strong { color: inherit; }
.biz-total {
  text-align: center;
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text2);
  padding: 0.9rem;
  background: rgba(0,229,204,0.05);
  border: 1px solid rgba(0,229,204,0.15);
  border-radius: var(--r-sm);
}
.biz-total-note { font-size: 0.75rem; color: var(--text3); margin-left: 0.75rem; }

/* ==================== SLIDE 7: GTM ==================== */
.gtm-phases { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0.5rem; align-items: start; margin-top: 0.5rem; }
.gtm-phase {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: all 0.3s;
}
.gtm-phase:hover { border-color: var(--border-teal); transform: translateY(-3px); }
.gp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.gp-num { font-size: 0.62rem; font-weight: 800; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; }
.gp-time { font-size: 0.65rem; color: var(--text3); background: var(--border); padding: 0.2rem 0.5rem; border-radius: var(--r-pill); }
.gtm-phase h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.gp-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.gp-list li { font-size: 0.78rem; color: var(--text2); padding-left: 1rem; position: relative; line-height: 1.5; }
.gp-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 0.7rem; }
.gp-metric { font-family: var(--font-d); font-size: 0.8rem; font-weight: 700; color: var(--teal); background: var(--teal-dim); padding: 0.45rem 0.75rem; border-radius: var(--r-sm); }
.gtm-arrow { font-size: 1.25rem; color: var(--teal); opacity: 0.3; align-self: center; padding-top: 3rem; }

/* ==================== SLIDE 8: COMPETITION ==================== */
.comp-table-wrap { overflow-x: auto; margin-bottom: 1.25rem; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.comp-table th {
  background: rgba(0,229,204,0.07);
  color: var(--text2);
  font-weight: 700;
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-teal);
  white-space: nowrap;
  font-size: 0.75rem;
}
.comp-table th:first-child { text-align: left; }
.comp-table th:nth-child(2) { color: var(--teal); background: rgba(0,229,204,0.1); }
.comp-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  text-align: center;
  font-size: 0.8rem;
}
.comp-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table tr td:nth-child(2) { background: rgba(0,229,204,0.03); }
.check.teal { color: var(--teal); font-size: 1.1rem; font-weight: 900; }
.check.muted { color: var(--amber); font-size: 1rem; }
.cross { color: rgba(239,68,68,0.6); font-size: 1.1rem; }
.comp-moat {
  font-size: 0.82rem; color: var(--text2);
  background: var(--purple-dim); border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--r-sm); padding: 0.9rem 1.1rem; line-height: 1.65;
}
.comp-moat strong { color: var(--text); }

/* ==================== SLIDE 9: TRACTION ==================== */
.traction-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.25rem; }
.traction-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem;
  transition: all 0.3s;
}
.traction-card:hover { border-color: var(--border-teal); transform: translateY(-3px); }
.traction-card.big { grid-column: span 3; background: rgba(0,229,204,0.05); border-color: var(--border-teal); display: flex; align-items: center; gap: 2rem; }
.tr-num {
  font-family: var(--font-d);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.traction-card.big .tr-num { font-size: 4rem; }
.tr-label { font-size: 0.85rem; color: var(--text2); line-height: 1.5; }
.tr-label span { font-size: 0.75rem; color: var(--text3); display: block; }
.traction-milestone {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--teal-dim); border: 1px solid rgba(0,229,204,0.2);
  border-radius: var(--r-sm); padding: 0.75rem 1rem;
  font-size: 0.82rem; color: var(--text2);
}
.tm-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; animation: blink 2s infinite; }
.traction-milestone strong { color: var(--text); }

/* ==================== SLIDE 10: TEAM ==================== */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 1.25rem; }
.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--border-teal); transform: translateY(-3px); }
.team-card.advisor { border-style: dashed; }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(0,0,0,0.7);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.team-card h3 { font-family: var(--font-d); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.team-role { font-size: 0.75rem; color: var(--text3); line-height: 1.5; margin-bottom: 0.75rem; }
.team-cred { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: center; }
.cred-badge { font-size: 0.62rem; font-weight: 600; color: var(--text3); background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 0.2rem 0.5rem; border-radius: var(--r-pill); }
.team-note { font-size: 0.82rem; color: var(--text3); background: rgba(255,255,255,0.02); border: 1px dashed var(--border); border-radius: var(--r-sm); padding: 0.9rem 1.1rem; line-height: 1.65; }

/* ==================== SLIDE 11: FINANCIALS ==================== */
.fin-table-wrap { overflow-x: auto; margin-bottom: 0.85rem; }
.fin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.fin-table th { background: rgba(255,255,255,0.04); color: var(--text2); font-weight: 700; padding: 0.65rem 1rem; text-align: center; border-bottom: 1px solid var(--border); font-size: 0.75rem; }
.fin-table th:first-child { text-align: left; }
.fin-table td { padding: 0.55rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text2); text-align: center; font-size: 0.8rem; }
.fin-table td:first-child { text-align: left; color: var(--text3); font-size: 0.78rem; }
.fin-table .fin-revenue td { color: var(--text); font-weight: 700; background: rgba(0,229,204,0.04); }
.fin-table .teal-col { color: var(--teal) !important; background: rgba(0,229,204,0.05) !important; }
.fin-assumptions { font-size: 0.75rem; color: var(--text3); margin-bottom: 1rem; line-height: 1.6; }
.fin-revenue-bars { display: flex; flex-direction: column; gap: 0.5rem; }
.rev-bar-row { display: grid; grid-template-columns: 2rem 1fr 5rem; align-items: center; gap: 0.75rem; }
.rev-yr { font-family: var(--font-d); font-size: 0.72rem; font-weight: 700; color: var(--text3); }
.rev-bar-bg { background: rgba(255,255,255,0.05); border-radius: var(--r-pill); height: 7px; }
.rev-bar { height: 100%; width: var(--w); background: var(--purple); border-radius: var(--r-pill); transition: width 1.5s var(--ease); }
.rev-bar.teal-bar { background: linear-gradient(90deg, var(--teal), #00b8a6); box-shadow: 0 0 10px var(--teal-glow); }
.rev-amt { font-family: var(--font-d); font-size: 0.75rem; font-weight: 700; color: var(--text2); text-align: right; }

/* ==================== SLIDE 12: ASK ==================== */
.ask-inner {}
.ask-inner h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin-bottom: 1.5rem; }
.ask-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; margin-bottom: 1.5rem; }
.ask-term-card {
  background: rgba(8,15,32,0.8);
  border: 1px solid var(--border-teal);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0,229,204,0.07);
}
.ask-terms { display: flex; flex-direction: column; gap: 0.9rem; }
.ask-term { display: flex; justify-content: space-between; align-items: center; padding-bottom: 0.9rem; border-bottom: 1px solid var(--border); }
.ask-term:last-child { border-bottom: none; padding-bottom: 0; }
.ask-term.highlight-term { background: rgba(0,229,204,0.05); border: 1px solid rgba(0,229,204,0.15); border-radius: var(--r-sm); padding: 0.7rem 0.9rem; margin-top: 0.5rem; }
.at-label { font-size: 0.78rem; color: var(--text3); font-weight: 500; }
.at-val { font-family: var(--font-d); font-size: 0.95rem; font-weight: 800; color: var(--text); }
.ask-right h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.uof-bars { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.25rem; }
.uof-row { display: flex; flex-direction: column; gap: 0.35rem; }
.uof-label { font-size: 0.78rem; color: var(--text2); }
.uof-bar-wrap { display: flex; align-items: center; gap: 0.75rem; }
.uof-bar-wrap > div { flex: 1; background: rgba(255,255,255,0.05); border-radius: var(--r-pill); height: 8px; }
.uof-bar { height: 100%; width: var(--w); background: var(--c); border-radius: var(--r-pill); box-shadow: 0 0 8px var(--c); animation: barIn 1.5s var(--ease) both; }
@keyframes barIn { from{width:0} to{width:var(--w)} }
.uof-bar-wrap span { font-size: 0.72rem; color: var(--text3); font-weight: 600; white-space: nowrap; font-family: var(--font-d); }
.ask-milestone-box {
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
}
.ask-milestone-box h4 { font-family: var(--font-d); font-size: 0.85rem; font-weight: 700; color: var(--text2); margin-bottom: 0.6rem; }
.ask-milestone-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.ask-milestone-box li { font-size: 0.78rem; color: var(--text2); }
.ask-contact {
  background: rgba(0,229,204,0.05);
  border: 1px solid var(--border-teal);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
}
.ac-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ac-text h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.ac-text p { font-size: 0.82rem; color: var(--text3); }
.ac-details { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ac-link {
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s;
}
.ac-link:hover { opacity: 0.8; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal), #00b8a6);
  color: var(--bg); font-family: var(--font-d); font-size: 0.875rem; font-weight: 700;
  padding: 0.7rem 1.5rem; border-radius: var(--r-pill);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 0 20px var(--teal-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 35px var(--teal-glow); }
.btn-primary svg { width: 16px; height: 16px; }

/* ===== KEYBOARD HINT ===== */
#kb-hint {
  position: fixed;
  bottom: 1.25rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; color: var(--text3);
  background: rgba(5,11,24,0.8);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.4rem 1rem;
  backdrop-filter: blur(10px);
  transition: opacity 0.5s;
}
#kb-hint kbd { background: var(--border); border-radius: 4px; padding: 0.15rem 0.4rem; font-size: 0.7rem; }

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