/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM — Indigo Ink × Editorial
   Palette: Deep indigo, violet, gold, soft cream
   Fonts: Cormorant Garamond (display) + Manrope (body)
═══════════════════════════════════════════════════════════ */

:root {
  --bg-deep:       #0D0820;
  --bg-mid:        #130F2E;
  --bg-card:       #1A1540;
  --bg-card-hover: #201A4D;
  --purple-dark:   #3D1E7C;
  --purple-mid:    #5B3DB8;
  --purple-light:  #7B68EE;
  --purple-glow:   rgba(123,104,238,0.18);
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --gold-glow:     rgba(201,168,76,0.15);
  --teal:          #2ABFBF;
  --teal-glow:     rgba(42,191,191,0.15);
  --rose:          #E05C8A;
  --rose-glow:     rgba(224,92,138,0.15);
  --orange:        #E8834A;
  --orange-glow:   rgba(232,131,74,0.15);
  --cream:         #F0EBE0;
  --cream-dim:     #C8C0B0;
  --white:         #FFFFFF;
  --text-primary:  #EDE8FF;
  --text-secondary:#A89FCC;
  --text-muted:    #6B6090;
  --border:        rgba(123,104,238,0.2);
  --border-gold:   rgba(201,168,76,0.3);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 40px rgba(123,104,238,0.25);
  --transition:    all 0.45s 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-deep);
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── Progress Bar ── */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 100;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold));
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px var(--purple-light);
}

/* ── Slide Counter ── */
.slide-counter {
  position: fixed; top: 20px; right: 24px; z-index: 100;
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(13,8,32,0.7);
  border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* ── Nav Dots ── */
.nav-dots {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 100; display: flex; gap: 8px; align-items: center;
}
.nav-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-muted); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.nav-dot.active {
  background: var(--purple-light);
  width: 22px; border-radius: 4px;
  box-shadow: 0 0 8px var(--purple-light);
}
.nav-dot:hover:not(.active) { background: var(--text-secondary); }

/* ── Arrow Navigation ── */
.nav-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  z-index: 100; width: 44px; height: 44px;
  background: rgba(13,8,32,0.7); border: 1px solid var(--border);
  border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  color: var(--text-secondary); transition: var(--transition);
  backdrop-filter: blur(10px);
}
.nav-arrow svg { width: 18px; height: 18px; }
.nav-prev { left: 20px; }
.nav-next { right: 20px; }
.nav-arrow:hover {
  background: var(--purple-glow); border-color: var(--purple-light);
  color: var(--purple-light); box-shadow: 0 0 20px var(--purple-glow);
}
.nav-arrow:disabled { opacity: 0.2; cursor: not-allowed; }

/* ── Keyboard Hint ── */
.keyboard-hint {
  position: fixed; bottom: 60px; left: 50%; transform: translateX(-50%);
  z-index: 100; font-size: 11px; color: var(--text-muted);
  font-family: 'Space Mono', monospace; letter-spacing: 0.05em;
  opacity: 1; transition: opacity 1s ease;
  pointer-events: none;
}
.keyboard-hint.hidden { opacity: 0; }

/* ── 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;
  padding: 60px 80px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.slide.active {
  opacity: 1; transform: translateX(0);
  pointer-events: all;
}
.slide.exit-left {
  opacity: 0; transform: translateX(-60px);
}

/* ── Background Orbs ── */
.bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,30,124,0.5) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(42,191,191,0.15) 0%, transparent 70%);
  top: 50%; right: 20%;
  animation: orbFloat3 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,20px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px,-30px) scale(1.05); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,-50%) scale(1); }
  50% { transform: translate(20px,-50%) scale(0.95); }
}

/* ── Slide Number BG ── */
.slide-number-bg {
  position: absolute; bottom: -20px; right: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 700;
  color: rgba(123,104,238,0.05);
  line-height: 1; pointer-events: none; z-index: 0;
  user-select: none;
}

/* ── Slide Inner ── */
.slide-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1200px;
  display: flex; flex-direction: column; gap: 24px;
}

/* ── Common Components ── */
.section-tag {
  display: inline-flex; align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 20px; width: fit-content;
  background: var(--purple-glow); border: 1px solid var(--border);
  color: var(--purple-light);
}
.section-tag.accent-gold { background: var(--gold-glow); border-color: var(--border-gold); color: var(--gold-light); }
.section-tag.accent-teal { background: var(--teal-glow); border-color: rgba(42,191,191,0.3); color: var(--teal); }
.section-tag.accent-rose { background: var(--rose-glow); border-color: rgba(224,92,138,0.3); color: var(--rose); }
.section-tag.accent-orange { background: var(--orange-glow); border-color: rgba(232,131,74,0.3); color: var(--orange); }
.section-tag.accent-purple { background: var(--purple-glow); border-color: var(--border); color: var(--purple-light); }

.slide-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.slide-lead {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.6; max-width: 600px;
}

.speaker-badge {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.speaker-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--purple-light);
  background: var(--purple-glow); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 4px;
}
.speaker-name {
  font-size: 12px; color: var(--text-muted);
  font-weight: 500; letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════
   SLIDE 1 — TITLE
═══════════════════════════════════════════════ */
.slide-title {
  background: linear-gradient(135deg, var(--bg-deep) 0%, #1A0A3C 50%, var(--bg-deep) 100%);
}
.title-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 20px;
}
.title-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
}
.eyebrow-line {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.title-main {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.title-line-1, .title-line-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.title-line-2 {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-vs {
  font-family: 'Space Mono', monospace;
  font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); padding: 4px 0;
}
.title-subtitle {
  font-size: 16px; color: var(--text-secondary);
  font-weight: 400; letter-spacing: 0.02em;
  max-width: 500px; line-height: 1.5;
}
.title-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 700px;
}
.team-member {
  display: flex; align-items: center; gap: 8px;
  background: rgba(123,104,238,0.08); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 30px;
  transition: var(--transition);
}
.team-member:hover {
  background: var(--purple-glow); border-color: var(--purple-light);
}
.member-id {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--purple-light); font-weight: 700;
}
.member-name { font-size: 13px; color: var(--cream); font-weight: 500; }

/* ═══════════════════════════════════════════════
   SLIDE 2 — AGENDA
═══════════════════════════════════════════════ */
.slide-agenda { background: var(--bg-deep); }
.agenda-grid {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.agenda-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 20px;
  transition: var(--transition); cursor: default;
}
.agenda-item:hover {
  background: var(--bg-card-hover); border-color: var(--purple-light);
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
}
.agenda-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--purple-light);
  min-width: 28px;
}
.agenda-icon { font-size: 22px; min-width: 32px; text-align: center; }
.agenda-text { display: flex; flex-direction: column; gap: 2px; }
.agenda-text strong { font-size: 15px; color: var(--cream); font-weight: 600; }
.agenda-text span { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   SPLIT LAYOUT
═══════════════════════════════════════════════ */
.split-layout {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 40px !important;
}
.split-left { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.split-right { flex: 1; display: flex; flex-direction: column; gap: 18px; }

/* ═══════════════════════════════════════════════
   SLIDE 3 — SPEAKER 1
═══════════════════════════════════════════════ */
.concept-cards { display: flex; flex-direction: column; gap: 12px; }
.concept-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border-radius: var(--radius-md);
  border: 1px solid; transition: var(--transition);
}
.concept-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card-purple {
  background: rgba(61,30,124,0.25); border-color: rgba(123,104,238,0.35);
}
.card-gold {
  background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3);
}
.card-icon { font-size: 26px; min-width: 36px; }
.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--cream);
  margin-bottom: 4px;
}
.card-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.card-body strong { color: var(--cream); }

.core-idea-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-glow);
}
.core-idea-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple-light); text-align: center;
}
.core-idea-visual {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ci-top, .ci-bottom {
  display: flex; align-items: center; gap: 10px;
  background: rgba(123,104,238,0.1); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 600; color: var(--cream);
  width: 100%; justify-content: center;
}
.ci-bottom { background: rgba(42,191,191,0.1); border-color: rgba(42,191,191,0.3); }
.ci-filter {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(61,30,124,0.4), rgba(91,61,184,0.3));
  border: 1px solid var(--purple-light); padding: 12px 20px;
  border-radius: var(--radius-md); font-size: 14px; font-weight: 700;
  color: var(--purple-light); width: 100%; justify-content: center;
  text-align: center; box-shadow: 0 0 20px var(--purple-glow);
}
.ci-filter small { font-size: 11px; color: var(--text-secondary); font-weight: 400; }
.ci-filter-icon, .ci-icon { font-size: 20px; }
.ci-arrow {
  font-size: 18px; color: var(--text-muted);
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(3px); }
}

.example-box {
  background: rgba(201,168,76,0.08); border: 1px solid var(--border-gold);
  border-radius: var(--radius-md); padding: 16px 18px;
}
.example-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 8px; text-transform: uppercase;
}
.example-box p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.example-box em { color: var(--rose); font-style: normal; }
.example-box strong { color: var(--teal); }

/* ═══════════════════════════════════════════════
   SLIDE 4 — SPEAKER 2
═══════════════════════════════════════════════ */
.comparison-table {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.comp-header {
  display: grid; grid-template-columns: 140px 1fr 1fr;
  background: rgba(123,104,238,0.12); border-bottom: 1px solid var(--border);
}
.comp-col-label { padding: 14px 20px; }
.comp-col {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 20px;
  font-weight: 700; font-size: 14px; color: var(--cream);
  border-left: 1px solid var(--border);
}
.comp-col-a { color: var(--purple-light); }
.comp-col-b { color: var(--gold-light); }
.col-icon { font-size: 18px; }
.comp-row {
  display: grid; grid-template-columns: 140px 1fr 1fr;
  border-bottom: 1px solid rgba(123,104,238,0.08);
  transition: var(--transition);
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(123,104,238,0.05); }
.comp-row-label {
  padding: 12px 20px; font-size: 12px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; display: flex; align-items: center;
}
.comp-cell {
  padding: 12px 20px; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid rgba(123,104,238,0.08);
  text-align: center;
}
.comp-a { color: var(--purple-light); }
.comp-b { color: var(--gold-light); }

.clarification-strip {
  display: flex; align-items: stretch; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.clarify-item {
  flex: 1; display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
}
.clarify-ok { background: rgba(42,191,191,0.06); }
.clarify-bad { background: rgba(224,92,138,0.06); }
.clarify-icon { font-size: 22px; min-width: 28px; }
.clarify-item strong { font-size: 14px; color: var(--cream); display: block; margin-bottom: 4px; }
.clarify-item p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.clarify-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px; font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  background: rgba(123,104,238,0.08); border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   SLIDE 5 — SPEAKER 3
═══════════════════════════════════════════════ */
.definition-box {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(224,92,138,0.08); border: 1px solid rgba(224,92,138,0.25);
  border-radius: var(--radius-md); padding: 16px 18px;
}
.def-icon { font-size: 26px; min-width: 36px; }
.definition-box strong { font-size: 15px; color: var(--cream); display: block; margin-bottom: 4px; }
.definition-box p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

.ethics-points { display: flex; flex-direction: column; gap: 10px; }
.ethics-point {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
}
.ep-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-light); min-width: 8px; margin-top: 6px;
  box-shadow: 0 0 8px var(--purple-light);
}
.ep-dot.ep-gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.ethics-point p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.ethics-point strong { color: var(--cream); }

.profession-cards { display: flex; flex-direction: column; gap: 10px; }
.prof-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 18px;
  transition: var(--transition);
}
.prof-card:hover {
  border-color: var(--purple-light); transform: translateX(4px);
  box-shadow: var(--shadow-card);
}
.prof-icon { font-size: 26px; min-width: 36px; }
.prof-content h4 {
  font-size: 14px; font-weight: 700; color: var(--cream); margin-bottom: 4px;
}
.prof-content p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.arrow-right { color: var(--text-muted); margin: 0 4px; }
.prof-content strong { color: var(--teal); }

.key-insight {
  background: linear-gradient(135deg, rgba(61,30,124,0.3), rgba(201,168,76,0.1));
  border: 1px solid var(--border-gold); border-radius: var(--radius-md);
  padding: 16px 20px; text-align: center;
}
.ki-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.key-insight p { font-size: 16px; color: var(--cream); }
.key-insight strong { color: var(--gold-light); }

/* ═══════════════════════════════════════════════
   SLIDE 6 — SPEAKER 4
═══════════════════════════════════════════════ */
.consequences-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px;
  align-items: stretch;
}
.consequence-panel {
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid;
}
.panel-danger {
  background: rgba(224,92,138,0.07); border-color: rgba(224,92,138,0.25);
}
.panel-success {
  background: rgba(42,191,191,0.07); border-color: rgba(42,191,191,0.25);
}
.panel-header {
  display: flex; align-items: center; gap: 10px;
}
.panel-icon { font-size: 22px; }
.panel-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--cream);
}
.consequence-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.consequence-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-secondary);
}
.bullet-icon { font-size: 16px; min-width: 22px; }
.panel-example {
  background: rgba(224,92,138,0.1); border: 1px solid rgba(224,92,138,0.2);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 12px; color: var(--text-secondary); line-height: 1.5;
}
.panel-example strong { color: var(--rose); }
.success-example {
  background: rgba(42,191,191,0.1); border-color: rgba(42,191,191,0.2);
}
.success-example strong { color: var(--teal); }

.consequence-divider {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px;
}
.balance-scale { font-size: 32px; animation: scaleRock 3s ease-in-out infinite; }
@keyframes scaleRock {
  0%,100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
.consequence-divider span {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); writing-mode: vertical-rl;
}

.insight-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, rgba(61,30,124,0.3), rgba(91,61,184,0.2));
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px 24px;
}
.ib-icon { font-size: 20px; }
.insight-banner p { font-size: 15px; color: var(--text-secondary); }
.insight-banner strong { color: var(--gold-light); }

/* ═══════════════════════════════════════════════
   SLIDE 7 — FLOW DIAGRAM
═══════════════════════════════════════════════ */
.flow-diagram {
  display: flex; flex-direction: row; align-items: center;
  justify-content: center; gap: 0; margin-top: 8px;
  flex-wrap: nowrap;
}
.flow-node {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 20px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg-card);
  min-width: 160px; text-align: center; transition: var(--transition);
}
.flow-node:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.node-start { border-color: rgba(232,131,74,0.4); background: rgba(232,131,74,0.08); }
.node-decision { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.08); }
.node-filter {
  border-color: var(--purple-light); background: rgba(61,30,124,0.3);
  box-shadow: 0 0 30px var(--purple-glow);
  min-width: 180px;
}
.node-outcome { border-color: rgba(42,191,191,0.4); background: rgba(42,191,191,0.08); }
.fn-icon { font-size: 32px; }
.fn-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600; color: var(--cream);
}
.fn-sub { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

.flow-arrow {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 0 8px; min-width: 60px;
}
.fa-line {
  width: 2px; height: 30px;
  background: linear-gradient(180deg, var(--text-muted), var(--purple-light));
  display: none;
}
.fa-head { font-size: 14px; color: var(--purple-light); transform: rotate(-90deg); }
.fa-label {
  font-size: 10px; color: var(--text-muted);
  font-family: 'Space Mono', monospace; letter-spacing: 0.05em;
  white-space: nowrap; writing-mode: horizontal-tb;
}

/* Make flow horizontal */
.flow-diagram .flow-arrow .fa-head { transform: none; }
.flow-arrow { flex-direction: row; align-items: center; gap: 6px; min-width: 80px; }
.fa-line { width: 30px; height: 2px; display: block; }
.fa-label { writing-mode: horizontal-tb; font-size: 9px; display: none; }

/* ═══════════════════════════════════════════════
   SLIDE 8 — KEYWORDS
═══════════════════════════════════════════════ */
.keywords-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 8px;
}
.kw-item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px; border-radius: var(--radius-lg);
  border: 1px solid; transition: var(--transition); cursor: default;
}
.kw-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.kw-large { grid-column: span 1; }
.kw-purple { background: rgba(123,104,238,0.1); border-color: rgba(123,104,238,0.3); }
.kw-gold { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); }
.kw-teal { background: rgba(42,191,191,0.1); border-color: rgba(42,191,191,0.3); }
.kw-rose { background: rgba(224,92,138,0.1); border-color: rgba(224,92,138,0.3); }
.kw-orange { background: rgba(232,131,74,0.1); border-color: rgba(232,131,74,0.3); }
.kw-indigo { background: rgba(91,61,184,0.15); border-color: rgba(91,61,184,0.35); }
.kw-icon { font-size: 28px; }
.kw-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--cream);
}
.kw-def { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   SLIDE 9 — SPEAKER 5
═══════════════════════════════════════════════ */
.summary-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.summary-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: var(--transition);
}
.summary-card:hover {
  border-color: var(--purple-light); transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.sc-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--purple-light);
  min-width: 28px; padding-top: 2px;
}
.summary-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.summary-card strong { color: var(--cream); }

.practical-tips {
  background: linear-gradient(135deg, rgba(61,30,124,0.2), rgba(201,168,76,0.08));
  border: 1px solid var(--border-gold); border-radius: var(--radius-lg);
  padding: 18px 24px;
}
.pt-label {
  font-size: 13px; font-weight: 700; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.tips-row { display: flex; gap: 12px; flex-wrap: wrap; }
.tip-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 16px; border-radius: 30px;
  font-size: 13px; color: var(--cream); font-weight: 500;
  transition: var(--transition);
}
.tip-item:hover { background: rgba(201,168,76,0.15); transform: translateY(-2px); }
.tip-icon { font-size: 16px; }

/* ═══════════════════════════════════════════════
   SLIDE 10 — FINAL MESSAGE
═══════════════════════════════════════════════ */
.slide-final {
  background: linear-gradient(135deg, #0D0820 0%, #1A0A3C 40%, #0D1A2E 100%);
}
.final-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 24px;
  max-width: 800px;
}
.final-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; line-height: 0.5;
  color: var(--purple-light); opacity: 0.3;
  font-weight: 700;
}
.final-message {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400; line-height: 1.4;
  color: var(--cream); letter-spacing: -0.01em;
}
.final-highlight {
  display: block; margin-top: 8px;
  font-weight: 700; font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-divider {
  width: 100px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}
.final-sub {
  font-size: 16px; color: var(--text-secondary);
  font-style: italic; letter-spacing: 0.02em;
}
.final-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(123,104,238,0.1); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 30px;
  font-size: 13px; color: var(--text-secondary);
}
.fb-icon { font-size: 18px; }

/* ═══════════════════════════════════════════════
   SLIDE 11 — THANK YOU
═══════════════════════════════════════════════ */
.slide-thankyou {
  background: linear-gradient(135deg, var(--bg-deep) 0%, #1A0A3C 100%);
}
.thankyou-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 28px;
  width: 100%; max-width: 700px;
}
.ty-top { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ty-icon { font-size: 52px; animation: tyFloat 3s ease-in-out infinite; }
@keyframes tyFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.ty-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 80px); font-weight: 700;
  background: linear-gradient(135deg, var(--cream), var(--purple-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.ty-sub { font-size: 15px; color: var(--text-secondary); }

.ty-team {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 28px; width: 100%;
}
.ty-team-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.ty-members {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.ty-member {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--cream); font-weight: 500;
  background: rgba(123,104,238,0.08); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 20px;
}
.ty-member span {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--purple-light); font-weight: 700;
}

.ty-topic {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(61,30,124,0.2));
  border: 1px solid var(--border-gold); border-radius: var(--radius-md);
  padding: 14px 24px; width: 100%;
}
.ty-topic-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.ty-topic p { font-size: 14px; color: var(--cream); font-weight: 500; }

/* ═══════════════════════════════════════════════
   ENTRY ANIMATIONS
═══════════════════════════════════════════════ */
.slide.active .slide-heading,
.slide.active .section-tag,
.slide.active .speaker-badge,
.slide.active .slide-lead,
.slide.active .title-content,
.slide.active .final-content,
.slide.active .thankyou-content {
  animation: fadeSlideUp 0.6s cubic-bezier(0.4,0,0.2,1) both;
}
.slide.active .slide-heading { animation-delay: 0.1s; }
.slide.active .slide-lead { animation-delay: 0.2s; }

.slide.active .agenda-item:nth-child(1) { animation: fadeSlideUp 0.5s 0.15s both; }
.slide.active .agenda-item:nth-child(2) { animation: fadeSlideUp 0.5s 0.22s both; }
.slide.active .agenda-item:nth-child(3) { animation: fadeSlideUp 0.5s 0.29s both; }
.slide.active .agenda-item:nth-child(4) { animation: fadeSlideUp 0.5s 0.36s both; }
.slide.active .agenda-item:nth-child(5) { animation: fadeSlideUp 0.5s 0.43s both; }

.slide.active .concept-card:nth-child(1) { animation: fadeSlideUp 0.5s 0.2s both; }
.slide.active .concept-card:nth-child(2) { animation: fadeSlideUp 0.5s 0.32s both; }

.slide.active .prof-card:nth-child(1) { animation: fadeSlideUp 0.5s 0.15s both; }
.slide.active .prof-card:nth-child(2) { animation: fadeSlideUp 0.5s 0.25s both; }
.slide.active .prof-card:nth-child(3) { animation: fadeSlideUp 0.5s 0.35s both; }

.slide.active .flow-node:nth-child(1) { animation: fadeSlideUp 0.5s 0.1s both; }
.slide.active .flow-node:nth-child(3) { animation: fadeSlideUp 0.5s 0.2s both; }
.slide.active .flow-node:nth-child(5) { animation: fadeSlideUp 0.5s 0.3s both; }
.slide.active .flow-node:nth-child(7) { animation: fadeSlideUp 0.5s 0.4s both; }

.slide.active .kw-item:nth-child(1) { animation: fadeSlideUp 0.5s 0.1s both; }
.slide.active .kw-item:nth-child(2) { animation: fadeSlideUp 0.5s 0.18s both; }
.slide.active .kw-item:nth-child(3) { animation: fadeSlideUp 0.5s 0.26s both; }
.slide.active .kw-item:nth-child(4) { animation: fadeSlideUp 0.5s 0.34s both; }
.slide.active .kw-item:nth-child(5) { animation: fadeSlideUp 0.5s 0.42s both; }
.slide.active .kw-item:nth-child(6) { animation: fadeSlideUp 0.5s 0.50s both; }

.slide.active .summary-card:nth-child(1) { animation: fadeSlideUp 0.5s 0.1s both; }
.slide.active .summary-card:nth-child(2) { animation: fadeSlideUp 0.5s 0.18s both; }
.slide.active .summary-card:nth-child(3) { animation: fadeSlideUp 0.5s 0.26s both; }
.slide.active .summary-card:nth-child(4) { animation: fadeSlideUp 0.5s 0.34s both; }

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

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .slide { padding: 50px 40px; }
  .split-layout { flex-direction: column !important; }
  .consequences-grid { grid-template-columns: 1fr; }
  .consequence-divider { flex-direction: row; }
  .balance-scale { writing-mode: horizontal-tb; }
  .flow-diagram { flex-direction: column; }
  .fa-head { transform: none; }
  .fa-line { width: 2px; height: 20px; }
  .keywords-cloud { grid-template-columns: repeat(2, 1fr); }
  .summary-grid { grid-template-columns: 1fr; }
  .comp-header, .comp-row { grid-template-columns: 100px 1fr 1fr; }
}
@media (max-width: 600px) {
  .slide { padding: 40px 20px; }
  .slide-heading { font-size: 28px; }
  .keywords-cloud { grid-template-columns: 1fr; }
  .team-grid { flex-direction: column; align-items: center; }
  .tips-row { flex-direction: column; }
}