:root {
  --bg: #0c0e13;
  --bg-2: #12151c;
  --bg-3: #1a1e27;
  --fg: #e8e6e0;
  --fg-muted: #7e8594;
  --fg-dim: #4a5166;
  --accent: #e9a53b;
  --accent-dim: rgba(233,165,59,0.15);
  --border: rgba(255,255,255,0.06);
  --red: #e85b4a;
  --amber: #e9a53b;
  --amber-dim: rgba(233,165,59,0.12);
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(233,165,59,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,165,59,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(233,165,59,0); }
}
.eyebrow-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* LIVE FEED */
.livefeed {
  margin: 0 48px 80px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.livefeed-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.livefeed-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.livefeed-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: var(--amber-dim);
  border: 1px solid rgba(233,165,59,0.2);
  padding: 3px 10px;
  border-radius: 20px;
}
.feed-items { padding: 8px 0; }
.feed-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.feed-item:last-child { border-bottom: none; }
.feed-item:hover { background: var(--bg-3); }
.feed-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.feed-content { flex: 1; }
.feed-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}
.feed-meta {
  font-size: 12px;
  color: var(--fg-muted);
}
.feed-time { opacity: 0.7; }
.feed-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.score-high {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.score-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FEATURES */
.features {
  padding: 80px 48px;
}
.features-header {
  margin-bottom: 56px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  font-weight: 300;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-2);
  padding: 40px;
}
.feature-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* HOW */
.how {
  padding: 0 48px 100px;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.how-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 16px;
  font-weight: 300;
}
.comp-block { margin-bottom: 24px; }
.comp-header {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comp-bar {
  height: 6px;
  width: var(--w, 50%);
  background: var(--fg-dim);
  border-radius: 4px;
  margin-bottom: 6px;
}
.comp-bar.amber { background: var(--accent); }
.comp-label {
  font-size: 11px;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 80px 48px 100px;
  border-top: 1px solid var(--border);
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 700px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav, .hero, .livefeed, .features, .how, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav { padding: 20px 24px; }
  .hero { padding-top: 64px; padding-bottom: 56px; }
  .hero-headline { font-size: 38px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 40px; padding: 36px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}