/* One stylesheet for the three pages. Same origin, so a plain link is fine.
   Nothing is fetched from anywhere else — no fonts, no analytics, no trackers.
   For a privacy page that would be a contradiction, and for the others it is just
   good manners. */

:root {
  --red: #d91c21;
  --red-dark: #b8171b;
  --ink: #1b1614;
  --body: #3c3532;
  --muted: #6d6360;
  --page: #fbf8f5;
  --card: #ffffff;
  --line: #e8e0da;
}

@media (prefers-color-scheme: dark) {
  :root {
    --red: #ff5a52;
    --red-dark: #ff7a72;
    --ink: #f6f1ec;
    --body: #d6ccc6;
    --muted: #9b8f8a;
    --page: #16120f;
    --card: #211b18;
    --line: #322a26;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 24px 96px;
  background: var(--page);
  color: var(--body);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main { max-width: 660px; margin: 0 auto; }

h1, h2, h3 {
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.4rem; margin: 0 0 8px; }
h2 { font-size: 1.4rem; margin: 52px 0 14px; }
h3 { font-size: 1.05rem; margin: 30px 0 6px; font-family: inherit; font-weight: 650; }

p { margin: 0 0 18px; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red-dark); }
strong { color: var(--ink); font-weight: 650; }

/* Header */

header { padding: 72px 0 8px; text-align: center; }

.icon {
  width: 108px; height: 108px;
  border-radius: 24.5%;
  display: block;
  margin: 0 auto 26px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.16);
}

.tagline {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 30ch;
  margin: 0 auto;
}

.status {
  display: inline-block;
  margin-top: 26px;
  padding: 6px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  font-size: 0.86rem;
}

/* Steps */

ol.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }

ol.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
  margin-bottom: 24px;
}

ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 1px;
  width: 29px; height: 29px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 650;
  display: flex; align-items: center; justify-content: center;
}

ol.steps b { color: var(--ink); }

/* Plain-language table for the privacy page */

table { width: 100%; border-collapse: collapse; margin: 8px 0 26px; font-size: 0.95rem; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--ink); font-weight: 650; background: var(--card); }
td:first-child { color: var(--ink); width: 42%; }

.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 26px 0;
}
.note p:last-child { margin-bottom: 0; }

footer {
  max-width: 660px;
  margin: 72px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
footer a { margin-right: 18px; }

small.updated { display: block; color: var(--muted); margin-top: -6px; }

/* A true aside: relevant, disclosed, but not competing with the disclosure that
   actually matters. */
p.aside { font-size: 0.92rem; color: var(--muted); }
