/* ═══════════════════════════════════════════════════════════
   INDIA RETAIL BOOM — FULL DESIGN SYSTEM
   Positive: Deep Blue (#0A1628) + Orange (#FF6B2B)
   Negative: Charcoal (#0D0D0D) + Crimson (#E63946)
═══════════════════════════════════════════════════════════ */

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

:root {
  --pos-bg: #0A1628;
  --pos-bg2: #0E1E38;
  --pos-accent: #FF6B2B;
  --pos-accent2: #FFB088;
  --pos-blue: #1E6FD9;
  --pos-blue2: #4A9FFF;
  --pos-text: #E8F0FF;
  --pos-muted: #7A9CC8;
  --neg-bg: #0D0D0D;
  --neg-bg2: #161616;
  --neg-accent: #E63946;
  --neg-accent2: #FF8C94;
  --neg-orange: #FF6B2B;
  --neg-text: #F0E8E8;
  --neg-muted: #8A7A7A;
  --font-head: 'Clash Display', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  font-family: var(--font-body);
  background: var(--pos-bg);
}

/* ── Progress Bar ── */
.progress-bar-wrap {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.08); z-index: 100;
}
.progress-bar {
  height: 100%; width: 5.56%;
  background: linear-gradient(90deg, var(--pos-accent), var(--pos-blue2));
  transition: width 0.5s var(--ease-out), background 0.5s;
}
.progress-bar.neg-bar {
  background: linear-gradient(90deg, var(--neg-accent), var(--neg-orange));
}

/* ── Slide Counter ── */
.slide-counter {
  position: fixed; top: 14px; right: 20px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.45); z-index: 100; letter-spacing: 0.08em;
}

/* ── Section Badge ── */
.section-badge {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; padding: 4px 14px; border-radius: 20px;
  z-index: 100; transition: all 0.4s;
}
.pos-badge { background: rgba(255,107,43,0.18); color: var(--pos-accent); border: 1px solid rgba(255,107,43,0.3); }
.neg-badge { background: rgba(230,57,70,0.18); color: var(--neg-accent); border: 1px solid rgba(230,57,70,0.3); }

/* ── Nav Buttons ── */
.nav-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6); cursor: pointer; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; backdrop-filter: blur(8px);
}
.nav-btn svg { width: 20px; height: 20px; }
.nav-btn:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.25); }
.nav-btn:disabled { opacity: 0.2; cursor: default; }
.nav-prev { left: 16px; }
.nav-next { right: 16px; }

/* ── Dot Navigation ── */
.dot-nav {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 100;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: all 0.3s; border: none;
}
.dot.active { background: var(--pos-accent); transform: scale(1.4); }
.dot.neg-active { background: var(--neg-accent); transform: scale(1.4); }
.dot.neg-dot { background: rgba(255,255,255,0.15); }

/* ── Slides Container ── */
.slides-container {
  width: 100vw; height: 100vh;
  position: relative; overflow: hidden;
}

/* ── Base Slide ── */
.slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  pointer-events: none; overflow: hidden;
}
.slide.active {
  opacity: 1; transform: translateX(0);
  pointer-events: all;
}
.slide.exit-left {
  opacity: 0; transform: translateX(-60px);
}

/* ── Positive Slides ── */
.slide-pos { background: var(--pos-bg); color: var(--pos-text); }
.slide-neg { background: var(--neg-bg); color: var(--neg-text); }

/* ── Dot BG ── */
.slide-dots-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Slide Inner ── */
.slide-inner {
  width: 100%; max-width: 1100px;
  padding: 60px 64px 48px;
  height: 100%; display: flex; flex-direction: column;
  position: relative; z-index: 2;
}

/* ── Slide Header (Positive) ── */
.slide-hdr {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.slide-num {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; padding: 4px 10px; border-radius: 6px;
  flex-shrink: 0;
}
.pos-num { background: rgba(255,107,43,0.15); color: var(--pos-accent); }
.neg-num { background: rgba(230,57,70,0.15); color: var(--neg-accent); }
.slide-ttl-pos {
  font-family: var(--font-head); font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700; color: var(--pos-text); line-height: 1.2;
}
.slide-ttl-neg {
  font-family: var(--font-head); font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700; color: var(--neg-text); line-height: 1.2;
}

/* ── Slide Header (Negative) ── */
.slide-hdr-neg {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.pillar-badge {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; padding: 4px 12px; border-radius: 20px;
  background: rgba(230,57,70,0.2); color: var(--neg-accent);
  border: 1px solid rgba(230,57,70,0.35); flex-shrink: 0;
}

/* ── Accent Colors ── */
.accent-pos { color: var(--pos-accent); }
.accent-neg { color: var(--neg-accent); }
.hl-orange { color: var(--neg-orange); font-weight: 600; }

/* ── Section Label ── */
.section-label {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--pos-accent); margin-bottom: 12px;
}

/* ── Chart Shared ── */
.chart-title {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.5);
  text-transform: uppercase; margin-bottom: 10px;
}
.chart-legend {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 10px;
}
.leg-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
}
.leg-dot.orange { background: var(--pos-accent); }
.leg-dot.blue { background: var(--pos-blue); }

/* ════════════════════════════════════════════
   SLIDE 1 — Title (Positive)
════════════════════════════════════════════ */
.s1 { position: relative; overflow: hidden; }
.s1-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,111,217,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,217,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.s1-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.s1-orb1 { width: 500px; height: 500px; background: rgba(30,111,217,0.18); top: -150px; right: -100px; }
.s1-orb2 { width: 350px; height: 350px; background: rgba(255,107,43,0.14); bottom: -80px; left: -60px; }
.s1-orb3 { width: 200px; height: 200px; background: rgba(74,159,255,0.12); top: 40%; left: 30%; }
.s1-floats {
  position: absolute; inset: 0; pointer-events: none;
}
.fi {
  position: absolute; font-size: 28px; opacity: 0.12;
  animation: floatUp 8s ease-in-out infinite;
}
.fi1 { left: 8%; top: 20%; animation-delay: 0s; }
.fi2 { left: 15%; top: 65%; animation-delay: 1.2s; }
.fi3 { right: 12%; top: 30%; animation-delay: 0.6s; }
.fi4 { right: 20%; top: 70%; animation-delay: 2s; }
.fi5 { left: 45%; top: 12%; animation-delay: 1.8s; }
.fi6 { left: 60%; top: 75%; animation-delay: 0.9s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}
.s1-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.s1-eyebrow {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--pos-blue2); opacity: 0.8;
}
.s1-title {
  font-family: var(--font-head); font-size: clamp(52px, 8vw, 96px);
  font-weight: 700; line-height: 1.0; color: var(--pos-text);
}
.s1-main-sub {
  font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500; color: var(--pos-blue2); letter-spacing: 0.04em;
}
.s1-sub {
  font-size: clamp(13px, 1.5vw, 16px); color: var(--pos-muted);
  max-width: 480px; line-height: 1.6;
}
.s1-arrows { display: flex; gap: 10px; }
.ua {
  font-size: 28px; color: var(--pos-accent); opacity: 0.7;
  animation: pulse 2s ease-in-out infinite;
}
.ua.d1 { animation-delay: 0.3s; }
.ua.d2 { animation-delay: 0.6s; }
@keyframes pulse { 0%, 100% { opacity: 0.4; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-6px); } }
.s1-bottom {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px; margin-top: 8px;
}

/* ════════════════════════════════════════════
   SLIDE 2 — Understanding
════════════════════════════════════════════ */
.s2-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; flex: 1; align-items: start; }
.s2-intro { font-size: 16px; color: var(--pos-muted); margin-bottom: 20px; line-height: 1.6; }
.s2-drivers { display: flex; flex-direction: column; gap: 12px; }
.s2-driver {
  display: flex; align-items: center; gap: 14px;
  background: rgba(30,111,217,0.08); border: 1px solid rgba(30,111,217,0.15);
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: var(--pos-text); line-height: 1.5;
}
.icon-wrap {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pos-icon { background: rgba(255,107,43,0.15); }
.s2-right { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.s2-map-wrap { width: 160px; }
.india-svg { width: 100%; height: auto; }
.s2-tl { width: 100%; }
.s2-tl-label { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--pos-muted); margin-bottom: 8px; }
.s2-tl-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; position: relative; overflow: visible; }
.s2-tl-fill { height: 100%; width: 72%; background: linear-gradient(90deg, var(--pos-blue), var(--pos-accent)); border-radius: 3px; }
.s2-tl-arr { position: absolute; right: 24%; top: -10px; color: var(--pos-accent); font-size: 18px; }

/* ════════════════════════════════════════════
   SLIDE 3 — Current Size & Scale
════════════════════════════════════════════ */
.s3-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; flex: 1; align-items: center; }
.s3-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.s3-card {
  background: rgba(30,111,217,0.08); border: 1px solid rgba(30,111,217,0.15);
  border-radius: 12px; padding: 18px 20px;
}
.s3-card.s3-highlight {
  background: rgba(255,107,43,0.1); border-color: rgba(255,107,43,0.25);
  grid-column: span 2;
}
.s3-num {
  font-family: var(--font-head); font-size: clamp(22px, 3vw, 36px);
  font-weight: 700; color: var(--pos-text); margin-bottom: 4px;
}
.s3-num.green { color: #4ADE80; }
.green-arr { color: #4ADE80; }
.s3-lbl { font-size: 13px; color: var(--pos-muted); line-height: 1.4; }
.s3-sub { font-size: 12px; color: var(--pos-accent); margin-top: 4px; font-weight: 600; }
.s3-chart-wrap { display: flex; flex-direction: column; align-items: center; }

/* ════════════════════════════════════════════
   SLIDE 4 — Growth Projections
════════════════════════════════════════════ */
.s4-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; flex: 1; align-items: center; }
.s4-bullets { display: flex; flex-direction: column; gap: 18px; }
.s4-bullet {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(30,111,217,0.08); border: 1px solid rgba(30,111,217,0.15);
  border-radius: 12px; padding: 16px 18px;
  font-size: 14px; color: var(--pos-text); line-height: 1.6;
}
.s4-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.s4-chart-wrap { display: flex; flex-direction: column; }

/* ════════════════════════════════════════════
   SLIDE 5 — Five Key Effects
════════════════════════════════════════════ */
.s5-intro { font-size: 15px; color: var(--pos-muted); margin-bottom: 28px; }
.s5-hexgrid { display: flex; gap: 16px; flex-wrap: wrap; }
.s5-hex {
  flex: 1; min-width: 160px;
  background: rgba(30,111,217,0.08); border: 1px solid rgba(30,111,217,0.18);
  border-radius: 16px; padding: 22px 18px; text-align: center;
  transition: transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.s5-hex::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,43,0.06), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.s5-hex:hover { transform: translateY(-4px); border-color: rgba(255,107,43,0.35); }
.s5-hex:hover::before { opacity: 1; }
.s5-num {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--pos-accent); margin-bottom: 8px;
}
.s5-icon { font-size: 28px; margin-bottom: 10px; }
.s5-lbl { font-size: 13px; color: var(--pos-text); line-height: 1.4; font-weight: 500; }

/* ════════════════════════════════════════════
   SLIDE 6 — Major Positive Impacts
════════════════════════════════════════════ */
.s6-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; flex: 1; align-items: start; }
.s6-cards { display: flex; flex-direction: column; gap: 14px; }
.s6-card {
  background: rgba(30,111,217,0.08); border: 1px solid rgba(30,111,217,0.15);
  border-radius: 12px; padding: 16px 20px;
  display: grid; grid-template-columns: 36px 1fr 80px; gap: 12px; align-items: center;
}
.s6-icon { font-size: 22px; }
.s6-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--pos-text); margin-bottom: 4px; }
.s6-num { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--pos-accent); text-align: right; }
.s6-desc { font-size: 12px; color: var(--pos-muted); line-height: 1.5; grid-column: 2 / 4; }
.s6-chart-wrap { display: flex; flex-direction: column; }
.s6-note { font-size: 11px; color: var(--pos-accent); margin-top: 8px; font-style: italic; }

/* ════════════════════════════════════════════
   SLIDE 7 — More Impacts & Takeaway
════════════════════════════════════════════ */
.s7-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; flex: 1; align-items: start; }
.s7-impacts { display: flex; flex-direction: column; gap: 16px; }
.s7-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(30,111,217,0.08); border: 1px solid rgba(30,111,217,0.15);
  border-radius: 12px; padding: 18px;
}
.s7-icon { font-size: 28px; flex-shrink: 0; }
.s7-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--pos-text); margin-bottom: 6px; }
.s7-body p { font-size: 13px; color: var(--pos-muted); line-height: 1.6; }
.s7-takeaway {
  background: rgba(255,107,43,0.08); border: 1px solid rgba(255,107,43,0.2);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 20px;
}
.s7-lbl { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--pos-accent); }
.s7-quote {
  font-size: 15px; color: var(--pos-text); line-height: 1.7;
  font-style: italic; border-left: 3px solid var(--pos-accent); padding-left: 16px;
}
.s7-arrow-wrap { display: flex; align-items: center; gap: 12px; }
.s7-big-arrow { font-size: 40px; color: var(--pos-accent); line-height: 1; }
.s7-arrow-lbl { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--pos-text); }

/* ════════════════════════════════════════════
   SLIDE 8 — Negative Title
════════════════════════════════════════════ */
.s8-title { position: relative; overflow: hidden; }
.s8-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.s8-orb1 { width: 500px; height: 500px; background: rgba(230,57,70,0.15); top: -150px; left: -100px; }
.s8-orb2 { width: 350px; height: 350px; background: rgba(255,107,43,0.1); bottom: -80px; right: -60px; }
.s8-floats { position: absolute; inset: 0; pointer-events: none; }
.s8-fi {
  position: absolute; font-size: 28px; opacity: 0.1;
  animation: floatUp 9s ease-in-out infinite;
}
.s8fi1 { left: 10%; top: 25%; animation-delay: 0s; }
.s8fi2 { right: 15%; top: 20%; animation-delay: 1.5s; }
.s8fi3 { left: 20%; bottom: 25%; animation-delay: 0.8s; }
.s8fi4 { right: 20%; bottom: 30%; animation-delay: 2.2s; }
.s8-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.s8-eyebrow {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; color: var(--neg-accent2); opacity: 0.8;
}
.s8-title-text {
  font-family: var(--font-head); font-size: clamp(44px, 7vw, 84px);
  font-weight: 700; line-height: 1.05; color: var(--neg-text);
}
.s8-main-sub {
  font-family: var(--font-head); font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 500; color: var(--neg-accent2); letter-spacing: 0.04em;
}
.s8-sub { font-size: 15px; color: var(--neg-muted); }
.s8-arrows { display: flex; gap: 10px; }
.da {
  font-size: 28px; color: var(--neg-accent); opacity: 0.7;
  animation: pulseDown 2s ease-in-out infinite;
}
.da.d1 { animation-delay: 0.3s; }
.da.d2 { animation-delay: 0.6s; }
@keyframes pulseDown { 0%, 100% { opacity: 0.4; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }

/* ════════════════════════════════════════════
   SLIDE 9 — Once Upon a Boom
════════════════════════════════════════════ */
.s9-layout { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.s9-split { display: flex; align-items: center; gap: 16px; }
.s9-side {
  flex: 1; border-radius: 12px; padding: 18px 20px; text-align: center;
}
.s9-bright { background: rgba(255,107,43,0.08); border: 1px solid rgba(255,107,43,0.2); }
.s9-dark { background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2); }
.s9-side-lbl { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--neg-muted); margin-bottom: 8px; }
.s9-side-icon { font-size: 28px; margin-bottom: 8px; }
.s9-side p { font-size: 13px; color: var(--neg-text); line-height: 1.5; }
.s9-mid-arrow { font-size: 28px; color: var(--neg-muted); flex-shrink: 0; }
.s9-narrative {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 18px 22px;
}
.s9-narrative p { font-size: 14px; color: var(--neg-text); line-height: 1.7; margin-bottom: 8px; }
.s9-narrative p:last-child { margin-bottom: 0; }
.s9-pillars { display: flex; gap: 12px; }
.s9-pillar {
  flex: 1; background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2);
  border-radius: 10px; padding: 12px; text-align: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--neg-text);
}

/* ════════════════════════════════════════════
   SLIDE 10 — Pillar 1: Death by Discounts
════════════════════════════════════════════ */
.s10-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; flex: 1; align-items: start; }
.s10-narrative p { font-size: 14px; color: var(--neg-text); line-height: 1.7; margin-bottom: 14px; }
.s10-result {
  background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2);
  border-radius: 12px; padding: 16px 20px; margin-top: 8px;
}
.s10-result-title { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--neg-accent); margin-bottom: 10px; }
.s10-result-stat { font-size: 14px; color: var(--neg-text); line-height: 1.6; margin-bottom: 6px; }
.s10-ba { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.s10-ba-card {
  flex: 1; border-radius: 10px; padding: 14px; text-align: center;
}
.s10-before { background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2); }
.s10-after { background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2); }
.s10-ba-icon { font-size: 28px; margin-bottom: 6px; }
.s10-ba-lbl { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--neg-muted); margin-bottom: 4px; }
.s10-ba-desc { font-size: 12px; color: var(--neg-text); line-height: 1.4; }
.s10-ba-arrow { font-size: 22px; color: var(--neg-muted); flex-shrink: 0; }

/* ════════════════════════════════════════════
   SLIDE 11 — Predatory Pricing Data
════════════════════════════════════════════ */
.s11-layout { display: grid; grid-template-columns: 1fr 400px; gap: 32px; flex: 1; align-items: start; }
.s11-data { display: flex; flex-direction: column; gap: 14px; }
.s11-dp {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px 16px;
  font-size: 14px; color: var(--neg-text); line-height: 1.6;
}
.s11-dp-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.s11-icons {
  display: flex; align-items: center; gap: 12px; margin-top: 8px;
  padding: 12px 16px; background: rgba(230,57,70,0.06); border-radius: 10px;
}
.s11-ic { font-size: 13px; color: var(--neg-text); }
.s11-vs { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--neg-muted); }
.s11-chart-wrap { display: flex; flex-direction: column; }

/* ════════════════════════════════════════════
   SLIDE 12 — Human Cost
════════════════════════════════════════════ */
.s12-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; flex: 1; align-items: start; }
.s12-narrative p { font-size: 14px; color: var(--neg-text); line-height: 1.7; margin-bottom: 14px; }
.s12-pains { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.s12-pain {
  background: rgba(230,57,70,0.07); border: 1px solid rgba(230,57,70,0.18);
  border-radius: 8px; padding: 10px 14px;
  font-size: 14px; color: var(--neg-text);
}
.s12-visual { display: flex; flex-direction: column; gap: 20px; }
.s12-rider {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px; text-align: center;
}
.s12-rider-icon { font-size: 48px; margin-bottom: 10px; }
.s12-rider-scene { font-size: 12px; color: var(--neg-muted); margin-bottom: 14px; line-height: 1.5; }
.s12-warns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.s12-warn {
  background: rgba(230,57,70,0.12); border: 1px solid rgba(230,57,70,0.25);
  border-radius: 20px; padding: 5px 12px;
  font-size: 12px; color: var(--neg-accent2); font-weight: 600;
}
.s12-clock {
  background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2);
  border-radius: 14px; padding: 20px; text-align: center;
}
.s12-clock-face {
  width: 80px; height: 80px; border-radius: 50%;
  border: 3px solid var(--neg-accent); margin: 0 auto 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.s12-clock-num { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--neg-accent); line-height: 1; }
.s12-clock-unit { font-family: var(--font-head); font-size: 8px; font-weight: 700; letter-spacing: 0.15em; color: var(--neg-muted); }
.s12-clock-lbl { font-size: 12px; color: var(--neg-muted); }

/* ════════════════════════════════════════════
   SLIDE 13 — Gig Workers Data
════════════════════════════════════════════ */
.s13-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; flex: 1; align-items: start; }
.s13-stats { display: flex; flex-direction: column; gap: 14px; }
.s13-stat {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 14px 16px;
}
.s13-num { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.s13-num.red { color: var(--neg-accent); }
.s13-lbl { font-size: 12px; color: var(--neg-muted); line-height: 1.5; }
.s13-note {
  font-size: 12px; color: var(--neg-orange); font-style: italic;
  background: rgba(255,107,43,0.07); border-radius: 8px; padding: 10px 12px;
  border: 1px solid rgba(255,107,43,0.15);
}
.s13-charts { display: flex; flex-direction: column; }

/* ════════════════════════════════════════════
   SLIDE 14 — Mountains of Waste
════════════════════════════════════════════ */
.s14-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; flex: 1; align-items: start; }
.s14-narrative p { font-size: 14px; color: var(--neg-text); line-height: 1.7; margin-bottom: 14px; }
.s14-types { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.s14-type {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 12px;
  font-size: 13px; color: var(--neg-text);
}
.s14-visual { display: flex; flex-direction: column; gap: 16px; }
.s14-contrast { display: flex; align-items: center; gap: 12px; }
.s14-side {
  flex: 1; border-radius: 12px; padding: 16px; text-align: center;
}
.s14-waste { background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2); }
.s14-clean { background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.15); }
.s14-side-icon { font-size: 32px; margin-bottom: 8px; }
.s14-side-lbl { font-size: 12px; color: var(--neg-muted); }
.s14-vs { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--neg-muted); flex-shrink: 0; }
.s14-stat-box {
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.25);
  border-radius: 12px; padding: 18px; text-align: center;
}
.s14-stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--neg-accent); }
.s14-stat-lbl { font-size: 12px; color: var(--neg-muted); margin-top: 4px; line-height: 1.4; }

/* ════════════════════════════════════════════
   SLIDE 15 — Waste Trends
════════════════════════════════════════════ */
.s15-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; flex: 1; align-items: start; }
.s15-points { display: flex; flex-direction: column; gap: 14px; }
.s15-pt {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--neg-text); line-height: 1.6;
}
.s15-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neg-accent); flex-shrink: 0; margin-top: 6px;
}
.s15-charts { display: flex; flex-direction: column; align-items: center; }

/* ════════════════════════════════════════════
   SLIDE 16 — Debt Trap
════════════════════════════════════════════ */
.s16-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; flex: 1; align-items: center; }
.s16-narrative p { font-size: 15px; color: var(--neg-text); line-height: 1.7; margin-bottom: 16px; }
.s16-visual { display: flex; flex-direction: column; gap: 16px; }
.s16-contrast { display: flex; align-items: center; gap: 12px; }
.s16-side {
  flex: 1; border-radius: 12px; padding: 18px; text-align: center;
}
.s16-happy { background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.15); }
.s16-stressed { background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2); }
.s16-icon { font-size: 36px; margin-bottom: 8px; }
.s16-lbl { font-size: 13px; color: var(--neg-text); font-weight: 600; margin-bottom: 4px; }
.s16-sub { font-size: 11px; color: var(--neg-muted); }
.s16-arrow { font-size: 24px; color: var(--neg-muted); flex-shrink: 0; }
.s16-piggy { text-align: center; padding: 14px; background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
.s16-piggy-icon { font-size: 36px; margin-bottom: 6px; }
.s16-piggy-lbl { font-size: 12px; color: var(--neg-muted); }

/* ════════════════════════════════════════════
   SLIDE 17 — Debt Data
════════════════════════════════════════════ */
.s17-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; flex: 1; align-items: start; }
.s17-stats { display: flex; flex-direction: column; gap: 14px; }
.s17-stat {
  background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.2);
  border-radius: 12px; padding: 16px 18px;
}
.s17-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--neg-accent); margin-bottom: 4px; }
.s17-lbl { font-size: 13px; color: var(--neg-muted); line-height: 1.5; }
.s17-bullets { display: flex; flex-direction: column; gap: 10px; }
.s17-bullet {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: var(--neg-text); line-height: 1.5;
}
.s17-charts { display: flex; flex-direction: column; }

/* ════════════════════════════════════════════
   SLIDE 18 — Q&A / Thank You
════════════════════════════════════════════ */
.s18-final { position: relative; overflow: hidden; }
.s18-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.s18-orb1 { width: 400px; height: 400px; background: rgba(230,57,70,0.12); top: -100px; right: -80px; }
.s18-orb2 { width: 300px; height: 300px; background: rgba(255,107,43,0.08); bottom: -60px; left: -60px; }
.s18-inner {
  align-items: center; justify-content: center; text-align: center; gap: 24px;
}
.s18-top { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.s18-thank {
  font-family: var(--font-head); font-size: clamp(16px, 2vw, 22px);
  font-weight: 600; letter-spacing: 0.2em; color: var(--neg-muted);
  text-transform: uppercase;
}
.s18-qa-text {
  font-family: var(--font-head); font-size: clamp(64px, 10vw, 110px);
  font-weight: 700; color: var(--neg-accent); line-height: 1;
  text-shadow: 0 0 60px rgba(230,57,70,0.4);
}
.s18-sub {
  font-family: var(--font-head); font-size: clamp(16px, 2vw, 22px);
  font-weight: 500; color: var(--neg-text); letter-spacing: 0.04em;
}
.s18-chain {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 14px 20px;
}
.s18-ci { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.s18-ci-icon { font-size: 22px; }
.s18-ci-lbl { font-size: 11px; color: var(--neg-muted); max-width: 100px; line-height: 1.3; }
.s18-ca { font-size: 18px; color: var(--neg-muted); flex-shrink: 0; }
.s18-content { max-width: 560px; }
.s18-content p { font-size: 14px; color: var(--neg-muted); line-height: 1.7; margin-bottom: 6px; }
.s18-scale {
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  color: var(--neg-muted); letter-spacing: 0.08em;
}
.s18-scale span { color: var(--neg-text); }
.s18-presenters {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px; margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .slide-inner { padding: 48px 32px 40px; }
  .s2-layout, .s3-layout, .s4-layout, .s6-layout, .s7-layout,
  .s10-layout, .s11-layout, .s12-layout, .s13-layout, .s14-layout,
  .s15-layout, .s16-layout, .s17-layout { grid-template-columns: 1fr; }
  .s2-right, .s3-chart-wrap, .s4-chart-wrap, .s6-chart-wrap,
  .s11-chart-wrap, .s13-charts, .s15-charts, .s17-charts { display: none; }
  .s5-hexgrid { gap: 10px; }
  .s5-hex { min-width: 120px; padding: 16px 12px; }
  .s18-chain { gap: 6px; }
}
@media (max-width: 600px) {
  .slide-inner { padding: 40px 20px 32px; }
  .s3-stats { grid-template-columns: 1fr; }
  .s3-card.s3-highlight { grid-column: span 1; }
  .s5-hexgrid { flex-direction: column; }
  .s9-split { flex-direction: column; }
  .s18-chain { flex-direction: column; }
}