:root {
  --green-900: #0a4c3a;
  --green-800: #0d5c45;
  --green-700: #167457;
  --ink: #12231d;
  --muted: #5c6d66;
  --line: #dce8e2;
  --canvas: #f5f8f6;
  --lime: #b7ed67;
  --max: 980px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; border-radius: 18px; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip {
  position: absolute; left: 12px; top: -48px; z-index: 20;
  background: #fff; padding: 8px 12px; border-radius: 8px;
}
.skip:focus { top: 12px; }
.top {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.bar {
  min-height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 800; text-decoration: none; letter-spacing: -.02em;
}
.mark {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--green-800); color: #fff; font-size: .78rem;
}
nav { display: flex; gap: 16px; flex-wrap: wrap; }
nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: .95rem; }
nav a:hover { color: var(--green-800); }
.hero { padding: 56px 0 28px; }
.eyebrow {
  margin: 0 0 12px; color: var(--green-700);
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -.03em; }
h1 { font-size: clamp(2rem, 4.8vw, 3.35rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin: 0 0 14px; }
h3 { font-size: 1.1rem; margin: 0 0 8px; }
.lead, p { color: var(--muted); }
.lead { font-size: 1.12rem; max-width: 46rem; margin: 0 0 24px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 999px;
  font-weight: 700; text-decoration: none;
}
.btn.primary { background: var(--green-800); color: #fff; }
.btn.light { background: #fff; color: var(--green-900); border: 1px solid var(--line); }
.grid-2 {
  display: grid; gap: 36px; align-items: center;
  padding: 28px 0 48px;
}
@media (min-width: 860px) {
  .grid-2 { grid-template-columns: 1.05fr 1fr; }
}
.checks { margin: 18px 0 0; padding: 0; list-style: none; }
.checks li {
  position: relative; padding: 10px 0 10px 28px;
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.checks li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--lime); box-shadow: inset 0 0 0 3px var(--green-800);
}
.band { background: var(--canvas); padding: 48px 0; }
.cards {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 22px;
}
.cards article {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 18px;
}
.cards p { margin: 0; font-size: .95rem; }
.links { padding-left: 1.15rem; }
.links li { margin: 8px 0; }
.faq { padding: 48px 0 24px; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 16px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); }
.faq p { margin: 10px 0 0; }
.cta {
  margin: 24px 0 56px; padding: 36px 28px;
  border-radius: 24px; background: var(--green-900); color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: #e8f6f0;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.cta p {
  color: #e8f6f0;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 20px;
}
.cta .btn {
  margin-left: auto;
  margin-right: auto;
}
.cta .btn.primary { background: var(--lime); color: var(--green-900); }
.foot {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px; color: var(--muted); font-size: .92rem;
}
.foot a { color: var(--muted); }
