/* Shared styling for the public static pages Caddy serves directly.
   Deliberately tiny and dependency-free: these pages are read by Meta's App
   Review team and by querents, and they must render with no network access
   beyond the HTML itself. */
:root {
  --bg: #fbfaf8;
  --fg: #2b2b2f;
  --muted: #62626b;
  --rule: #e3e0da;
  --accent: #6b4e9e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17171a;
    --fg: #e9e7e3;
    --muted: #a3a1a8;
    --rule: #33333a;
    --accent: #b39ddb;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 2.5rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
main { max-width: 42rem; margin: 0 auto; }
h1 { font-size: 1.6rem; line-height: 1.25; margin: 0 0 .35rem; }
h2 { font-size: 1.1rem; margin: 2rem 0 .5rem; }
a { color: var(--accent); }
.sub { color: var(--muted); margin: 0 0 2rem; font-size: .95rem; }
.draft {
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: .85rem 1rem;
  margin: 0 0 2rem;
  font-size: .9rem;
}
ul { padding-left: 1.15rem; }
li { margin: .3rem 0; }
footer {
  margin-top: 3rem; padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--muted); font-size: .85rem;
}
code { background: rgba(128,128,128,.15); padding: .1em .35em; border-radius: 3px; }
