/* Gameday Manager — marketing + legal site.
   Same tokens as the app (src/constants/colors.ts) so the two read as one product.
   Navy is the identity surface; the accent is the DARKENED green, because the brand
   green fails WCAG AA as text. */
:root {
  --navy: #0D1B3D;
  --green: #2FA84F;        /* fills only */
  --accent: #1B7038;       /* 6.14:1 on white — safe as text */
  --text: #0B1220;
  --muted: #566072;
  --bg: #FFFFFF;
  --surface: #F4F6F9;
  --border: #DDE2EA;
  --radius: 16px;
  --max: 720px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --accent: #4ADE80;
    --text: #F2F5FA;
    --muted: #9BA6B8;
    --bg: #0A1020;
    --surface: #141C30;
    --border: #1E2841;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

header.site {
  background: var(--navy);
  padding: 18px 0;
}
header.site .wrap { display: flex; align-items: center; gap: 12px; }
header.site a { color: #fff; text-decoration: none; font-weight: 700; letter-spacing: .2px; }
header.site svg { display: block; }

main { padding: 48px 0 64px; }
h1 { font-size: 34px; line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.4px; }
h2 { font-size: 21px; line-height: 1.3; margin: 36px 0 10px; }
h3 { font-size: 17px; margin: 24px 0 6px; }
p, li { color: var(--text); }
.lede { font-size: 19px; color: var(--muted); margin: 0 0 28px; }
.muted { color: var(--muted); }
small { color: var(--muted); }
a { color: var(--accent); }
ul { padding-left: 20px; }
li { margin: 6px 0; }
hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 22px 0;
}
.pill {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--muted);
}
table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 700; }

footer.site { border-top: 1px solid var(--border); padding: 28px 0 48px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
footer.site a { text-decoration: none; }
footer.site .spacer { flex: 1; }
