/* The app's own palette, from Disposition/Theme.swift — warm paper rather than
   clinical white, an ink with a green cast, and the deep field green as accent. */
:root {
  --ink: #161C18;
  --slate: #5B6961;
  --faint: #78847C;
  --hairline: #DDD8CC;
  --surface: #FFFDF8;
  --canvas: #F3F0E8;
  --accent: #146149;
  --stop: #B02A21;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #EFF2ED;
    --slate: #9AA79E;
    --faint: #6B7A71;
    --hairline: #333D36;
    --surface: #18211C;
    --canvas: #0D1310;
    --accent: #53C79B;
    --stop: #FF8D82;
  }
}

* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--canvas);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 680px; margin: 0 auto; }

header { padding: 56px 0 8px; }
h1 { font-size: 2rem; line-height: 1.15; margin: 0 0 6px; letter-spacing: -0.02em; }
.tagline { color: var(--slate); margin: 0 0 8px; font-size: 1.05rem; }

h2 {
  font-size: 1.15rem; margin: 40px 0 10px; letter-spacing: -0.01em;
  padding-top: 20px; border-top: 1px solid var(--hairline);
}
h3 { font-size: 1rem; margin: 24px 0 6px; }
p, li { color: var(--ink); }
p { margin: 0 0 14px; }
ul { padding-left: 22px; margin: 0 0 14px; }
li { margin-bottom: 7px; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 18px 0;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }

.note { color: var(--slate); font-size: 0.92rem; }
.warn { color: var(--stop); font-weight: 600; }

/* The coverage list is the single most important thing on the page: a reader
   whose state is missing must find that out here, not after paying attention. */
.states {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 4px; padding: 0; list-style: none;
}
.states li {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 8px; padding: 4px 10px; font-size: 0.88rem; margin: 0;
}
.states li.partial { border-color: var(--stop); color: var(--stop); }

footer {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--hairline);
  color: var(--slate); font-size: 0.9rem;
}
footer a { margin-right: 16px; }
