/* ===================================================================
   PRESENTATION DECK STYLESHEET
   Theme: Modern AI Startup / Tech Education Dark Mode
   =================================================================== */

:root {
  /* Color Palette */
  --bg-main: #060814;
  --bg-surface: #0c1024;
  --bg-card: rgba(16, 22, 48, 0.7);
  --bg-card-hover: rgba(24, 33, 72, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(99, 102, 241, 0.3);
  --border-cyan: rgba(56, 189, 248, 0.4);
  --border-emerald: rgba(52, 211, 153, 0.4);
  --border-rose: rgba(244, 63, 94, 0.4);

  /* Accents */
  --cyan: #38bdf8;
  --blue: #60a5fa;
  --indigo: #6366f1;
  --purple: #a855f7;
  --violet: #8b5cf6;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --rose: #f43f5e;
  --amber: #fbbf24;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Glows */
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 0 1px 1px var(--border-subtle);
  --glow-cyan: 0 0 25px rgba(56, 189, 248, 0.25);
  --glow-purple: 0 0 25px rgba(168, 85, 247, 0.25);
  --glow-emerald: 0 0 25px rgba(16, 185, 129, 0.25);
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================================================
   AMBIENT BACKGROUND & PARTICLES
   =================================================================== */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4f46e5 0%, rgba(99, 102, 241, 0) 70%);
  top: -150px;
  left: -150px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #06b6d4 0%, rgba(6, 182, 212, 0) 70%);
  bottom: -100px;
  right: -100px;
  animation-duration: 25s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #9333ea 0%, rgba(147, 51, 234, 0) 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  animation-duration: 30s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===================================================================
   HEADER & PROGRESS BAR
   =================================================================== */
.deck-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(6, 8, 20, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.header-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.progress-bar {
  height: 100%;
  width: 5%;
  background: linear-gradient(90deg, var(--cyan), var(--indigo), var(--purple));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.icon-btn.active {
  background: rgba(56, 189, 248, 0.15);
  color: var(--cyan);
  border-color: var(--cyan);
}

.icon {
  width: 16px;
  height: 16px;
}

.key-hint-pill {
  font-size: 0.75rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.key-hint-pill strong {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ===================================================================
   FOOTER NAVIGATION
   =================================================================== */
.deck-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(6, 8, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 100;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.nav-btn.primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-color: rgba(124, 58, 237, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-btn.primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.slide-dots-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slide-dot.active {
  width: 22px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

.slide-counter {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.slide-counter span#currentSlideNum {
  color: var(--cyan);
  font-weight: 700;
}

/* ===================================================================
   MAIN PRESENTATION CONTAINER & SLIDES
   =================================================================== */
.deck-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding-top: 56px;
  padding-bottom: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 56px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.45s;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 20;
}

.slide-content {
  width: 100%;
  max-width: 1140px;
  max-height: calc(100vh - 140px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideFadeIn 0.5s ease-out forwards;
}

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

/* ===================================================================
   SHARED TYPOGRAPHY & COMMON COMPONENTS
   =================================================================== */
.slide-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.slide-heading {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.slide-subheading {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.glow-cyan {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
  color: var(--cyan);
}

.glow-purple {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
  color: var(--purple);
}

.glow-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 102, 241, 0.15);
  border-radius: 16px;
}

.glow-purple-box {
  border-color: var(--purple) !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3) !important;
}

.glow-emerald-box {
  border-color: var(--emerald) !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3) !important;
}

.text-rose { color: var(--rose) !important; }
.text-cyan { color: var(--cyan) !important; }
.text-purple { color: var(--purple) !important; }
.text-emerald { color: var(--emerald-light) !important; }
.text-muted { color: var(--text-muted); }
.text-danger { color: #f87171; }
.text-success { color: var(--emerald-light); }
.text-italic { font-style: italic; color: var(--text-muted); }

/* ===================================================================
   SLIDE 1: COVER LAYOUT
   =================================================================== */
.cover-layout {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.cover-header {
  margin-bottom: 0.2rem;
}

.cover-main .sub-headline {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.cover-main .main-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  max-width: 950px;
}

.cover-main .tagline-highlight {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-main);
}

.flow-hero-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(12, 16, 36, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin: 0.75rem 0;
  max-width: 100%;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  min-width: 110px;
  transition: all 0.3s ease;
}

.flow-node:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.node-icon-box {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.node-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

.node-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.flow-arrow {
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.7;
}

.cover-footer-quote {
  background: rgba(56, 189, 248, 0.05);
  border: 1px dashed rgba(56, 189, 248, 0.3);
  padding: 0.75rem 2rem;
  border-radius: 12px;
}

.quote-text {
  font-size: 1.15rem;
  color: var(--text-main);
}

.quote-text strong {
  color: var(--cyan);
}

/* ===================================================================
   SLIDE 2: PERNAH PUNYA IDE SEPERTI INI?
   =================================================================== */
.doubt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.doubt-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.2);
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.doubt-card:hover {
  transform: translateX(4px);
  border-color: rgba(244, 63, 94, 0.4);
}

.doubt-card.full-width {
  grid-column: span 2;
}

.doubt-badge {
  font-size: 1.1rem;
}

.doubt-text {
  font-size: 1.05rem;
  color: var(--text-main);
}

.doubt-text strong {
  color: #fca5a5;
}

.punchline-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(56, 189, 248, 0.15));
  border: 1px solid var(--border-glow);
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.punchline-icon {
  font-size: 2.2rem;
}

.punchline-highlight {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.punchline-text {
  font-size: 1.1rem;
  color: var(--cyan);
}

/* ===================================================================
   SLIDE 3: DUNIA SEDANG BERUBAH (BEFORE VS AFTER)
   =================================================================== */
.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.comparison-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(12, 16, 36, 0.6);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.before-card {
  border-color: rgba(244, 63, 94, 0.25);
  background: rgba(244, 63, 94, 0.03);
}

.card-status-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.before-badge {
  background: rgba(244, 63, 94, 0.15);
  color: #fda4af;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.after-badge {
  background: rgba(56, 189, 248, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.timeline-stepper.vertical {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
}

.step-item.danger .step-dot { background: var(--rose); }
.step-item.highlight-cyan .step-dot { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.step-item.highlight-purple .step-dot { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.step-item.highlight-blue .step-dot { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.step-item.highlight-emerald .step-dot { background: var(--emerald-light); box-shadow: 0 0 8px var(--emerald-light); }

.step-connector {
  width: 2px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 4px;
}

.step-connector.active {
  background: linear-gradient(to bottom, var(--cyan), var(--purple));
}

.step-time {
  font-size: 0.75rem;
  margin-left: 0.5rem;
  font-family: var(--font-mono);
  color: var(--cyan);
}

.step-item.danger .step-time {
  color: #f87171;
}

.dim {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.card-footer-note {
  font-size: 0.85rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.quote-callout-center {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
}

.quote-primary {
  font-size: 1.15rem;
  color: var(--text-main);
}

.quote-primary strong {
  color: var(--cyan);
}

/* ===================================================================
   SLIDE 4: AI ADALAH PARTNER BARU (6 ROLES GRID)
   =================================================================== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.role-icon {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.role-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.role-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bottom-highlight-box {
  text-align: center;
  font-size: 1.15rem;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.15), rgba(56, 189, 248, 0.1));
  border: 1px solid var(--border-glow);
}

.bottom-highlight-box strong {
  color: var(--cyan);
}

/* ===================================================================
   SLIDE 5: JANGAN LANGSUNG MEMBUAT APLIKASI
   =================================================================== */
.trap-box {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.3);
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-align: center;
}

.trap-quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fda4af;
  font-family: var(--font-mono);
}

.pitfalls-list-container {
  margin-bottom: 1.25rem;
}

.pitfalls-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.pitfall-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.principle-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(56, 189, 248, 0.1));
  border: 1px solid var(--border-emerald);
  padding: 1.1rem 1.5rem;
  border-radius: 14px;
}

.principle-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-light);
  margin-bottom: 0.6rem;
}

.principle-chain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.p-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-arrow {
  color: var(--emerald-light);
  font-weight: 700;
}

/* ===================================================================
   SLIDE 6: PERJALANAN KITA (5 STEPS)
   =================================================================== */
.steps-journey-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1rem;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.step-card.highlight {
  border-color: var(--cyan);
  background: rgba(56, 189, 248, 0.08);
}

.step-card.highlight-emerald {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 0.5rem;
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.step-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ===================================================================
   SLIDE 7 & MEETING SLIDES (7, 8, 9, 11, 12)
   =================================================================== */
.meeting-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.session-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.session-code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple);
}

.meeting-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.learn-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.35rem 1.5rem;
  border-radius: 16px;
}

.box-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.checklist-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist-items li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.check-icon {
  font-size: 1.1rem;
}

.output-challenge-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.output-card {
  padding: 1.25rem;
  border-radius: 14px;
}

.card-icon-header {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.output-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.output-desc {
  font-size: 1rem;
  color: var(--text-main);
}

.output-desc strong {
  color: var(--text-white);
}

.challenge-card {
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.25);
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
}

.challenge-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fda4af;
  margin-bottom: 0.3rem;
}

.challenge-quote {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  font-style: italic;
}

/* ===================================================================
   SLIDE 8: PERTEMUAN #2 (BLUEPRINT PIPELINE)
   =================================================================== */
.blueprint-transformation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 0.5rem;
}

.blueprint-flow {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  background: rgba(12, 16, 36, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.5rem;
  border-radius: 16px;
}

.bp-node {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.85rem;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.bp-node.active-target {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.bp-arrow {
  color: var(--purple);
  font-size: 0.85rem;
  font-weight: 700;
}

.blueprint-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.details-text-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
}

.details-text-box .spark-icon {
  font-size: 1.8rem;
}

.details-text-box p {
  font-size: 1rem;
  color: var(--text-main);
}

.output-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.output-list .list-item {
  font-size: 0.95rem;
  color: var(--text-main);
}

/* ===================================================================
   SLIDE 9: PERTEMUAN #3 (BUILD WITH AI)
   =================================================================== */
.ai-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.cap-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: transform 0.2s ease;
}

.cap-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
}

.cap-icon {
  font-size: 1.4rem;
}

.mindset-contrast-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contrast-col {
  padding: 1.25rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contrast-col.wrong {
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.contrast-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.contrast-col.wrong .contrast-badge { color: #fda4af; }
.contrast-col.correct .contrast-badge { color: var(--emerald-light); }

.contrast-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.contrast-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================================
   SLIDE 10: PROMPTING = CARA BERKOMUNIKASI
   =================================================================== */
.prompt-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.prompt-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prompt-box.bad-prompt {
  border-color: rgba(244, 63, 94, 0.25);
}

.box-header-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.box-header-tag.danger { color: #fda4af; }
.box-header-tag.success { color: var(--cyan); }

.prompt-code-block {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.prompt-code-block strong {
  color: var(--cyan);
}

.prompt-verdict {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.formula-container {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(56, 189, 248, 0.1));
  border: 1px solid var(--border-glow);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  text-align: center;
}

.formula-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.formula-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.f-chip {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

.f-plus {
  color: var(--cyan);
  font-weight: 800;
}

/* ===================================================================
   SLIDE 11: PERTEMUAN #4 (MAKE IT USABLE)
   =================================================================== */
.usable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.usable-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

.usable-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.usable-icon {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.usable-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.usable-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.golden-question-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(244, 63, 94, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 1.1rem 1.5rem;
  border-radius: 14px;
}

.banner-q-icon {
  font-size: 2rem;
}

.banner-q-text {
  display: flex;
  flex-direction: column;
}

.banner-q-text strong {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--amber);
  margin-bottom: 0.2rem;
}

.banner-q-text span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ===================================================================
   SLIDE 12: PERTEMUAN #5 (FROM APP TO STARTUP)
   =================================================================== */
.founder-questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.fq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.fq-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.fq-icon {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.fq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.fq-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.startup-output-box {
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 14px;
}

.st-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.st-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
}

/* ===================================================================
   SLIDE 13: STUDI KASUS NYATA (CASE STUDY)
   =================================================================== */
.case-study-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  background: rgba(12, 16, 36, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1rem;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}

.cs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  flex: 1;
}

.cs-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.cs-badge.danger { background: rgba(244, 63, 94, 0.2); color: #fda4af; }
.cs-badge.cyan { background: rgba(56, 189, 248, 0.2); color: var(--cyan); }
.cs-badge.purple { background: rgba(168, 85, 247, 0.2); color: var(--purple); }
.cs-badge.blue { background: rgba(96, 165, 250, 0.2); color: var(--blue); }
.cs-badge.yellow { background: rgba(251, 191, 36, 0.2); color: var(--amber); }
.cs-badge.emerald { background: rgba(16, 185, 129, 0.2); color: var(--emerald-light); }

.cs-content {
  font-size: 0.8rem;
  color: var(--text-main);
  line-height: 1.3;
}

.cs-features {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
  color: var(--text-main);
}

.cs-arrow {
  color: var(--cyan);
  font-weight: 700;
  opacity: 0.5;
}

.case-study-quote {
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 14px;
}

.case-study-quote p {
  font-size: 1.15rem;
  color: var(--text-main);
}

.case-study-quote strong {
  color: var(--cyan);
}

/* ===================================================================
   SLIDE 14: APA YANG AKAN KAMU BAWA PULANG?
   =================================================================== */
.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.takeaway-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.takeaway-item strong {
  color: var(--text-white);
}

.t-icon {
  font-size: 1.1rem;
}

.pride-callout {
  text-align: center;
  padding: 1.1rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(56, 189, 248, 0.1));
  border: 1px solid var(--border-emerald);
}

.pride-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--emerald-light);
  margin-bottom: 0.25rem;
}

.pride-quote {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

/* ===================================================================
   SLIDE 15: KAMU TIDAK SENDIRIAN
   =================================================================== */
.program-structure-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.support-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: transform 0.2s ease;
}

.support-card:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
}

.support-card.full {
  grid-column: span 3;
  justify-content: center;
  background: rgba(99, 102, 241, 0.08);
  border-color: var(--border-glow);
}

.s-icon {
  font-size: 1.3rem;
}

.support-footer-note {
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

/* ===================================================================
   SLIDE 16: THE 30-DAY CHALLENGE
   =================================================================== */
.sprint-weeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.week-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem 1.1rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.week-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.week-card.highlight-purple {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.08);
}

.week-card.highlight-emerald {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
}

.week-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.week-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.week-task {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.final-goal-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 14px;
}

.goal-icon {
  font-size: 2.2rem;
}

.goal-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}

.goal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
}

/* ===================================================================
   SLIDE 17: SIAPA YANG COCOK IKUT?
   =================================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.audience-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  transition: transform 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
}

.audience-card.highlight {
  grid-column: span 4;
  justify-content: center;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.15), rgba(56, 189, 248, 0.15));
  border-color: var(--cyan);
  font-size: 1.05rem;
}

.aud-icon {
  font-size: 1.3rem;
}

.not-programmer-note {
  text-align: center;
  padding: 1rem 1.5rem;
  border-radius: 14px;
}

.note-bold {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.note-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.note-sub strong {
  color: var(--cyan);
}

/* ===================================================================
   SLIDE 18: YANG PERLU KAMU SIAPKAN
   =================================================================== */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.gear-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.25rem;
  border-radius: 14px;
}

.gear-card.full {
  grid-column: span 2;
}

.gear-card.highlight-cyan {
  border-color: var(--cyan);
  background: rgba(56, 189, 248, 0.08);
}

.gear-icon {
  font-size: 2rem;
}

.gear-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.gear-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.start-from-zero-banner {
  text-align: center;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.start-from-zero-banner p {
  font-size: 1.05rem;
  color: var(--text-main);
}

.start-from-zero-banner strong {
  color: var(--cyan);
}

/* ===================================================================
   SLIDE 19: YOUR FIRST APP STARTS HERE
   =================================================================== */
.vision-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.transformation-cards-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.trans-card {
  flex: 1;
  max-width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: 16px;
  text-align: left;
}

.trans-card.today {
  border-color: rgba(255, 255, 255, 0.15);
}

.trans-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.trans-badge.success {
  color: var(--emerald-light);
}

.trans-quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.trans-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trans-arrow {
  color: var(--cyan);
  font-size: 1.5rem;
  font-weight: 800;
}

.laptop-mockup-wrapper {
  width: 100%;
  max-width: 480px;
}

.laptop-body {
  background: #1e293b;
  padding: 10px 10px 0 10px;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-screen {
  background: #090d1a;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-window-header {
  background: #0f172a;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-window-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.app-title-bar {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-left: 0.5rem;
}

.app-window-body {
  padding: 1.75rem 1rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
}

.screen-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--emerald-light);
  margin-bottom: 0.5rem;
}

.screen-proud-text {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.screen-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================================
   SLIDE 20: CLOSING / CALL TO ACTION
   =================================================================== */
.cta-layout {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-statement {
  font-size: 1.35rem;
  color: var(--text-main);
  max-width: 600px;
}

.cta-statement strong {
  color: var(--cyan);
}

.cta-program-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(12, 16, 36, 0.7);
  border: 1px solid var(--border-subtle);
  padding: 1rem 2rem;
  border-radius: 16px;
}

.sum-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sum-num {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan);
}

.sum-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  text-align: left;
}

.sum-plus {
  font-size: 1.5rem;
  color: var(--text-dim);
  font-weight: 700;
}

.cta-journey-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.c-pill {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
}

.c-pill.highlight {
  background: var(--cyan);
  color: #060814;
  border-color: var(--cyan);
  font-weight: 800;
}

.c-sep {
  color: var(--cyan);
  font-size: 0.85rem;
  opacity: 0.6;
}

.final-call-box {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
  border: 1px solid var(--border-glow);
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  max-width: 750px;
}

.final-call-quote {
  font-size: 1.25rem;
  color: var(--text-main);
  line-height: 1.4;
}

.final-call-quote strong {
  color: #ffffff;
}

/* ===================================================================
   SLIDE OVERVIEW MODAL (GRID VIEW)
   =================================================================== */
.overview-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overview-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
  background: #0d1226;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.close-btn {
  background: transparent;
  border: none;
}

.overview-grid {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 130px;
  transition: all 0.2s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.overview-card.current {
  border-color: var(--cyan);
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

.oc-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
}

.oc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.oc-tag {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ===================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   =================================================================== */
@media (max-width: 1024px) {
  .slide { padding: 1rem 1.5rem; }
  .slide-heading { font-size: 1.85rem; }
  .cover-main .main-title { font-size: 2.2rem; }
  .flow-hero-pipeline { flex-wrap: wrap; gap: 0.5rem; }
  .steps-journey-grid { flex-direction: column; gap: 0.75rem; }
  .step-arrow-divider { transform: rotate(90deg); margin: 0.2rem 0; }
  .meeting-layout { grid-template-columns: 1fr; }
  .blueprint-transformation { grid-template-columns: 1fr; }
  .blueprint-flow { flex-direction: row; flex-wrap: wrap; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .sprint-weeks-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-card.highlight { grid-column: span 2; }
  .gear-grid { grid-template-columns: 1fr; }
  .gear-card.full { grid-column: span 1; }
  .usable-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-questions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .deck-header { padding: 0 1rem; }
  .header-title, .key-hint-pill { display: none; }
  .deck-footer { padding: 0 1rem; }
  .slide { padding: 0.75rem 1rem; }
  .slide-heading { font-size: 1.45rem; }
  .slide-subheading { font-size: 0.9rem; margin-bottom: 1rem; }
  .cover-main .main-title { font-size: 1.6rem; }
  .cover-main .tagline-highlight { font-size: 1.05rem; }
  .doubt-grid { grid-template-columns: 1fr; }
  .doubt-card.full-width { grid-column: span 1; }
  .comparison-container { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .mindset-contrast-box { grid-template-columns: 1fr; }
  .prompt-comparison { grid-template-columns: 1fr; }
  .usable-grid { grid-template-columns: 1fr; }
  .founder-questions-grid { grid-template-columns: 1fr; }
  .case-study-stepper { flex-direction: column; }
  .takeaways-grid { grid-template-columns: 1fr; }
  .support-channels-grid { grid-template-columns: 1fr; }
  .support-card.full { grid-column: span 1; }
  .sprint-weeks-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card.highlight { grid-column: span 1; }
  .cta-title { font-size: 2.2rem; }
  .cta-program-summary { flex-direction: column; gap: 0.5rem; }
  .sum-plus { display: none; }
}

/* ===================================================================
   PRINT / PDF EXPORT STYLING
   =================================================================== */
@media print {
  body {
    background-color: #060814 !important;
    color: #f1f5f9 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .deck-header, .deck-footer, .overview-modal, .ambient-bg {
    display: none !important;
  }

  .deck-container {
    height: auto !important;
    padding: 0 !important;
    display: block !important;
  }

  .slide {
    position: relative !important;
    inset: auto !important;
    width: 100vw !important;
    height: 100vh !important;
    page-break-after: always !important;
    break-after: page !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
    padding: 3rem !important;
  }
}
