:root {
  --bg: #FAFAF7;
  --bg-alt: #F0EFE9;
  --fg: #1A1A14;
  --fg-muted: #6B6B5E;
  --accent: #2D5A3D;
  --accent-light: #EBF2ED;
  --gold: #B8923A;
  --gold-light: #FBF5E6;
  --border: #E0DDD5;
  --card-bg: #FFFFFF;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 400;
}

em { font-style: italic; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 3rem 4rem;
  min-height: 85vh;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--fg);
  margin-bottom: 1.75rem;
  line-height: 1.1;
}
.hero-headline em { color: var(--accent); }
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 40ch;
  line-height: 1.65;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 340px;
  position: relative;
  z-index: 1;
}
.hero-card-label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-metric:last-child { margin-bottom: 0; }
.hero-metric-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: var(--accent);
  line-height: 1;
}
.hero-metric-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.hero-ambient {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  top: -40px;
  right: -40px;
}
.orb-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  bottom: -30px;
  left: -30px;
}

/* Promise */
.promise {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--accent);
  color: #fff;
  padding: 4rem 3rem;
}
.promise-deco svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }
.promise-headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.promise-body {
  color: rgba(255,255,255,0.8);
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.65;
}

/* Features */
.features {
  padding: 6rem 3rem;
}
.features-header {
  margin-bottom: 4rem;
}
.features-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 1rem;
}
.features-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}
.feature { }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.feature-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Results */
.results {
  background: var(--bg-alt);
  padding: 5rem 3rem;
}
.results-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.result {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.result:last-child { border-right: none; }
.result-stat {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.result-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Closing */
.closing {
  padding: 7rem 3rem;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.closing-headline em { color: var(--accent); }
.closing-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
}
.footer-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  max-width: 40ch;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; min-height: auto; gap: 3rem; }
  .hero-right { order: -1; }
  .hero-card { max-width: 100%; }
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .results { padding: 4rem 1.5rem; }
  .results-grid { grid-template-columns: 1fr; gap: 1px; background: var(--border); }
  .result { border-right: none; border-bottom: 1px solid var(--border); }
  .result:last-child { border-bottom: none; }
  .closing { padding: 5rem 1.5rem; }
  .promise { padding: 3rem 1.5rem; }
  .nav { padding: 1.25rem 1.5rem; }
  .footer { flex-direction: column; gap: 0.75rem; padding: 1.5rem; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.75rem; }
  .hero-card { padding: 1.75rem; }
  .hero-metric-num { font-size: 1.875rem; }
}