:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface2: #1e1e1e;
  --fg: #f2ede6;
  --fg2: #9e9890;
  --fg3: #5e5a52;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(242, 237, 230, 0.08);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--fg); }

/* HERO */
.hero { padding: 7rem 2rem 6rem; }
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-kicker { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.hero-headline { font-family: 'Syne', sans-serif; font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--fg); margin-bottom: 1.5rem; }
.hero-lede { font-size: 1.2rem; color: var(--fg2); max-width: 560px; margin-bottom: 3.5rem; line-height: 1.6; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--fg3); font-weight: 400; }

/* HOW */
.how { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6rem 2rem; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg3); margin-bottom: 3rem; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.how-step { background: var(--surface2); padding: 2.5rem; border-radius: 0; }
.step-num { font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.step-body h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--fg); margin-bottom: 0.75rem; }
.step-body p { font-size: 0.95rem; color: var(--fg2); line-height: 1.6; }

/* FEATURES */
.features { padding: 6rem 2rem; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-card { background: var(--bg); padding: 2.5rem; }
.feature-icon { color: var(--accent); margin-bottom: 1.2rem; }
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--fg2); line-height: 1.6; }

/* SAVINGS */
.savings { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6rem 2rem; }
.savings-inner { max-width: 1100px; margin: 0 auto; }
.savings-content { max-width: 680px; }
.savings-content h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--fg); line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.savings-content p { font-size: 1.05rem; color: var(--fg2); line-height: 1.7; }

/* CLOSING */
.closing { padding: 7rem 2rem; }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-statement { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 600; color: var(--fg2); line-height: 1.4; letter-spacing: -0.02em; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--fg); display: block; margin-bottom: 0.4rem; }
.footer-brand p { font-size: 0.8rem; color: var(--fg3); }
.footer-copy { font-size: 0.8rem; color: var(--fg3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero-stats { gap: 1.5rem; }
  .how-steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .savings, .features, .how, .closing { padding: 4rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stat-num { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}