:root {
  --bg: #0d0d0f;
  --bg-alt: #111114;
  --fg: #f0ece4;
  --fg-muted: #8a857e;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 236, 228, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 100vh;
  padding: 120px 80px 100px;
  align-items: center;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 56px;
}

.hero-signal-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.signal-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signal-count {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--accent);
}

.signal-desc {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 120px;
  line-height: 1.4;
}

.signal-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  align-self: center;
}

/* RADAR VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-container {
  position: relative;
  width: 420px;
  height: 420px;
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-1 { width: 140px; height: 140px; }
.radar-ring-2 { width: 260px; height: 260px; }
.radar-ring-3 { width: 380px; height: 380px; }

.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.blip {
  position: absolute;
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11px;
  max-width: 160px;
  backdrop-filter: blur(8px);
}

.blip-source {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.blip-snippet {
  color: var(--fg-muted);
  line-height: 1.4;
}

.blip-1 { top: 20px; right: 20px; }
.blip-2 { bottom: 60px; left: 10px; }
.blip-3 { bottom: 20px; right: 60px; }

/* SECTION EYEBROW */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* HOW IT WORKS */
.how {
  background: var(--bg-alt);
  padding: 120px 80px;
}

.how-header {
  margin-bottom: 72px;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  max-width: 560px;
}

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

.step-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 80px;
  background: var(--bg);
}

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

.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 36px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.manifesto-context {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg-alt);
  padding: 120px 80px;
}

.outcomes h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 64px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

.outcome-icon {
  margin-bottom: 20px;
}

.outcome h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.outcome p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.7;
}

.outcome-stats {
  display: flex;
  gap: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 120px 80px;
  background: var(--bg);
}

.closing-inner {
  max-width: 680px;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 28px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.closing-vision {
  font-size: 16px !important;
  color: var(--fg) !important;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 8px !important;
}

/* FOOTER */
.footer {
  padding: 40px 80px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 32px 60px;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcomes, .how, .manifesto, .closing { padding: 80px 32px; }
  .footer { padding: 32px; }
  .hero-signal-row { flex-wrap: wrap; gap: 24px; }
  .signal-divider { display: none; }
  .outcome-stats { gap: 32px; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}