/* === Design Tokens === */
:root {
  --bg: #1C1E1F;
  --mint: #7CFFC4;
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.7);
  --dim: rgba(255, 255, 255, 0.2);
  --font: 'Space Grotesk', system-ui, sans-serif;
  --slide-transition: 400ms ease-out;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* === Lucide Icons === */
[data-lucide] { display: inline-block; vertical-align: middle; }

/* === Slide Container === */
.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 6rem 4rem;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide--hidden {
  display: none !important;
}

/* --- Transitions --- */
.slide--enter {
  animation: slideEnter var(--slide-transition) forwards;
}

.slide--exit-left {
  animation: slideExitLeft var(--slide-transition) forwards;
  z-index: 0;
}

.slide--exit-right {
  animation: slideExitRight var(--slide-transition) forwards;
  z-index: 0;
}

.slide--enter-right {
  transform: translateX(60px);
  opacity: 0;
}

.slide--enter-left {
  transform: translateX(-60px);
  opacity: 0;
}

@keyframes slideEnter {
  from { opacity: 0; transform: translateX(0); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideExitLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-60px); }
}

@keyframes slideExitRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(60px); }
}

/* === Typography === */
.slide__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.slide__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 255, 196, 0.5), transparent);
  margin: 0.75rem auto 0;
}

.slide__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 48rem;
  text-align: center;
}

/* === Entrance Animations === */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.anim--visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Logo === */
.logo {
  width: clamp(280px, 40vw, 520px);
  color: var(--white);
  margin-bottom: 2rem;
}

.logo svg {
  width: 100%;
  height: auto;
}

/* === Title Slide === */
.title-slide {
  text-align: center;
  overflow: hidden;
}

/* Ambient glow behind logo */
.title-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 255, 196, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -55%) scale(1); }
  50%      { opacity: 0.6; transform: translate(-50%, -55%) scale(1.08); }
}

/* Logo entrance — cinematic scale + blur */
.title-slide .logo.anim {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  filter: blur(6px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.title-slide .logo.anim--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Accent rule between logo and tagline */
.title-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  margin: 0 auto 1.5rem;
}

/* Tagline stack — staggered reveal */
.tagline-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.title-slide .tagline {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  max-width: 40rem;
}

.title-slide .tagline .highlight {
  color: var(--mint);
}

/* Signal icon above logo */
.title-signal {
  margin-bottom: 1rem;
}

.title-signal svg {
  display: block;
}

/* Arcs animate outward */
.signal-arc {
  opacity: 0;
}

.signal-stem {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
}

.signal-dot {
  opacity: 0;
}

.title-signal.anim--visible .signal-dot {
  animation: signalDotIn 0.3s ease-out 0.2s forwards;
}

.title-signal.anim--visible .signal-stem {
  animation: signalStemDraw 0.4s ease-out 0.4s forwards;
}

.title-signal.anim--visible .signal-arc--1 {
  animation: signalArcIn 0.4s ease-out 0.7s forwards;
  --arc-opacity: 0.9;
}

.title-signal.anim--visible .signal-arc--2 {
  animation: signalArcIn 0.4s ease-out 0.9s forwards;
  --arc-opacity: 0.55;
}

.title-signal.anim--visible .signal-arc--3 {
  animation: signalArcIn 0.4s ease-out 1.1s forwards;
  --arc-opacity: 0.25;
}

@keyframes signalDotIn {
  from { opacity: 0; transform: scale(0); transform-origin: center; }
  to   { opacity: 1; transform: scale(1); transform-origin: center; }
}

@keyframes signalStemDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes signalArcIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: var(--arc-opacity, 1); transform: translateY(0); }
}

/* === Counter Cards (Problem Slide) === */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 56rem;
  width: 100%;
}

.counter-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--dim);
  border-left: 3px solid var(--mint);
  border-radius: 0 12px 12px 0;
  background: rgba(124, 255, 196, 0.03);
}

.counter-card__icon {
  color: var(--mint);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.counter-card__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.counter-card__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.counter-card__label strong {
  color: var(--white);
  font-weight: 600;
}

/* Highlight in subtitle */
.slide__subtitle .highlight {
  color: var(--mint);
  font-weight: 600;
}

/* === Business Cards Grid === */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  width: 100%;
}

.biz-card {
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.biz-card__icon {
  margin-bottom: 0.5rem;
  display: block;
  color: var(--mint);
}

.biz-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.biz-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.biz-card__revenue {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mint);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(124, 255, 196, 0.3);
  border-radius: 10px;
  background: rgba(124, 255, 196, 0.08);
}

/* === Free / Paid Toggle === */
.tier-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 3px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.tier-toggle__btn {
  position: relative;
  z-index: 2;
  padding: 0.4rem 1.4rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.25s ease;
  text-align: center;
}

.tier-toggle__btn--active {
  color: var(--bg);
}

.tier-toggle__slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--mint);
  border-radius: 6px;
  transition: transform 0.25s ease;
  z-index: 1;
}

.tier-toggle--paid .tier-toggle__slider {
  transform: translateX(100%);
}

/* === Tool Cards === */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 52rem;
  width: 100%;
}

.tool-card {
  padding: 1.8rem;
  border-left: 3px solid var(--mint);
  background: rgba(124, 255, 196, 0.04);
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
}

.tool-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.tool-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.tool-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: var(--mint);
}

.tool-card__header svg {
  flex-shrink: 0;
}

.tool-card__header .tool-card__name {
  color: var(--white);
}

.tool-card__name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--dim);
  transition: border-color 0.2s ease;
}

.tool-card__name a:hover {
  border-color: var(--mint);
}

.tool-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.tool-card__status {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tool-card__tiers {
  display: grid;
  margin-left: auto;
}

.tool-card__tiers > * {
  grid-area: 1 / 1;
}

.tool-card__tier {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: fit-content;
}

.tool-card__tier--free {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.tool-card__tier--paid {
  background: rgba(124, 255, 196, 0.15);
  color: var(--mint);
  opacity: 0;
  transform: translateY(4px);
}

.tool-card__tier--locked {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Locked card dimming in free mode */
.tool-card--locked {
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.tier-toggle--paid ~ .tool-grid .tool-card--locked {
  opacity: 1;
}

/* Tier badge transitions when paid is active */
.tier-toggle--paid ~ .tool-grid .tool-card__tier--free {
  opacity: 0;
  transform: translateY(-4px);
}

.tier-toggle--paid ~ .tool-grid .tool-card__tier--paid {
  opacity: 1;
  transform: translateY(0);
}

/* === Pipeline Diagram === */
.slide--pipeline {
  justify-content: center;
  gap: 0.5rem;
}

.slide--pipeline .slide__title { margin-bottom: 0.75rem; }

.pipeline-caption {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  max-width: 48rem;
  margin-top: 0.75rem;
  opacity: 0.7;
}

.pipeline-section {
  width: 100%;
  max-width: 56rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.pipeline-section__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mint);
  margin-bottom: 0.75rem;
}

.pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: 0.5rem 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88px;
  flex-shrink: 0;
  text-align: center;
}

.pipeline-step__box {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--dim);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  line-height: 1.2;
  padding: 0.4rem;
}

.pipeline-step--human .pipeline-step__box {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.1);
  color: var(--mint);
  box-shadow: 0 0 20px rgba(124, 255, 196, 0.15);
}

.pipeline-step__actor {
  color: var(--muted);
  margin-bottom: 0.3rem;
  line-height: 1;
}

.pipeline-step--human .pipeline-step__actor {
  color: var(--mint);
}

.pipeline-step__label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.5rem;
  max-width: 80px;
}

.pipeline-arrow {
  width: 24px;
  height: 2px;
  background: var(--dim);
  flex-shrink: 0;
  position: relative;
  align-self: center;
  margin-bottom: 1.5rem;
}

.pipeline-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--dim);
}

/* === Agentic Layer Diagram === */
.layer-diagram {
  max-width: 56rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.layer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  border-radius: 12px;
}

.layer--ai {
  background: rgba(124, 255, 196, 0.06);
  border: 1px solid rgba(124, 255, 196, 0.2);
}

.layer--human {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dim);
}

.layer__title {
  width: 100%;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.layer--ai .layer__title { color: var(--mint); }
.layer--human .layer__title { color: var(--muted); }

.layer__item {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.layer-divider {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
}

.layer-divider::before,
.layer-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 4rem);
  height: 1px;
  background: var(--dim);
}

.layer-divider::before { left: 0; }
.layer-divider::after { right: 0; }

/* === Content Formats === */
.content-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 56rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.content-format {
  padding: 1.2rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.content-format__icon {
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.content-format__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.content-format__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.content-format__list {
  list-style: none;
  margin-top: 0.2rem;
}

.content-format__list li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 0.8rem;
  position: relative;
}

.content-format__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

/* Platform icons beneath content slide title */
.content-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

/* === Content Bottom: Partners + Sponsors === */
.content-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  width: 100%;
}

.content-section {
  padding: 1.2rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.content-section__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 0.75rem;
}

.content-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.partner-tag {
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--dim);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.content-section__note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.sponsor-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.sponsor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.sponsor__logo {
  color: var(--white);
  flex-shrink: 0;
}

.sponsor__name {
  font-size: 0.9rem;
  font-weight: 600;
}

/* === Content Connectors === */
.content-connectors {
  width: 100%;
  max-width: 56rem;
  height: 32px;
  margin: -0.25rem 0;
}

.content-connectors__svg {
  width: 100%;
  height: 100%;
}

/* === Flywheel (Content Flywheel Slide) === */
.flywheel {
  max-width: 68rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flywheel__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.flywheel__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 156px;
  flex-shrink: 0;
  padding: 1.25rem 0.75rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.flywheel__step--accent {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.05);
}

.flywheel__icon {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.flywheel__step--accent .flywheel__icon {
  color: var(--mint);
}

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

/* Small tag/badge (e.g. "Free tier", "$25–40/mo") */
.flywheel__tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.35rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
}

.flywheel__tag--accent {
  color: var(--mint);
  border-color: var(--mint);
}

/* Arrows between steps */
.flywheel__arrow {
  width: 36px;
  height: 2px;
  background: var(--dim);
  flex-shrink: 0;
  align-self: center;
  position: relative;
  margin: 0 0.25rem;
}

.flywheel__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--dim);
}

/* Feeder channels above main row */
.flywheel__feeders {
  display: grid;
  grid-template-columns: repeat(5, 156px);
  gap: 0 calc(36px + 0.5rem);
  width: max-content;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}

.flywheel__feeder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flywheel__feeder-arrow {
  width: 1px;
  height: 20px;
  border-left: 1.5px dashed var(--dim);
}

.flywheel__feeder-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}

/* Bullet details below cards */
.flywheel__details {
  display: grid;
  grid-template-columns: repeat(5, 156px);
  gap: 0 calc(36px + 0.5rem);
  width: max-content;
  margin-top: 0.4rem;
  padding: 0 0.25rem;
}

.flywheel__detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.flywheel__detail span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
  padding-left: 0.6rem;
  position: relative;
}

.flywheel__detail span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

/* Return arrow beneath */
.flywheel__return {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flywheel__return-svg {
  width: 100%;
  height: 60px;
  overflow: visible;
}

.flywheel__return-svg path {
  stroke: var(--dim);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  fill: none;
}

.flywheel__return-svg marker path {
  fill: var(--dim);
  stroke: none;
  stroke-dasharray: none;
}

.flywheel__return-label {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: -0.25rem;
}

/* === Investigation Companion (Trust Slide) === */
.companion {
  max-width: 52rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.companion__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.companion__qr {
  color: var(--mint);
}

.companion__divider {
  width: 1px;
  height: 2rem;
  background: var(--dim);
}

.companion__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.companion__bracket {
  width: 100%;
  max-width: 44rem;
  height: 12px;
  border: 1px solid var(--dim);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin-bottom: 1.25rem;
}

.companion__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.companion__item {
  text-align: center;
  padding: 1rem 0.75rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.companion__icon {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.companion__label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

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

.companion__attribution {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

.companion__attribution a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.companion__attribution a:hover {
  color: var(--white);
}

/* === Collaboration Layout === */
.collab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 52rem;
  width: 100%;
}

.collab__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 1.5rem;
  align-items: start;
}

.collab__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Vertical connector line between card and output */
.collab__vline {
  width: 2px;
  flex: 1;
  min-height: 20px;
  align-self: center;
}

.collab__vline line {
  stroke: var(--dim);
  stroke-width: 1.5;
}

.collab__card {
  padding: 1.6rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.collab__card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.collab__card > span {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.6rem;
}

.collab__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.collab__card ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 0.8rem;
  position: relative;
}

.collab__card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.collab__card--accent {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.05);
}

.collab__card--accent ul li::before {
  background: var(--mint);
  opacity: 0.5;
}

/* Bridge arrows (center column) */
.collab__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1.5rem;
  min-width: 200px;
}

.collab__bridge svg {
  width: 200px;
  overflow: visible;
}

.collab__bridge svg text {
  fill: var(--muted);
  font-family: var(--font);
  font-size: 10px;
}

.collab__bridge svg line,
.collab__bridge svg path {
  stroke: var(--dim);
  stroke-width: 1.5;
}

.collab__bridge svg marker path {
  fill: var(--dim);
  stroke: none;
}

/* Output boxes */
.collab__output {
  padding: 1rem 1.4rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.collab__output ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.collab__output ul li {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  padding-left: 0.8rem;
  position: relative;
}

.collab__output ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.collab__icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  color: var(--muted);
}

.collab__tiktok-icon {
  display: block;
  flex-shrink: 0;
}

.collab__output--owned {
  border-color: var(--mint);
}

.collab__output .collab__icons {
  margin-bottom: 0.25rem;
}

/* Tooltip on owned channels */
.collab__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 30, 31, 0.95);
  border: 1px solid var(--dim);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.collab__output--owned:hover .collab__tooltip {
  opacity: 1;
}

/* Funding — vertical dotted connector into BS card */
.collab__funding {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  width: calc(50% - 108px);
  margin-bottom: 0;
}

.collab__funding-label {
  display: block;
}

.collab__funding-examples {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.1rem;
}

.collab__funding-line {
  width: 2px;
  height: 20px;
  margin-top: 0.4rem;
}

.collab__funding-line line {
  stroke: var(--dim);
  stroke-width: 1.5;
}

/* Auto-publish arrow at bottom */
.collab__auto-publish {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
}

.collab__auto-publish svg {
  width: 100%;
  max-width: 48rem;
  height: 50px;
  overflow: visible;
}

.collab__auto-publish svg text {
  fill: var(--muted);
  font-family: var(--font);
  font-size: 10px;
}

.collab__auto-publish svg path {
  stroke: var(--dim);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  fill: none;
}

.collab__auto-publish svg marker path {
  fill: var(--dim);
  stroke: none;
  stroke-dasharray: none;
}

/* === Membership === */
.membership {
  max-width: 48rem;
  width: 100%;
}

.membership__free {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 1.5rem;
}

.membership__free span + span::before {
  content: '·';
  margin: 0 0.6rem;
  opacity: 0.4;
}

.membership__pro {
  border: 1px solid var(--mint);
  border-radius: 12px;
  background: rgba(124, 255, 196, 0.04);
  padding: 2.5rem 2rem;
  text-align: center;
}

.membership__tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.membership__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.membership__pillar {
  position: relative;
  padding: 1.5rem 1rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  cursor: default;
  transition: border-color 0.2s ease;
}

.membership__pillar:hover {
  border-color: var(--mint);
}

.membership__pillar-icon {
  color: var(--mint);
  margin-bottom: 0.6rem;
}

.membership__pillar-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.membership__pillar-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 30, 31, 0.95);
  border: 1px solid var(--dim);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.membership__pillar:hover .membership__pillar-tooltip {
  opacity: 1;
}

.membership__free-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

/* === Newsletter List === */
.newsletter-list {
  max-width: 36rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
}

.newsletter-list__item svg {
  flex-shrink: 0;
  color: var(--mint);
  width: 18px;
  height: 18px;
}

.newsletter-list__item--pro {
  border-left: 2px solid var(--mint);
}

.newsletter-list__badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
  background: rgba(124, 255, 196, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* === Consulting === */
.consulting-list {
  max-width: 48rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.consulting-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.consulting-item__icon {
  flex-shrink: 0;
  color: var(--mint);
  margin-top: 0.15rem;
}

.consulting-item__text {
  flex: 1;
  min-width: 0;
}

.consulting-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.consulting-item__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.consulting-item__logo:hover {
  opacity: 0.5;
}

.consulting-item__logo svg {
  height: 24px;
  width: auto;
}

.consulting-item__logotype {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* === Impact / Market Slides === */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 52rem;
  width: 100%;
}

.impact-item {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--dim);
  background: rgba(255, 255, 255, 0.03);
}

.impact-item__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.impact-item__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* === Founder Slide === */
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: 56rem;
  width: 100%;
  align-items: stretch;
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.founder-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.founder-role {
  font-size: 0.95rem;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1rem;
}

.founder-credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.founder-credentials li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1rem;
  position: relative;
}

.founder-credentials li a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--dim);
}

.founder-credentials li a:hover {
  color: var(--white);
  text-decoration-color: var(--mint);
}

.founder-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid var(--dim);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.founder-linkedin:hover {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.05);
}

.founder-linkedin__icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* === Team Grid === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 52rem;
  width: 100%;
}

.team-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 36rem;
}

.team-card {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}

.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--mint);
  font-weight: 600;
}

.team-card__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.team-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 0.75rem;
}

.team-card__linkedin {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.2s;
}

.team-card__link:hover .team-card__linkedin {
  opacity: 1;
}

/* === Roadmap === */
.roadmap {
  display: flex;
  align-items: stretch;
  max-width: 56rem;
  width: 100%;
}

.roadmap__phase {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  align-content: start;
}

.roadmap__phase--active {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.04);
}

.roadmap__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.roadmap__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--dim);
  color: var(--muted);
}

.roadmap__phase--active .roadmap__badge {
  border-color: var(--mint);
  color: var(--mint);
}

.roadmap__year {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
}

.roadmap__phase--active .roadmap__year {
  color: var(--white);
}

.roadmap__items {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  grid-column: 1;
  grid-row: 2;
  transition: opacity 0.3s ease;
}

.roadmap__phase--active .roadmap__items {
  color: rgba(255, 255, 255, 0.85);
}

.roadmap__items li {
  padding-left: 0.85rem;
  position: relative;
}

.roadmap__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dim);
}

.roadmap__phase--active .roadmap__items li::before {
  background: var(--mint);
}

.roadmap__connector {
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.roadmap__connector::before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--dim);
}

.roadmap__connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--dim);
}

/* Roadmap view toggle */
.roadmap[data-view="milestones"] .roadmap__kpis { opacity: 0; }
.roadmap[data-view="kpis"] .roadmap__milestones { opacity: 0; }

.tier-toggle--kpis .tier-toggle__slider {
  transform: translateX(100%);
}

/* === Ask Slide === */
.ask {
  text-align: center;
  max-width: 44rem;
}

.ask__amount {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.ask__amount::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 255, 196, 0.5), transparent);
  margin: 0.75rem auto 0;
}

/* === Chapter Bar === */
.chapter-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  height: 32px;
}

.chapter-segment {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.chapter-segment__label {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

/* States */
.chapter-segment--future .chapter-segment__label {
  color: rgba(255, 255, 255, 0.15);
}

.chapter-segment--past .chapter-segment__label {
  color: rgba(124, 255, 196, 0.4);
}

.chapter-segment--active .chapter-segment__label {
  color: var(--mint);
}

/* Track at bottom of each segment */
.chapter-segment__track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.chapter-segment__fill {
  height: 100%;
  width: 0%;
  border-radius: 0 1px 1px 0;
  transition: width 0.4s ease-out, background 0.3s ease;
}

.chapter-segment--past .chapter-segment__fill {
  width: 100%;
  background: rgba(124, 255, 196, 0.3);
}

.chapter-segment--active .chapter-segment__fill {
  background: var(--mint);
  box-shadow: 0 0 8px rgba(124, 255, 196, 0.5);
}

.chapter-segment--future .chapter-segment__fill {
  width: 0%;
  background: transparent;
}

/* === Progress Bar === */
.progress {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 100;
  align-items: center;
}

.progress__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dim);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.progress__dot:hover {
  background: var(--muted);
  transform: scale(1.3);
}

.progress__dot--active {
  background: var(--mint);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(124, 255, 196, 0.5);
}

.slide-counter {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  z-index: 100;
  font-variant-numeric: tabular-nums;
}

/* === Mode Visibility === */
body:not(.mode-foundation) [data-mode="foundation"] { display: none !important; }
body:not(.mode-investor) [data-mode="investor"] { display: none !important; }

/* === Responsive === */
@media (max-width: 768px) {
  .slide { padding: 2rem 1.5rem; }
  .biz-grid,
  .tool-grid,
  .impact-grid { grid-template-columns: 1fr; }
  .content-formats { grid-template-columns: 1fr; }
  .content-bottom { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr; gap: 1rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid--2col { grid-template-columns: repeat(2, 1fr); }
  .founder-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .founder-photo { width: 160px; margin: 0 auto; }
  .founder-info { text-align: center; }
  .founder-credentials { align-items: center; }
  .founder-credentials li { text-align: left; }
  .roadmap { flex-direction: column; gap: 1rem; }
  .roadmap__connector { width: auto; height: 24px; flex-direction: column; }
  .roadmap__connector::before { width: 1px; height: 100%; }
  .roadmap__connector::after { display: none; }
  .pipeline { flex-wrap: wrap; justify-content: center; }
  .flywheel__row { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
  .flywheel__arrow { display: none; }
  .flywheel__step { width: calc(50% - 0.5rem); }
  .flywheel__feeders { display: none; }
  .flywheel__details { display: none; }
  .flywheel__return-svg { display: none; }
  .flywheel__return-label { margin-top: 0.5rem; font-style: italic; }
  .companion__grid { grid-template-columns: repeat(2, 1fr); }
  .companion__bracket { max-width: 100%; }
  .collab__row { grid-template-columns: 1fr; gap: 1.5rem 0; }
  .collab__bridge { min-width: unset; }
  .collab__bridge svg { width: 160px; }
  .collab__funding { align-self: center; width: auto; }
  .membership__pillars { grid-template-columns: repeat(2, 1fr); }
  .newsletter-list { max-width: 100%; }
}

@media (max-width: 480px) {
  .slide { padding: 1.5rem 1rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid--2col { grid-template-columns: 1fr; }
  .founder-photo { width: 140px; }
  .membership__pillars { grid-template-columns: 1fr; }
  .membership__pillar-tooltip { white-space: normal; min-width: 200px; }
}

/* === Ad Package (Sponsorship Slide) === */
.ad-package {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 54rem;
  width: 100%;
  align-items: start;
}

.ad-package__deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ad-package__deliverables li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.45rem 0;
}

.ad-package__deliverables li i,
.ad-package__deliverables li svg {
  color: var(--mint);
  flex-shrink: 0;
  opacity: 0.7;
}

.ad-package__pricing {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ad-package__year {
  padding: 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.ad-package__year--featured {
  border-color: var(--mint);
  background: rgba(124, 255, 196, 0.04);
}

.ad-package__year-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.ad-package__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.ad-package__price span {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--muted);
}

.ad-package__basis {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* === Ask Slide — Equity & Funds === */
.ask__equity {
  font-size: 1.3rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.ask__use-of-funds {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
  width: 100%;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.ask__fund-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ask__fund-icon {
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.ask__fund-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ask__fund-text strong {
  font-size: 0.95rem;
  color: var(--white);
}

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

.ask__structure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  line-height: 1.5;
}

/* === Slide Eyebrow & Step Indicator === */
.slide__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.slide__step {
  font-variant-numeric: tabular-nums;
  color: var(--dim);
  margin-left: 0.75rem;
}

/* === Forecast Table === */
.forecast-table {
  max-width: 48rem;
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.forecast-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--dim);
  text-align: right;
}

.forecast-table th:first-child {
  text-align: left;
}

.forecast-table td {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--dim);
  text-align: right;
}

.forecast-table td:first-child {
  text-align: left;
  color: var(--muted);
}

.forecast-table__total td {
  font-weight: 700;
  color: var(--mint);
  border-top: 1px solid var(--mint);
}

/* === Revenue Chart (Stacked Bars) === */
.revenue-chart {
  max-width: 48rem;
  width: 100%;
  margin-top: 1.5rem;
}

.revenue-chart__svg {
  width: 100%;
  height: auto;
}

.revenue-chart__label {
  font-size: 10px;
  fill: rgba(255, 255, 255, 0.4);
  font-family: 'Space Mono', monospace;
  text-anchor: start;
  dominant-baseline: middle;
}

.revenue-chart__bar-label {
  font-size: 9px;
  fill: rgba(255, 255, 255, 0.5);
  font-family: 'Space Mono', monospace;
  text-anchor: middle;
}

.revenue-chart__legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 0.3rem;
  vertical-align: middle;
}

/* === Conclusion Slide === */
.conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}

.conclusion__signal {
  margin-bottom: 0.5rem;
}

.conclusion__email {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.conclusion__email:hover {
  text-decoration: underline;
}

.conclusion__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.conclusion__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--dim);
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.conclusion__link:hover {
  border-color: var(--mint);
  color: var(--white);
  background: rgba(124, 255, 196, 0.05);
}

.conclusion__link svg,
.conclusion__link i {
  color: var(--mint);
}

/* === Impact Item Icon === */
.impact-item__icon {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* === Impact Item Stat (Market cards) === */
.impact-item__stat {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--mint);
  line-height: 1.1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.impact-item__stat span {
  font-size: 0.5em;
  font-weight: 600;
  opacity: 0.7;
}

/* === Market Slide Scoped Overrides === */
#market .impact-item {
  border-top: 2px solid rgba(124, 255, 196, 0.2);
}

#market .impact-item__title {
  color: var(--white);
}

#market .impact-item__icon {
  color: var(--muted);
}

/* === Impact Slide Scoped Overrides === */
#impact {
  counter-reset: impact-card;
}

#impact .impact-item {
  counter-increment: impact-card;
  position: relative;
}

#impact .impact-item__title {
  color: var(--white);
}

#impact .impact-item__icon {
  color: var(--white);
  opacity: 0.85;
}

#impact .impact-item::before {
  content: '0' counter(impact-card);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(124, 255, 196, 0.3);
  letter-spacing: 0.05em;
}

/* === Responsive — Additional Components === */
@media (max-width: 768px) {
  .ad-package { grid-template-columns: 1fr; }
  .forecast-table { font-size: 0.85rem; }
  .forecast-table th, .forecast-table td { padding: 0.5rem 0.6rem; }
  .conclusion__links { flex-direction: column; align-items: center; }
}

/* === Utility === */
.text-mint { color: var(--mint); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
