/* Deliberately one small stylesheet with no build step and no dependencies.
   These two pages are store-review prerequisites that must load fast, stay up,
   and keep working untouched for years — a framework here would be a liability,
   not a feature. Brand green #0A7B4B matches the apps. */

:root {
  --ink: #1a1a2e;
  --muted: #5b5b73;
  --rule: #e3e3ea;
  --brand: #0a7b4b;
  --bg: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9e9f0;
    --muted: #a0a0b4;
    --rule: #2a2a4e;
    --brand: #3fbf85;
    --bg: #16213e;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
}

.crumb { margin: 0 0 2rem; font-size: 0.875rem; }
.crumb a { color: var(--brand); font-weight: 600; text-decoration: none; }

h1 { font-size: 1.9rem; line-height: 1.2; margin: 0 0 0.4rem; letter-spacing: -0.01em; }
h2 {
  font-size: 1.2rem;
  margin: 2.5rem 0 0.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  letter-spacing: -0.005em;
}
h3 { font-size: 1rem; margin: 1.5rem 0 0.35rem; }

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

p, ul, ol { margin: 0 0 1rem; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

a { color: var(--brand); }
strong { font-weight: 650; }

@media (max-width: 34rem) {
  main { padding: 1.75rem 1rem 4rem; }
  h1 { font-size: 1.6rem; }
}
