/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg: #080808;
  --accent: #C8FF00;
  --text: #F0F0F0;
  --text-dim: rgba(240,240,240,0.45);
  --text-faint: rgba(240,240,240,0.2);
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

/* ─── SLIDES ─────────────────────────────────────────────── */
.slide {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  padding: 60px 80px;
}
.slide.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

/* ─── DOT GRID ───────────────────────────────────────────── */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* ─── SIDEBAR ────────────────────────────────────────────── */
#sidebar {
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: 2px;
  background: var(--accent);
  z-index: 1000;
  overflow: hidden;
  transition: none;
  display: flex;
  flex-direction: column;
}
#sidebar.expanded {
  width: 220px;
  background: rgba(8,8,8,0.95);
  border-right: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}
#sidebar .sidebar-accent-line {
  position: absolute;
  left: 0; top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent);
  pointer-events: none;
}
#sidebar .sidebar-inner {
  opacity: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 220px;
}
#sidebar.expanded .sidebar-inner {
  opacity: 1;
  transition: opacity 0.15s ease 0.15s;
}
.sidebar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(200,255,0,0.6);
  letter-spacing: 3px;
  padding: 24px 20px 16px;
  text-transform: uppercase;
}
.sidebar-nav {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 12px;
}
.sidebar-nav li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
}
.sidebar-nav li:hover { background: rgba(255,255,255,0.04); }
.sidebar-nav li .nav-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.15s;
}
.sidebar-nav li.active .nav-dot { background: var(--accent); }
.sidebar-nav li .nav-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  width: 16px;
  flex-shrink: 0;
}
.sidebar-nav li .nav-name {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.sidebar-nav li.active .nav-name { color: rgba(255,255,255,0.9); }
.sidebar-footer {
  padding: 16px 20px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}

/* ─── PROGRESS BAR ───────────────────────────────────────── */
#progress-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  z-index: 900;
}
#progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ─── TYPOGRAPHY UTILITIES ──────────────────────────────── */
.display { font-family: var(--font-display); line-height: 0.92; letter-spacing: -1px; }
.mono { font-family: var(--font-mono); }
.ui { font-family: var(--font-ui); }
.accent { color: var(--accent); }
.dim { color: var(--text-dim); }
.faint { color: var(--text-faint); }

/* ─── BENTO CARD ─────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.card-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ─── PILL TAG ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.tag.accent {
  border-color: rgba(200,255,0,0.3);
  color: rgba(200,255,0,0.8);
}

/* ─── PHASE HEADER ───────────────────────────────────────── */
.phase-header {
  position: absolute;
  top: 40px;
  left: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phase-num {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(200,255,0,0.1);
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.phase-title {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.phase-days {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(200,255,0,0.7);
  position: relative;
  z-index: 1;
}

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,0,0.4), 0 0 8px rgba(200,255,0,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(200,255,0,0), 0 0 16px rgba(200,255,0,0.6); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes trace {
  to { stroke-dashoffset: 0; }
}
@keyframes heartbeat {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 0; }
}
@keyframes loopTrace {
  0% { stroke-dashoffset: 900; }
  100% { stroke-dashoffset: 0; }
}
@keyframes columnGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(200,255,0,0.04) inset; }
  50% { box-shadow: 0 0 60px rgba(200,255,0,0.08) inset; }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 0 — BOOT                                           */
/* ══════════════════════════════════════════════════════════ */
#slide-0 {
  background: #000;
  justify-content: center;
  align-items: center;
}
.boot-terminal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 520px;
}
.boot-line {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 0;
  white-space: pre;
}
.boot-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--accent);
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 1 — INTRO                                          */
/* ══════════════════════════════════════════════════════════ */
#slide-1 {
  justify-content: space-between;
  align-items: stretch;
  padding: 48px 80px;
}
.intro-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.intro-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  justify-content: center;
}
.intro-name-janique {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  color: var(--text);
  letter-spacing: -2px;
  line-height: 0.88;
  opacity: 0;
  transform: translateX(-60px);
}
.intro-name-smeets-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.intro-name-smeets {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  color: var(--text);
  letter-spacing: -2px;
  line-height: 0.88;
  opacity: 0;
  transform: translateX(60px);
  position: relative;
  display: inline-block;
}
.intro-name-smeets::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  transition: none;
}
.intro-mba {
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(200,255,0,0.8);
  opacity: 0;
  align-self: flex-end;
  padding-bottom: 12px;
}
.intro-rule {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 28px 0 20px;
  opacity: 0;
}
.intro-role-placeholder {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  opacity: 0;
}
.intro-role-main {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  margin-top: 6px;
  opacity: 0;
}
.intro-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}
.intro-continue {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.intro-arrow {
  display: inline-block;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 2 — POV                                            */
/* ══════════════════════════════════════════════════════════ */
#slide-2 {
  justify-content: center;
  align-items: center;
  padding: 60px 120px;
}
.pov-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.pov-line {
  font-family: var(--font-display);
  line-height: 0.95;
  clip-path: inset(0 100% 0 0);
}
.pov-l1 { font-size: clamp(32px, 5vw, 64px); color: rgba(255,255,255,0.5); }
.pov-l2 {
  font-size: clamp(56px, 9vw, 120px);
  color: var(--text);
  position: relative;
  display: inline-block;
}
.pov-strikethrough {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 4px;
  background: #FF3333;
  transform: translateY(-50%);
}
.pov-l3 { font-size: clamp(32px, 5vw, 64px); color: rgba(255,255,255,0.5); margin-top: 8px; }
.pov-l4 { font-size: clamp(56px, 9vw, 120px); color: var(--accent); }
.pov-l5 { font-size: clamp(56px, 9vw, 120px); color: var(--text); }
.pov-sub {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
}
.pov-sub p {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(14px, 1.4vw, 20px);
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 3 — OVERVIEW                                       */
/* ══════════════════════════════════════════════════════════ */
#slide-3 {
  justify-content: flex-start;
  align-items: flex-start;
  padding: 52px 80px 60px;
  gap: 0;
}
.overview-header {
  margin-bottom: 8px;
}
.overview-header h2 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(200,255,0,0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.overview-header p {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin-top: 40px;
  flex: 1;
}
.phase-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px 36px;
  border-top: 4px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(40px);
  position: relative;
}
.phase-block:first-child {
  border-top-color: var(--accent);
}
.phase-block + .phase-block::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.phase-block .pb-days {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
}
.phase-block .pb-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--text);
  line-height: 0.9;
  margin-bottom: 16px;
}
.phase-block .pb-desc {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  flex: 1;
}
.phase-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 18px;
  color: rgba(255,255,255,0.15);
}
.timeline-footer {
  width: 100%;
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-ui);
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.25);
  opacity: 0;
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 4 — STABILIZE                                      */
/* ══════════════════════════════════════════════════════════ */
#slide-4 {
  justify-content: flex-start;
  align-items: stretch;
  padding: 52px 80px 48px;
  gap: 0;
}
.bento-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 100%;
  flex: 1;
  margin-top: 100px;
  min-height: 0;
}
.card-territories {
  grid-row: 1 / 3;
  grid-column: 1;
  min-height: 0;
}
.card-no-to-grow { grid-row: 1; grid-column: 2; min-height: 0; overflow: hidden; }
.card-market-tiers { grid-row: 1; grid-column: 3; min-height: 0; overflow: hidden; }
.card-hub-spoke { grid-row: 2; grid-column: 2 / 4; min-height: 0; overflow: hidden; }

/* Map */
.map-container {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-svg { width: 100%; height: auto; opacity: 0.35; }

/* No to Grow */
.no-grow-text {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.no-grow-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.no-grow-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.no-grow-x {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,80,80,0.7);
  flex-shrink: 0;
  line-height: 1;
}
.no-grow-rule {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.toggle {
  width: 56px;
  height: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  border: 1px solid rgba(255,80,80,0.25);
  position: relative;
  cursor: default;
  flex-shrink: 0;
  animation: toggleOffGlow 2.5s ease-in-out infinite;
}
.toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: left 1.2s cubic-bezier(0.4,0,0.2,1), background 1.2s ease;
}
.toggle-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,80,80,0.6);
  letter-spacing: 1px;
}
.toggle.is-on {
  background: rgba(200,255,0,0.1);
  border-color: rgba(200,255,0,0.4);
  animation: none;
  box-shadow: 0 0 12px rgba(200,255,0,0.2);
}
.toggle.is-on::after {
  left: 30px;
  background: var(--accent);
}
.toggle-label.is-on {
  color: rgba(200,255,0,0.7);
}
@keyframes toggleOffGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255,80,80,0.15), 0 0 8px rgba(255,80,80,0.08);
    border-color: rgba(255,80,80,0.2);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(255,80,80,0), 0 0 18px rgba(255,80,80,0.25);
    border-color: rgba(255,80,80,0.45);
  }
}

/* Market tiers */
.tier-row {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 0;
}
.tier-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tier-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tier-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.tier-bar {
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 4px;
}
.tier-desc {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding-left: 14px;
}

/* Hub spoke */
.hub-spoke-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hub-svg-wrap { flex-shrink: 0; }
.hub-desc {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 5 — ORCHESTRATE                                    */
/* ══════════════════════════════════════════════════════════ */
#slide-5 {
  justify-content: flex-start;
  align-items: stretch;
  padding: 52px 80px 48px;
}
.orch-columns {
  display: flex;
  gap: 16px;
  width: 100%;
  flex: 1;
  margin-top: 100px;
  margin-bottom: 16px;
}
.orch-col {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
}
.orch-col.pulse-col {
  border-color: rgba(200,255,0,0.15);
  background: rgba(200,255,0,0.04);
  animation: columnGlow 3s ease-in-out infinite;
}
.orch-pct {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
}
.orch-pct.dim-pct { color: rgba(255,255,255,0.1); }
.orch-pct.accent-pct { color: rgba(200,255,0,0.3); }
.orch-pct.dim-pct2 { color: rgba(200,255,0,0.12); }
.orch-col-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
}
.orch-icon { opacity: 0.5; }
.orch-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.orch-desc {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  flex: 1;
}

/* Heartbeat */
.heartbeat-svg { overflow: visible; }
.heartbeat-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: heartbeat 1.8s ease-in-out infinite;
}

/* Sneaker council */
.council-card {
  width: 100%;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
}
.council-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.council-desc {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 500px;
}
.council-avatars {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.avatar-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}
.avatar-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 6 — ACCELERATE                                     */
/* ══════════════════════════════════════════════════════════ */
#slide-6 {
  justify-content: flex-start;
  align-items: stretch;
  padding: 52px 80px 48px;
}
.accel-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  flex: 1;
  margin-top: 100px;
}
.accel-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 24px;
  opacity: 0;
}
.accel-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loop-svg-wrap {
  position: relative;
  width: 320px;
  height: 200px;
}
.loop-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.loop-path-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 2;
}
.loop-path-anim {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  filter: drop-shadow(0 0 4px rgba(200,255,0,0.6));
}
.loop-labels {
  position: absolute;
  inset: 0;
}
.loop-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(200,255,0,0.6);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: rgba(8,8,8,0.8);
  padding: 2px 6px;
  border-radius: 4px;
}
.loop-title {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.loop-sub {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.6;
  max-width: 280px;
}

/* Upsell + Scope cards */
.accel-card {
  flex: 1;
  opacity: 0;
  transform: translateX(30px);
}
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-icon {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-content {}
.check-title {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
}
.check-desc {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.scope-rows { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.scope-row { display: flex; align-items: center; gap: 12px; }
.scope-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  width: 100px;
  flex-shrink: 0;
}
.scope-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.scope-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.scope-tag { flex-shrink: 0; }
.scope-note {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  width: 130px;
  flex-shrink: 0;
  text-align: right;
}

/* ══════════════════════════════════════════════════════════ */
/*  SLIDE 7 — OUTPUT                                         */
/* ══════════════════════════════════════════════════════════ */
#slide-7 {
  background: #000;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.output-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.output-line {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 36px);
  color: var(--text);
  opacity: 0;
  transform: translateY(16px);
}
.output-line.accent-line { color: var(--accent); }
.output-divider {
  width: 0px;
  height: 1px;
  background: var(--accent);
  margin: 36px auto;
  opacity: 0;
}
.output-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
}
.output-status-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 3px;
}
.output-status-value {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 3px;
}
.output-footer {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
}
.output-footer-name {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.28);
}
.output-footer-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}

/* ─── MAP CITY DOTS ──────────────────────────────────────────── */
.map-dot-wrap {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C8FF00;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.map-dot-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: rgba(200,255,0,0.8);
  white-space: nowrap;
}
.map-dot-wrap:nth-child(1) .map-dot { animation-delay: 0s; }
.map-dot-wrap:nth-child(2) .map-dot { animation-delay: 0.3s; }
.map-dot-wrap:nth-child(3) .map-dot { animation-delay: 0.6s; }
.map-dot-wrap:nth-child(4) .map-dot { animation-delay: 0.9s; }
.map-dot-wrap:nth-child(5) .map-dot { animation-delay: 1.2s; }
.map-dot-wrap:nth-child(6) .map-dot { animation-delay: 1.5s; }

/* ─── EUROPE SVG MAP ─────────────────────────────────────────── */
.map-svg-europe {
  width: 100%;
  height: 100%;
  display: block;
}
/* Base style — all countries */
.map-svg-europe path {
  fill: rgba(255,255,255,0.05);
  stroke: rgba(255,255,255,0.18);
  stroke-width: 0.6;
}
/* Key EMEA markets — slightly brighter */
.map-svg-europe #GB,
.map-svg-europe #FR,
.map-svg-europe #DE,
.map-svg-europe #NL,
.map-svg-europe #ES,
.map-svg-europe #IT,
.map-svg-europe #BE,
.map-svg-europe #AT,
.map-svg-europe #PL,
.map-svg-europe #SE,
.map-svg-europe #DK,
.map-svg-europe #NO {
  fill: rgba(255,255,255,0.1);
  stroke: rgba(255,255,255,0.28);
}
/* Hide irrelevant territories */
.map-svg-europe #IS,
.map-svg-europe #GL,
.map-svg-europe #FO,
.map-svg-europe #SJ,
.map-svg-europe #RS,
.map-svg-europe #KZ,
.map-svg-europe #TR,
.map-svg-europe #MA,
.map-svg-europe #DZ,
.map-svg-europe #TN,
.map-svg-europe #LY,
.map-svg-europe #EG {
  display: none;
}
