/* Flat ground, not a gradient. The app's navy and path-orange carry the brand;
   the page itself stays quiet so a legal document reads as a document. */
:root {
  --ground: #fbfbfd;
  --panel: #ffffff;
  --ink: #0b2038;
  --body: #33465c;
  --muted: #6b7c90;
  --rule: #e3e8ef;
  --accent: #ff4f00;
  --measure: 34rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0e1116;
    --panel: #131820;
    --ink: #e9edf3;
    --body: #b6c2d1;
    --muted: #8494a6;
    --rule: #222a35;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0 24px 96px;
  background: var(--ground);
  color: var(--body);
  font: 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
}

main { max-width: var(--measure); margin: 0 auto; }

/* Masthead */
.mast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 34px 0 0;
  margin-bottom: 56px;
}
.mast a {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.mast .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

header { margin-bottom: 34px; }
h1 {
  margin: 0;
  font-size: clamp(30px, 6vw, 38px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.updated {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.lede {
  margin: 20px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
}

h2 {
  margin: 52px 0 14px;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
/* A hairline above each section does the separating, so no boxes are needed. */
h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
  border-radius: 1px;
}

p, li { margin: 0 0 16px; text-wrap: pretty; }
ul { margin: 0 0 16px; padding-left: 22px; }
li::marker { color: var(--muted); }
strong { color: var(--ink); font-weight: 620; }

a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

footer {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }
