/* Same-origin and deliberately the only stylesheet.
   No font CDN, no analytics, no third-party anything — a privacy policy that
   phones out to somebody else while claiming the app collects nothing is the one
   page where that would actually matter. System fonts only, for the same reason. */

:root {
  color-scheme: light dark;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --text: #1c1b19;
  --muted: #61605c;
  --rule: #e5e2dc;
  --accent: #9b1b3f;
  --measure: 34rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16151a;
    --surface: #1e1d23;
    --text: #eceaf0;
    --muted: #a29fab;
    --rule: #33313b;
    --accent: #f2879f;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 3rem 1.25rem 5rem;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

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

h1 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 3rem 0 0.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}

h3 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
}

p, ul { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }
li { margin-bottom: 0.5rem; }

a {
  color: var(--accent);
  text-underline-offset: 0.15em;
}

strong { font-weight: 600; }

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.meta span { display: block; }

.lede {
  font-size: 1.15rem;
  line-height: 1.55;
}

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  margin: 0 0 1.5rem;
}
.card p:last-child { margin-bottom: 0; }

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

/* The one place a wide element could force a horizontal scroll. */
address {
  font-style: normal;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
