:root {
  --bg: #080C14;
  --bg-2: #0D1420;
  --surface: #111827;
  --surface-2: #1a2332;
  --border: #1e2d3d;
  --fg: #E8EDF3;
  --fg-muted: #7A8A9A;
  --accent: #F59E0B;
  --accent-dim: rgba(245,158,11,0.12);
  --negative: #EF4444;
  --negative-dim: rgba(239,68,68,0.15);
  --positive: #10B981;
  --positive-dim: rgba(16,185,129,0.15);
  --neutral: #6B7280;
  --font-display: 'DM Serif Display', Georgia, serif;
  --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;
  overflow-x: hidden;
}

/* ——— NAV ——— */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-weight: 400; }

/* ——— HERO ——— */
.hero {
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(245,158,11,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 24px;
}
.label-dot {
  width: 6px; height: 6px;
  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.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item { display: flex; flex-direction: column; }
.proof-stat { font-size: 22px; font-weight: 700; color: var(--accent); }
.proof-label { font-size: 11px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.proof-divider { width: 1px; height: 40px; background: var(--border); }

/* ——— RADAR VISUAL ——— */
.hero-visual { display: flex; justify-content: center; }
.radar-container {
  position: relative;
  width: 340px;
  height: 340px;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.radar-ring-1 { width: 100%; height: 100%; }
.radar-ring-2 { width: 75%; height: 75%; }
.radar-ring-3 { width: 50%; height: 50%; }
.radar-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(245,158,11,0.07) 30deg, transparent 60deg);
  animation: sweep 4s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.blip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 3;
}
.blip-1 { top: 12%; right: 8%; }
.blip-2 { bottom: 22%; left: 4%; }
.blip-3 { top: 40%; left: 2%; }
.blip-4 { bottom: 8%; right: 16%; }
.blip-label {
  font-size: 10px;
  color: var(--fg-muted);
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}
.blip-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 7px;
  border-radius: 4px;
  width: fit-content;
}
.blip-badge.alert { background: var(--negative-dim); color: var(--negative); }
.blip-badge.positive { background: var(--positive-dim); color: var(--positive); }
.blip-badge:not(.alert):not(.positive) { background: var(--surface-2); color: var(--fg-muted); }

/* ——— HOW ——— */
.how { padding: 80px 48px; background: var(--bg-2); }
.how-header { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.how-header h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: -0.5px; margin-bottom: 12px; }
.how-header p { color: var(--fg-muted); font-size: 17px; }
.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step { padding: 0 40px; max-width: 260px; }
.step-number { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg-muted); }
.step-connector { width: 60px; height: 1px; background: linear-gradient(90deg, var(--border), var(--accent), var(--border)); flex-shrink: 0; }

/* ——— FEATURES ——— */
.features { padding: 80px 48px; }
.features-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.features h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: -0.5px; max-width: 600px; margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface-2); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ——— RADAR SECTION ——— */
.radar-section { padding: 80px 48px; background: var(--bg-2); }
.radar-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.radar-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px; }
.radar-text h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: -0.5px; margin-bottom: 16px; }
.radar-text > p { color: var(--fg-muted); font-size: 16px; margin-bottom: 32px; }
.live-stats { display: flex; flex-direction: column; gap: 12px; }
.live-stat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-muted); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.live-dot-green { background: var(--positive); }
.live-dot-amber { background: var(--accent); }
.live-feed { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.feed-header { padding: 14px 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--fg-muted); border-bottom: 1px solid var(--border); }
.feed-item { padding: 16px 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.feed-item:last-child { border-bottom: none; }
.feed-time { font-size: 11px; color: var(--fg-muted); width: 60px; flex-shrink: 0; }
.feed-source { font-size: 12px; font-weight: 600; color: var(--fg-muted); width: 80px; flex-shrink: 0; }
.feed-text { font-size: 13px; flex: 1; min-width: 0; color: var(--fg-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; }
.feed-badge-positive { background: var(--positive-dim); color: var(--positive); }
.feed-badge-neutral { background: var(--surface-2); color: var(--fg-muted); }
.feed-item-negative .feed-badge { background: var(--negative-dim); color: var(--negative); }
.feed-item-positive .feed-badge { background: var(--positive-dim); color: var(--positive); }

/* ——— PRICING ——— */
.pricing { padding: 80px 48px; }
.pricing-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.pricing-header h2 { font-family: var(--font-display); font-size: 36px; letter-spacing: -0.5px; margin-bottom: 12px; }
.pricing-header p { color: var(--fg-muted); font-size: 17px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 36px 28px; position: relative; }
.pricing-card-featured { border-color: var(--accent); background: var(--surface-2); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #080C14; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-price { font-size: 52px; font-weight: 700; letter-spacing: -1px; color: var(--fg); line-height: 1; }
.pricing-period { font-size: 13px; color: var(--fg-muted); margin-bottom: 20px; margin-top: 4px; }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 20px;
  background: var(--accent);
  color: #080C14;
  transition: opacity 0.2s;
}
.pricing-cta:hover { opacity: 0.85; }

/* ——— SOCIAL PROOF ——— */
.social-proof { margin-bottom: 28px; }
.sp-inner { display: flex; align-items: center; justify-content: center; gap: 12px; }
.sp-avatars { display: flex; }
.sp-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -8px; }
.sp-avatar:first-child { margin-left: 0; }
.sp-text { font-size: 14px; color: var(--fg-muted); }

/* ——— CLOSING ——— */
.closing { padding: 100px 48px 80px; }
.closing-content { max-width: 640px; margin: 0 auto; text-align: center; }
.closing h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.closing > .closing-content > p { color: var(--fg-muted); font-size: 17px; line-height: 1.8; margin-bottom: 32px; }
.closing-vibe { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; color: var(--fg-muted); }
.vibe-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ——— WAITLIST FORM ——— */
.waitlist-wrapper { max-width: 480px; margin: 0 auto; }
.waitlist-fields { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.waitlist-fields input {
  flex: 1; min-width: 160px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.waitlist-fields input::placeholder { color: var(--fg-muted); }
.waitlist-fields input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
.waitlist-btn {
  padding: 13px 24px;
  background: var(--accent);
  color: #080C14;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}
.waitlist-btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.waitlist-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.waitlist-success {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 16px; font-size: 15px; font-weight: 600; color: var(--positive);
}
.waitlist-error { margin-top: 12px; font-size: 13px; color: var(--negative); text-align: center; }

@media (max-width: 640px) {
  .waitlist-fields { flex-direction: column; }
  .waitlist-fields input, .waitlist-btn { min-width: 100%; }
  .waitlist-btn { width: 100%; }
}

/* ——— FOOTER ——— */
footer { padding: 36px 48px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.footer-copy { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 20px; font-size: 13px; color: var(--fg-muted); }

/* ——— RESPONSIVE ——— */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .radar-content { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .how-steps { flex-direction: column; gap: 32px; }
  .step-connector { width: 60px; height: 1px; }
}
@media (max-width: 640px) {
  nav, .hero, .how, .features, .radar-section, .pricing, .closing, footer { padding-left: 20px; padding-right: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
}