/* ============================================
   BHOPAL GAS TRAGEDY — PRESENTATION STYLES
   Design: Dark Editorial · Cormorant + Manrope
   Palette: Deep charcoal, blood red, amber
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --bg-primary: #0D0D0D;
  --bg-secondary: #141414;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);

  --red: #C0392B;
  --red-light: #E74C3C;
  --orange: #D35400;
  --orange-light: #E67E22;
  --amber: #B7860B;
  --amber-light: #F39C12;
  --gold: #C9A84C;

  --text-primary: #F0EBE3;
  --text-secondary: #A89F94;
  --text-muted: #6B6560;
  --text-accent: #E8C97A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --slide-w: 100vw;
  --slide-h: 100vh;
  --transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ---- PROGRESS BAR ---- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber-light));
  z-index: 100;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px rgba(192,57,43,0.6);
}

/* ---- SLIDE COUNTER ---- */
.slide-counter {
  position: fixed;
  top: 24px; right: 80px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
}
.slide-counter .divider { color: var(--border-strong); }

/* ---- NAV CONTROLS ---- */
.nav-controls {
  position: fixed;
  bottom: 32px; right: 32px;
  display: flex;
  gap: 10px;
  z-index: 100;
}
.nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(20,20,20,0.9);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}
.nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(30,30,30,0.95);
}
.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ---- SLIDE DOTS ---- */
.slide-dots {
  position: fixed;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 100;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}
.dot:hover { background: var(--text-secondary); }

/* ---- PRESENTATION CONTAINER ---- */
.presentation {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

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

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

/* ---- SLIDE HEADER ---- */
.slide-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
}
.slide-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.15em;
  border: 1px solid var(--red);
  padding: 3px 8px;
  border-radius: 2px;
}
.slide-title-text {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ============================================
   SLIDE 1 — TITLE
   ============================================ */
.slide-title {
  background: var(--bg-primary);
}
.slide-title::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(192,57,43,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(183,134,11,0.06) 0%, transparent 60%);
  z-index: 1;
}
.title-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}
.title-content {
  max-width: 700px;
  z-index: 2;
}
.title-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.title-tag::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--red);
}
.main-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.title-line { display: block; }
.title-line.accent {
  color: var(--red-light);
  font-style: italic;
  font-weight: 600;
}
.title-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.title-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.meta-value {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}
.meta-divider {
  width: 1px; height: 36px;
  background: var(--border-strong);
}
.title-warning {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--amber-light);
  text-transform: uppercase;
}
.warning-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-light);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================
   SLIDE 2 — STATISTICS
   ============================================ */
.slide-stats { background: var(--bg-primary); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-red { background: rgba(192,57,43,0.08); border-color: rgba(192,57,43,0.3); }
.stat-red::before { background: var(--red); }
.stat-orange { background: rgba(211,84,0,0.08); border-color: rgba(211,84,0,0.3); }
.stat-orange::before { background: var(--orange); }
.stat-amber { background: rgba(183,134,11,0.08); border-color: rgba(183,134,11,0.3); }
.stat-amber::before { background: var(--amber); }
.stat-dark { background: rgba(255,255,255,0.03); border-color: var(--border-strong); }
.stat-dark::before { background: var(--text-muted); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.stat-plus { font-size: 1.8rem; color: var(--red-light); }
.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.stats-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(183,134,11,0.08);
  border: 1px solid rgba(183,134,11,0.25);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--amber-light);
  font-weight: 500;
}
.note-icon { font-size: 1rem; }

/* ============================================
   SLIDE 3 — INTRODUCTION
   ============================================ */
.slide-intro { background: var(--bg-primary); }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.body-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.body-text.large {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 400;
}
.body-text strong { color: var(--text-primary); font-weight: 600; }
.quote-block {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 3px solid var(--red);
  background: rgba(192,57,43,0.06);
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}
.quote-text em { color: var(--red-light); font-style: normal; font-weight: 600; }

/* Timeline */
.intro-visual { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.tl-dot.red { background: var(--red); box-shadow: 0 0 8px rgba(192,57,43,0.5); }
.tl-dot.orange { background: var(--orange); }
.tl-dot.amber { background: var(--amber-light); }
.tl-dot.white { background: var(--text-secondary); }
.tl-dot.grey { background: var(--text-muted); }
.tl-content { display: flex; flex-direction: column; gap: 4px; }
.tl-date {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.tl-event {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   SLIDE 4 — HISTORY
   ============================================ */
.slide-history { background: var(--bg-primary); }
.history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.history-card {
  padding: 22px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s ease;
}
.history-card:hover { border-color: var(--border-strong); }
.hc-icon { font-size: 1.5rem; margin-bottom: 12px; }
.hc-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.hc-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.hc-text strong { color: var(--amber-light); }
.history-note {
  padding: 14px 20px;
  background: rgba(192,57,43,0.07);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.history-note strong { color: var(--red-light); }

/* ============================================
   SLIDE 5 — HUMAN RIGHTS
   ============================================ */
.slide-rights { background: var(--bg-primary); }
.section-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 800px;
}
.rights-table { display: flex; flex-direction: column; gap: 0; }
.rights-row {
  display: grid;
  grid-template-columns: 220px 260px 1fr;
  gap: 20px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s ease;
}
.rights-row:hover { background: rgba(255,255,255,0.02); }
.rights-header {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 10px;
}
.right-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-primary);
}
.right-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.r1 { background: var(--red); }
.r2 { background: var(--orange); }
.r3 { background: var(--amber-light); }
.r4 { background: #3498DB; }
.r5 { background: #9B59B6; }
.right-law {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.right-violation {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ============================================
   SLIDE 6 — HEALTH
   ============================================ */
.slide-health { background: var(--bg-primary); }
.health-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.health-section { margin-bottom: 24px; }
.health-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.health-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.health-list li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.health-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
}
.health-callout {
  padding: 20px;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 4px;
  margin-top: 16px;
}
.callout-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}
.callout-text strong { color: var(--red-light); font-style: normal; }

/* ============================================
   SLIDE 7 — ENVIRONMENT
   ============================================ */
.slide-env { background: var(--bg-primary); }
.env-layout { display: flex; flex-direction: column; gap: 20px; }
.env-intro {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 900px;
}
.env-intro strong { color: var(--amber-light); }
.contam-table { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.ct-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 14px 16px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.findings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.finding-card {
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}
.finding-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-light);
  margin-bottom: 8px;
}
.finding-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SLIDE 8 — COMPARATIVE
   ============================================ */
.slide-compare { background: var(--bg-primary); }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.compare-card {
  padding: 22px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compare-highlight {
  border-color: rgba(192,57,43,0.4);
  background: rgba(192,57,43,0.06);
}
.cc-year {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.cc-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}
.cc-location {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cc-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.cc-desc strong { color: var(--amber-light); }
.cc-outcome {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 2px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cc-outcome.bad { background: rgba(192,57,43,0.15); color: var(--red-light); }
.cc-outcome.good { background: rgba(39,174,96,0.12); color: #2ECC71; }
.cc-outcome.neutral { background: rgba(183,134,11,0.12); color: var(--amber-light); }
.compare-insight {
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.compare-insight strong { color: var(--text-primary); }

/* ============================================
   SLIDE 9 — LEGAL
   ============================================ */
.slide-legal { background: var(--bg-primary); }
.legal-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lt-item {
  display: grid;
  grid-template-columns: 60px 4px 1fr;
  gap: 20px;
  align-items: start;
  padding: 14px 0;
}
.lt-year {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-top: 2px;
  text-align: right;
}
.lt-bar {
  width: 4px;
  min-height: 50px;
  border-radius: 2px;
  position: relative;
}
.lt-bar::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: inherit;
}
.lt-bar.red { background: var(--red); }
.lt-bar.orange { background: var(--orange); }
.lt-bar.amber { background: var(--amber-light); }
.lt-bar.grey { background: var(--text-muted); }
.lt-bar.dark { background: #444; }
.lt-detail { padding-top: 2px; }
.lt-detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.lt-detail p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   SLIDE 10 — ACTORS
   ============================================ */
.slide-actors { background: var(--bg-primary); }
.actors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.actor-card {
  padding: 20px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease;
}
.actor-card:hover { border-color: var(--border-strong); }
.actor-icon { font-size: 1.4rem; }
.actor-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.actor-role {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
.actor-verdict {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}
.verdict-bad { background: rgba(192,57,43,0.15); color: var(--red-light); }
.verdict-good { background: rgba(39,174,96,0.12); color: #2ECC71; }
.verdict-mixed { background: rgba(183,134,11,0.12); color: var(--amber-light); }

/* ============================================
   SLIDE 11 — POLICY
   ============================================ */
.slide-policy { background: var(--bg-primary); }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.policy-card {
  padding: 22px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.policy-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.policy-card:hover::after { opacity: 1; }
.policy-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.policy-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.policy-text {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   SLIDE 12 — FUTURE
   ============================================ */
.slide-future { background: var(--bg-primary); }
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.pathway-card {
  padding: 24px 20px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.pw1 { background: rgba(39,174,96,0.05); border-color: rgba(39,174,96,0.2); }
.pw2 { background: rgba(52,152,219,0.05); border-color: rgba(52,152,219,0.2); }
.pw3 { background: rgba(183,134,11,0.05); border-color: rgba(183,134,11,0.2); }
.pw-icon { font-size: 1.5rem; margin-bottom: 12px; }
.pw-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.pw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pw-list li {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.pw-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.civil-society-note {
  padding: 18px 22px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
}
.civil-society-note h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.civil-society-note p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.civil-society-note strong { color: var(--text-primary); }

/* ============================================
   SLIDE 13 — CONCLUSION
   ============================================ */
.slide-conclusion { background: var(--bg-primary); }
.conclusion-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
.conclusion-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.conclusion-text strong { color: var(--text-primary); }
.conclusion-actions {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}
.ca-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.ca-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ca-item:last-child { border-bottom: none; }
.ca-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
  padding-top: 1px;
}

/* ============================================
   SLIDE 14 — QUOTE
   ============================================ */
.slide-quote {
  background: var(--bg-primary);
  position: relative;
}
.slide-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(192,57,43,0.08) 0%, transparent 70%);
}
.quote-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.04em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}
.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  align-items: center;
}
.big-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--red);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.6;
}
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 24px;
}
.big-cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-style: normal;
  display: block;
  margin-bottom: 32px;
}
.quote-divider {
  width: 60px; height: 1px;
  background: var(--red);
  margin: 0 auto 24px;
}
.quote-footer {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* ============================================
   SLIDE 15 — REFERENCES
   ============================================ */
.slide-refs { background: var(--bg-primary); }
.refs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.ref-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.ref-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.2);
  padding: 3px 7px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  text-transform: uppercase;
}
.ref-item p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.ref-item em { color: var(--text-primary); font-style: italic; }
.refs-footer {
  text-align: center;
  padding: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.refs-footer strong { color: var(--text-secondary); }

/* ============================================
   KEYBOARD HINT
   ============================================ */
.keyboard-hint {
  position: fixed;
  bottom: 32px; left: 32px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
}
.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 18px;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  font-size: 8px;
  color: var(--text-muted);
}

/* ============================================
   SLIDE ENTER ANIMATIONS
   ============================================ */
.slide.active .slide-header,
.slide.active .stats-grid,
.slide.active .history-grid,
.slide.active .rights-table,
.slide.active .health-layout,
.slide.active .env-layout,
.slide.active .compare-grid,
.slide.active .legal-timeline,
.slide.active .actors-grid,
.slide.active .policy-grid,
.slide.active .pathways-grid,
.slide.active .conclusion-layout,
.slide.active .refs-grid,
.slide.active .title-content,
.slide.active .big-quote,
.slide.active .big-cite {
  animation: fadeUp 0.5s ease both;
}
.slide.active .stats-grid { animation-delay: 0.1s; }
.slide.active .history-grid { animation-delay: 0.1s; }
.slide.active .rights-table { animation-delay: 0.1s; }
.slide.active .health-layout { animation-delay: 0.1s; }
.slide.active .env-layout { animation-delay: 0.1s; }
.slide.active .compare-grid { animation-delay: 0.1s; }
.slide.active .legal-timeline { animation-delay: 0.1s; }
.slide.active .actors-grid { animation-delay: 0.1s; }
.slide.active .policy-grid { animation-delay: 0.1s; }
.slide.active .pathways-grid { animation-delay: 0.1s; }
.slide.active .conclusion-layout { animation-delay: 0.1s; }
.slide.active .refs-grid { animation-delay: 0.1s; }
.slide.active .big-quote { animation-delay: 0.15s; }
.slide.active .big-cite { animation-delay: 0.25s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SCROLLABLE SLIDES
   ============================================ */
.slide-actors .slide-content,
.slide-policy .slide-content,
.slide-refs .slide-content {
  overflow-y: auto;
  justify-content: flex-start;
  padding-top: 50px;
  padding-bottom: 80px;
}
.slide-actors .slide-content::-webkit-scrollbar,
.slide-policy .slide-content::-webkit-scrollbar,
.slide-refs .slide-content::-webkit-scrollbar { width: 4px; }
.slide-actors .slide-content::-webkit-scrollbar-track,
.slide-policy .slide-content::-webkit-scrollbar-track,
.slide-refs .slide-content::-webkit-scrollbar-track { background: transparent; }
.slide-actors .slide-content::-webkit-scrollbar-thumb,
.slide-policy .slide-content::-webkit-scrollbar-thumb,
.slide-refs .slide-content::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }