/* ============================================================
   KOPDES MERAH PUTIH — PRESENTATION STYLE
   Government-Elegant Dark Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg-base:       #060F1C;
  --bg-surface:    #0B1829;
  --bg-elevated:   #0F2040;
  --bg-card:       #112448;

  --red:           #CC1A1A;
  --red-light:     #E02020;
  --red-dim:       rgba(204,26,26,0.15);

  --gold:          #C9A84C;
  --gold-light:    #E2C46A;
  --gold-dim:      rgba(201,168,76,0.18);
  --gold-border:   rgba(201,168,76,0.28);

  --white:         #F0F4FA;
  --text-body:     #CBD5E1;
  --text-muted:    #8FA3BF;
  --text-faint:    #4A6280;

  --border:        rgba(255,255,255,0.07);
  --border-gold:   rgba(201,168,76,0.28);

  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;

  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-strong: 0 8px 40px rgba(0,0,0,0.6);

  --font:          'Inter', system-ui, sans-serif;

  --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

/* ── SLIDE PAGE ──────────────────────────────────────────── */
.slide-page {
  width: 100vw;
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 80px;
  position: relative;
  overflow: hidden;
  animation: slideEnter 0.5s cubic-bezier(0.4,0,0.2,1) both;
}

.slide-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(201,168,76,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(204,26,26,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.slide-inner {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

/* ── BACKGROUND TEXTURE ──────────────────────────────────── */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ── SLIDE LABELS ────────────────────────────────────────── */
.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.slide-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── HEADINGS ────────────────────────────────────────────── */
.slide-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 28px;
}
.slide-title span.accent { color: var(--gold); }
.slide-title span.red    { color: var(--red-light); }

.section-header-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}
.card-gold {
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.card-red {
  background: linear-gradient(135deg, rgba(204,26,26,0.15), rgba(204,26,26,0.05));
  border: 1px solid rgba(204,26,26,0.35);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

/* ── STAT CARDS ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.stat-number {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── KEY MESSAGE ─────────────────────────────────────────── */
.key-message {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 24px;
  font-size: 15px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
  margin-top: 16px;
}
.key-message strong { color: var(--gold-light); font-style: normal; }

/* ── WARNING BOX ─────────────────────────────────────────── */
.warning-box {
  background: rgba(204,26,26,0.1);
  border: 1px solid rgba(204,26,26,0.4);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 14px 20px;
  font-size: 14px;
  color: #FCA5A5;
}

/* ── TABLES ──────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  background: var(--bg-card);
  color: var(--gold);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-gold);
}
.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: middle;
  line-height: 1.5;
}
.data-table td:has(.badge) {
  white-space: nowrap;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.data-table .highlight-gold { color: var(--gold-light); font-weight: 600; }
.data-table .highlight-red  { color: #FCA5A5; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-red    { background: rgba(204,26,26,0.2); color: #FCA5A5; border: 1px solid rgba(204,26,26,0.4); }
.badge-gold   { background: var(--gold-dim); color: var(--gold-light); border: 1px solid var(--border-gold); }
.badge-green  { background: rgba(34,197,94,0.15); color: #86EFAC; border: 1px solid rgba(34,197,94,0.3); }
.badge-blue   { background: rgba(59,130,246,0.15); color: #93C5FD; border: 1px solid rgba(59,130,246,0.3); }

/* ── PROGRESS BARS ───────────────────────────────────────── */
.progress-item {
  display: grid;
  grid-template-columns: 180px 1fr 60px;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.progress-label { font-size: 13px; color: var(--text-body); font-weight: 500; }
.progress-track {
  height: 8px;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.progress-pct { font-size: 13px; font-weight: 700; color: var(--gold-light); text-align: right; }
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
}
.dot-red    { background: #EF4444; box-shadow: 0 0 6px rgba(239,68,68,0.6); }
.dot-yellow { background: #EAB308; box-shadow: 0 0 6px rgba(234,179,8,0.6); }
.dot-green  { background: #22C55E; box-shadow: 0 0 6px rgba(34,197,94,0.6); }

/* ── TWO-COLUMN LAYOUT ───────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* ── AGENDA ──────────────────────────────────────────────── */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.agenda-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.agenda-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.agenda-item:hover::before { transform: scaleX(1); }
.agenda-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--bg-card);
  -webkit-text-stroke: 1.5px var(--gold-border);
  line-height: 1;
  margin-bottom: 10px;
}
.agenda-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.agenda-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── PYRAMID ─────────────────────────────────────────────── */
.pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.pyramid-level {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: var(--transition);
}
.pyramid-level:nth-child(1) { width: 35%; background: linear-gradient(135deg,#CC1A1A,#A01010); font-size:14px; }
.pyramid-level:nth-child(2) { width: 50%; background: var(--bg-card); border: 1px solid var(--border-gold); }
.pyramid-level:nth-child(3) { width: 65%; background: var(--bg-card); border: 1px solid var(--border-gold); }
.pyramid-level:nth-child(4) { width: 80%; background: var(--bg-elevated); border: 1px solid var(--border); font-size:12px; }

/* ── FLOW DIAGRAM ────────────────────────────────────────── */
.flow-chain {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.flow-node {
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
}
.flow-arrow {
  color: var(--gold);
  font-size: 18px;
  padding: 0 6px;
  flex-shrink: 0;
}

/* ── SWOT ────────────────────────────────────────────────── */
.swot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.swot-cell {
  padding: 20px 22px;
  position: relative;
}
.swot-cell:nth-child(1) { background: rgba(34,197,94,0.08); }
.swot-cell:nth-child(2) { background: rgba(239,68,68,0.08); }
.swot-cell:nth-child(3) { background: rgba(59,130,246,0.08); }
.swot-cell:nth-child(4) { background: rgba(234,179,8,0.08); }
.swot-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.swot-cell:nth-child(1) .swot-label { color: #86EFAC; }
.swot-cell:nth-child(2) .swot-label { color: #FCA5A5; }
.swot-cell:nth-child(3) .swot-label { color: #93C5FD; }
.swot-cell:nth-child(4) .swot-label { color: #FDE68A; }
.swot-item {
  font-size: 13px;
  color: var(--text-body);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.swot-item::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ── MATRIX GRID ─────────────────────────────────────────── */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 16px;
}
.matrix-cell {
  background: var(--bg-elevated);
  padding: 22px;
  min-height: 160px;
}
.matrix-cell.tl { background: linear-gradient(135deg, rgba(34,197,94,0.08), var(--bg-elevated)); }
.matrix-cell.tr { background: linear-gradient(135deg, rgba(59,130,246,0.08), var(--bg-elevated)); }
.matrix-cell.bl { background: linear-gradient(135deg, rgba(234,179,8,0.08), var(--bg-elevated)); }
.matrix-cell.br { background: linear-gradient(135deg, rgba(239,68,68,0.08), var(--bg-elevated)); }
.matrix-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.matrix-items { list-style: none; }
.matrix-items li {
  font-size: 13px;
  color: var(--text-body);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.4;
}
.matrix-items li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── AXIS LABELS ─────────────────────────────────────────── */
.matrix-wrapper {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-rows: 1fr 24px;
  gap: 8px;
  height: 360px;
}
.axis-y {
  grid-column: 1; grid-row: 1;
  display: flex; align-items: center; justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.axis-x {
  grid-column: 2; grid-row: 2;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.matrix-inner { grid-column: 2; grid-row: 1; }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}
.timeline-phase {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  margin: 25px auto 12px;
  position: relative;
  z-index: 1;
}
.timeline-dot.done   { background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
.timeline-dot.active { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.8); }
.timeline-dot.future { background: var(--bg-card); border: 2px solid var(--text-faint); }
.timeline-year {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.timeline-sub {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── RISK HEAT MAP ───────────────────────────────────────── */
.heat-grid {
  display: grid;
  grid-template-columns: 80px repeat(4, 1fr);
  grid-template-rows: auto repeat(3, 1fr);
  gap: 4px;
}
.heat-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 4px;
}
.heat-cell {
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 500;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}
.heat-low    { background: rgba(34,197,94,0.12); color: #86EFAC; border: 1px solid rgba(34,197,94,0.2); }
.heat-med    { background: rgba(234,179,8,0.12); color: #FDE68A; border: 1px solid rgba(234,179,8,0.2); }
.heat-high   { background: rgba(249,115,22,0.15); color: #FDBA74; border: 1px solid rgba(249,115,22,0.3); }
.heat-crit   { background: rgba(204,26,26,0.2); color: #FCA5A5; border: 1px solid rgba(204,26,26,0.4); }
.heat-empty  { background: var(--bg-elevated); border: 1px solid var(--border); }

/* ── SCENARIO BRANCHES ───────────────────────────────────── */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.scenario-card {
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.scenario-card.optimis {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.05));
  border: 1px solid rgba(34,197,94,0.3);
}
.scenario-card.realistis {
  background: linear-gradient(135deg, rgba(234,179,8,0.12), rgba(234,179,8,0.05));
  border: 1px solid rgba(234,179,8,0.3);
}
.scenario-card.pesimis {
  background: linear-gradient(135deg, rgba(204,26,26,0.12), rgba(204,26,26,0.05));
  border: 1px solid rgba(204,26,26,0.3);
}
.scenario-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.scenario-prob {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}
.scenario-card.optimis .scenario-prob  { color: #86EFAC; }
.scenario-card.realistis .scenario-prob{ color: #FDE68A; }
.scenario-card.pesimis .scenario-prob  { color: #FCA5A5; }
.scenario-item {
  font-size: 12px;
  color: var(--text-body);
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.4;
}
.scenario-item::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 10px;
}

/* ── RECOMMENDATION CARDS ────────────────────────────────── */
.rec-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: start;
  transition: var(--transition);
}
.rec-card:hover { border-color: var(--border-gold); transform: translateX(4px); }
.rec-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.rec-card.urgent   .rec-num { background: var(--red-dim); color: var(--red-light); border: 2px solid var(--red); }
.rec-card.priority .rec-num { background: var(--gold-dim); color: var(--gold); border: 2px solid var(--border-gold); }
.rec-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.rec-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.rec-meta {
  text-align: right;
  flex-shrink: 0;
}
.rec-meta-item {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 3px;
  white-space: nowrap;
}
.rec-meta-item strong { color: var(--text-muted); }
.badge-urgent   { background: var(--red-dim); color: #FCA5A5; border: 1px solid rgba(204,26,26,0.4); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-priority { background: var(--gold-dim); color: var(--gold-light); border: 1px solid var(--border-gold); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* ── LIST ITEMS ──────────────────────────────────────────── */
.check-list { list-style: none; }
.check-list li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 14px;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '□';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 14px;
}
.check-list li.done::before { content: '✓'; color: #22C55E; }

.bullet-list { list-style: none; }
.bullet-list li {
  padding: 5px 0 5px 18px;
  position: relative;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}
.bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 6px;
}

/* ── DIVIDERS & ACCENTS ──────────────────────────────────── */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px 0;
  opacity: 0.4;
}
.red-white-bar {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}
.red-white-bar span:first-child { flex: 1; background: var(--red); }
.red-white-bar span:last-child  { flex: 1; background: var(--white); opacity: 0.8; }

/* ── COVER SLIDE ─────────────────────────────────────────── */
.slide-cover {
  position: relative;
  background: var(--bg-base);
  overflow: hidden;
  height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10vw;
}
.cover-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(204,26,26,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #060F1C 0%, #0B1829 50%, #0F1828 100%);
}
.cover-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--red) 50%, white 50%);
}
.cover-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.cover-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.cover-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cover-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--gold);
}
.cover-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cover-title span {
  color: var(--red-light);
  display: block;
}
.cover-year {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.cover-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}
.cover-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-faint);
}
.cover-meta .divider { color: var(--border-gold); }
.cover-logos {
  position: absolute;
  bottom: 80px;
  right: 10vw;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}
.logo-placeholder {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

/* ── SECTION BREAK SLIDE ─────────────────────────────────── */
.slide-section-break {
  background: linear-gradient(135deg, #0A0F1C 0%, #1A0A0A 100%);
  position: relative;
  overflow: hidden;
}
.slide-section-break::after {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(204,26,26,0.06);
}
.section-break-num {
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -20px;
  right: 60px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.section-break-content { position: relative; z-index: 1; }
.section-break-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.section-break-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-break-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}

/* ── UNIT CARD ───────────────────────────────────────────── */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.unit-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}
.unit-card:hover { border-color: var(--border-gold); }
.unit-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.unit-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.unit-type {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.unit-type.cash-cow { color: #86EFAC; }
.unit-type.growth   { color: #93C5FD; }
.unit-type.infra    { color: var(--gold); }

/* ── PHASE CARDS ─────────────────────────────────────────── */
.phase-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.phase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.phase-card.f1::before { background: linear-gradient(90deg, #3B82F6, #06B6D4); }
.phase-card.f2::before { background: linear-gradient(90deg, var(--gold), #F59E0B); }
.phase-card.f3::before { background: linear-gradient(90deg, #8B5CF6, #EC4899); }
.phase-card.f4::before { background: linear-gradient(90deg, #22C55E, var(--gold)); }
.phase-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.phase-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

/* ── BENCHMARK TABLE ─────────────────────────────────────── */
.bm-flag {
  display: inline-block;
  font-size: 18px;
  margin-right: 4px;
}

/* ── CALL TO ACTION ──────────────────────────────────────── */
.cta-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}
.cta-card:hover { background: var(--bg-card); }
.cta-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--red-light);
}
.cta-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.cta-quote {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(204,26,26,0.08), rgba(201,168,76,0.08));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}
.cta-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.cta-quote strong { color: var(--gold-light); font-style: normal; }

/* ── NAVIGATION BAR ──────────────────────────────────────── */
.slide-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(6,15,28,0.95);
  border-top: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 100;
}
.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  user-select: none;
}
.nav-btn:hover {
  background: var(--gold);
  color: var(--bg-base);
  transform: scale(1.05);
}
.nav-btn.disabled {
  opacity: 0.25;
  pointer-events: none;
}
.nav-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nav-section {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-counter {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}
.nav-counter span { color: var(--white); }

/* ── PROGRESS BAR (top) ──────────────────────────────────── */
.top-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bg-card);
  z-index: 101;
}
.top-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.4s ease;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes slideEnter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-child { opacity: 0; animation: slideEnter 0.5s ease both; }
.animate-child:nth-child(1) { animation-delay: 0.1s; }
.animate-child:nth-child(2) { animation-delay: 0.2s; }
.animate-child:nth-child(3) { animation-delay: 0.3s; }
.animate-child:nth-child(4) { animation-delay: 0.4s; }
.animate-child:nth-child(5) { animation-delay: 0.5s; }
.animate-child:nth-child(6) { animation-delay: 0.6s; }
.animate-child:nth-child(7) { animation-delay: 0.7s; }

/* ── UTILITIES ───────────────────────────────────────────── */
.text-gold   { color: var(--gold-light); }
.text-red    { color: #FCA5A5; }
.text-green  { color: #86EFAC; }
.text-blue   { color: #93C5FD; }
.text-muted  { color: var(--text-muted); }
.text-small  { font-size: 12px; }
.text-center { text-align: center; }
.fw-bold     { font-weight: 700; }
.fw-black    { font-weight: 900; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.gap-sm { gap: 12px; }
.gap-md { gap: 20px; }

/* ── ABBREVIATION TOOLTIPS ───────────────────────────────── */
abbr[title] {
  text-decoration: underline dotted rgba(201,168,76,0.5);
  cursor: help;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .slide-page  { padding: 32px 48px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .agenda-grid { grid-template-columns: repeat(2, 1fr); }
}

