:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5c6862;
  --line: #dce3df;
  --paper: #f6f8f6;
  --surface: #ffffff;
  --accent: #19734b;
  --accent-dark: #115638;
}

* { box-sizing: border-box; }
html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--paper); }
body { margin: 0; min-height: 100vh; }
a { color: inherit; }
.topbar, main, footer { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
.topbar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 750; text-decoration: none; }
.brand img { border-radius: 8px; }
nav { display: flex; flex-wrap: wrap; gap: 20px; }
nav a, .text-link { color: var(--muted); font-size: 14px; font-weight: 650; text-underline-offset: 4px; }
nav a:hover, .text-link:hover { color: var(--ink); }
main { padding-block: clamp(44px, 8vw, 96px); }
.hero { max-width: 780px; }
.hero--panel { max-width: 850px; }
.eyebrow { margin-bottom: 18px; color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1 { margin: 0; max-width: 16ch; font-size: clamp(42px, 7vw, 76px); line-height: .98; letter-spacing: -.055em; }
.hero--panel h1 { max-width: 20ch; font-size: clamp(38px, 6vw, 64px); }
.lead { margin: 28px 0 0; max-width: 680px; color: var(--muted); font-size: clamp(18px, 2.4vw, 24px); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 32px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border-radius: 8px; padding: 0 20px; color: #fff; background: var(--accent); font-weight: 750; text-decoration: none; }
.button:hover { background: var(--accent-dark); }
.button:focus-visible, a:focus-visible { outline: 3px solid #95d8b8; outline-offset: 3px; }
.features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: clamp(54px, 9vw, 100px); border: 1px solid var(--line); background: var(--line); }
.features article { min-height: 240px; padding: clamp(26px, 4vw, 42px); background: var(--surface); }
.number { color: var(--accent); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
h2 { margin: 48px 0 12px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.035em; }
.features p { margin: 0; max-width: 45ch; color: var(--muted); line-height: 1.65; }
.notice { margin-top: 24px; border-left: 4px solid var(--accent); padding: 18px 22px; background: #edf6f1; line-height: 1.6; }
footer { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-block: 24px 40px; color: var(--muted); font-size: 13px; }
.document { max-width: 800px; }
.document h1 { max-width: none; font-size: clamp(38px, 6vw, 62px); }
.document h2 { margin: 46px 0 12px; font-size: 25px; }
.document p, .document li { color: var(--muted); font-size: 17px; line-height: 1.7; }
.document li + li { margin-top: 9px; }
.document .meta { color: var(--accent); font-size: 14px; font-weight: 750; }
.legal-box { margin: 28px 0; border: 1px solid var(--line); padding: 20px; background: var(--surface); }

@media (max-width: 700px) {
  .topbar, main, footer { width: min(100% - 28px, 1080px); }
  .topbar { align-items: flex-start; flex-direction: column; padding-block: 18px; }
  nav { gap: 14px; }
  main { padding-block: 48px; }
  .features { grid-template-columns: 1fr; }
  .features article { min-height: 210px; }
  h2 { margin-top: 34px; }
  footer { flex-direction: column; }
}

