:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6e1;
  --fg-muted: #9a9890;
  --accent: #f59e0b;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --green: #22c55e;
  --red: #ef4444;
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
  --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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.lede {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

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

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

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

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* === PROBLEM === */
.problem {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  line-height: 1.2;
}

.comparison {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.comparison-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  border: 1px solid var(--border);
}

.comparison-card.bad {
  border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card.good {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.04);
}

.comparison-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--fg-muted);
}

.comparison-card.bad .comparison-label { color: var(--red); }
.comparison-card.good .comparison-label { color: var(--green); }

.line-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.line-item.total {
  border-bottom: none;
  padding-top: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}

.comparison-card.bad .line-item.total { color: var(--red); }
.comparison-card.good .line-item.total { color: var(--green); }

.comparison-vs {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg-muted);
}

.savings-callout {
  font-size: 1.15rem;
  color: var(--fg);
  margin-top: 16px;
}

.savings-callout strong {
  color: var(--green);
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 24px;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--fg-muted);
  padding-top: 10px;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.features-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-block p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

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

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

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem !important;
  color: var(--accent) !important;
  margin-top: 24px !important;
}

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

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

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

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 60px 20px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .comparison { flex-direction: column; align-items: center; }
  .comparison-vs { padding: 8px 0; }
  .comparison-card { max-width: 100%; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .step { max-width: 100%; }
  .features-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}