:root {
  --navy: #0D1B2A;
  --navy-mid: #1B2E45;
  --navy-light: #2C3F5C;
  --amber: #EAA94A;
  --amber-dim: #C48A2A;
  --cream: #F5F0E8;
  --offwhite: #FAF8F5;
  --text: #1A1A1A;
  --text-mid: #444444;
  --text-muted: #888888;
  --white: #FFFFFF;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--offwhite);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  background: var(--navy);
  padding: 1.25rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--amber);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-tagline {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 5rem 2rem 5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234,169,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-lede {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 340px;
}
.card-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.card-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-dim) 100%);
  border-radius: 3px;
}

/* FEATURES */
.features {
  padding: 5rem 2rem;
  background: var(--offwhite);
}
.features-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.features h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 4px 24px rgba(13,27,42,0.08);
}
.feature-icon {
  color: var(--amber);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--cream);
  padding: 5rem 2rem;
}
.howitworks-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.howitworks h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.step {
  position: relative;
}
.step-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-body h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.step-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* OUTCOMES */
.outcomes {
  background: var(--navy);
  padding: 5rem 2rem;
}
.outcomes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.outcome-stat {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.outcome-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CLOSING */
.closing {
  background: var(--navy-mid);
  padding: 5rem 2rem;
  border-top: 1px solid var(--navy-light);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.closing-sub {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 2rem;
  border-top: 1px solid var(--navy-light);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
.footer-links {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .features-grid, .steps, .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3rem 1.5rem;
  }
  .features, .howitworks, .outcomes, .closing {
    padding: 3rem 1.5rem;
  }
  .step-number {
    font-size: 2.5rem;
  }
}