:root {
  --bg: #0D0D0D;
  --surface: #161616;
  --surface-2: #1F1F1F;
  --fg: #F8F5F0;
  --fg-muted: #9A958F;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(248, 245, 240, 0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-logo .accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

/* HERO */
.hero {
  padding: 140px 24px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Coupon Stack */
.coupon-stack {
  position: relative;
  width: 100%;
  height: 340px;
}
.coupon-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.coupon-card::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--bg);
  border-radius: 50%;
  transform: translateY(-50%);
}
.coupon-card-1 { top: 0; left: 20px; right: 60px; }
.coupon-card-1::before { left: -10px; }
.coupon-card-2 { top: 70px; right: 20px; left: 80px; }
.coupon-card-2::before { right: -10px; }
.coupon-card-3 { top: 160px; left: 0; right: 40px; }
.coupon-card-3::before { left: -10px; }
.coupon-card-4 { top: 230px; right: 0; left: 100px; }
.coupon-card-4::before { right: -10px; }
.coupon-brand {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.coupon-code {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.coupon-save {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  background: var(--accent-dim);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

/* Stats row */
.hero-stats {
  max-width: 1200px;
  margin: 64px auto 0;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* Shared section styles */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}

/* HOW */
.how {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { display: flex; flex-direction: column; gap: 16px; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* FEATURES */
.features { padding: 100px 24px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-heading { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface); }
.feature-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
}
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* OUTCOMES */
.outcomes { padding: 100px 24px; background: var(--surface); border-top: 1px solid var(--border); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes .section-heading { margin-bottom: 48px; }
.outcomes-list { display: flex; flex-direction: column; gap: 24px; }
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
}
.outcome strong { font-family: var(--font-head); font-weight: 700; color: var(--accent); margin-right: 6px; }
.outcome-check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* CLOSING */
.closing {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 48px 24px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}
.footer-logo .accent { color: var(--accent); }
.footer-desc { font-size: 14px; color: var(--fg-muted); margin-top: 6px; }
.footer-bottom p {
  font-size: 12px;
  color: var(--fg-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .how-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-stats { padding: 24px; }
  .stat-num { font-size: 26px; }
  nav .nav-tagline { display: none; }
}