:root {
  --bg: #0a0a0b;
  --bg-elevated: #131316;
  --bg-card: #1a1a1f;
  --fg: #e8e8ed;
  --fg-muted: #8a8a96;
  --accent: #e8ff47;
  --accent-dim: rgba(232, 255, 71, 0.12);
  --negative: #ff4d4d;
  --border: #2a2a30;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(232,255,71,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(232,255,71,0.2);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.highlight {
  color: var(--accent);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.section-container {
  max-width: 800px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  background: var(--accent-dim);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(232,255,71,0.15);
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== COMPARISON ===== */
.comparison {
  padding: 100px 24px;
}

.comparison h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comp-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.comp-card.them {
  background: var(--bg-elevated);
}

.comp-card.us {
  background: var(--accent-dim);
  border-color: rgba(232,255,71,0.25);
}

.comp-header {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--fg-muted);
}

.comp-card.us .comp-header {
  color: var(--accent);
}

.comp-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-card.them li {
  color: var(--fg-muted);
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
}

.comp-card.them li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--negative);
  font-size: 0.8rem;
}

.comp-card.us li {
  color: var(--fg);
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
}

.comp-card.us li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 24px;
  background: var(--bg-elevated);
  text-align: center;
}

.closing-content {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.closing-price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 48px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .how-it-works,
  .comparison,
  .closing {
    padding: 64px 20px;
  }
}
/* ===== HERO CTA BUTTONS ===== */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #0a0a0b;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}

.btn-hero-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.btn-hero-ghost:hover {
  color: var(--fg);
}

.closing-cta {
  display: inline-flex;
  margin-bottom: 20px;
}
