/* Pulled from tokens.json color.dark — the same Navy Brass palette the app
   draws with, so somebody arriving from an invite link recognises where they
   are. Copied rather than generated: three static pages are not worth a build
   step, and if the palette ever moves these are the twelve values to re-copy. */
:root {
  --canvas: #121A28;
  --surface: #1C2739;
  --hairline: rgba(255,255,255,0.09);
  --text-primary: #E8ECF3;
  --text-secondary: #A9B6CB;
  --text-muted: #8A97AD;
  --credit: #6FD1A6;
  --credit-border: rgba(111,209,166,0.26);
  --debit: #E0A24A;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--canvas);
  color: var(--text-primary);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

header { padding: 56px 0 8px; }

.wordmark {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--credit);
  text-transform: uppercase;
  margin: 0;
}

h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 10px 0 6px;
}

.lede { color: var(--text-secondary); margin: 0 0 8px; }

.updated { color: var(--text-muted); font-size: 13px; margin: 0 0 40px; }

h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 40px 0 10px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

h2:first-of-type { border-top: 0; padding-top: 0; }

h3 { font-size: 15px; font-weight: 600; margin: 24px 0 6px; color: var(--text-primary); }

p, li { color: var(--text-secondary); }

strong { color: var(--text-primary); font-weight: 600; }

ul { padding-left: 20px; }
li { margin-bottom: 8px; }

a { color: var(--credit); text-decoration-color: var(--credit-border); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--credit); }

.card {
  background: var(--surface);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 24px 0;
}

.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.card p:first-child { margin-top: 0; }

.note { border-left: 2px solid var(--debit); padding-left: 14px; margin: 24px 0; }
.note p { margin: 0; }

footer {
  max-width: 660px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--text-muted);
  font-size: 13px;
}

footer a { margin-right: 18px; }
