/* ═══════════════════════════════════════════════
   NOVASPARK PITCH DECK — DESIGN SYSTEM
   Palette: Copper & Slate (Luxury/Refined)
   Fonts: Cormorant Garamond + Manrope
═══════════════════════════════════════════════ */

:root {
  --slate-900: #1a1f26;
  --slate-800: #2F3640;
  --slate-700: #3d4654;
  --slate-600: #4e5a6e;
  --copper:    #B87333;
  --copper-lt: #D4A574;
  --copper-dk: #8a5520;
  --cream:     #F5F0EB;
  --cream-dk:  #e8e0d5;
  --white:     #ffffff;
  --text-dim:  rgba(245,240,235,0.55);
  --text-mid:  rgba(245,240,235,0.75);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--slate-900);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--copper), var(--copper-lt));
  width: 10%;
  z-index: 100;
  transition: width 0.5s var(--ease-out);
}

/* ── SLIDE COUNTER ── */
.slide-counter {
  position: fixed;
  top: 28px; left: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.counter-divider {
  width: 24px; height: 1px;
  background: var(--copper);
  opacity: 0.6;
}

/* ── NAV DOTS ── */
.slide-nav {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  padding: 0;
}
.nav-dot:hover {
  background: rgba(184,115,51,0.4);
  border-color: var(--copper);
}
.nav-dot.active {
  background: var(--copper);
  border-color: var(--copper);
  transform: scale(1.4);
}

/* ── ARROW BUTTONS ── */
.arrow-btn {
  position: fixed;
  bottom: 32px;
  z-index: 100;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.3);
  background: rgba(47,54,64,0.6);
  backdrop-filter: blur(8px);
  color: var(--copper-lt);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease-out);
}
.arrow-btn svg { width: 18px; height: 18px; }
.arrow-btn:hover {
  border-color: var(--copper);
  background: rgba(184,115,51,0.15);
  color: var(--copper);
  transform: scale(1.08);
}
.arrow-btn:disabled { opacity: 0.2; pointer-events: none; }
.arrow-prev { left: calc(50% - 52px); }
.arrow-next { left: calc(50% + 8px); }

/* ── SLIDES CONTAINER ── */
.slides-container {
  width: 100%; height: 100vh;
  position: relative;
}

/* ── SLIDE BASE ── */
.slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 80px 80px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.slide.exit-up {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.4s var(--ease-in-out), transform 0.4s var(--ease-in-out);
}

/* ── SLIDE LABEL ── */
.slide-label {
  position: absolute;
  top: 28px; right: 64px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.8;
}

/* ── SLIDE INNER LAYOUTS ── */
.slide-inner {
  width: 100%;
  max-width: 1100px;
}
.slide-inner.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.slide-inner.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── TYPOGRAPHY ── */
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}
.slide-title em {
  font-style: italic;
  color: var(--copper-lt);
}
.slide-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 420px;
}
.centered-body { max-width: 560px; text-align: center; }

/* ── ANIMATE-IN ── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.slide.active .animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   SLIDE 1 — COVER
════════════════════════════════════════ */
.slide-cover {
  background: var(--slate-900);
}

/* Geometric background */
.slide-bg-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.12);
}
.geo-c1 {
  width: 700px; height: 700px;
  right: -200px; top: -200px;
  border-color: rgba(184,115,51,0.1);
}
.geo-c2 {
  width: 400px; height: 400px;
  right: -50px; top: -50px;
  border-color: rgba(184,115,51,0.18);
  background: radial-gradient(circle at center, rgba(184,115,51,0.04) 0%, transparent 70%);
}
.geo-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(184,115,51,0.15), transparent);
  height: 1px;
}
.geo-l1 { width: 60%; top: 35%; left: 0; }
.geo-l2 { width: 40%; top: 65%; right: 0; }

.cover-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.cover-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.cover-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.cover-title em {
  font-style: italic;
  color: var(--copper-lt);
}
.cover-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.cover-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  margin-bottom: 24px;
}
.cover-meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.meta-dot { color: var(--copper); opacity: 0.6; }

.cover-wordmark {
  position: absolute;
  bottom: 40px;
  right: 80px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: rgba(184,115,51,0.2);
  z-index: 2;
}

/* ════════════════════════════════════════
   SLIDE 2 — PROBLEM
════════════════════════════════════════ */
.slide-problem { background: var(--slate-900); }

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,115,51,0.15);
  border-left: 3px solid var(--copper);
  border-radius: 4px;
  transition: background 0.3s;
}
.problem-card:hover { background: rgba(184,115,51,0.06); }
.pcard-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pcard-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-mid);
}
.pcard-text strong { color: var(--cream); font-weight: 600; }

/* ════════════════════════════════════════
   SLIDE 3 — SOLUTION
════════════════════════════════════════ */
.slide-solution { background: var(--slate-900); }

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  width: 100%;
  max-width: 960px;
}
.pillar {
  padding: 32px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,115,51,0.12);
  border-radius: 6px;
  text-align: left;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.pillar:hover {
  background: rgba(184,115,51,0.06);
  border-color: rgba(184,115,51,0.3);
  transform: translateY(-4px);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 12px;
}
.pillar-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
}
.pillar p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ════════════════════════════════════════
   SLIDE 4 — MARKET
════════════════════════════════════════ */
.slide-market { background: var(--slate-900); }

.market-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: -20px;
  position: relative;
  height: 320px;
}
.market-ring {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border: 1px solid rgba(184,115,51,0.25);
}
.ring-tam {
  width: 280px; height: 280px;
  background: rgba(184,115,51,0.06);
  top: 20px; left: 50%;
  transform: translateX(-50%);
}
.ring-sam {
  width: 190px; height: 190px;
  background: rgba(184,115,51,0.1);
  top: 65px; left: 50%;
  transform: translateX(-50%);
  border-color: rgba(184,115,51,0.4);
}
.ring-som {
  width: 110px; height: 110px;
  background: rgba(184,115,51,0.2);
  top: 105px; left: 50%;
  transform: translateX(-50%);
  border-color: var(--copper);
}
.ring-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--copper);
  text-transform: uppercase;
}
.ring-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.ring-unit {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--copper-lt);
  font-weight: 600;
}

.market-cagr {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.cagr-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--copper-lt);
  line-height: 1;
}
.cagr-pct {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--copper);
}
.cagr-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  width: 100%;
  margin-top: 4px;
}
.market-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 16px;
}

/* ════════════════════════════════════════
   SLIDE 5 — PRODUCT
════════════════════════════════════════ */
.slide-product { background: var(--slate-900); }

.product-screen {
  width: 100%;
  max-width: 820px;
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184,115,51,0.2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.screen-bar {
  background: #1e2530;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.screen-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sd-red    { background: #ff5f57; }
.sd-yellow { background: #febc2e; }
.sd-green  { background: #28c840; }
.screen-title-bar {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
  letter-spacing: 0.05em;
}
.screen-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  background: #1a1f28;
  min-height: 280px;
}
.screen-sidebar {
  background: #161b22;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.ss-item {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ss-item.active {
  color: var(--copper-lt);
  background: rgba(184,115,51,0.1);
  border-right: 2px solid var(--copper);
}
.screen-main { padding: 20px; }
.screen-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.skpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.skpi-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
}
.skpi-label {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.skpi-delta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
}
.skpi-delta.up   { color: #4ade80; }
.skpi-delta.down { color: #f87171; }

.screen-chart { margin-bottom: 14px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding: 0 4px;
}
.cbar {
  flex: 1;
  background: rgba(184,115,51,0.2);
  border-radius: 3px 3px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4px;
  transition: background 0.2s;
}
.cbar.active { background: rgba(184,115,51,0.7); }
.cbar span {
  font-family: var(--font-body);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
}
.screen-insight {
  background: rgba(184,115,51,0.08);
  border: 1px solid rgba(184,115,51,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.insight-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--copper);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.insight-text {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   SLIDE 6 — TRACTION
════════════════════════════════════════ */
.slide-traction { background: var(--slate-900); }

.traction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 100%;
  max-width: 900px;
  margin: 40px 0 48px;
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 8px;
  overflow: hidden;
}
.tstat {
  padding: 36px 28px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid rgba(184,115,51,0.1);
  text-align: center;
  transition: background 0.3s;
}
.tstat:last-child { border-right: none; }
.tstat:hover { background: rgba(184,115,51,0.05); }
.tstat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--copper-lt);
  line-height: 1;
  margin-bottom: 10px;
}
.tstat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.traction-logos { text-align: center; }
.tlogo-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.tlogos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.tlogo {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(245,240,235,0.25);
  text-transform: uppercase;
  transition: color 0.2s;
}
.tlogo:hover { color: rgba(245,240,235,0.5); }

/* ════════════════════════════════════════
   SLIDE 7 — BUSINESS MODEL
════════════════════════════════════════ */
.slide-bizmodel { background: var(--slate-900); }

.biz-metrics {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 6px;
  overflow: hidden;
}
.bm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(184,115,51,0.08);
  transition: background 0.2s;
}
.bm-row:last-child { border-bottom: none; }
.bm-row:hover { background: rgba(184,115,51,0.05); }
.bm-row span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
}
.bm-row strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--copper-lt);
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ptier {
  padding: 20px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,115,51,0.12);
  border-radius: 6px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.ptier:hover { border-color: rgba(184,115,51,0.3); }
.ptier.featured {
  background: rgba(184,115,51,0.08);
  border-color: rgba(184,115,51,0.4);
}
.ptier-badge {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--copper);
  color: var(--slate-900);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.ptier-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}
.ptier-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.ptier-price span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-dim);
}
.ptier-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   SLIDE 8 — TEAM
════════════════════════════════════════ */
.slide-team { background: var(--slate-900); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 960px;
  margin: 36px 0 32px;
}
.tmember {
  padding: 28px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,115,51,0.12);
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.tmember:hover {
  background: rgba(184,115,51,0.06);
  border-color: rgba(184,115,51,0.3);
  transform: translateY(-4px);
}
.tmember-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-dk), var(--copper));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin: 0 auto 14px;
  letter-spacing: 0.05em;
}
.tmember-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}
.tmember-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.tmember-bio {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-dim);
}

.team-advisors {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.adv-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}
.adv-name {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
}
.adv-sep { color: var(--copper); opacity: 0.4; }

/* ════════════════════════════════════════
   SLIDE 9 — FINANCIALS
════════════════════════════════════════ */
.slide-financials { background: var(--slate-900); }

.fin-assumptions {
  margin-top: 28px;
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 6px;
  overflow: hidden;
}
.fa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(184,115,51,0.08);
  transition: background 0.2s;
}
.fa-row:last-child { border-bottom: none; }
.fa-row:hover { background: rgba(184,115,51,0.05); }
.fa-row span {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-mid);
}
.fa-row strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--copper-lt);
}

.fin-chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(184,115,51,0.12);
  border-radius: 8px;
  padding: 28px 24px 20px;
}
.fin-chart-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}
.fin-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 220px;
}
.fin-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}
.fin-bar {
  width: 100%;
  height: var(--h);
  background: rgba(184,115,51,0.25);
  border-radius: 4px 4px 0 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  transition: background 0.3s;
}
.fin-bar.highlight {
  background: linear-gradient(180deg, var(--copper) 0%, var(--copper-dk) 100%);
}
.fin-bar:hover { background: rgba(184,115,51,0.45); }
.fin-bar.highlight:hover { background: linear-gradient(180deg, var(--copper-lt) 0%, var(--copper) 100%); }
.fb-val {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.8;
}
.fb-year {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   SLIDE 10 — THE ASK
════════════════════════════════════════ */
.slide-ask {
  background: var(--slate-900);
}

.ask-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0;
  text-align: center;
}
.ask-title em {
  font-style: italic;
  color: var(--copper-lt);
}
.ask-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  margin: 32px auto;
}
.ask-use {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.use-item {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  align-items: center;
  gap: 16px;
}
.use-pct {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--copper-lt);
  text-align: right;
}
.use-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
}
.use-bar {
  height: 3px;
  background: rgba(184,115,51,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.use-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--copper-lt));
  border-radius: 2px;
  transition: width 1s var(--ease-out);
}

.ask-goal {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 520px;
  text-align: center;
  margin-bottom: 32px;
}
.ask-goal strong { color: var(--cream); font-weight: 600; }

.ask-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  justify-content: center;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .slide { padding: 60px 32px 80px; }
  .slide-inner.two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solution-pillars { grid-template-columns: 1fr; }
  .traction-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-nav { display: none; }
  .cover-title { font-size: 4rem; }
}

@media (max-width: 600px) {
  .slide { padding: 60px 20px 80px; }
  .traction-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .screen-body { grid-template-columns: 1fr; }
  .screen-sidebar { display: none; }
}