/* ============================================
   HELIUM ONE PITCH DECK — STYLES
   Palette: Volcanic Glass + Electric Orange
   Fonts: Clash Display + Newsreader + Syne
   ============================================ */

:root {
  --bg:        #0F0F0F;
  --bg2:       #161616;
  --bg3:       #1E1E1E;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --text:      #F0EDE8;
  --text-muted:#8A8580;
  --text-dim:  #5A5550;
  --accent:    #FF6B2B;
  --accent2:   #FFB088;
  --accent-glow: rgba(255,107,43,0.18);
  --accent-glow2: rgba(255,107,43,0.06);
  --white:     #FFFFFF;
  --check-color: #FF6B2B;
  --cross-color: #3A3A3A;
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ============ PROGRESS BAR ============ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 100;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px var(--accent);
}

/* ============ SLIDE COUNTER ============ */
.slide-counter {
  position: fixed;
  bottom: 32px; right: 40px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.slide-counter .divider { color: var(--text-dim); }
#currentSlide { color: var(--accent); }

/* ============ NAV BUTTONS ============ */
.nav-btn {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  z-index: 100;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.nav-btn svg { width: 18px; height: 18px; }
.nav-btn:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-btn:disabled { opacity: 0.2; pointer-events: none; }
.nav-prev { left: 24px; }
.nav-next { right: 24px; }

/* ============ SLIDE DOTS ============ */
.slide-dots {
  position: fixed;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--accent);
}
.dot:hover:not(.active) { background: var(--text-muted); }

/* ============ DECK & SLIDES ============ */
.deck {
  width: 100vw; height: 100vh;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform: translateY(24px);
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.slide.exit {
  opacity: 0;
  transform: translateY(-24px);
}

.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 60px 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============ BIG BACKGROUND NUMBER ============ */
.slide-number-bg {
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

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

/* ============ SLIDE HEADER ============ */
.slide-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(255,107,43,0.3);
  border-radius: 2px;
}
.slide-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.slide-title em {
  font-style: normal;
  color: var(--accent);
}
.slide-intro {
  font-family: 'Newsreader', serif;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 32px;
}

/* ============================================
   SLIDE 1: HERO
   ============================================ */
.slide-hero {
  background: var(--bg);
}
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  justify-content: center;
  align-items: flex-start;
  padding-left: 10vw;
}
.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.title-line { display: block; color: var(--text); }
.accent-line {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-shadow: 0 0 60px rgba(255,107,43,0.4);
}
.hero-tagline {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-family: 'Newsreader', serif;
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-founders {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border2);
  border-radius: 4px;
  max-width: 640px;
  backdrop-filter: blur(10px);
}
.founder { display: flex; flex-direction: column; gap: 4px; }
.founder-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.founder-role {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 260px;
}
.founder-sep {
  width: 1px; height: 48px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ============================================
   SLIDE 2: PROBLEM
   ============================================ */
.slide-problem { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.problem-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.problem-card-danger {
  border-color: rgba(255,107,43,0.2);
  background: rgba(255,107,43,0.04);
}
.problem-stat {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.problem-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.problem-card p {
  font-family: 'Newsreader', serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================
   SLIDE 3: SOLUTION
   ============================================ */
.slide-solution { background: var(--bg); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.solution-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.solution-item:hover::before { opacity: 1; }
.solution-item:hover {
  border-color: rgba(255,107,43,0.2);
  transform: translateY(-2px);
}
.solution-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.solution-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.solution-item p {
  font-family: 'Newsreader', serif;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============================================
   SLIDE 4: MODELBEAT
   ============================================ */
.slide-modelbeat { background: var(--bg); }
.modelbeat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.mb-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg2);
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}
.mb-feature:hover { border-color: rgba(255,107,43,0.25); }
.mb-icon {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.mb-feature h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.mb-feature p {
  font-family: 'Newsreader', serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}
.modelbeat-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mb-stat {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
}
.mb-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.mb-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.mb-audiences {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.mb-audiences span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: 2px;
}

/* ============================================
   SLIDE 5: COMPETITIVE
   ============================================ */
.slide-competitive { background: var(--bg); }
.comp-table {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.comp-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: rgba(255,107,43,0.08);
  border-bottom: 1px solid var(--border2);
}
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,0.02); }
.comp-cell {
  padding: 12px 16px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
}
.comp-cell:last-child { border-right: none; }
.comp-feature-col {
  justify-content: flex-start;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
}
.comp-header .comp-cell {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.comp-header .comp-us {
  color: var(--accent);
  font-weight: 800;
}
.comp-us {
  background: rgba(255,107,43,0.05);
}
.check {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
}
.cross {
  color: var(--text-dim);
  font-size: 16px;
}

/* ============================================
   SLIDE 6: TRACTION
   ============================================ */
.slide-traction { background: var(--bg); }
.traction-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.traction-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.traction-metric {
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s ease;
}
.traction-metric:hover { border-color: rgba(255,107,43,0.25); }
.traction-num {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  min-width: 90px;
}
.traction-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}
.traction-chart {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}
.chart-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
}
.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 8px;
}
.chart-bar {
  width: 100%;
  height: calc(var(--h) * 1);
  background: linear-gradient(180deg, rgba(255,107,43,0.5), rgba(255,107,43,0.15));
  border-radius: 2px 2px 0 0;
  border-top: 1px solid rgba(255,107,43,0.6);
  position: relative;
  transition: height 1s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 8px;
}
.chart-bar-active {
  background: linear-gradient(180deg, var(--accent), rgba(255,107,43,0.3));
  border-top-color: var(--accent);
  box-shadow: 0 0 20px rgba(255,107,43,0.3);
}
.bar-val {
  font-family: 'Syne', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  margin-top: -18px;
}
.chart-month {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================
   SLIDE 7: REVENUE
   ============================================ */
.slide-revenue { background: var(--bg); }
.revenue-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.revenue-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rev-tier {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 16px;
  transition: all 0.3s ease;
}
.rev-tier:hover {
  border-color: rgba(255,107,43,0.25);
  transform: translateY(-2px);
}
.rev-tier-mid {
  border-color: rgba(255,107,43,0.3);
  background: rgba(255,107,43,0.04);
  position: relative;
}
.rev-tier-mid::before {
  content: 'FLAGSHIP';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--bg);
  padding: 2px 8px;
  border: 1px solid rgba(255,107,43,0.3);
  border-radius: 2px;
}
.rev-tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}
.rev-tier-price {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.rev-tier-price span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.rev-tier ul {
  list-style: none;
  margin-bottom: 14px;
}
.rev-tier ul li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Newsreader', serif;
}
.rev-tier ul li:last-child { border-bottom: none; }
.rev-margin {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  padding-top: 10px;
  border-top: 1px solid rgba(255,107,43,0.2);
}
.revenue-forecast {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}
.forecast-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.forecast-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 200px;
}
.forecast-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 8px;
}
.forecast-bar {
  width: 100%;
  height: calc(var(--h) * 1);
  background: linear-gradient(180deg, rgba(255,107,43,0.4), rgba(255,107,43,0.1));
  border-radius: 2px 2px 0 0;
  border-top: 1px solid rgba(255,107,43,0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 8px;
}
.forecast-bar-top {
  background: linear-gradient(180deg, var(--accent), rgba(255,107,43,0.3));
  border-top-color: var(--accent);
  box-shadow: 0 0 24px rgba(255,107,43,0.25);
}
.forecast-val {
  font-family: 'Clash Display', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-top: -20px;
  white-space: nowrap;
}
.forecast-year {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============================================
   SLIDE 8: ASK
   ============================================ */
.slide-ask { background: var(--bg); }
.ask-glow {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,43,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.ask-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.capital-alloc, .why-now {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.alloc-title, .why-title {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.alloc-item {
  margin-bottom: 16px;
}
.alloc-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}
.alloc-bar {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.alloc-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alloc-label {
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}
.alloc-pct {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Syne', sans-serif;
}
.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.why-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px var(--accent);
}
.why-item p {
  font-family: 'Newsreader', serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}
.contact-block {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-block a {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.contact-block a:hover { color: var(--accent2); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .slide-content { padding: 40px 32px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .modelbeat-layout { grid-template-columns: 1fr; }
  .traction-layout { grid-template-columns: 1fr; }
  .revenue-layout { grid-template-columns: 1fr; }
  .revenue-tiers { grid-template-columns: 1fr; }
  .ask-layout { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(56px, 14vw, 100px); }
  .comp-table { font-size: 11px; overflow-x: auto; }
}

@media (max-width: 600px) {
  .slide-content { padding: 24px 20px; }
  .nav-btn { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .hero-founders { flex-direction: column; }
  .founder-sep { width: 100%; height: 1px; }
}