:root {
  --bg: #07070d;
  --bg-elevated: #0e0e18;
  --bg-card: #111122;
  --fg: #e8e6e1;
  --fg-muted: #8a8890;
  --gold: #c9a227;
  --gold-light: #e6c84d;
  --green: #22c55e;
  --border: rgba(201, 162, 39, 0.12);
  --border-subtle: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ---------- HERO ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.gold { color: var(--gold); }
.green { color: var(--green); }

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-ticker {
  display: flex;
  gap: 1px;
  margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 700px;
}

.ticker-item {
  flex: 1;
  background: var(--bg-elevated);
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ticker-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  font-family: var(--font-display);
}

.ticker-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ---------- FEATURES ---------- */
.features {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.features-header h2,
.metrics h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg-elevated);
  padding: 2.5rem;
  position: relative;
}

.feature-card.feature-large {
  grid-column: span 2;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ---------- METRICS ---------- */
.metrics {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.metrics-note {
  font-size: 1.1rem;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 680px;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

/* ---------- CLOSING ---------- */
.closing {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg) !important;
  font-size: 1.3rem !important;
  margin-top: 2.5rem !important;
  letter-spacing: -0.01em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}

.footer-text {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 1.5rem 2rem;
  }

  .hero-ticker {
    flex-wrap: wrap;
  }

  .ticker-item {
    flex: 1 1 45%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.feature-large {
    grid-column: span 1;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .features, .metrics {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .ticker-item {
    flex: 1 1 100%;
  }
}