/* ═══════════════════════════════════════════════════════════
   HELIUM AI × SKY BROADBAND — V4 REFINED LIGHT THEME
   Elegant, seamless, logo-prominent, easy to digest
═══════════════════════════════════════════════════════════ */

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

:root {
  /* Surfaces */
  --white:        #ffffff;
  --bg:           #f8fafc;
  --bg-card:      #ffffff;
  --bg-card-2:    #f1f5f9;
  --bg-card-3:    #e8f0fe;
  --border:       #e2e8f0;
  --border-med:   #cbd5e1;

  /* Text */
  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;

  /* Brand */
  --blue:         #2563eb;
  --blue-dark:    #1d4ed8;
  --blue-light:   #dbeafe;
  --blue-mid:     #93c5fd;
  --sky:          #0ea5e9;
  --sky-light:    #e0f2fe;
  --indigo:       #4f46e5;
  --indigo-light: #eef2ff;
  --green:        #16a34a;
  --green-light:  #dcfce7;
  --red:          #dc2626;
  --red-light:    #fee2e2;
  --amber:        #d97706;
  --amber-light:  #fef3c7;
  --pink:         #db2777;
  --pink-light:   #fce7f3;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-blue: 0 4px 20px rgba(37,99,235,0.18);

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s 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(-48px);
}

/* ── Background Accents ── */
.slide-bg-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.accent-top-right {
  width: 480px; height: 480px;
  top: -140px; right: -140px;
  background: radial-gradient(circle, #2563eb 0%, #0ea5e9 100%);
}

.accent-bottom-left {
  width: 360px; height: 360px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, #4f46e5 0%, #2563eb 100%);
}

.accent-sky    { background: radial-gradient(circle, #0ea5e9 0%, #38bdf8 100%); }
.accent-indigo { background: radial-gradient(circle, #4f46e5 0%, #818cf8 100%); }
.accent-soft   { background: radial-gradient(circle, #e0f2fe 0%, #dbeafe 100%); opacity: 0.4; }

/* ══════════════════════════════════════════════════════════
   LOGO BAR — dark strip so logo-dark.svg is always visible
══════════════════════════════════════════════════════════ */
.slide-logo-bar {
  position: absolute;
  top: 0; left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0;
  /* Dark pill/bar behind the logo */
  background: #0f172a;
  border-radius: 0 0 var(--r-md) 0;
  padding: 10px 20px 10px 20px;
}

.logo-img {
  height: 28px;
  width: auto;
  display: block;
  /* logo-dark.svg is dark-coloured — invert to white on dark bar */
  filter: brightness(0) invert(1);
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-hex {
  font-size: 20px;
  color: #60a5fa;
}

.logo-text-white {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: -0.3px;
}

/* ── Slide Content ── */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 64px 48px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

/* ── Navigation ── */
.slide-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--border-med);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.nav-dot:hover { border-color: var(--blue); background: var(--blue-light); }
.nav-dot.active { background: var(--blue); border-color: var(--blue); transform: scale(1.2); }

.arrow-btn {
  position: fixed;
  bottom: 24px;
  z-index: 100;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.arrow-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.05);
}

.arrow-prev { left: calc(50% - 48px); }
.arrow-next { left: calc(50% + 8px); }

/* ── Common Typography ── */
.slide-tag {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.slide-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.slide-sub {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.text-blue   { color: var(--blue); }
.text-sky    { color: var(--sky); }
.text-indigo { color: var(--indigo); }

.section-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.slide-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 2px;
}

/* ── Badges ── */
.badge-high {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--red-light);
  color: var(--red);
}

.badge-med {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--amber-light);
  color: var(--amber);
}

/* ══════════════════════════════════════════════════════════
   SLIDE 1 — Golden Circle
══════════════════════════════════════════════════════════ */

.slide-content-s1 {
  flex-direction: row;
  gap: 28px;
  padding: 64px 48px 24px;
  align-items: flex-start;
}

.s1-left {
  flex: 0 0 268px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.s1-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.8px;
}

.s1-sub {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  border-left: 3px solid var(--blue-light);
  padding-left: 12px;
}

.prepared-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.prep-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prep-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.prep-value {
  font-size: 11px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.4;
}

/* Golden Circle rings */
.s1-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  min-width: 0;
}

.gc-ring {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.gc-ring:hover { box-shadow: var(--shadow-md); }

.gc-ring-label {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.gc-why { border-left: 3px solid var(--blue); }
.gc-why .gc-ring-label { background: var(--blue-light); color: var(--blue); }

.gc-how { border-left: 3px solid var(--sky); }
.gc-how .gc-ring-label { background: var(--sky-light); color: var(--sky); }

.gc-what { border-left: 3px solid var(--indigo); }
.gc-what .gc-ring-label { background: var(--indigo-light); color: var(--indigo); }

.gc-ring-content {
  padding: 12px 16px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gc-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gc-icon-why   { background: var(--blue-light);   color: var(--blue); }
.gc-icon-how   { background: var(--sky-light);    color: var(--sky); }
.gc-icon-what  { background: var(--indigo-light); color: var(--indigo); }

.gc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.gc-body {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.gc-body strong { color: var(--text-primary); font-weight: 600; }

/* HOW — two tech cards */
.gc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gc-tech-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 12px;
  transition: border-color 0.2s;
}

.gc-tech-card:hover { border-color: var(--sky); }

.gc-tech-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--sky);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.gc-tech-desc {
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* WHAT — layers */
.gc-layers-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.gc-layer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.gc-layer-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.gc-dot-blue   { background: var(--blue); }
.gc-dot-sky    { background: var(--sky); }
.gc-dot-indigo { background: var(--indigo); }

.gc-layer-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.gc-layer-desc {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Traction strip */
.gc-traction-strip {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 2px;
}

.gc-traction-item {
  flex: 1;
  padding: 10px 12px;
  text-align: center;
}

.gc-traction-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.gc-traction-label {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}

.gc-traction-sub {
  font-size: 8.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

.gc-traction-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  align-self: stretch;
}

/* ══════════════════════════════════════════════════════════
   SLIDE 2 — Sky Broadband
══════════════════════════════════════════════════════════ */

.sky-intro-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
}

.sky-avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.sky-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.sky-card-role {
  font-size: 10.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.sky-card-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

.sky-card-facts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.sky-fact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.sky-fact-row strong { color: var(--text-primary); font-weight: 600; }

.sky-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sky-dot-blue  { background: var(--blue); }
.sky-dot-sky   { background: var(--sky); }
.sky-dot-amber { background: var(--amber); }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  flex: 1;
  min-height: 0;
  align-items: start;
}

.two-col-equal { grid-template-columns: 1fr 1fr; }

.col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.sky-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s;
}

.sky-stat:hover { box-shadow: var(--shadow-sm); }

.sky-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.sky-stat-desc {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 3px;
  line-height: 1.35;
}

/* Alert card */
.alert-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 3px solid var(--amber);
  border-radius: var(--r-md);
  padding: 11px 14px;
}

.alert-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

.alert-text {
  font-size: 11px;
  color: #92400e;
  line-height: 1.55;
}

.alert-text strong { color: #78350f; font-weight: 600; }

/* Gap table */
.gap-table {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.gap-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.5fr;
  border-bottom: 1px solid var(--border);
}

.gap-row:last-child { border-bottom: none; }

.gap-header { background: var(--bg-card-2); }

.gap-cell {
  padding: 9px 12px;
  font-size: 10.5px;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
  line-height: 1.4;
}

.gap-cell:last-child { border-right: none; }

.gap-header .gap-cell {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gap-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 10.5px;
}

.gap-bad-h  { color: var(--red) !important; }
.gap-good-h { color: var(--green) !important; }

.gap-bad {
  color: #b91c1c;
  background: #fff5f5;
  font-size: 10px;
}

.gap-good {
  color: #15803d;
  background: #f0fdf4;
  font-size: 10px;
}

/* ══════════════════════════════════════════════════════════
   SLIDE 3 — Use Case 1
══════════════════════════════════════════════════════════ */

.three-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 14px;
  flex: 1;
  min-height: 0;
  align-items: start;
}

.uc-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.uc-col-center {
  background: var(--bg-card-2);
  border-color: var(--blue-mid);
}

.uc-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.uc-col-icon {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.uc-header-red   .uc-col-icon { background: var(--red-light);   color: var(--red); }
.uc-header-blue  .uc-col-icon { background: var(--blue-light);  color: var(--blue); }
.uc-header-green .uc-col-icon { background: var(--green-light); color: var(--green); }

.uc-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.uc-col-body {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: var(--red-light);
  border-radius: var(--r-md);
  padding: 10px 12px;
  margin-top: 0;
}

.problem-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.problem-desc {
  font-size: 10px;
  color: #b91c1c;
  line-height: 1.4;
}

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

.agent-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.agent-item:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-xs); }

.agent-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.adot-pink   { background: var(--pink); }
.adot-amber  { background: var(--amber); }
.adot-blue   { background: var(--blue); }
.adot-green  { background: var(--green); }
.adot-indigo { background: var(--indigo); }

.agent-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

.agent-desc {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-top: 1px;
}

/* Impact list */
.impact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.impact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}

.impact-row:last-child { border-bottom: none; }
.impact-row:nth-child(even) { background: var(--bg-card-2); }

.impact-label {
  font-size: 10.5px;
  color: var(--text-secondary);
}

.impact-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
}

.integration-note {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  line-height: 1.5;
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════════
   SLIDE 4 — Use Cases 2 & 3
══════════════════════════════════════════════════════════ */

.uc-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.uc-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border);
}

.uc-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  flex-shrink: 0;
  -webkit-text-stroke: 1.5px var(--blue);
}

.uc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.uc-cat {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

.uc-problem {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
  background: var(--bg-card-2);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  border-left: 3px solid var(--amber);
}

.uc-caps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.uc-cap {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.uc-cap strong { color: var(--text-primary); font-weight: 600; }

.uc-cap-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.ucd-pink  { background: var(--pink); }
.ucd-amber { background: var(--amber); }
.ucd-blue  { background: var(--blue); }
.ucd-green { background: var(--green); }

/* Revenue table */
.rev-table {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: auto;
}

.rev-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 10.5px;
  color: var(--text-secondary);
  align-items: center;
}

.rev-row:last-child { border-bottom: none; }

.rev-header {
  background: var(--bg-card-2);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.rev-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
}

.rev-total {
  background: var(--blue-light);
  font-weight: 600;
  color: var(--text-primary);
}

.rev-total-val {
  font-size: 14px !important;
  color: var(--blue) !important;
}

/* Outcome box */
.outcome-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--sky-light);
  border: 1px solid #bae6fd;
  border-radius: var(--r-md);
  padding: 11px 14px;
  margin-top: 10px;
}

.outcome-icon { font-size: 18px; flex-shrink: 0; }

.outcome-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 3px;
}

.outcome-body {
  font-size: 10.5px;
  color: #0369a1;
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════
   SLIDE 5 — Day in the Life + The Ask
══════════════════════════════════════════════════════════ */

.jamie-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jamie-intro {
  font-size: 11.5px;
  color: #92400e;
  background: var(--amber-light);
  border: 1px solid #fde68a;
  border-left: 3px solid var(--amber);
  border-radius: var(--r-md);
  padding: 10px 12px;
  line-height: 1.55;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.timeline-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.time-badge {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 20px;
  padding: 4px 6px;
  margin-top: 2px;
}

.time-content {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 9px 12px;
  box-shadow: var(--shadow-xs);
}

.time-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.time-without {
  font-size: 10px;
  color: #b91c1c;
  background: var(--red-light);
  border-radius: var(--r-xs);
  padding: 4px 8px;
  margin-bottom: 4px;
  line-height: 1.45;
}

.time-with {
  font-size: 10px;
  color: #15803d;
  background: var(--green-light);
  border-radius: var(--r-xs);
  padding: 4px 8px;
  line-height: 1.45;
}

/* Ask column */
.ask-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ask-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.ask-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.ask-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ask-step {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ask-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}

.ask-step-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-primary);
}

.ask-step-desc {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 1px;
  line-height: 1.45;
}

/* Contact card */
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 16px;
}

.contact-item { flex: 1; }

.contact-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-role {
  font-size: 9.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

.contact-email {
  font-size: 10.5px;
  color: var(--blue);
  margin-top: 2px;
}

.contact-divider {
  width: 1px;
  height: 34px;
  background: var(--border);
  flex-shrink: 0;
}

/* Closing quote */
.closing-quote {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0369a1 100%);
  border-radius: var(--r-md);
  padding: 14px 18px;
  text-align: center;
  line-height: 1.65;
}

.quote-sky {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  display: block;
}

.quote-helium {
  font-size: 13px;
  font-weight: 700;
  color: white;
  display: block;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .slide-content { padding: 60px 32px 22px; }
  .slide-content-s1 { padding: 60px 32px 22px; }
  .s1-left { flex: 0 0 230px; }
  .three-col { gap: 10px; }
  .gc-layers-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .slide-content-s1 { flex-direction: column; overflow-y: auto; }
  .s1-left { flex: none; }
  .two-col { grid-template-columns: 1fr; overflow-y: auto; }
  .three-col { grid-template-columns: 1fr; overflow-y: auto; }
}