:root {
  color-scheme: light;
  --ink: #17231d;
  --muted: #526158;
  --paper: #f6f3e9;
  --surface: #fffdf7;
  --green: #174d39;
  --green-light: #dfece3;
  --line: #cbd7ce;
  --focus: #9a5a00;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.65; }
a { color: var(--green); text-underline-offset: 0.18em; }
a:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 2; background: var(--surface); padding: .75rem 1rem; }
header { background: var(--green); color: white; }
.header-inner, main, footer { width: min(70rem, calc(100% - 2rem)); margin-inline: auto; }
.header-inner { padding: 1.25rem 0; display: flex; gap: 1rem; justify-content: space-between; align-items: center; }
.site-name { margin: 0; font-weight: 750; letter-spacing: .02em; }
nav ul { display: flex; flex-wrap: wrap; gap: 1rem; margin: 0; padding: 0; list-style: none; }
nav a { color: white; }
main { padding: clamp(2.5rem, 8vw, 6rem) 0; }
.hero { max-width: 54rem; margin-bottom: 3rem; }
.eyebrow { color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 1.04; letter-spacing: -.035em; margin: .5rem 0 1.25rem; overflow-wrap: anywhere; }
.lead { color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 48rem; }
.provider-lines { font-style: normal; overflow-wrap: anywhere; }
.provider-lines span { display: block; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); gap: 1rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 1rem; padding: 1.5rem; }
.card h2 { margin-top: 0; line-height: 1.25; }
.source { padding-top: .75rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.legal { max-width: 48rem; }
footer { border-top: 1px solid var(--line); padding: 1.5rem 0 2.5rem; color: var(--muted); }
footer ul { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; } }
