:root {
  color-scheme: light;
  --paper: #f8f5ff;
  --surface: #ffffff;
  --ink: #25104b;
  --muted: #60536f;
  --line: #d8cbe9;
  --accent: #dec5ff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 100%;
  line-height: 1.65;
}
* { box-sizing: border-box; }
body { margin: 0; }
a { color: #5e239d; text-underline-offset: .2em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: .15em; }
a:focus-visible { outline: 3px solid #7635c0; outline-offset: 4px; border-radius: 2px; }
.skip-link { position: absolute; top: -8rem; left: 1rem; padding: .75rem; background: white; z-index: 1; }
.skip-link:focus { top: 1rem; }
.wrap { width: min(100% - 2.5rem, 70rem); margin-inline: auto; }
header { border-bottom: 1px solid var(--line); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; padding-block: 1.25rem; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; font-size: 1.2rem; letter-spacing: -.03em; color: var(--ink); text-decoration: none; }
.brand img { border-radius: .75rem; flex-shrink: 0; }
nav { display: flex; flex-wrap: wrap; gap: .25rem 1rem; }
nav a { display: inline-flex; align-items: center; min-height: 44px; font-size: .95rem; }
nav a[aria-current="page"] { font-weight: 750; text-decoration-thickness: 2px; }
main { padding-block: clamp(2rem, 6vw, 4rem); }
.document { max-width: 49rem; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -.025em; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 6vw, 3.7rem); margin: .75rem 0 1.25rem; }
h2 { margin-top: 2.25rem; font-size: 1.45rem; }
h3 { font-size: 1.15rem; }
p, ul, ol { margin-block: 1rem; }
li + li { margin-top: .6rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 800; }
.lede { font-size: 1.2rem; max-width: 43rem; }
.muted, .meta { color: var(--muted); }
.meta { font-size: .9rem; }
.notice { border-left: 4px solid #8346bf; background: #eee2ff; padding: 1rem 1.2rem; margin-block: 1.5rem; border-radius: 0 .5rem .5rem 0; }
.notice p { margin-block: .25rem; }
.hero { background: linear-gradient(135deg, #210746, #55208d); color: white; border-radius: 1.25rem; padding: clamp(1.5rem, 5vw, 3rem); }
.hero-logo { display: block; width: clamp(7rem, 18vw, 11rem); height: auto; border-radius: 1.25rem; margin-bottom: 1.5rem; }
.hero .eyebrow { color: var(--accent); }
.hero p { max-width: 43rem; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-block: 1.5rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: .85rem; padding: 1.5rem; }
.card h2 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
footer { border-top: 1px solid var(--line); padding-block: 1.5rem 2rem; font-size: .9rem; color: var(--muted); }
footer p { margin-block: .4rem; }
code { font-size: .9em; overflow-wrap: anywhere; }
@media (max-width: 38rem) {
  .grid { grid-template-columns: 1fr; }
  .wrap { width: min(100% - 2rem, 70rem); }
  nav { column-gap: .85rem; }
}
@media print {
  body { background: white; color: black; }
  header, .skip-link { display: none; }
  main { padding-block: 0; }
  .hero, .notice, .card { background: white; color: black; }
  a { color: black; }
  .wrap { width: 100%; }
}
