:root {
  --slate: #13161d;
  --slate-mid: #1e2330;
  --amber: #e8a84c;
  --amber-dark: #c8893a;
  --cream: #f5f1ec;
  --off-white: #faf8f5;
  --text: #1a1d24;
  --text-mid: #4a5166;
  --text-light: #7a8299;
  --border: #e0dbd5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bitter', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(19, 22, 29, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 15, 20, 0.97) 0%,
    rgba(13, 15, 20, 0.65) 45%,
    rgba(13, 15, 20, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 64px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
}

/* PROOF */
.proof {
  background: var(--slate);
  padding: 48px 64px;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-number {
  font-family: 'Bitter', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.proof-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.proof-src {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  display: block;
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* SECTION SHARED */
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 56px;
}

/* FEATURES */
.features {
  padding: 96px 64px;
  background: var(--off-white);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: 'Bitter', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  padding: 96px 64px;
  background: var(--slate);
}
.howitworks-inner {
  max-width: 900px;
  margin: 0 auto;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
}
.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}
.step:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.step-num {
  font-family: 'Bitter', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}
.step-body h3 {
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.step-body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* OUTCOMES */
.outcomes {
  padding: 96px 64px;
  background: var(--cream);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.outcome-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.outcome-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.outcome-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 120px 64px;
  background: var(--amber);
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.6;
  margin-bottom: 24px;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--slate);
  opacity: 0.7;
  font-weight: 300;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  padding: 40px 64px;
  background: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: 'Bitter', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content { padding: 60px 28px 60px; }
  .proof { padding: 40px 28px; }
  .proof-inner { gap: 28px; }
  .proof-divider { display: none; }
  .features { padding: 64px 28px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .howitworks { padding: 64px 28px; }
  .outcomes { padding: 64px 28px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 28px; }
  .footer { padding: 32px 28px; }
  .section-title { font-size: 1.7rem; }
  .step-num { font-size: 2rem; width: 48px; }
  .step { gap: 20px; padding: 28px 0; }
}