:root {
  --bg: #0A0A12;
  --bg-2: #111120;
  --surface: #16162A;
  --fg: #F5F0E8;
  --fg-2: #9A9488;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --font-body: 'Outfit', sans-serif;
  --font-serif: 'Fraunces', Georgia, 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 ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav__logo-mark { font-size: 20px; color: var(--accent); }
.nav__logo-text { font-size: 18px; font-weight: 600; color: var(--fg); letter-spacing: -0.3px; }
.nav__tagline { font-size: 13px; color: var(--fg-2); font-weight: 400; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(245, 166, 35, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245, 166, 35, 0.03) 0%, transparent 60%);
}
.hero__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center; }
.hero__eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero__headline { font-family: var(--font-serif); font-size: clamp(44px, 5.5vw, 80px); font-weight: 600; line-height: 1.08; letter-spacing: -2px; color: var(--fg); margin-bottom: 28px; }
.hero__sub { font-size: 18px; color: var(--fg-2); line-height: 1.7; max-width: 540px; font-weight: 300; }
.hero__stat { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; gap: 16px; }
.hero__stat-number { font-family: var(--font-serif); font-size: 72px; font-weight: 600; color: var(--accent); letter-spacing: -3px; line-height: 1; }
.hero__stat-label { font-size: 15px; color: var(--fg-2); line-height: 1.5; }

/* ── HOW ── */
.how { padding: 100px 48px; background: var(--bg-2); }
.how__inner { max-width: 1200px; margin: 0 auto; }
.how__label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 56px; }
.how__steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 48px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: none; }
.step__num { font-family: var(--font-serif); font-size: 48px; font-weight: 600; color: var(--accent); opacity: 0.4; letter-spacing: -2px; line-height: 1; padding-top: 4px; }
.step__title { font-size: 22px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.step__desc { font-size: 16px; color: var(--fg-2); line-height: 1.7; font-weight: 300; max-width: 600px; }

/* ── FEATURES ── */
.features { padding: 100px 48px; background: var(--bg); }
.features__inner { max-width: 1200px; margin: 0 auto; }
.features__label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 56px; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feat { background: var(--surface); padding: 40px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; transition: background 0.2s; }
.feat:hover { background: rgba(22, 22, 42, 0.8); }
.feat__icon { font-size: 18px; color: var(--accent); }
.feat__title { font-size: 17px; font-weight: 600; color: var(--fg); }
.feat__desc { font-size: 14px; color: var(--fg-2); line-height: 1.65; font-weight: 300; }

/* ── OUTCOMES ── */
.outcomes { padding: 100px 48px; background: var(--bg-2); }
.outcomes__inner { max-width: 1200px; margin: 0 auto; }
.outcomes__label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 56px; }
.outcomes__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; }
.outcome { background: var(--surface); border: 1px solid var(--border); padding: 40px; }
.outcome__figure { display: block; font-family: var(--font-serif); font-size: 42px; font-weight: 600; color: var(--accent); letter-spacing: -1.5px; margin-bottom: 12px; }
.outcome__context { font-size: 14px; color: var(--fg-2); line-height: 1.6; }
.outcomes__quote { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent); padding: 48px; margin-top: 0; }
.outcomes__quote blockquote { font-family: var(--font-serif); font-size: 22px; color: var(--fg); line-height: 1.6; font-weight: 400; margin-bottom: 20px; font-style: italic; }
.outcomes__quote cite { font-size: 13px; color: var(--fg-2); font-style: normal; }

/* ── CLOSING ── */
.closing { padding: 120px 48px; background: var(--bg); background-image: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245, 166, 35, 0.08) 0%, transparent 60%); }
.closing__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing__headline { font-family: var(--font-serif); font-size: clamp(36px, 4vw, 64px); font-weight: 600; line-height: 1.1; letter-spacing: -1.5px; color: var(--fg); margin-bottom: 28px; }
.closing__sub { font-size: 18px; color: var(--fg-2); line-height: 1.7; margin-bottom: 48px; font-weight: 300; }
.closing__tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tag { background: var(--accent-dim); border: 1px solid rgba(245, 166, 35, 0.2); color: var(--accent); font-size: 13px; font-weight: 500; padding: 8px 20px; border-radius: 100px; letter-spacing: 0.3px; }

/* ── FOOTER ── */
.footer { padding: 48px; border-top: 1px solid var(--border); background: var(--bg); }
.footer__inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.footer__logo { font-size: 15px; font-weight: 600; color: var(--fg); }
.footer__desc { font-size: 13px; color: var(--fg-2); margin-top: 8px; max-width: 340px; line-height: 1.5; }
.footer__copy { font-size: 12px; color: var(--fg-2); opacity: 0.5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav__tagline { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__stat-number { font-size: 56px; }
  .how, .features, .outcomes, .closing { padding: 64px 24px; }
  .how__steps { gap: 0; }
  .step { grid-template-columns: 64px 1fr; gap: 24px; padding: 32px 0; }
  .step__num { font-size: 32px; }
  .features__grid, .outcomes__row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__headline { letter-spacing: -1px; }
  .hero__sub { font-size: 16px; }
  .outcomes__quote blockquote { font-size: 18px; }
}