:root {
  --bg: #08080d;
  --bg-elevated: #111118;
  --bg-card: #16161f;
  --fg: #e8e6e1;
  --fg-muted: #9b978f;
  --accent: #d4a853;
  --accent-dim: rgba(212,168,83,0.15);
  --hot: #e05a3a;
  --deal: #4aba7a;
  --alert: #d4a853;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1120px;
  --px: 24px;
}

* { 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: 80px var(--px) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

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

/* ticker mockup */
.hero-visual {
  margin-top: 56px;
}

.ticker {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 8px 0;
  max-width: 620px;
}

.ticker-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}

.ticker-row:last-child { border-bottom: none; }

.ticker-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.ticker-tag.hot { background: rgba(224,90,58,0.15); color: var(--hot); }
.ticker-tag.deal { background: rgba(74,186,122,0.15); color: var(--deal); }
.ticker-tag.alert { background: var(--accent-dim); color: var(--alert); }

.ticker-item { color: var(--fg); flex: 1; }
.ticker-margin { color: var(--fg-muted); font-size: 0.85rem; text-align: right; flex-shrink: 0; }

/* ---- PROBLEM ---- */
.problem {
  padding: 100px var(--px);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: sticky;
  top: 40px;
}

.problem-right p {
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.problem-right .accent-text {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}

/* ---- HOW ---- */
.how {
  padding: 100px var(--px);
  background: var(--bg-elevated);
}

.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.how-header {
  margin-bottom: 64px;
  max-width: 600px;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.how-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

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

.how-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 36px 28px;
}

.how-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.how-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px var(--px);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.closing-stat {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.big-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 400px;
  line-height: 1.6;
}

.closing-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-statement p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px var(--px);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px var(--px) 48px; }
  .problem-inner { grid-template-columns: 1fr; gap: 32px; }
  .problem-left h2 { position: static; }
  .how-grid { grid-template-columns: 1fr; gap: 20px; }
  .closing-stat { flex-direction: column; gap: 12px; }
  .ticker-row { flex-wrap: wrap; gap: 8px; }
  .ticker-margin { width: 100%; text-align: left; padding-left: 0; }
}

@media (max-width: 480px) {
  :root { --px: 18px; }
  body { font-size: 16px; }
  .hero h1 { font-size: 2.2rem; }
}