:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-2: #eef2ed;
  --text: #162019;
  --muted: #59635c;
  --line: #dce2dd;
  --brand: #1f5a3d;
  --brand-dark: #16432e;
  --accent: #a76d22;
  --shadow: 0 14px 36px rgba(22, 32, 25, .08);
  --radius: 18px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }
.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220,226,221,.9);
  background: rgba(247,248,245,.94);
  backdrop-filter: blur(10px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--text); }
.brand-logo { display: block; width: 230px; max-width: 42vw; height: auto; }
.navlinks { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.navlinks a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 650; }
.navlinks a:hover { color: var(--text); }
.button, .button-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 10px 18px; border-radius: 12px; font-weight: 750; text-decoration: none; border: 1px solid transparent; }
.button { background: var(--brand); color: white; box-shadow: 0 8px 22px rgba(31,90,61,.18); }
.button:hover { background: var(--brand-dark); color: white; }
.button-outline { border-color: var(--line); color: var(--text); background: var(--surface); }
.button-outline:hover { border-color: #b7c1b9; color: var(--text); }
.hero { padding: 86px 0 58px; }
.eyebrow { color: var(--brand); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .11em; margin-bottom: 14px; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.04; letter-spacing: -.045em; max-width: 900px; margin: 0 0 22px; }
h2 { font-size: clamp(28px, 4vw, 42px); letter-spacing: -.03em; line-height: 1.15; margin: 0 0 16px; }
h3 { font-size: 20px; margin: 0 0 8px; letter-spacing: -.015em; }
p { margin: 0 0 16px; }
.lede { max-width: 780px; font-size: clamp(18px, 2.2vw, 22px); color: var(--muted); }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.trustline { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; color: var(--muted); font-size: 14px; }
.trustline span::before { content: "✓"; color: var(--brand); font-weight: 900; margin-right: 7px; }
.section { padding: 62px 0; }
.section.alt { background: var(--surface-2); border-block: 1px solid var(--line); }
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 5px 18px rgba(22,32,25,.04); }
.card p, .muted { color: var(--muted); }
.kicker { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 8px; }
.flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; counter-reset: step; }
.flow .step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.flow .step::before { counter-increment: step; content: counter(step); display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; background: var(--brand); color: #fff; font-weight: 800; font-size: 13px; margin-bottom: 12px; }
.price { font-size: 38px; font-weight: 850; letter-spacing: -.04em; }
.price small { font-size: 15px; color: var(--muted); font-weight: 650; letter-spacing: 0; }
ul.clean { padding-left: 20px; margin: 14px 0 0; }
ul.clean li { margin: 7px 0; }
.banner { border: 1px solid #cad8ce; background: #edf6f0; border-radius: 16px; padding: 20px 22px; }
.banner strong { color: var(--brand-dark); }
.docs pre { background: #101712; color: #f1f6f2; overflow-x: auto; padding: 18px; border-radius: 14px; font-size: 14px; }
.docs code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 42px; font-size: 30px; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: #354039; }
.prose ul { padding-left: 22px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: white; }
table { border-collapse: collapse; width: 100%; min-width: 620px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; background: #f5f7f4; }
footer { padding: 42px 0 54px; color: var(--muted); font-size: 14px; }
.footergrid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 28px; }
.footerlinks { display: flex; gap: 16px; flex-wrap: wrap; }
.footerlinks a { color: var(--muted); text-decoration: none; }
.note { font-size: 13px; color: var(--muted); }
@media (max-width: 860px) {
  .grid-3, .grid-2, .flow { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: 14px 0; }
  .brand-logo { width: 190px; max-width: 48vw; }
  .navlinks { justify-content: flex-end; gap: 12px; }
  .navlinks .hide-mobile { display:none; }
  .hero { padding-top: 58px; }
}
