/* === BASE === */
:root {
  --bg: #0a1628;
  --surface: #0d1f35;
  --surface2: #12243d;
  --border: rgba(0,212,255,0.12);
  --border-bright: rgba(0,212,255,0.35);
  --text: #e8e6e1;
  --text-muted: #7a9bb5;
  --accent: #00d4ff;
  --accent-dim: rgba(0,212,255,0.6);
  --accent-glow: rgba(0,212,255,0.15);
  --green: #00ff88;
  --red: #ff4466;
  --glow-blue: 0 0 20px rgba(0,212,255,0.4), 0 0 40px rgba(0,212,255,0.2);
  --glow-sm: 0 0 10px rgba(0,212,255,0.35);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-head);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.accent { color: var(--accent); }

/* === SCANLINES === */
.scanlines {
  position: relative;
}
.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,212,255,0.015) 2px, rgba(0,212,255,0.015) 4px);
  pointer-events: none;
  z-index: 1;
}

/* === NAV === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-bright);
  box-shadow: 0 0 30px rgba(0,212,255,0.08);
}

.topbar-left { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.5px;
  border-radius: 5px;
  box-shadow: var(--glow-sm);
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}

.glow-text {
  text-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
}

.topbar-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

.topbar-center a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-center a:hover { color: var(--accent); }

.topbar-right { display: flex; align-items: center; gap: 12px; }

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--border-bright);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn-ghost:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

.btn-primary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--bg);
  text-decoration: none;
  background: var(--accent);
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-sm);
}

.btn-primary:hover {
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

.btn-pro {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--bg);
  text-decoration: none;
  background: var(--accent);
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  box-shadow: var(--glow-blue);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(0,212,255,0.5), 0 0 30px rgba(0,212,255,0.25); }
  50% { box-shadow: 0 0 25px rgba(0,212,255,0.7), 0 0 50px rgba(0,212,255,0.4); }
}

/* === HERO === */
.hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-left { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.eyebrow-tag {
  background: var(--accent-glow);
  border: 1px solid var(--border-bright);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 3px;
}

.eyebrow-divider { color: var(--border-bright); }

.hero-headline {
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--text);
  text-transform: uppercase;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 440px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: fit-content;
}

.hero-stat { display: flex; flex-direction: column; gap: 4px; }

.hs-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
}

.hs-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hs-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === TERMINAL === */
.terminal-wrap {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,212,255,0.06), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.tb-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.tb-red { background: #ff5f57; }
.tb-yellow { background: #febc2e; }
.tb-green { background: #28c840; }

.tb-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
}

.tb-live {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 1px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--accent);
  animation: pulse-blue 1.5s ease-in-out infinite;
}

@keyframes pulse-blue {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--accent); }
  50% { opacity: 0.4; box-shadow: 0 0 12px var(--accent); }
}

.terminal-body { padding: 0; }

.t-header {
  display: grid;
  grid-template-columns: 1fr 60px 60px 70px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}

.t-row {
  display: grid;
  grid-template-columns: 1fr 60px 60px 70px;
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  border-bottom: 1px solid rgba(0,212,255,0.05);
  transition: background 0.2s;
}

.t-row:hover { background: var(--accent-glow); }

.t-row-new { background: rgba(0,212,255,0.04); border-left: 2px solid var(--accent); }

.t-game { color: var(--text); font-weight: 500; }

.t-score { color: var(--text-muted); font-weight: 500; }
.t-score-new { color: var(--accent); }

.t-trend { color: var(--text-muted); font-size: 11px; }
.t-trend-up { color: var(--green); }
.t-trend-dn { color: var(--red); }

.t-signal { font-size: 10px; letter-spacing: 0.5px; color: var(--text-muted); }
.t-signal-new { color: var(--accent); font-weight: 500; }
.t-signal-warm { color: #f5a623; }

.t-footer-row {
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--surface2);
}

.terminal-labels {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding-left: 4px;
}

.tl-item { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }

.tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.tl-new { background: var(--accent); box-shadow: 0 0 4px var(--accent); }
.tl-warm { background: #f5a623; }
.tl-std { background: var(--text-muted); }

/* === MANIFESTO === */
.manifesto {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.manifesto-inner { max-width: 1200px; margin: 0 auto; }

.manifesto-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.manifesto-headline {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  max-width: 800px;
  margin-bottom: 48px;
}

.manifesto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin-bottom: 64px;
}

.manifesto-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 800px;
}

.ms-item { display: flex; flex-direction: column; gap: 6px; }

.ms-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
}

.ms-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 160px;
}

.ms-sep { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* === SIGNALS === */
.signals {
  padding: 120px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.signals-inner { max-width: 1200px; margin: 0 auto; }

.signals-header { margin-bottom: 64px; }

.signals-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.signals-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.signals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.signal-card {
  background: var(--surface2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s, box-shadow 0.2s;
}

.signal-card:hover {
  background: var(--surface);
  box-shadow: inset 0 0 30px rgba(0,212,255,0.05);
}

.sc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
}

.sc-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.sc-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.sc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  border: 1px solid var(--border-bright);
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  width: fit-content;
  letter-spacing: 0.5px;
}

/* === LIVE STATS === */
.live-stats {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.live-stats-inner { max-width: 1200px; margin: 0 auto; }

.ls-header { margin-bottom: 48px; }

.ls-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.1);
  border: 1px solid var(--border-bright);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.ls-badge .live-dot {
  width: 6px;
  height: 6px;
}

.ls-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.ls-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-blue);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,212,255,0.01) 2px, rgba(0,212,255,0.01) 4px);
  pointer-events: none;
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sc-game-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--surface2);
  border: 1px solid var(--border);
  object-fit: cover;
}

.sc-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sc-game-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.sc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--green);
}

.sc-live-badge .live-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  box-shadow: 0 0 4px var(--green);
  animation: pulse-green 1.5s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--green); }
  50% { opacity: 0.4; box-shadow: 0 0 10px var(--green); }
}

.sc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sc-stat { display: flex; flex-direction: column; gap: 3px; }

.sc-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sc-stat-val {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.sc-stat-val.accent { color: var(--accent); }

.sc-trend {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.trend-arrow {
  font-size: 14px;
  line-height: 1;
}

.trend-arrow.up { color: var(--green); }
.trend-arrow.dn { color: var(--red); }

.trend-pct {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.trend-pct.up { color: var(--green); }
.trend-pct.dn { color: var(--red); }

.trend-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-left: auto;
}

.sc-watermark {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

/* === HATCHSCORE === */
.hatchscore {
  padding: 120px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hatchscore-inner { max-width: 1200px; margin: 0 auto; }

.hs-header { margin-bottom: 64px; }

.hs-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.hs-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.hs-formula {
  background: var(--surface2);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 48px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.hs-formula span {
  color: var(--text-muted);
}

.hs-factors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.hs-factor { display: flex; flex-direction: column; gap: 12px; }

.hs-factor-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hs-factor-bar {
  height: 6px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
}

.hs-factor-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease-out;
}

.hs-factor-fill.green { background: var(--green); box-shadow: 0 0 8px rgba(0,255,136,0.4); }
.hs-factor-fill.blue { background: var(--accent); box-shadow: 0 0 8px rgba(0,212,255,0.4); }
.hs-factor-fill.orange { background: #f5a623; box-shadow: 0 0 8px rgba(245,166,35,0.4); }

.hs-factor-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.hs-example-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hs-example-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs-ec-name {
  font-size: 14px;
  font-weight: 700;
}

.hs-ec-score {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
}

.hs-ec-score.surging { color: var(--green); }
.hs-ec-score.stable { color: var(--accent); }
.hs-ec-score.declining { color: #f5a623; }

.hs-ec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hs-ec-label.surging { color: var(--green); }
.hs-ec-label.stable { color: var(--accent); }
.hs-ec-label.declining { color: #f5a623; }

/* === PRICING === */
.pricing {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-header { margin-bottom: 64px; }

.pricing-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.pricing-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.price-card.pro {
  border-color: var(--accent);
  box-shadow: var(--glow-blue);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 3px;
}

.price-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
}

.price-num.free { color: var(--text-muted); }

.price-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.price-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.price-feature::before {
  content: '✓';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

.price-cta {
  margin-top: auto;
}

/* === OUTCOMES === */
.outcomes {
  padding: 120px 40px;
}

.outcomes-inner { max-width: 1200px; margin: 0 auto; }

.outcomes-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 64px;
}

.outcomes-list { display: flex; flex-direction: column; gap: 0; }

.outcome-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.outcome-item:first-child { border-top: 1px solid var(--border); }

.oi-marker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1px;
  padding-top: 4px;
}

.oi-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.oi-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px 160px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-terminal {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  padding: 28px 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2.2;
  box-shadow: 0 0 30px rgba(0,212,255,0.05);
  position: relative;
  overflow: hidden;
}

.closing-terminal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.ct-line { color: var(--text-muted); }
.ct-prompt { color: var(--accent); margin-right: 8px; }
.ct-output { color: var(--text-muted); }
.ct-active { color: var(--text); font-weight: 500; }

.closing-message { display: flex; flex-direction: column; gap: 24px; }

.closing-headline {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.closing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 400px;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.brand-mark-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.5px;
  border-radius: 4px;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner,
  .closing-inner { grid-template-columns: 1fr; }

  .hero-right { order: -1; }

  .signals-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hs-factors { grid-template-columns: 1fr; }
  .hs-example-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .manifesto-body { grid-template-columns: 1fr; }

  .manifesto-stats { flex-direction: column; align-items: start; gap: 24px; }

  .ms-sep { width: 40px; height: 1px; }

  .outcome-item { grid-template-columns: 60px 1fr; gap: 20px; }

  .topbar { padding: 0 20px; }
  .topbar-center { display: none; }
  .hero { padding: 80px 20px 60px; }
  .manifesto, .signals, .outcomes, .closing, .live-stats, .hatchscore, .pricing { padding: 80px 20px; }
}

@media (max-width: 600px) {
  .signals-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }

  .t-header, .t-row { grid-template-columns: 1fr 50px 50px; }
  .t-row .t-signal { display: none; }
  .t-header span:nth-child(4) { display: none; }

  .hero-headline { font-size: 38px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
