:root {
  color-scheme: light;
  --canvas: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f6f7;
  --ink: #181a1d;
  --ink-soft: #42474f;
  --muted: #707780;
  --line: #e1e3e6;
  --line-strong: #c7cbd0;
  --accent: #2855b8;
  --accent-strong: #1f448f;
  --accent-soft: #f2f5fc;
  --focus: #2855b8;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --page: 1280px;
  --text: 760px;
  --header: 64px;
  --font-display: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --font-utility: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body, h1, h2, h3, p, ol, ul, dl, dd { margin: 0; }
body {
  min-height: 100vh;
  overflow-wrap: anywhere;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: rgb(40 85 184 / 12%); }
a:hover { color: var(--accent-strong); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }
::selection { background: #dbe4fb; color: var(--ink); }
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; }
h2, h3, p, li { text-wrap: pretty; }
h2 { font-size: clamp(24px, 2.5vw, 30px); line-height: 1.2; letter-spacing: -.025em; }
h3 { font-size: 17px; line-height: 1.3; }
code {
  padding: .12em .36em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  font-family: var(--font-utility);
  font-size: .88em;
}
section[id] { scroll-margin-top: calc(var(--header) + 20px); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 2px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms cubic-bezier(.22, 1, .36, 1);
}
.skip-link:focus { color: white; transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--page)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}
.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); }
.brand > span:last-child { min-width: 0; display: grid; }
.brand b { font-size: 14px; line-height: 1.2; letter-spacing: -.01em; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.header-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 160ms cubic-bezier(.22, 1, .36, 1), color 160ms cubic-bezier(.22, 1, .36, 1);
}
.header-action:hover { border-color: var(--accent); color: var(--accent-strong); }
.header-action:active { color: var(--ink); }

main { width: min(100%, var(--page)); margin: 0 auto; padding: 0 24px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
  padding: clamp(52px, 7vw, 84px) 0 52px;
  border-bottom: 1px solid var(--line-strong);
}
.hero-copy { max-width: 900px; }
.eyebrow {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 850px;
  margin-top: 16px;
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.045em;
}
.lead { max-width: 720px; margin-top: 24px; color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 19px); line-height: 1.52; }
.document-meta { border-top: 1px solid var(--line-strong); }
.document-meta div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.document-meta dt { color: var(--muted); font-size: 11px; }
.document-meta dd { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }

.plain-summary { padding: 48px 0 56px; border-bottom: 1px solid var(--line-strong); }
.summary-heading { display: block; }
.summary-heading h2 { margin-top: 6px; }
.summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 48px; margin-top: 28px; }
.summary-grid article { min-height: 0; padding: 18px 0 20px; border-top: 1px solid var(--line); }
.summary-grid article:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
.summary-grid h3 { margin-top: 0; }
.summary-grid p { margin-top: 10px; color: var(--muted); font-size: 14px; }
.summary-note { max-width: var(--text); margin-top: 24px; padding-left: 16px; border-left: 2px solid var(--accent); color: var(--ink-soft); }

.policy-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(48px, 7vw, 88px); padding: 64px 0 96px; }
.policy-nav { position: sticky; top: calc(var(--header) + 28px); align-self: start; }
.policy-nav > p { color: var(--muted); font-family: var(--font-utility); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.policy-nav ol { display: grid; gap: 2px; margin-top: 14px; padding: 0; list-style: none; counter-reset: toc; }
.policy-nav li { counter-increment: toc; }
.policy-nav a {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.policy-nav a::before { color: var(--line-strong); content: counter(toc, decimal-leading-zero); font-family: var(--font-utility); font-size: 10px; }
.policy-nav a:hover { color: var(--accent-strong); }
.policy-document { max-width: 1040px; min-width: 0; }
.policy-document > section { display: grid; grid-template-columns: 40px minmax(0, var(--text)); gap: 16px; padding: 8px 0 58px; }
.policy-document > section + section { padding-top: 50px; border-top: 1px solid var(--line); }
.section-number { padding-top: 7px; color: var(--muted); font-family: var(--font-utility); font-size: 10px; font-weight: 600; font-variant-numeric: tabular-nums; }
.policy-document h2 { margin-bottom: 24px; }
.policy-document h3 { margin-bottom: 8px; }
.policy-document p + p, .policy-document p + ul, .policy-document p + ol, .policy-document ul + p, .policy-document ol + p, .policy-document dl + p, .policy-document div + p { margin-top: 20px; }
.policy-document ul, .policy-document ol { display: grid; gap: 10px; padding-left: 22px; }
.policy-document li::marker { color: var(--accent); }

.operator-card { margin: 0 0 26px; border-top: 1px solid var(--line-strong); }
.operator-card div { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.operator-card dt { color: var(--muted); font-size: 13px; }
.operator-card dd { font-weight: 600; }
.project-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; margin-top: 24px; border-top: 1px solid var(--line); }
.project-list article { min-height: 0; padding: 18px 0; border-bottom: 1px solid var(--line); }
.project-list h3 { font-family: var(--font-utility); font-size: 13px; }
.project-list p { margin-top: 10px; color: var(--muted); font-size: 14px; }
.table-wrap { max-width: 100%; overflow-x: auto; margin: 24px 0 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); scrollbar-gutter: stable; }
table { width: 100%; min-width: 920px; border-collapse: collapse; }
th, td { padding: 15px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th:last-child, td:last-child { border-right: 0; }
tbody tr:last-child td { border-bottom: 0; }
th { background: var(--surface-soft); color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
td { font-size: 13px; line-height: 1.48; }
td:first-child { color: var(--ink); font-weight: 650; }
.measure-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 34px !important; }
.request-section > div:last-child { padding-left: 22px; border-left: 2px solid var(--accent); }
.request-card { margin-top: 24px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.request-card ol { margin-top: 14px; }
.document-end { padding-top: 22px; border-top: 1px solid var(--line-strong); color: var(--muted); font-family: var(--font-utility); font-size: 11px; }

.site-footer {
  width: min(100% - 48px, var(--page));
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 13px;
}
.site-footer div { display: grid; }
.site-footer b { color: var(--ink); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .document-meta { max-width: 680px; }
  .policy-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 44px; }
}

@media (max-width: 900px) {
  :root { --header: 64px; }
  body { font-size: 15px; }
  .site-header { padding-inline: 16px; }
  .header-action { padding-inline: 0; font-size: 12px; }
  main { padding-inline: 18px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(38px, 8vw, 48px); }
  .plain-summary { padding-block: 48px; }
  .policy-layout { display: block; padding-top: 42px; }
  .policy-nav { position: static; margin-bottom: 54px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .policy-nav ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .policy-document > section { grid-template-columns: 36px minmax(0, 1fr); gap: 12px; padding-bottom: 56px; }
  .policy-document > section + section { padding-top: 50px; }
  .project-list { grid-template-columns: 1fr; }
  .project-list article { border-bottom: 1px solid var(--line); }
  .measure-list { grid-template-columns: 1fr; }
  .request-section > div:last-child { padding-left: 18px; }
}

@media (max-width: 560px) {
  .brand b { font-size: 13px; }
  .brand small { display: none; }
  .header-action { max-width: 150px; line-height: 1.15; text-align: center; }
  .hero { padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { font-size: 36px; }
  .lead { margin-top: 24px; font-size: 17px; }
  .document-meta div { grid-template-columns: 100px minmax(0, 1fr); }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-grid article { min-height: 0; border-bottom: 1px solid var(--line); }
  .policy-nav ol { grid-template-columns: 1fr; }
  .policy-document > section { display: block; }
  .section-number { margin-bottom: 8px; }
  .operator-card div { grid-template-columns: 1fr; gap: 4px; }
  .site-footer { width: calc(100% - 36px); min-height: 140px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media print {
  :root { --canvas: white; }
  body { background: white; color: black; font-size: 11pt; }
  .site-header, .skip-link, .policy-nav, .site-footer { display: none; }
  main { width: 100%; padding: 0; }
  .hero { min-height: auto; padding: 0 0 28px; }
  .hero h1 { font-size: 34pt; }
  .plain-summary { padding: 28px 0; }
  .summary-grid { break-inside: avoid; }
  .policy-layout { display: block; padding: 34px 0 0; }
  .policy-document { max-width: none; }
  .policy-document > section { grid-template-columns: 36px minmax(0, 1fr); break-inside: auto; }
  .project-list, .operator-card, .table-wrap, .request-card { break-inside: avoid; }
  a { color: black; text-decoration: none; }
}
