/* ========================================
   RANKMYAPP BOARD v4 — Strategic Narrative
   ======================================== */

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

:root {
  --bg: #09090b;
  --bg-card: #141419;
  --bg-card-hover: #1a1a22;
  --bg-elevated: #1e1e28;
  --text: #fafafa;
  --text-dim: #a1a1aa;
  --text-muted: #71717a;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --green: #22c55e;
  --emerald: #10b981;
  --orange: #f97316;
  --red: #ef4444;
  --gold: #fbbf24;
  --pink: #ec4899;
  --border: rgba(255,255,255,0.06);
  --border-md: rgba(255,255,255,0.10);
  --grad: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --grad-ads: linear-gradient(135deg, #06b6d4, #3b82f6);
  --grad-geo: linear-gradient(135deg, #22c55e, #06b6d4);
  --grad-dr: linear-gradient(135deg, #8b5cf6, #ec4899);
  --grad-warm: linear-gradient(135deg, #f97316, #ef4444);
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

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

.s {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 60px 80px 80px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
  transform: translateY(12px) scale(0.995);
}
.s.active {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.s-inner { width: 100%; max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

/* ── Ambient Glow ── */
.glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(140px); opacity: 0.15;
}
.glow-xl { width: 800px; height: 800px; filter: blur(180px); opacity: 0.10; }
.glow-purple { background: #8b5cf6; }
.glow-blue { background: #3b82f6; }
.glow-cyan { background: #06b6d4; }
.glow-green { background: #22c55e; }
.glow-pink { background: #ec4899; }

/* Gradient line divider */
.gl {
  height: 3px; border-radius: 2px; margin: 32px auto;
  background: var(--grad); max-width: 120px;
}

/* ── Typography ── */
.badge {
  display: inline-block; padding: 7px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border-md); color: var(--text-dim);
  background: rgba(255,255,255,0.03); margin-bottom: 24px;
}
.badge-live {
  border-color: rgba(34,197,94,0.35); color: var(--green);
  background: rgba(34,197,94,0.08);
}
.badge-live::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.badge-purple {
  border-color: rgba(139,92,246,0.35); color: var(--purple);
  background: rgba(139,92,246,0.08);
}

.h-hero {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.045em;
}
.h-xl {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800; line-height: 1.0; letter-spacing: -0.04em;
}
.h-lg {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
}
.h-md {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em;
}
.sub {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--text-dim); line-height: 1.55; max-width: 650px;
}
.sub-sm {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--text-dim); line-height: 1.6;
}

.grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-ads { background: var(--grad-ads); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-geo { background: var(--grad-geo); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-dr { background: var(--grad-dr); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-warm { background: linear-gradient(135deg, #fbbf24, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.tc { text-align: center; }
.dim { color: var(--text-dim); }
.muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 32px; }
.mt-l { margin-top: 48px; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.card-glow {
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 0 40px rgba(139,92,246,0.06), inset 0 1px 0 rgba(139,92,246,0.1);
}
.card-sm { padding: 20px; }

/* ── Impact Wall ── */
.wall {
  display: grid; gap: 3px; margin-top: 40px;
}
.wall-4x2 { grid-template-columns: repeat(4, 1fr); }
.wall-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 16px; text-align: center;
}
.wall-num {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.wall-label {
  font-size: 11px; color: var(--text-muted);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── Gap Visual ── */
.gap-row {
  display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0;
  margin-top: 40px; align-items: stretch;
}
.gap-col {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 28px;
}
.gap-old { border-color: rgba(239,68,68,0.15); }
.gap-new { border-color: rgba(34,197,94,0.15); }
.gap-mid { display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--text-muted); }
.gap-head {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.gap-head-old { color: var(--red); }
.gap-head-new { color: var(--green); }
.gap-item { font-size: 17px; color: var(--text-dim); padding: 10px 0; line-height: 1.4; }

/* ── 3-Column Force ── */
.cols3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.force {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 24px; position: relative;
}
.force-n {
  font-size: 80px; font-weight: 900; opacity: 0.05;
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.force-t { font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.force-d { font-size: 15px; color: var(--text-dim); line-height: 1.6; }

/* ── 4-Column Problem Dimensions ── */
.dims { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.dim-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 20px; border-top: 3px solid var(--red);
}
.dim-icon { font-size: 28px; margin-bottom: 12px; }
.dim-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.dim-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.dim-impact { font-size: 12px; color: var(--orange); font-weight: 600; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }

/* ── 2-Column Contrast (IS / ISN'T) ── */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
.contrast-col { }
.contrast-head {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 20px; padding-bottom: 12px;
}
.contrast-item {
  display: flex; gap: 14px; padding: 14px 0; align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.contrast-item:last-child { border-bottom: none; }
.contrast-mark { font-size: 18px; flex-shrink: 0; line-height: 1.4; }
.contrast-label { font-size: 15px; font-weight: 700; line-height: 1.3; }
.contrast-sub { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-top: 3px; }

/* ── Competitive Matrix ── */
.matrix { margin-top: 28px; width: 100%; border-collapse: collapse; }
.matrix th {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); padding: 10px 12px; text-align: left;
  border-bottom: 2px solid var(--border-md);
}
.matrix td {
  font-size: 12px; color: var(--text-dim); padding: 10px 12px; line-height: 1.5;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.matrix td:first-child { color: var(--text); font-weight: 700; font-size: 13px; white-space: nowrap; }
.matrix td:last-child { color: var(--green); font-weight: 600; }
.matrix tr:last-child td { border-bottom: none; }
.matrix-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px; margin-top: 28px; overflow-x: auto;
}

/* ── DataRank Action Flow ── */
.dr-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.dr-action {
  background: var(--bg-card); border: 1px solid rgba(139,92,246,0.15);
  border-radius: 16px; padding: 28px 22px;
  border-left: 3px solid var(--purple);
}
.dr-action-t { font-size: 18px; font-weight: 800; color: var(--purple); margin-bottom: 10px; }
.dr-action-d { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ── DataRank Example ── */
.dr-example {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(236,72,153,0.05));
  border: 1px solid rgba(139,92,246,0.2); border-radius: 16px;
  padding: 28px; margin-top: 28px;
}
.dr-ex-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--purple); margin-bottom: 14px; }
.dr-ex-row { display: flex; gap: 20px; align-items: flex-start; }
.dr-ex-tag {
  padding: 5px 12px; border-radius: 8px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; flex-shrink: 0;
}
.dr-ex-input { background: rgba(239,68,68,0.1); color: var(--red); border: 1px solid rgba(239,68,68,0.2); }
.dr-ex-output { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.dr-ex-text { font-size: 15px; color: var(--text-dim); line-height: 1.6; }
.dr-ex-text strong { color: var(--text); }

/* ── Impact Metrics Grid ── */
.impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.impact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 20px;
}
.impact-icon { font-size: 24px; margin-bottom: 10px; }
.impact-t { font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.impact-d { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ── Architecture Flow ── */
.arch {
  display: grid; grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: stretch; margin-top: 36px;
}
.arch-col {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 18px;
}
.arch-col-dr {
  border-color: rgba(139,92,246,0.3);
  background: linear-gradient(180deg, rgba(139,92,246,0.06) 0%, var(--bg-card) 100%);
}
.arch-arr { display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 18px; }
.arch-h {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.arch-i { font-size: 13px; color: var(--text-dim); padding: 5px 0; }
.arch-i-hl { color: var(--text); font-weight: 600; }

/* ── Infra Row ── */
.infra-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.infra-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px; border-top: 3px solid transparent;
}
.infra-card-sam { border-top-color: var(--red); }
.infra-card-get { border-top-color: var(--cyan); }
.infra-card-pig { border-top-color: var(--orange); }
.infra-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.infra-desc { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.infra-stat {
  font-size: 12px; color: var(--text-muted); margin-top: 14px;
  padding-top: 12px; border-top: 1px solid var(--border);
  font-weight: 600; letter-spacing: 0.03em;
}

/* ── Entry Points ── */
.entries { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.entry {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
}
.entry-pain { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.entry-arrow { color: var(--text-muted); margin-bottom: 8px; }
.entry-product { font-size: 16px; font-weight: 700; }

/* ── Product Hero ── */
.prod-head {
  display: flex; align-items: center; gap: 20px; margin-bottom: 28px;
}
.prod-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; flex-shrink: 0;
}
.prod-name {
  font-size: clamp(26px, 3vw, 42px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1;
}
.prod-sub { font-size: 15px; color: var(--text-dim); margin-top: 4px; line-height: 1.5; }

/* ── Client Cards ── */
.clients { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 24px; }
.client {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 16px; text-align: center;
}
.client-live { border-color: rgba(34,197,94,0.3); }
.client-soon { border-color: rgba(59,130,246,0.25); }
.client-int { border-color: rgba(251,191,36,0.25); }
.client-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.client-st { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.st-live { color: var(--green); }
.st-soon { color: var(--blue); }
.st-int { color: var(--gold); }

/* ── Price Hero ── */
.price-box {
  background: var(--bg-card); border: 1px solid rgba(139,92,246,0.2);
  border-radius: 20px; padding: 32px; text-align: center; margin-top: 24px;
  position: relative; overflow: hidden;
}
.price-box::before {
  content: ''; position: absolute; top: -1px; left: 15%; right: 15%;
  height: 2px; background: var(--grad);
}
.price-val {
  font-size: clamp(40px, 5vw, 72px); font-weight: 900; letter-spacing: -0.03em;
}
.price-lbl { font-size: 16px; color: var(--text-dim); margin-top: 4px; }
.price-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ── Pills ── */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ── Split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 32px; }
.split-wide { grid-template-columns: 1.3fr 0.7fr; }

/* ── Plans Row ── */
.plans { display: flex; gap: 20px; justify-content: center; margin-top: 20px; }
.plan {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 28px; text-align: center;
}
.plan-price { font-size: 24px; font-weight: 800; }
.plan-name { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ── Orbit ── */
.orbit {
  position: relative; width: 500px; height: 500px; margin: 24px auto 0;
}
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--grad-dr);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; text-align: center; line-height: 1.2;
  box-shadow: 0 0 60px rgba(139,92,246,0.35), 0 0 120px rgba(236,72,153,0.15);
  z-index: 5;
}
.orbit-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 1px dashed rgba(139,92,246,0.12); transform: translate(-50%,-50%);
}
.orbit-r1 { width: 260px; height: 260px; }
.orbit-r2 { width: 400px; height: 400px; }
.orbit-r3 { width: 490px; height: 490px; }
.orbit-n {
  position: absolute; padding: 6px 12px; border-radius: 10px;
  font-size: 11px; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border);
  white-space: nowrap; z-index: 3;
  transform: translate(-50%, -50%);
}

/* ── Copilot Lines ── */
.cop-lines { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; max-width: 700px; }
.cop-line {
  font-size: clamp(18px, 2.2vw, 28px); font-weight: 600;
  line-height: 1.3; padding-left: 20px;
  border-left: 3px solid var(--purple); color: var(--text-dim);
}
.cop-line strong { color: var(--text); font-weight: 800; }

/* ── Video ── */
.vid {
  width: 100%; max-width: 760px; aspect-ratio: 16/9;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  margin: 28px auto 0; cursor: pointer; position: relative; overflow: hidden;
}
.vid::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(139,92,246,0.08), transparent 70%);
}
.vid-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad-dr); display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 0 40px rgba(139,92,246,0.3);
}
.vid-play::after {
  content: ''; width: 0; height: 0;
  border-left: 22px solid white; border-top: 13px solid transparent; border-bottom: 13px solid transparent;
  margin-left: 4px;
}

/* ── Expand Flow ── */
.expand { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-top: 36px; }
.expand-step {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 28px 20px; text-align: center; position: relative;
}
.expand-step:first-child { border-radius: 16px 0 0 16px; }
.expand-step:last-child { border-radius: 0 16px 16px 0; }
.expand-step::after {
  content: ''; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); font-size: 18px; color: var(--text-muted); z-index: 3;
}
.expand-step:last-child::after { display: none; }
.expand-n { font-size: 48px; font-weight: 900; opacity: 0.05; line-height: 1; margin-bottom: 10px; }
.expand-t { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.expand-d { font-size: 13px; color: var(--text-dim); line-height: 1.5; }

/* ── Traction Board ── */
.traction { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.tract-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
}
.tract-head {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.tract-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.tract-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.tract-dot-live { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.tract-dot-soon { background: var(--blue); }
.tract-dot-int { background: var(--gold); }
.tract-name { font-size: 15px; font-weight: 600; flex: 1; }
.tract-detail { font-size: 13px; color: var(--text-muted); }

/* ── Savings ── */
.save {
  background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15);
  border-radius: 14px; padding: 20px 28px;
  display: flex; align-items: center; gap: 20px;
}
.save-val { font-size: 22px; font-weight: 800; color: var(--green); white-space: nowrap; }
.save-lbl { font-size: 14px; color: var(--text-dim); }

/* ── Timeline ── */
.tl { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 36px; position: relative; }
.tl::before {
  content: ''; position: absolute; top: 22px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
  border-radius: 2px; z-index: 1;
}
.tl-phase { position: relative; padding-top: 44px; }
.tl-head {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; position: absolute; top: 8px; z-index: 2;
}
.tl-now .tl-head { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.tl-jun .tl-head { background: rgba(59,130,246,0.12); color: var(--blue); border: 1px solid rgba(59,130,246,0.3); }
.tl-h2 .tl-head { background: rgba(139,92,246,0.12); color: var(--purple); border: 1px solid rgba(139,92,246,0.3); }
.tl-item {
  font-size: 14px; color: var(--text-dim); padding: 5px 0 5px 18px; position: relative;
}
.tl-item::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
}
.tl-now .tl-item::before { background: var(--green); }
.tl-jun .tl-item::before { background: var(--blue); }
.tl-h2 .tl-item::before { background: var(--purple); }

/* ── Closing Cards ── */
.close-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 48px; max-width: 800px; }
.close-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.close-n { font-size: 24px; font-weight: 900; opacity: 0.15; flex-shrink: 0; line-height: 1; }
.close-t { font-size: 17px; color: var(--text-dim); line-height: 1.4; }
.close-t strong { color: var(--text); }

/* ── Feature List ── */
.feat-list { list-style: none; margin-top: 12px; }
.feat-list li {
  font-size: 14px; color: var(--text-dim); padding: 7px 0 7px 20px;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%;
}
.feat-list-cyan li::before { background: var(--cyan); }
.feat-list-green li::before { background: var(--green); }
.feat-list-purple li::before { background: var(--purple); }
.feat-list-red li::before { background: var(--red); }
.feat-list-orange li::before { background: var(--orange); }
.feat-list-blue li::before { background: var(--blue); }
.feat-label { font-weight: 600; color: var(--text); }

/* ── Status Table ── */
.status-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.status-table th {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); padding: 10px 14px; text-align: left;
  border-bottom: 2px solid var(--border-md); background: var(--bg-card);
}
.status-table td {
  font-size: 13px; color: var(--text-dim); padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.status-table td:first-child { color: var(--text); font-weight: 600; }
.status-badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.status-live { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.status-beta { background: rgba(59,130,246,0.12); color: var(--blue); border: 1px solid rgba(59,130,246,0.2); }
.status-mvp { background: rgba(249,115,22,0.12); color: var(--orange); border: 1px solid rgba(249,115,22,0.2); }
.status-road { background: rgba(139,92,246,0.12); color: var(--purple); border: 1px solid rgba(139,92,246,0.2); }

/* ── Monetization Row ── */
.monet { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.monet-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
}
.monet-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; }
.monet-val { font-size: 22px; font-weight: 800; }
.monet-desc { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* ── Nav ── */
.nav {
  position: fixed; bottom: 0; left: 0; right: 0; height: 44px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; background: rgba(9,9,11,0.92); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border); z-index: 100;
}
.nav-count { font-size: 13px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.nav-hint { font-size: 12px; color: var(--text-muted); }
.prog {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--grad); transition: width 0.4s ease; z-index: 101;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .s { padding: 40px; }
  .wall-4x2 { grid-template-columns: repeat(2,1fr); }
  .cols3, .infra-row, .entries, .dims, .dr-actions, .impact-grid { grid-template-columns: 1fr 1fr; }
  .arch { grid-template-columns: 1fr; gap: 8px; }
  .arch-arr { transform: rotate(90deg); padding: 4px 0; }
  .split, .gap-row, .contrast { grid-template-columns: 1fr; }
  .gap-mid { padding: 8px 0; }
  .clients { grid-template-columns: 1fr 1fr; }
  .expand { grid-template-columns: 1fr 1fr; }
  .traction, .tl { grid-template-columns: 1fr; }
  .close-grid { grid-template-columns: 1fr; }
  .orbit { width: 380px; height: 380px; }
  .orbit-r2 { width: 300px; height: 300px; }
  .orbit-r3 { width: 370px; height: 370px; }
  .monet { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .s { padding: 24px 20px 60px; }
  .wall-4x2 { grid-template-columns: 1fr 1fr; }
  .cols3, .infra-row, .entries, .dims, .dr-actions, .impact-grid { grid-template-columns: 1fr; }
  .clients { grid-template-columns: 1fr; }
  .plans { flex-direction: column; align-items: stretch; }
  .orbit { width: 300px; height: 300px; }
}
@media print {
  .s { position: relative !important; opacity: 1 !important; visibility: visible !important; page-break-after: always; height: auto; min-height: 100vh; transform: none !important; }
  .nav, .prog { display: none; }
  body { overflow: auto; }
}
