:root {
  color-scheme: light dark;
  --ink: #10131a;
  --muted: #59626f;
  --faint: #8b95a3;
  --line: #e3e7ee;
  --bg: #ffffff;
  --panel: #f7f9fc;
  --accent: #1f6feb;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9edf4;
    --muted: #9aa4b2;
    --faint: #737e8d;
    --line: #232936;
    --bg: #0c0f15;
    --panel: #12161e;
    --accent: #6ea8ff;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.7 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
nav {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(10px);
  z-index: 10;
}
nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 3.75rem;
}
.brand {
  white-space: nowrap;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
nav a.link {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-size: 0.94rem;
}
nav a.link:hover {
  color: var(--ink);
}
header.hero {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}
header.page {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  max-width: 20ch;
}
header.page h1 {
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  max-width: none;
  margin-bottom: 0.5rem;
}
.lede {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 1.5rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--faint);
  margin: 0 0 1rem;
}
.updated {
  color: var(--faint);
  font-size: 0.92rem;
  margin: 0;
}
section {
  padding: 3.25rem 0;
  border-bottom: 1px solid var(--line);
}
section:last-of-type {
  border-bottom: 0;
}
section.prose {
  padding: 2.5rem 0;
}
h2 {
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
}
section.prose h2 {
  font-size: 1.2rem;
}
h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}
section.prose h3 {
  margin-top: 1.75rem;
}
p {
  margin: 0 0 1rem;
  max-width: 68ch;
}
a {
  color: var(--accent);
}
ul.plain {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  max-width: 68ch;
}
ul.plain li {
  margin-bottom: 0.45rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
ol.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
ol.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.35rem;
  max-width: 66ch;
}
ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}
ol.steps p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
dl.facts {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 0.65rem 1.25rem;
  margin: 1.5rem 0 0;
}
dl.facts dt {
  color: var(--faint);
  font-size: 0.92rem;
}
dl.facts dd {
  margin: 0;
}
address {
  font-style: normal;
  white-space: pre-line;
}
.note {
  color: var(--muted);
  font-size: 0.95rem;
  border-left: 2px solid var(--line);
  padding-left: 1rem;
  margin-top: 1.75rem;
}
table.data {
  border-collapse: collapse;
  width: 100%;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.95rem;
}
table.data th,
table.data td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0.9rem 0.6rem 0;
}
table.data th {
  color: var(--faint);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
table.data td:first-child {
  white-space: nowrap;
  padding-right: 1.5rem;
}
footer {
  padding: 2.25rem 0 3.5rem;
  color: var(--faint);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}
footer p {
  margin: 0.2rem 0;
}
footer a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 1rem;
}
footer a:hover {
  color: var(--ink);
}
footer .links {
  margin-bottom: 0.75rem;
}
@media (max-width: 40rem) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  dl.facts {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  dl.facts dd {
    margin-bottom: 1rem;
  }
  header.hero {
    padding: 3.25rem 0 2.5rem;
  }
  table.data td:first-child {
    white-space: normal;
  }
}
@media (max-width: 30rem) {
  nav .wrap {
    justify-content: center;
  }
  nav a.link {
    display: none;
  }
}
