:root {
  --bg: #ffffff;
  --bg-alt: #f6f5f1;
  --text: #1a1a1a;
  --text-muted: #5f5e5a;
  --border: #e5e3da;
  --accent: #0c447c;
  --accent-bg: #e6f1fb;
  --success: #0f6e56;
  --max-w: 880px;
  --radius: 8px;
}
* { box-sizing: border-box; }
body { font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; color: var(--text); margin: 0; background: var(--bg); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
.site-header { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.logo { font-weight: 500; color: var(--text); text-decoration: none; font-size: 17px; }
.site-header nav { display: flex; gap: 1.25rem; }
.site-header nav a { color: var(--text-muted); text-decoration: none; font-size: 14px; }
.site-header nav a:hover { color: var(--text); }
main { padding: 1.5rem 0 3rem; }
h1 { font-size: 26px; font-weight: 500; margin: 0 0 .25rem; }
h2 { font-size: 19px; font-weight: 500; margin: 1.75rem 0 .5rem; }
h3 { font-size: 16px; font-weight: 500; margin: 1rem 0 .25rem; }
.lead { color: var(--text-muted); margin: 0 0 1.5rem; font-size: 14px; }
.breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: .75rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 1.5rem; }
.metric { background: var(--bg-alt); border-radius: var(--radius); padding: 12px; }
.metric-label { font-size: 12px; color: var(--text-muted); margin: 0 0 4px; }
.metric-value { font-size: 16px; font-weight: 500; margin: 0; }
.card { background: var(--bg); border-radius: 12px; border: 1px solid var(--border); padding: 1rem 1.25rem; margin-bottom: 1.25rem; }
.kv { width: 100%; font-size: 14px; border-collapse: collapse; }
.kv td { padding: 6px 0; vertical-align: top; }
.kv td:first-child { color: var(--text-muted); width: 40%; }
.acc-table { width: 100%; font-size: 14px; border-collapse: collapse; }
.acc-table th { text-align: left; font-weight: 500; padding: 8px 0; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.acc-table td { padding: 6px 0; border-bottom: 1px solid var(--border); }
.acc-table tr:last-child td { border-bottom: none; }
a { color: var(--accent); }
.cta { background: var(--accent-bg); border-radius: 12px; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.cta p { margin: 0 0 .25rem; color: var(--accent); font-size: 14px; }
.cta strong { font-weight: 500; }
.org-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.org-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; text-decoration: none; color: var(--text); display: block; }
.org-card:hover { border-color: #b9b6a8; }
.org-card-name { font-weight: 500; margin: 0 0 2px; font-size: 14px; }
.org-card-meta { font-size: 12px; color: var(--text-muted); margin: 0; }
.source-note { font-size: 12px; color: var(--text-muted); margin: 0 0 1.5rem; }
.site-footer { border-top: 1px solid var(--border); padding: 1.5rem 0; margin-top: 3rem; font-size: 12px; color: var(--text-muted); }
.site-footer p { margin: 0 0 .5rem; }
.site-footer a { color: var(--text-muted); }
