:root {
  --bg: #07090F;
  --bg-surface: #0D1220;
  --bg-card: #111827;
  --fg: #F0F4FF;
  --fg-muted: #8892A4;
  --accent: #00D4FF;
  --accent-dim: rgba(0, 212, 255, 0.12);
  --amber: #F0A500;
  --amber-dim: rgba(240, 165, 0, 0.15);
  --green: #00E87A;
  --border: rgba(240, 244, 255, 0.07);
  --border-accent: rgba(0, 212, 255, 0.25);
  --radius: 8px;
  --radius-lg: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'Fira Code', monospace;
  letter-spacing: 0.5px;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.eyebrow-label {
  font-size: 12px;
  font-family: 'Fira Code', monospace;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-title br { display: none; }
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  font-family: 'Fira Code', monospace;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
  letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
}
.signal-map {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  height: 280px;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-dots {
  position: absolute;
  inset: 32px;
}
.dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.dot-1 { top: 20%; left: 15%; opacity: 0.9; }
.dot-2 { top: 35%; left: 42%; opacity: 0.7; }
.dot-3 { top: 15%; left: 65%; opacity: 0.5; }
.dot-4 { top: 55%; left: 22%; opacity: 0.8; }
.dot-5 { top: 45%; left: 55%; opacity: 0.6; }
.dot-6 { top: 70%; left: 38%; opacity: 0.9; }
.dot-7 { top: 25%; left: 78%; opacity: 0.7; }
.dot-8 { top: 60%; left: 70%; opacity: 0.5; }
.dot-9 { top: 80%; left: 15%; opacity: 0.8; }
.dot-10 { top: 10%; left: 50%; opacity: 0.4; }
.dot-11 { top: 50%; left: 85%; opacity: 0.6; }
.dot-12 { top: 75%; left: 60%; opacity: 0.7; }
.dot-13 { top: 30%; left: 30%; opacity: 0.5; }
.dot-14 { top: 65%; left: 82%; opacity: 0.8; }
.dot-15 { top: 85%; left: 45%; opacity: 0.6; }

.map-pulse {
  position: absolute;
  top: 42%; left: 52%;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid var(--accent);
  animation: ring-pulse 2s ease-out infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}
.map-label {
  position: absolute;
  bottom: 20px; left: 24px;
}
.map-label-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
}
.map-label-count {
  display: block;
  font-size: 11px;
  color: var(--fg-muted);
  font-family: 'Fira Code', monospace;
  margin-top: 2px;
}

/* Insight card */
.insight-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.insight-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.insight-icon {
  color: var(--amber);
  font-size: 10px;
}
.insight-time {
  font-size: 10px;
  color: var(--fg-muted);
  font-family: 'Fira Code', monospace;
}
.insight-text {
  font-size: 12.5px;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 12px;
}
.insight-confidence {
  display: flex;
  align-items: center;
  gap: 10px;
}
.confidence-bar {
  width: 80px; height: 3px;
  background: var(--bg-surface);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.confidence-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 94%;
  background: var(--accent);
  border-radius: 2px;
}
.insight-confidence span {
  font-size: 10px;
  color: var(--fg-muted);
  font-family: 'Fira Code', monospace;
}

/* Signals */
.signals {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.signals-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.signals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.signal-card {
  background: var(--bg-surface);
  padding: 40px 36px;
  transition: background 0.2s;
}
.signal-card:hover { background: var(--bg-card); }
.signal-metric {
  margin-bottom: 16px;
}
.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Fira Code', monospace;
  letter-spacing: -1px;
}
.metric-unit {
  font-size: 13px;
  color: var(--fg-muted);
  margin-left: 6px;
}
.signal-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.signal-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Process */
.process {
  padding: 100px 40px;
  background: var(--bg-surface);
}
.process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-size: 11px;
  font-family: 'Fira Code', monospace;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border-accent);
  flex-shrink: 0;
  margin-top: -24px;
}

/* Difference */
.difference {
  padding: 100px 40px;
}
.diff-inner {
  max-width: 900px;
  margin: 0 auto;
}
.diff-header {
  text-align: center;
  margin-bottom: 48px;
}
.diff-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.diff-col-header,
.diff-col-analyst,
.diff-col-stratum {
  background: var(--bg-surface);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.col-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg-muted);
}
.col-label.analyst { color: var(--fg-muted); }
.col-label.stratum { color: var(--accent); }
.diff-table .diff-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.diff-table .diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.diff-table .diff-row:last-child { border-bottom: none; }
.diff-table .diff-row > * {
  padding: 14px 20px;
  border-right: 1px solid var(--border);
}
.diff-table .diff-row > *:last-child { border-right: none; }
.diff-capability {
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}
.diff-answer {
  font-size: 13px;
}
.diff-no {
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.6;
}
.diff-yes {
  color: var(--green);
  font-weight: 500;
}
.diff-callout {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.diff-callout p {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.6;
}

/* Manifesto */
.manifesto {
  padding: 100px 40px;
  background: var(--bg-surface);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-label {
  font-size: 11px;
  font-family: 'Fira Code', monospace;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.manifesto-quote {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.55;
  letter-spacing: -0.3px;
  font-style: normal;
  margin-bottom: 20px;
}
.manifesto-sub {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'Fira Code', monospace;
}

/* Closing */
.closing {
  padding: 100px 40px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 64px;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.closing-stat {}
.cstat-val {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Fira Code', monospace;
  letter-spacing: -1px;
}
.cstat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  max-width: 140px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'Fira Code', monospace;
  margin-left: 10px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 48px;
  }
  .hero-right { display: none; }
  .signals-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .closing-stats { flex-direction: column; gap: 32px; }
  .diff-table .diff-col,
  .diff-table .diff-row { grid-template-columns: 1fr; }
  .diff-answer { padding: 8px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* No CTA — static showcase page per requirements */