/* ═══════════════════════════════════════════════════════════
   HELIUM AI × SKY BROADBAND — PITCH DECK STYLES
   Design system extracted from he2.ai
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Core palette from he2.ai */
  --bg:           #1a1d23;
  --bg-card:      #24242a;
  --bg-card-2:    #2a2a32;
  --border:       rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.12);

  /* Accent colours */
  --pink:         #FFC0CB;
  --pink-hot:     #FF5BA7;
  --pink-soft:    #FFCDEA;
  --yellow:       #FCEC3B;
  --yellow-soft:  #FCED3C;
  --blue:         #87CEEB;
  --blue-deep:    #0091C9;
  --green:        #2C5C50;

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted:     rgba(255,255,255,0.4);

  /* Gradient */
  --grad-main: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 50%, var(--blue) 100%);
  --grad-pink-white: linear-gradient(135deg, #FFC0CB, #ffffff, #FFC0CB);
  --grad-sky-pink: linear-gradient(135deg, #87CEEB 0%, #FFC0CB 100%);

  /* Typography */
  --font-sans: 'Sora', system-ui, sans-serif;
  --font-mono: 'Geist Mono', 'Courier New', monospace;
}

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

/* ── SLIDES WRAPPER ── */
.slides-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* ── INDIVIDUAL SLIDE ── */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  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);
}

/* ── NOISE OVERLAY (from he2.ai) ── */
.noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.06;
  mix-blend-mode: screen;
}

/* ── DOT GRID (from he2.ai) ── */
.dot-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}

/* ── GRADIENT BLOBS (from he2.ai SVG blobs) ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.blob-pink   { background: radial-gradient(circle, rgba(255,91,167,0.35) 0%, rgba(255,192,203,0.2) 50%, transparent 80%); }
.blob-yellow { background: radial-gradient(circle, rgba(252,236,59,0.3) 0%, rgba(255,235,150,0.15) 50%, transparent 80%); }
.blob-blue   { background: radial-gradient(circle, rgba(135,206,235,0.3) 0%, rgba(0,145,201,0.15) 50%, transparent 80%); }

/* ── LOGO (top-left, every slide) ── */
.slide-logo {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-fallback {
  align-items: center;
  gap: 8px;
}
.logo-hex {
  font-size: 22px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ── CONFIDENTIAL BADGE ── */
.confidential-badge {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 100;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
}

/* ── SLIDE CONTENT WRAPPER ── */
.slide-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 72px 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── TYPOGRAPHY ── */
.slide-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.slide-title-xl {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.slide-title-lg {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.slide-subtitle {
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--text-secondary);
  font-weight: 400;
  margin-top: 8px;
}

.slide-subtitle-sm {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.body-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

.text-white { color: #ffffff; }

/* ── GRADIENT TEXT (he2.ai candy gradient) ── */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 55%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-sm {
  background: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 12px;
  font-weight: 500;
}

/* ── DIVIDER ── */
.divider-line {
  width: 48px;
  height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
  margin: 16px 0;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── SLIDE HEADER ROW ── */
.slide-header-row {
  margin-bottom: 4px;
}

/* ── NAVIGATION ── */
.slide-nav {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(26,29,35,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.nav-dot.active {
  background: var(--pink);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(255,192,203,0.6);
}
.nav-dot:hover:not(.active) { background: rgba(255,255,255,0.5); }

/* ── ARROW BUTTONS ── */
.arrow-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(26,29,35,0.8);
  backdrop-filter: blur(12px);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.arrow-btn:hover { border-color: var(--pink); color: var(--pink); }
.arrow-btn:disabled { opacity: 0.2; cursor: default; }
.arrow-prev { left: 16px; }
.arrow-next { right: 16px; }

/* ── SLIDE COUNTER ── */
.slide-counter {
  position: fixed;
  bottom: 28px;
  right: 32px;
  z-index: 1000;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 1 — LAYOUT
   ═══════════════════════════════════════════════════════════ */
.slide-1-layout {
  flex-direction: row !important;
  gap: 48px;
  align-items: flex-start;
  padding-top: 80px;
}

.slide-1-left {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
}

.slide-1-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Prepared block */
.prepared-block {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid rgba(255,192,203,0.3);
  padding-left: 14px;
}
.prepared-row { display: flex; flex-direction: column; gap: 2px; }
.prepared-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.prepared-value { font-size: 12px; color: var(--text-secondary); }

/* Founders */
.founders-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.founder-card:hover { border-color: rgba(255,192,203,0.3); }

.founder-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.founder-avatar-a { background: linear-gradient(135deg, #FF5BA7, #FCEC3B); color: #1a1d23; }
.founder-avatar-b { background: linear-gradient(135deg, #87CEEB, #FFC0CB); color: #1a1d23; }

.founder-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.founder-role { margin-top: 2px; }
.founder-bio { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-top: 6px; }

/* Stats row */
.stats-row {
  display: flex;
  gap: 12px;
}

.stat-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: rgba(252,236,59,0.3); }

.stat-number {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { font-size: 11px; color: var(--text-secondary); margin-top: 4px; font-weight: 500; }
.stat-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 2 — LAYOUT
   ═══════════════════════════════════════════════════════════ */
.two-col-layout {
  display: flex;
  gap: 24px;
  flex: 1;
  min-height: 0;
}

.col-left, .col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Sky stats grid */
.sky-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sky-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.sky-stat:hover { border-color: rgba(135,206,235,0.3); }

.sky-stat-num {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sky-stat-desc { font-size: 11px; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }

/* Alert box */
.alert-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,91,167,0.08);
  border: 1px solid rgba(255,91,167,0.25);
  border-radius: 12px;
  padding: 14px 16px;
}
.alert-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.alert-text { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }
.alert-text strong { color: var(--pink); }

/* Gap table */
.gap-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.gap-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
  border-bottom: 1px solid var(--border);
}
.gap-row:last-child { border-bottom: none; }

.gap-header {
  background: rgba(255,255,255,0.03);
}

.gap-cell {
  padding: 10px 12px;
  font-size: 11px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.gap-cell:last-child { border-right: none; }

.gap-header .gap-cell {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gap-label { font-size: 11px; font-weight: 500; color: var(--text-secondary); }
.gap-bad { background: rgba(255,91,167,0.04); }
.gap-good { background: rgba(135,206,235,0.04); }
.gap-bad-val { font-size: 11px; color: rgba(255,91,167,0.8); }
.gap-good-val { font-size: 11px; color: rgba(135,206,235,0.9); }

/* ═══════════════════════════════════════════════════════════
   SLIDE 3 — LAYOUT
   ═══════════════════════════════════════════════════════════ */
.three-col-layout {
  display: flex;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.use-case-col {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.use-case-col:hover { border-color: rgba(255,192,203,0.2); }

.use-case-col-center {
  border-color: rgba(255,192,203,0.2);
  background: rgba(255,192,203,0.04);
}

.col-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.col-icon-red { background: rgba(255,91,167,0.15); color: var(--pink-hot); }
.col-icon-green { background: rgba(44,92,80,0.3); color: #4ade80; }
.col-icon-gradient {
  background: var(--grad-main);
  color: #1a1d23;
  font-size: 18px;
}

.col-title { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.col-body { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }

/* Problem stat */
.problem-stat {
  background: rgba(255,91,167,0.08);
  border: 1px solid rgba(255,91,167,0.2);
  border-radius: 10px;
  padding: 12px;
  margin-top: auto;
}
.problem-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: -0.02em;
}
.problem-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }

/* Agent list */
.agent-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }

.agent-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.agent-pink   { background: var(--pink-hot); box-shadow: 0 0 6px rgba(255,91,167,0.6); }
.agent-yellow { background: var(--yellow); box-shadow: 0 0 6px rgba(252,236,59,0.6); }
.agent-blue   { background: var(--blue); box-shadow: 0 0 6px rgba(135,206,235,0.6); }
.agent-green  { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.6); }
.agent-white  { background: rgba(255,255,255,0.6); }

.agent-name { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.agent-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-top: 2px; }

/* Impact metrics */
.impact-metrics { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.impact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.impact-label { font-size: 11px; color: var(--text-secondary); }
.impact-val { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }

.integration-note {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: auto;
}

/* Badges */
.badge-high {
  display: inline-block;
  background: rgba(255,91,167,0.15);
  color: var(--pink);
  border: 1px solid rgba(255,91,167,0.3);
  border-radius: 100px;
  padding: 1px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-med {
  display: inline-block;
  background: rgba(135,206,235,0.15);
  color: var(--blue);
  border: 1px solid rgba(135,206,235,0.3);
  border-radius: 100px;
  padding: 1px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   SLIDE 4 — LAYOUT
   ═══════════════════════════════════════════════════════════ */
.two-col-equal { gap: 20px; }

.uc-panel {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.uc-panel-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.uc-num {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.uc-title { font-size: 14px; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
.uc-category { font-size: 10px; color: var(--text-muted); margin-top: 3px; }

.uc-problem {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  border-left: 2px solid rgba(255,91,167,0.3);
  padding-left: 10px;
}

.uc-capabilities { display: flex; flex-direction: column; gap: 8px; flex: 1; }

.uc-cap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.uc-cap strong { color: var(--text-primary); }

.uc-cap-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.uc-pink   { background: var(--pink-hot); }
.uc-yellow { background: var(--yellow); }
.uc-blue   { background: var(--blue); }
.uc-green  { background: #4ade80; }

/* Revenue table */
.revenue-table {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.rev-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-secondary);
  gap: 12px;
  align-items: center;
}
.rev-row:last-child { border-bottom: none; }
.rev-header {
  background: rgba(255,255,255,0.03);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.rev-total {
  background: rgba(252,236,59,0.05);
  border-top: 1px solid rgba(252,236,59,0.2);
  font-weight: 600;
  color: var(--text-primary);
}
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; font-size: 14px; }

/* Network outcome box */
.network-outcome-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(135,206,235,0.06);
  border: 1px solid rgba(135,206,235,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: auto;
}
.outcome-icon { font-size: 18px; flex-shrink: 0; }
.outcome-title { font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 4px; }
.outcome-body { font-size: 11px; color: var(--text-secondary); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   SLIDE 5 — LAYOUT
   ═══════════════════════════════════════════════════════════ */
.slide5-layout {
  display: flex;
  gap: 24px;
  flex: 1;
  min-height: 0;
}

.jamie-col {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.roadmap-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.jamie-intro {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  background: rgba(255,192,203,0.06);
  border: 1px solid rgba(255,192,203,0.15);
  border-radius: 10px;
  padding: 10px 14px;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 10px; flex: 1; overflow: hidden; }

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  flex: 1;
}

.time-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--yellow);
  background: rgba(252,236,59,0.1);
  border: 1px solid rgba(252,236,59,0.2);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.time-content { flex: 1; }
.time-title { font-size: 12px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.time-without { font-size: 11px; color: rgba(255,91,167,0.7); line-height: 1.5; margin-bottom: 4px; }
.time-with { font-size: 11px; color: rgba(135,206,235,0.9); line-height: 1.5; }
.time-with em { color: var(--yellow); font-style: normal; }

/* Roadmap phases */
.roadmap-phases { display: flex; flex-direction: column; gap: 8px; }

.phase-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.2s;
}
.phase-item:hover { border-color: rgba(255,192,203,0.25); }

.phase-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #1a1d23;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phase-content { flex: 1; }
.phase-title { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.phase-time {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 0.05em;
}
.phase-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin-top: 2px; }
.phase-cost { font-size: 10px; color: var(--yellow); margin-top: 3px; font-weight: 500; }
.phase-free { color: #4ade80; }

/* Ask box */
.ask-box {
  background: rgba(255,192,203,0.05);
  border: 1px solid rgba(255,192,203,0.2);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ask-title { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }

.ask-steps { display: flex; flex-direction: column; gap: 6px; }
.ask-step {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  color: var(--text-secondary);
}
.ask-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,192,203,0.15);
  border: 1px solid rgba(255,192,203,0.3);
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.contact-item { flex: 1; }
.contact-name { font-size: 11px; font-weight: 600; color: var(--text-primary); }
.contact-email { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); margin-top: 2px; }
.contact-divider { width: 1px; height: 32px; background: var(--border); }

/* Closing quote */
.closing-quote {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  padding: 10px;
  border-top: 1px solid var(--border);
}
.quote-sky { color: var(--text-secondary); font-style: italic; }
.quote-helium {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ── KEYBOARD HINT ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide.active .slide-content {
  animation: fadeInUp 0.5s ease 0.1s both;
}