:root {
  color-scheme: light;
  --ink: #17231d;
  --muted: #53645b;
  --line: #d9e4dc;
  --leaf: #237a4b;
  --leaf-dark: #185f39;
  --petal: #f3faf5;
  --paper: #fffefa;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.65 Inter, ui-sans-serif, system-ui, sans-serif; }
a { color: var(--leaf-dark); text-underline-offset: 0.2em; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.masthead { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { color: var(--ink); font-size: 1.35rem; font-weight: 750; text-decoration: none; letter-spacing: -0.02em; }
.brand span { color: var(--leaf); margin-right: 0.35rem; }
nav { display: flex; gap: 18px; }
.hero { min-height: calc(100vh - 156px); display: grid; align-content: center; max-width: 780px; padding-block: 72px; }
h1, h2 { font-family: Sora, ui-sans-serif, system-ui, sans-serif; line-height: 1.15; letter-spacing: -0.025em; }
h1 { max-width: 860px; margin: 0.15em 0 0.35em; font-size: clamp(2.6rem, 7vw, 5.8rem); }
h2 { margin-top: 2.2em; font-size: clamp(1.35rem, 3vw, 1.8rem); }
.legal h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.eyebrow { color: var(--leaf); font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.lede { max-width: 760px; font-size: clamp(1.2rem, 2.7vw, 1.55rem); }
.boundary { max-width: 760px; color: var(--muted); }
.button { width: fit-content; margin-top: 24px; padding: 12px 20px; border-radius: 12px; background: var(--leaf); color: white; font-weight: 700; text-decoration: none; }
.button:hover, .button:focus-visible { background: var(--leaf-dark); }
.legal { max-width: 820px; padding-block: 64px 96px; }
.legal p, .legal li { color: var(--muted); }
.footer { min-height: 78px; display: flex; align-items: center; gap: 24px; justify-content: space-between; border-top: 1px solid var(--line); }
@media (max-width: 560px) { .masthead, .footer { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; } h1 { font-size: 2.7rem; } }
