:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #526173;
  --line: #dbe4ec;
  --surface: #ffffff;
  --soft: #eef8f5;
  --accent: #087f5b;
  --accent-strong: #065f46;
  --warning: #fff7ed;
  --warning-line: #fed7aa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f5f8f9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: var(--accent-strong); font-weight: 750; text-underline-offset: 3px; }
a:hover { color: #064e3b; }
.page-shell { width: min(960px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 64px; }
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 42px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand img { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 10px; }
.brand span { display: grid; line-height: 1.2; }
.brand small { color: var(--muted); font-weight: 650; }
.site-nav nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.site-nav nav a { color: var(--muted); font-size: .92rem; text-decoration: none; }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-size: .82rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 780px; margin: 0; font-size: clamp(2.35rem, 7vw, 4.65rem); line-height: .98; letter-spacing: -.055em; }
.lede { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 1.16rem; }
.updated { margin: 14px 0 0; color: #64748b; font-size: .92rem; }
.hero { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, #fff 0%, var(--soft) 100%); box-shadow: 0 24px 70px rgba(15, 23, 42, .08); }
.hero-image { margin: 30px 0 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #e8eef2; }
.hero-image img { display: block; width: 100%; max-height: 460px; object-fit: cover; object-position: top center; }
.hero-image figcaption { padding: 12px 16px; color: var(--muted); font-size: .9rem; background: var(--surface); }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); box-shadow: 0 12px 34px rgba(15, 23, 42, .045); }
.card.wide { grid-column: 1 / -1; }
.card h2 { margin: 0 0 8px; font-size: 1.28rem; line-height: 1.25; }
.card h3 { margin: 22px 0 6px; font-size: 1rem; }
.card p { margin: 10px 0 0; color: #334155; }
.card ul, .card ol { margin: 12px 0 0; padding-left: 22px; color: #334155; }
.card li + li { margin-top: 8px; }
.principles { counter-reset: policy-step; }
.principles > section { position: relative; padding-left: 52px; }
.principles > section + section { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.principles > section::before { position: absolute; top: 0; left: 0; display: grid; width: 34px; height: 34px; place-items: center; color: #fff; border-radius: 50%; background: var(--accent); counter-increment: policy-step; content: counter(policy-step); font-weight: 850; }
.callout { border-color: var(--warning-line); background: var(--warning); }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.link-row a { display: inline-flex; padding: 9px 12px; border: 1px solid #a7f3d0; border-radius: 999px; color: var(--accent-strong); background: #ecfdf5; text-decoration: none; }
footer { margin-top: 34px; padding-top: 22px; color: var(--muted); border-top: 1px solid var(--line); font-size: .92rem; }
footer nav { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
@media (max-width: 720px) {
  .page-shell { width: min(100% - 24px, 960px); padding-top: 18px; }
  .site-nav { align-items: flex-start; margin-bottom: 24px; }
  .site-nav nav { display: none; }
  .hero { padding: 24px 20px; border-radius: 22px; }
  .content-grid { grid-template-columns: 1fr; }
  .card.wide { grid-column: auto; }
  .principles > section { padding-left: 46px; }
}
