/* ============================================
   SLIDE 1 — TITLE
   ============================================ */
.title-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#slide-title .logo-icon {
  width: 72px;
  height: 72px;
}

#slide-close .logo-icon {
  width: 72px;
  height: 72px;
}

#slide-title h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

/* ============================================
   SLIDE 2 — CONTRARIAN INSIGHT (v1.1)
   ============================================ */
#slide-insight {
  justify-content: center;
  gap: 24px;
}

#slide-insight h2 { margin-bottom: 0; }

.insight-contrast {
  font-size: 24px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.insight-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.insight-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--emerald-500));
}

.insight-kicker {
  font-size: 36px;
  font-weight: 800;
  color: var(--emerald-400);
  text-align: center;
  letter-spacing: -0.02em;
}

.insight-window {
  max-width: 640px;
  text-align: center;
  margin-top: 12px;
}

.window-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-500);
  margin-bottom: 8px;
  font-weight: 600;
}

.insight-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.insight-detail-row {
  display: flex;
  gap: 32px;
}

.insight-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--text-dim);
  border-radius: 10px;
  min-width: 150px;
}

.insight-detail strong {
  font-size: 16px;
  color: var(--emerald-400);
}

.insight-detail span {
  font-size: 13px;
  color: var(--text-muted);
}

.insight-running {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

.insight-window p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   SLIDE 3 — COMBINED PRODUCTS (v1.1)
   ============================================ */
#slide-products { padding: 36px 56px; }
#slide-products h2 { margin-bottom: 24px; font-size: 44px; }

.products-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  width: 100%;
  align-items: stretch;
}

.product-main .product-badge { margin-bottom: 8px; }
.product-main h3 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.product-oneliner {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pipeline-funnel { gap: 3px; }
.funnel-bar { height: 24px; }
.funnel-labels { font-size: 13px; margin-top: 2px; }
.funnel-loss { font-size: 11px; padding: 1px 0; }

.funnel-caption {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

.product-proof {
  background: var(--bg-elevated);
  border: 1px solid var(--text-dim);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-proof .product-badge { margin-bottom: 6px; }
.product-proof h3 { font-size: 24px; margin-bottom: 4px; }

.proof-detail {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.product-proof .comp-bar-section { margin-top: 0; }
.product-proof .comp-row {
  grid-template-columns: 90px 1fr 70px;
  font-size: 14px;
}

.product-proof .comp-track { height: 16px; }

/* ============================================
   SLIDE 9 — FOUNDER + ASK (v1.1)
   ============================================ */
.ask-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  max-width: 1050px;
  width: 100%;
  align-items: start;
}

.ask-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--text-dim), transparent);
  align-self: stretch;
}

.founder-card {
  background: var(--bg-elevated);
  border: 1px solid var(--emerald-border);
  border-radius: 12px;
  padding: 24px;
}

.founder-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.founder-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.founder-proof {
  font-size: 14px;
  color: var(--emerald-400);
  font-weight: 600;
  font-style: italic;
}

.ask-target {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.ask-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--emerald-400);
  letter-spacing: -0.02em;
}

.ask-runway {
  font-size: 15px;
  color: var(--text-muted);
}

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

.ask-bucket {
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--text-dim);
  border-radius: 10px;
}

.ask-bucket strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.ask-bucket span {
  font-size: 13px;
  color: var(--text-muted);
}

/* The System / Org Diagram */
.ask-system {
  margin-top: 28px;
  width: 100%;
  max-width: 1050px;
}

.org-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.org-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 10px;
  text-align: center;
}

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

.org-human-row {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.org-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.org-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.org-person span {
  font-size: 10px;
  color: var(--text-dim);
}

.org-actions {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.org-actions span {
  font-size: 10px;
  color: var(--text-muted);
  padding: 2px 8px;
  border: 1px solid var(--text-dim);
  border-radius: 4px;
}

.org-arrows {
  display: flex;
  gap: 40px;
  padding: 8px 0;
}

.org-arrow-down {
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, var(--text-dim), var(--emerald-500));
  position: relative;
}

.org-arrow-down::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -3px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--emerald-500);
}

.org-agents {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.org-agent-row {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 700px;
}

.org-agent-block {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--emerald-border);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
}

.org-agent-block strong {
  display: block;
  font-size: 13px;
  color: var(--emerald-400);
  margin-bottom: 2px;
}

.org-agent-block span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================
   SLIDE 3 — MFE (header additions)
   ============================================ */
.mfe-header {
  text-align: center;
  margin-bottom: 24px;
}

.product-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--emerald-400);
  background: var(--emerald-glow);
  padding: 4px 14px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.mfe-header h2 { margin-bottom: 12px; }

.mfe-market {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   SLIDE 4 — CLUTCHFORECAST (restructured)
   ============================================ */
.clutch-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  width: 100%;
  align-items: start;
  margin-top: 24px;
}

.clutch-left .product-badge { margin-bottom: 12px; }
.clutch-left h2 { font-size: 40px; text-align: left; margin-bottom: 16px; }

.clutch-speed {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.speed-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--emerald-400);
  letter-spacing: -0.03em;
}

.speed-context {
  font-size: 17px;
  color: var(--text-secondary);
}

.clutch-what { margin-bottom: 20px; }
.clutch-what h3 { font-size: 18px; color: var(--emerald-400); margin-bottom: 8px; }
.clutch-what p { font-size: 14px; }

/* ============================================
   SLIDE 4 — TECH TREE (v1.1 flexbox)
   ============================================ */
#slide-stack h2 { margin-bottom: 28px; }

/* Legacy container (unused in v1.1) */
.techtree {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
}

/* New flexbox tech tree */
.techtree-v2 {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  margin-top: 12px;
}

.tt2-sources {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.tt2-sources .tt-node {
  position: relative;
  width: 220px;
}

.tt2-connector-h {
  width: 40px;
  height: 2px;
  background: var(--emerald-500);
  flex-shrink: 0;
  position: relative;
}

.tt2-connector-h::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--emerald-500);
}

.tt2-fan {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
  align-self: stretch;
  justify-content: center;
}

.tt2-fan-line {
  width: 48px;
  height: 2px;
  background: var(--emerald-400);
  position: relative;
}

.tt2-fan-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--emerald-400);
}

.tt2-fan-planned {
  background: var(--text-dim);
  opacity: 0.5;
}

.tt2-fan-planned::after {
  border-left-color: var(--text-dim);
}

.tt2-outputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.tt2-outputs .tt-node {
  position: relative;
  width: 180px;
  padding: 12px 16px;
}

/* Two-column grid for expanded roadmap */
.tt2-outputs-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

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

.tt2-col-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-400);
  font-weight: 600;
  margin-bottom: 4px;
  padding-left: 4px;
}

.tt-compact {
  padding: 8px 14px !important;
  width: 170px !important;
}

.tt-compact h3 { font-size: 14px !important; margin-bottom: 1px; }
.tt-compact p { font-size: 11px !important; }
.tt-compact .tt-status { font-size: 8px; padding: 2px 6px; margin-bottom: 4px; }

.tt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tt-line {
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.tt-line-built {
  stroke: var(--emerald-500);
  stroke-dasharray: none;
  opacity: 0.5;
}

.tt-line-active {
  stroke: var(--emerald-400);
  stroke-dasharray: 8 5;
  opacity: 0.4;
}

.tt-line-planned {
  stroke: var(--text-dim);
  stroke-dasharray: 4 6;
  opacity: 0.3;
}

.tt-dot {
  fill: var(--emerald-400);
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.7));
}

.tt-dot-active {
  fill: var(--emerald-300);
  filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.5));
}

/* Node cards */
.tt-node {
  position: absolute;
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 18px 22px;
  z-index: 1;
}

.tt-node h3 { font-size: 17px; margin-bottom: 4px; }
.tt-node p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.tt-meta { font-size: 11px; color: var(--text-dim); margin-top: 6px; }

.tt-icon {
  font-size: 20px;
  color: var(--emerald-400);
  margin-bottom: 6px;
}

/* Status badges */
.tt-status {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.tt-built .tt-status {
  background: var(--emerald-glow-strong);
  color: var(--emerald-300);
}

.tt-built {
  border: 1px solid var(--emerald-500);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.08);
}

.tt-status-core {
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-400)) !important;
  color: white !important;
}

.tt-harness {
  border: 2px solid var(--emerald-500);
  background: linear-gradient(135deg, var(--bg-elevated), rgba(16, 185, 129, 0.06));
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.12);
}

.tt-status-active {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
}

.tt-active {
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.tt-status-planned {
  background: rgba(100, 116, 139, 0.2);
  color: var(--text-muted);
}

.tt-planned {
  border: 1px dashed var(--text-dim);
  opacity: 0.6;
}

/* Tier positioning (left to right) */
.tt-tier1 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 190px;
}

.tt-tier2 {
  left: 29%;
  top: 50%;
  transform: translateY(-50%);
  width: 190px;
}

.tt-tier3 {
  left: 56%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  text-align: center;
}

.tt-harness .tt-icon {
  font-size: 24px;
}

.tt-harness h3 {
  font-size: 19px;
}

/* Branch nodes (fan-out right) */
.tt-branch {
  width: 200px;
  padding: 14px 18px;
}

.tt-branch h3 { font-size: 15px; }
.tt-branch p { font-size: 12px; }

.tt-b1 { right: 0; top: 20px; }
.tt-b2 { right: 0; top: 142px; }
.tt-b3 { right: 0; top: 264px; }
.tt-b4 { right: 0; top: 376px; }

/* "And more" trail */
.tt-more {
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 200px;
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  opacity: 0.5;
  z-index: 1;
}

/* ============================================
   SLIDE 5 — LIVING SYSTEM
   ============================================ */
.living-title {
  font-size: 36px !important;
  margin-bottom: 28px;
}

.living-system {
  display: grid;
  grid-template-columns: 220px 1fr 300px;
  grid-template-rows: 1fr 52px;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  height: 400px;
}

.ls-col {
  background: var(--bg-surface);
  border: 1px solid var(--text-dim);
  border-radius: 10px;
  padding: 14px;
  overflow: hidden;
}

.ls-col-header {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-400);
  margin-bottom: 12px;
  font-weight: 600;
}

/* Worker grid */
.ls-worker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.ls-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto;
}

.ls-status-evaluating {
  background: var(--emerald-500);
  animation: pulse-node 2s ease-in-out infinite;
}

.ls-status-idle {
  background: var(--text-dim);
}

.ls-status-analyzing {
  background: var(--emerald-400);
}

.ls-status-encoding {
  background: var(--emerald-300);
  animation: pulse-node 1.5s ease-in-out infinite;
}

@keyframes pulse-node {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Experiment list */
.ls-experiment-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  max-height: 300px;
}

.ls-exp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg-elevated);
  border-radius: 6px;
  font-size: 12px;
  border-left: 3px solid var(--text-dim);
}

.ls-exp-evaluating { border-left-color: var(--emerald-500); }
.ls-exp-analyzing { border-left-color: var(--emerald-400); }
.ls-exp-decided { border-left-color: var(--text-dim); }

.ls-exp-id {
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--text-primary);
  font-weight: 600;
  min-width: 90px;
}

.ls-exp-status {
  color: var(--text-muted);
  font-size: 11px;
  min-width: 70px;
}

.ls-verdict {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ls-verdict-nogo {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.ls-verdict-promote {
  background: var(--emerald-glow);
  color: var(--emerald-400);
}

.ls-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--bg-surface);
  border-radius: 2px;
  overflow: hidden;
}

.ls-progress-fill {
  height: 100%;
  background: var(--emerald-500);
  border-radius: 2px;
  transition: width 1s ease;
}

/* Results stream */
.ls-result-feed {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  max-height: 300px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 11px;
}

.ls-result-entry {
  display: flex;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.ls-result-time {
  color: var(--text-dim);
  min-width: 40px;
}

.ls-result-score .ls-result-text { color: var(--text-secondary); }
.ls-result-verdict .ls-result-text { color: var(--emerald-400); }

/* Vitals bar */
.ls-vitals {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--text-dim);
  border-radius: 10px;
  padding: 10px 20px;
}

.ls-vital {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ls-vital-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--emerald-400);
  font-variant-numeric: tabular-nums;
}

.ls-vital-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

/* ============================================
   SLIDE 6 — MFE
   ============================================ */
#slide-mfe h2 { font-size: 36px; margin-bottom: 28px; }

.mfe-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  align-items: start;
}

.mfe-text { display: flex; flex-direction: column; gap: 20px; }
.mfe-beat h3 { font-size: 20px; color: var(--emerald-400); margin-bottom: 6px; }
.mfe-beat p { font-size: 16px; }

.pipeline-funnel { display: flex; flex-direction: column; gap: 4px; }

.funnel-stage { display: flex; flex-direction: column; gap: 2px; }
.funnel-bar { height: 28px; background: var(--bg-elevated); border-radius: 6px; overflow: hidden; }
.funnel-fill {
  height: 100%;
  width: var(--kept);
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-400));
  border-radius: 6px;
  transition: width 0.8s ease;
}

.funnel-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.funnel-name { color: var(--text-secondary); }
.funnel-pct { color: var(--emerald-400); font-weight: 600; }

.funnel-loss {
  font-size: 10px;
  color: #f87171;
  text-align: right;
  padding: 2px 0;
  opacity: 0.7;
}

.comp-bar-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 800px;
  margin-top: 24px;
}

.comp-row {
  display: grid;
  grid-template-columns: 110px 1fr 90px 220px;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.comp-name { color: var(--text-secondary); font-weight: 500; }
.comp-track { height: 20px; background: var(--bg-elevated); border-radius: 4px; overflow: hidden; }
.comp-fill {
  height: 100%;
  width: var(--pct);
  background: var(--text-dim);
  border-radius: 4px;
}
.comp-pct { color: var(--text-muted); font-size: 12px; }
.comp-note { color: var(--text-dim); font-size: 11px; }

.comp-highlight .comp-name { color: var(--emerald-400); font-weight: 700; }
.comp-highlight .comp-fill {
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-400));
  animation: pulse-glow 2s ease-in-out infinite;
}
.comp-highlight .comp-pct { color: var(--emerald-400); }
.comp-highlight .comp-note { color: var(--emerald-300); }
.comp-fill.evolving { animation: pulse-glow 2s ease-in-out infinite; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 4px var(--emerald-glow); }
  50% { box-shadow: 0 0 12px var(--emerald-glow-strong); }
}

/* ============================================
   SLIDE 7 — CLUTCHFORECAST
   ============================================ */
.clutch-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  width: 100%;
  align-items: center;
  margin-top: 32px;
}

.client-badge {
  background: var(--bg-elevated);
  border: 1px solid var(--emerald-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.client-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.client-name { font-size: 24px; font-weight: 700; color: var(--text-primary); }
.client-desc { font-size: 13px; color: var(--text-muted); }

.clutch-context p { font-size: 14px; }

.clutch-planes { display: flex; flex-direction: column; gap: 12px; }

.plane {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-surface);
  border-left: 3px solid var(--emerald-500);
  border-radius: 8px;
  padding: 20px 24px;
}

.plane-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  flex-shrink: 0;
}

.plane-info h3 { font-size: 16px; margin-bottom: 2px; }
.plane-info p { font-size: 13px; }

/* ============================================
   SLIDE 8 — COMPOUNDING TIMELINE
   ============================================ */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 800px;
  width: 100%;
  margin-top: 36px;
}

.timeline-bar {
  position: relative;
  height: 44px;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-500), var(--emerald-400));
  border-radius: 8px;
  width: 0;
}

.bar-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  z-index: 1;
}

.bar-label strong { color: var(--text-primary); }
.bar-label span { color: var(--text-muted); font-size: 12px; }

.ghost-bar { opacity: 0.3; }
.ghost-bar .bar-fill {
  background: transparent;
  border: 1px dashed var(--emerald-border);
}

.flywheel-loops {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  max-width: 900px;
}

.loop-item {
  flex: 1;
  background: var(--bg-elevated);
  border-top: 2px solid var(--emerald-500);
  border-radius: 8px;
  padding: 18px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   SLIDE 8 — DISTRIBUTION + MOAT (combined)
   ============================================ */
#slide-moat h2 { margin-bottom: 28px; }

.moat-combined {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  align-items: start;
}

.moat-section-title {
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-400) !important;
  margin-bottom: 12px;
}

.moat-premise {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.moat-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--text-dim), transparent);
  align-self: stretch;
}

/* Distribution side */
.industry-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ind-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--text-dim);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.ind-chip.built {
  border-color: var(--emerald-border);
  background: linear-gradient(135deg, var(--bg-elevated), rgba(16, 185, 129, 0.06));
}

.ind-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(100, 116, 139, 0.2);
  color: var(--text-muted);
  font-weight: 600;
}

.ind-chip.built .ind-tag {
  background: var(--emerald-glow-strong);
  color: var(--emerald-300);
}

/* Moat side */
.moat-layers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.moat-layer {
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 3px solid var(--emerald-500);
  background: var(--bg-elevated);
}

.moat-layer strong {
  display: block;
  font-size: 15px;
  color: var(--emerald-400);
  margin-bottom: 4px;
}

.moat-layer span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SLIDE 7 — AGI SLIVERS MARKET
   ============================================ */
#slide-opportunity h2 { margin-bottom: 8px; }

.opp-sub {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.sliver-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1100px;
  width: 100%;
}

.sliver {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--text-dim);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  position: relative;
}

.sliver.active-sliver {
  border-color: var(--emerald-500);
  background: linear-gradient(135deg, var(--bg-elevated), rgba(16, 185, 129, 0.08));
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.1);
}

.sliver-connector {
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.sliver-connector::after {
  content: '';
  width: 100%;
  height: 2px;
  background: var(--text-dim);
}

[data-sliver-c="1"]::after {
  background: var(--emerald-500);
}

.sliver-status {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.sliver-now {
  background: var(--emerald-glow-strong);
  color: var(--emerald-300);
}

.sliver-next {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
}

.sliver-planned {
  background: rgba(100, 116, 139, 0.2);
  color: var(--text-muted);
}

.sliver-icon {
  font-size: 20px;
  color: var(--emerald-400);
  margin-bottom: 6px;
}

.sliver h3 {
  font-size: 16px !important;
  margin-bottom: 2px;
}

.sliver > p {
  font-size: 12px !important;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sliver-market {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 4px;
}

.sliver-size {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.active-sliver .sliver-size {
  color: var(--emerald-400);
}

.sliver-year {
  font-size: 10px;
  color: var(--text-dim);
}

.sliver-target {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

/* Vertical AI row */
.opp-vertical {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  max-width: 1100px;
  width: 100%;
}

.opp-plus {
  font-size: 28px;
  color: var(--emerald-500);
  font-weight: 300;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.opp-vertical-box {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px dashed var(--emerald-border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.opp-vertical-box strong {
  color: var(--emerald-400);
  font-size: 15px;
  white-space: nowrap;
}

.opp-vertical-box span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   SLIDE 8 — MARKET VALIDATION
   ============================================ */
.comp-table {
  width: 100%;
  max-width: 900px;
  border-collapse: separate;
  border-spacing: 0 4px;
  margin-top: 32px;
}

.comp-table th {
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding: 8px 16px;
  font-weight: 500;
}

.comp-table td {
  background: var(--bg-elevated);
  padding: 16px 20px;
  font-size: 16px;
  color: var(--text-secondary);
}

.comp-table td:first-child { border-radius: 8px 0 0 8px; font-weight: 600; color: var(--text-primary); }
.comp-table td:last-child { border-radius: 0 8px 8px 0; }

.highlight-row td {
  background: var(--emerald-glow) !important;
  color: var(--emerald-300) !important;
  font-weight: 600 !important;
  border-top: 1px solid var(--emerald-border);
  border-bottom: 1px solid var(--emerald-border);
}

.highlight-row td:first-child { border-left: 1px solid var(--emerald-border); }
.highlight-row td:last-child { border-right: 1px solid var(--emerald-border); }

/* ============================================
   SLIDE 12 — USE OF FUNDS
   ============================================ */
.funds-grid {
  display: flex;
  gap: 24px;
  max-width: 960px;
  margin-top: 36px;
}

.fund-bucket {
  flex: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--text-dim);
  border-radius: 16px;
  padding: 32px;
}

.fund-icon {
  color: var(--emerald-400);
  font-size: 20px;
  margin-bottom: 16px;
}

.fund-bucket h3 { font-size: 20px; margin-bottom: 12px; }
.fund-bucket p { font-size: 15px; }

.funds-bottom {
  margin-top: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--emerald-border);
  border-radius: 12px;
  padding: 20px 32px;
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
}

.funds-bottom strong { color: var(--emerald-400); }

/* ============================================
   SLIDE 13 — CLOSE
   ============================================ */
.close-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.close-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.close-line {
  font-size: 24px;
  color: var(--text-secondary);
}

.founder-info {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 16px;
}
