
:root{
  --bg:#EEF1EA; --surface:#FBFCF9; --ink:#14261B; --muted:#55665B; --line:#D2D9CD;
  --brand:#1F5D3A; --brand-ink:#FFFFFF; --accent:#C98A00; --focus:#1F5D3A;
}
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#0F1712; --surface:#17221B; --ink:#E6EEE7; --muted:#9DB0A2; --line:#2A3A2F;
    --brand:#6CC790; --brand-ink:#0B1A11; --accent:#E0A82E; --focus:#6CC790;
  }
}
:root[data-theme="dark"]{
  --bg:#0F1712; --surface:#17221B; --ink:#E6EEE7; --muted:#9DB0A2; --line:#2A3A2F;
  --brand:#6CC790; --brand-ink:#0B1A11; --accent:#E0A82E; --focus:#6CC790;
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{margin:0;background:var(--bg);color:var(--ink);font-family:"Instrument Sans",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;font-size:17px;line-height:1.65}
h1,h2,h3{font-family:"Bricolage Grotesque","Instrument Sans",system-ui,sans-serif;letter-spacing:-0.01em;line-height:1.2;margin:0}
a{color:var(--brand)}
a:focus-visible{outline:3px solid var(--focus);outline-offset:2px;border-radius:2px}
.wrap{max-width:860px;margin:0 auto;padding:24px 20px 48px}

.site-nav{display:flex;flex-wrap:wrap;gap:6px 22px;margin:0 0 24px;padding-bottom:12px;border-bottom:1px solid var(--line);font-size:15px;font-weight:500}
.site-nav a{color:var(--muted);text-decoration:none;padding:6px 0;border-bottom:2px solid transparent}
.site-nav a:hover{color:var(--ink)}
.site-nav a[aria-current="page"]{color:var(--ink);border-bottom-color:var(--brand)}

.top{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;margin-bottom:30px}
.top-text{min-width:0}
.top h1{font-size:clamp(28px,5vw,40px);font-weight:700}
.lede{margin:12px 0 0;max-width:58ch;color:var(--muted);font-size:18px}
.logo{flex:none;display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}
.logo .mark{display:block;width:56px;height:56px}
.logo .bg{fill:var(--brand)}
.logo .ln{fill:none;stroke:var(--brand-ink);stroke-width:5;stroke-linecap:round;stroke-linejoin:round}
.word{display:flex;flex-direction:column;line-height:1.1}
.wm{font-family:"Bricolage Grotesque","Instrument Sans",system-ui,sans-serif;font-weight:700;font-size:24px;letter-spacing:-0.01em}
.tag{font-size:12px;color:var(--muted);margin-top:3px}
@media (max-width:600px){.top{flex-direction:column-reverse;align-items:stretch;gap:16px}.logo{align-self:flex-end}}

article h2{font-size:24px;font-weight:600;margin:38px 0 10px}
article h3{font-size:19px;font-weight:600;margin:24px 0 6px}
article p,article ul,article ol{max-width:68ch;margin:0 0 14px}
article li{margin-bottom:6px}
.tablewrap{overflow-x:auto;margin:14px 0 20px;border:1px solid var(--line);border-radius:10px;background:var(--surface)}
table{border-collapse:collapse;width:100%;min-width:560px;font-size:15px}
th,td{text-align:left;padding:10px 12px;border-bottom:1px solid var(--line);vertical-align:top}
th{font-weight:600;background:var(--bg)}
tr:last-child td{border-bottom:0}
td.num,th.num{text-align:right;font-variant-numeric:tabular-nums;white-space:nowrap}
td.rate{white-space:nowrap}
.note{border-left:4px solid var(--accent);background:var(--surface);padding:12px 16px;margin:20px 0;max-width:68ch;font-size:16px}
.cta{display:inline-block;margin-top:14px;background:var(--brand);color:var(--brand-ink);padding:13px 20px;border-radius:8px;font-weight:600;text-decoration:none}
.cta:focus-visible{outline:3px solid var(--focus);outline-offset:3px}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:14px;margin:18px 0}
.card{display:block;text-decoration:none;color:var(--ink);background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:16px 18px}
.card:hover{border-color:var(--brand)}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0;color:var(--muted);font-size:15px}
.meta{color:var(--muted);font-size:14px;margin-top:30px}
.site-foot{margin-top:44px;padding-top:18px;border-top:1px solid var(--line);color:var(--muted);font-size:14px}
.site-foot p{margin:0 0 8px;max-width:68ch}
.site-foot a{margin-right:14px}
