:root {
  --ink: #11211f;
  --muted: #5d6c69;
  --paper: #f6faf8;
  --surface: #ffffff;
  --line: #d8e4df;
  --teal: #008c7d;
  --teal-dark: #006b60;
  --lime: #dff36a;
  --shadow: 0 18px 50px rgba(15, 52, 46, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 18px; align-items: center; font-size: 14px; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--teal-dark); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; border-radius: 12px; padding: 10px 18px; font: inherit; font-weight: 750; text-decoration: none; transition: transform .16s ease, background .16s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--teal-dark); box-shadow: 0 8px 20px rgba(0, 107, 96, .22); }
.button-secondary { color: var(--ink); border: 1px solid var(--line); background: var(--surface); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 64px 0 74px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; color: var(--teal-dark); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.05; }
h1 { font-size: clamp(40px, 6vw, 68px); margin: 16px 0 20px; max-width: 760px; }
h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 16px; }
h3 { font-size: 20px; margin: 0 0 8px; }
.lead { font-size: 19px; color: var(--muted); max-width: 610px; margin: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.microcopy { color: var(--muted); font-size: 13px; margin-top: 12px; }
.hero-image { position: relative; min-height: 430px; display: flex; justify-content: center; align-items: center; }
.hero-image::before { content: ""; position: absolute; inset: 4% 3%; border-radius: 42% 58% 50% 50%; background: linear-gradient(135deg, var(--lime), #a8ddd4); transform: rotate(-8deg); }
.hero-image img { position: relative; z-index: 1; width: min(280px, 72vw); border-radius: 28px; box-shadow: var(--shadow); transform: rotate(4deg); }
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.proof div { padding: 20px; background: var(--surface); }
.proof strong { display: block; font-size: 17px; }
.proof span { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }
.section { padding: 80px 0; }
.section-white { background: var(--surface); }
.section-intro { max-width: 680px; margin-bottom: 34px; }
.section-intro p { color: var(--muted); font-size: 17px; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 25px; }
.card .number { display: inline-flex; width: 31px; height: 31px; align-items: center; justify-content: center; border-radius: 50%; color: var(--teal-dark); background: #dff4ef; font-weight: 800; font-size: 13px; margin-bottom: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.feature-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; padding: 80px 0; }
.feature-band img { width: 100%; max-width: 380px; border-radius: 28px; box-shadow: var(--shadow); justify-self: center; }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { margin: 12px 0; padding-left: 30px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.faq-list { display: grid; gap: 12px; max-width: 820px; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 17px 20px; }
summary { cursor: pointer; font-weight: 750; }
details p { color: var(--muted); margin: 12px 0 0; }
.callout { border-radius: 26px; padding: 48px; background: var(--ink); color: #fff; text-align: center; }
.callout h2 { max-width: 670px; margin: 0 auto 14px; }
.callout p { max-width: 560px; color: #d2e2de; margin: 0 auto; }
.callout .button-row { justify-content: center; }
.callout .button-primary { color: var(--ink); background: var(--lime); box-shadow: none; }
.site-footer { padding: 38px 0 50px; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--teal-dark); }
.site-footer p { text-align: center; margin: 16px 0 0; }
@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1120px); }
  .nav-links a:not(.button) { display: none; }
  .site-nav { padding: 16px 0; }
  .hero-grid, .feature-band { grid-template-columns: 1fr; gap: 34px; padding: 45px 0 56px; }
  .hero-image { min-height: 310px; grid-row: 1; }
  .hero-image img { width: 210px; }
  .proof, .cards { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .callout { padding: 35px 22px; }
}
