:root {
  --primary: #1b4332;
  --primary-container: #e7f1e8;
  --on-primary: #ffffff;
  --success-container: #d4f5dd;
  --bg: #ffffff;
  --surface-low: #f5f7f6;
  --surface-high: #eef2ef;
  --text: #1c1c18;
  --muted: #42493e;
  --outline: #c2c9bb;
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
.fine { font-size: 12px; color: var(--muted); }

/* Nav */
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.nav nav { display: flex; align-items: center; gap: 22px; font-weight: 600; font-size: 15px; color: var(--muted); }
.nav-cta {
  background: var(--primary);
  color: var(--on-primary) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

/* Hero */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 72px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 800; margin: 12px 0 18px; }
.lede { font-size: 19px; color: var(--muted); max-width: 520px; }
.cta-row { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.appstore img { width: 180px; height: 60px; }
.ig { font-weight: 700; color: var(--primary); }
.proof {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}
.proof li::before { content: "✓ "; color: var(--primary); font-weight: 800; }
.hero-phone { display: flex; justify-content: center; }
.hero-phone img {
  width: min(100%, 390px);
  border-radius: 44px;
  box-shadow: 0 30px 80px rgba(15, 46, 13, 0.28);
}

/* Features */
.features {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.features article {
  background: var(--surface-low);
  border-radius: var(--radius);
  padding: 18px 18px 22px;
}
.features img {
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(15, 46, 13, 0.12);
}
.features h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.features p { font-size: 14px; color: var(--muted); }

/* Checklist capture */
.checklist { padding: 0 24px 72px; }
.checklist-card {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--primary);
  color: var(--on-primary);
  border-radius: 32px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.checklist-card .eyebrow { color: var(--success-container); }
.checklist-card h2 { font-size: 36px; font-weight: 800; margin: 10px 0 12px; }
.checklist-card p { color: rgba(255, 255, 255, 0.82); }
.capture { display: grid; gap: 10px; }
.capture input[type="email"] {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.capture input::placeholder { color: rgba(255, 255, 255, 0.55); }
.capture button {
  font: inherit;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
}
.capture .fine { color: rgba(255, 255, 255, 0.7); }
.direct { grid-column: 2; font-size: 14px; font-weight: 700; color: var(--success-container); }

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 24px 24px 96px;
  display: grid;
  justify-items: center;
  gap: 26px;
}
.final-cta h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; }

/* Footer */
footer {
  border-top: 1px solid var(--surface-high);
  padding: 28px 24px 40px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; }
footer nav { display: flex; gap: 20px; font-size: 14px; font-weight: 600; color: var(--muted); }

/* Privacy page */
.doc { max-width: 720px; margin: 0 auto; padding: 24px 24px 96px; }
.doc h1 { font-size: 40px; font-weight: 800; margin-bottom: 8px; }
.doc h2 { font-size: 20px; font-weight: 800; margin: 32px 0 8px; }
.doc p { color: var(--muted); margin-bottom: 12px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 16px; text-align: center; }
  .lede { margin: 0 auto; }
  .cta-row, .proof { justify-content: center; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .checklist-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .direct { grid-column: 1; }
  .nav nav a:not(.nav-cta) { display: none; }
}
@media (max-width: 540px) {
  .features { grid-template-columns: 1fr; }
}
