:root {
  --bg: #F5F2EC;
  --surface: #EEEBE3;
  --fg: #1C2B26;
  --fg-muted: #5A6B63;
  --accent: #C4853A;
  --accent-dim: #E8C08A;
  --border: #D8D3C8;
  --green: #1B4A3A;
  --green-mid: #2A6352;
  --green-light: #E8EFEC;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav { border-bottom: 1px solid var(--border); padding: 0 40px; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: baseline; gap: 12px; padding: 18px 0; }
.nav-logo { font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; color: var(--fg); }
.nav-tagline { font-size: 13px; color: var(--fg-muted); font-weight: 400; }

/* Hero */
.hero { max-width: 1200px; margin: 0 auto; padding: 80px 40px 100px; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 28px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
  font-style: italic;
}
.hero-sub { font-size: 18px; color: var(--fg-muted); max-width: 540px; line-height: 1.65; margin-bottom: 56px; font-weight: 400; }

/* Module cards */
.hero-modules { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; width: 420px; }
.module-card { display: grid; grid-template-columns: 160px 1fr 80px; align-items: center; gap: 0; padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--bg); }
.module-card:last-child { border-bottom: none; }
.module-label { font-size: 13px; font-weight: 500; color: var(--fg); }
.module-bar { height: 3px; background: var(--surface); border-radius: 2px; overflow: hidden; }
.module-fill { height: 100%; background: var(--green); border-radius: 2px; }
.module-status { font-size: 11px; color: var(--green-mid); font-weight: 600; text-align: right; }

/* Features */
.features { background: var(--fg); padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 52px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--green-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--bg); }
.feature-title { font-size: 16px; font-weight: 600; color: var(--bg); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: #8FA99E; line-height: 1.6; }

/* How it works */
.how-it-works { padding: 100px 40px; background: var(--surface); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; margin-top: 20px; }
.step { padding-right: 40px; }
.step-connector { width: 40px; height: 1px; background: var(--border); align-self: center; margin: 0 20px; flex-shrink: 0; }
.step-num { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); display: block; margin-bottom: 12px; }
.step-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Creative edge */
.creative-edge { padding: 100px 40px; background: var(--green); }
.edge-inner { max-width: 1200px; margin: 0 auto; }
.edge-quote { margin-bottom: 60px; }
.edge-quote blockquote { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-style: italic; color: var(--bg); line-height: 1.4; max-width: 720px; }
.edge-facts { display: flex; gap: 0; align-items: stretch; }
.edge-stat { flex: 1; padding: 0 40px 0 0; }
.edge-stat:first-child { padding-left: 0; }
.edge-divider { width: 1px; background: rgba(255,255,255,0.15); margin-right: 40px; flex-shrink: 0; }
.stat-num { display: block; font-family: var(--serif); font-size: 52px; font-style: italic; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 13px; color: #8FA99E; line-height: 1.4; }

/* Closing */
.closing { padding: 100px 40px 120px; background: var(--bg); }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline { font-family: var(--serif); font-size: clamp(40px, 5.5vw, 72px); font-style: italic; color: var(--fg); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; }
.closing-sub { font-size: 17px; color: var(--fg-muted); max-width: 480px; line-height: 1.65; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 28px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 32px; }
.footer-logo { font-weight: 600; font-size: 13px; color: var(--fg); }
.footer-co { font-size: 13px; color: var(--fg-muted); }
.footer-loc { font-size: 13px; color: var(--fg-muted); margin-left: auto; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-modules { width: 100%; }
  .module-card { grid-template-columns: 120px 1fr 70px; padding: 12px 16px; }
  .features { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-it-works { padding: 72px 24px; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { display: none; }
  .step { padding-right: 0; }
  .creative-edge { padding: 72px 24px; }
  .edge-facts { flex-direction: column; gap: 28px; }
  .edge-divider { display: none; }
  .edge-stat { padding: 0; }
  .closing { padding: 72px 24px 90px; }
  .footer-inner { flex-wrap: wrap; gap: 8px; }
  .footer-loc { margin-left: 0; }
}