@font-face {
  font-family: "Manrope";
  src: url("Manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #0b0d11; --bg2: #10131a; --panel: #161a22; --text: #eceef1;
  --muted: #9aa2ae; --line: #262c37; --line-soft: #1e242e;
  --accent: #fbc711; --accent-ink: #3d3102; --red: #f34236;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
}
* { margin: 0; box-sizing: border-box; }
body {
  background: var(--bg); color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.wrap { max-width: 46rem; margin: 0 auto; padding: 0 1.4rem; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--accent); color: var(--accent-ink); padding: 0.6rem 1rem; border-radius: 0 0 10px 0; font-weight: 700; }
.skip:focus-visible { left: 0; }
/* Solid, not frosted - a surface is a surface. */
.desk { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--line-soft); }
.desk-in { display: flex; align-items: center; gap: 1.1rem; padding: 0.65rem 1.4rem; max-width: 72rem; margin: 0 auto; }
.wordmark { font-weight: 800; letter-spacing: -0.03em; font-size: 1.1rem; text-decoration: none; }
.wordmark b { color: var(--accent); }
.desk nav { margin-left: auto; display: flex; gap: 1.1rem; align-items: center; }
.desk nav a { font-size: 0.85rem; font-weight: 600; color: var(--muted); text-decoration: none; }
.desk nav a:hover { color: var(--text); }
main { padding: 3.2rem 0 4rem; }
h1 { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1.4rem; }
h2 { font-size: 1.15rem; font-weight: 700; margin: 2rem 0 0.6rem; }
main p, main li { color: var(--muted); }
main p { margin: 0 0 0.9rem; }
main ul { margin: 0 0 0.9rem 1.2rem; padding: 0; }
main li { margin-bottom: 0.4rem; }
main b, main strong { color: var(--text); }
main a { color: var(--accent); font-weight: 600; text-decoration: none; }
main a:hover { text-decoration: underline; }
.updated { font-size: 0.85rem; margin-top: 2.4rem; }
footer { border-top: 1px solid var(--line-soft); background: var(--bg2); }
/* The legal line, the same shape as the front page and the rest of the
   estate: the company on the left, the five pages level with the last
   line of the address on the right. */
.legal { border-top: 1px solid var(--line-soft); background: var(--bg); padding: 1.25rem 0 1.75rem; }
.legal-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-end;
  justify-content: space-between;
}
.legal-text { margin: 0; color: var(--muted); font-size: 0.8125rem; line-height: 1.6; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-left: auto; justify-content: flex-end; }
.legal-links a { color: var(--muted); text-decoration: none; font-size: 0.8125rem; font-weight: 600; padding: 0.55rem 0; }
.legal-links a:hover { color: var(--text); text-decoration: underline; }
@media (max-width: 46rem) {
  .legal-links { margin-left: 0; justify-content: flex-start; gap: 1rem; }
}

/* The same wrap the front page needs: below about 700px the links stop
   fitting beside the wordmark and push the page sideways. */
@media (max-width: 700px) {
  .desk-in { flex-wrap: wrap; gap: 0.6rem 0.9rem; padding: 0.6rem 1rem; }
  .desk nav { margin-left: 0; width: 100%; gap: 0.9rem; flex-wrap: wrap; }
}

/* The open-source sub-footer: the marks, then where the code lives. */
.gh-foot { border-top: 1px solid var(--line-soft); padding: 1.25rem 0; }
.gh-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.gh-marks { display: flex; align-items: center; gap: 1rem; }
.gh-marks a { display: inline-flex; align-items: center; color: var(--muted); padding: 0.4rem 0; }
.gh-marks a:hover { color: var(--text); }
.gh-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-left: auto; justify-content: flex-end; }
.gh-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; padding: 0.55rem 0; }
.gh-links a:hover { color: var(--text); text-decoration: underline; }
/* Narrow screens: the links go under the marks, still left to right. */
@media (max-width: 46rem) {
  .gh-links { margin-left: 0; justify-content: flex-start; gap: 1rem; }
}
