:root {
  --teal: #0A3D3D;
  --teal-light: #0F5656;
  --teal-pale: #E8F4F4;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --slate: #1C2B33;
  --slate-mid: #2D3F4A;
  --off-white: #F7F5F0;
  --white: #FFFFFF;
  --text-dark: #0A3D3D;
  --text-mid: #3D5A5A;
  --text-light: #6B8A8A;
  --text-body: #2D3F4A;
}

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

html { scroll-behavior: smooth; }

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

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 61, 61, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-pale);
  background: var(--teal);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  color: var(--white);
  padding: 80px 0 100px;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  line-height: 1.65;
}
.hero-stats-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px 24px;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(245, 158, 11, 0.08);
  top: -100px; right: -80px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(15, 86, 86, 0.5);
  bottom: -80px; left: -60px;
}

/* ─── Proof ─── */
.proof {
  background: var(--slate);
  padding: 72px 0;
}
.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.proof-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}
.proof-attribution {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* ─── How ─── */
.how {
  background: var(--off-white);
  padding: 96px 0;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(10,61,61,0.1);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(10,61,61,0.12);
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── Outcomes ─── */
.outcomes {
  background: var(--teal-pale);
  padding: 96px 0;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
  margin-top: 64px;
}
.outcome {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-icon {
  color: var(--teal);
  width: 40px;
  height: 40px;
}
.outcome-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.outcome-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Closing ─── */
.closing {
  background: var(--teal);
  padding: 96px 0;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-rule {
  width: 40px;
  height: 3px;
  background: var(--amber);
  margin: 0 auto 40px;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
  background: var(--slate);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-card { padding: 16px 20px; }
  .stat-number { font-size: 2rem; }
  .how-steps { gap: 0; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 1.8rem; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .proof, .how, .outcomes, .closing { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 14px 20px; }
  .hero-headline { font-size: 2rem; }
  .hero-grid, .how-inner, .outcomes-inner { padding: 0 20px; }
}