/* Deliberately plain. These are documents people need to read and quote from,
   not a marketing surface. */
:root {
  --ink: #1a1a2e;
  --muted: #55556b;
  --rule: #e4e4ee;
  --accent: #6d5bf5;
  --bg: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ececf3;
    --muted: #a0a0b8;
    --rule: #2c2c3d;
    --accent: #9d90ff;
    --bg: #14141f;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0 auto;
  padding: 3rem 1.25rem 6rem;
  max-width: 46rem;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-text-size-adjust: 100%;
}

header { margin-bottom: 2.5rem; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}

h1 { font-size: 1.9rem; line-height: 1.25; margin: 0 0 .35rem; }
h2 { font-size: 1.2rem; margin: 2.4rem 0 .6rem; }
h3 { font-size: 1rem; margin: 1.6rem 0 .4rem; }

.updated { color: var(--muted); font-size: .9rem; margin: 0 0 2rem; }

p, li { color: var(--ink); }
li { margin-bottom: .4rem; }
a { color: var(--accent); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .95rem;
  display: block;
  overflow-x: auto;
}
th, td {
  text-align: left;
  padding: .6rem .7rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
th { font-weight: 600; }

.note {
  border-left: 3px solid var(--accent);
  padding: .1rem 0 .1rem 1rem;
  margin: 1.4rem 0;
  color: var(--muted);
}

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: .9rem;
}
footer a { margin-right: 1rem; }
