/* FPLBaller — holding site and legal pages.
   Self-contained: no fonts, no scripts, no third-party anything. That is not
   minimalism for its own sake — the privacy policy served by these pages
   promises no trackers, and a stylesheet that phones out would make it a lie. */

:root {
  --bg: #fbfaf9;
  --surface: #ffffff;
  --ink: #1c1a22;
  --ink-soft: #55505f;
  --ink-faint: #85808f;
  --accent: #4c2d92;
  --accent-soft: #ede8fa;
  --rule: #e5e1ec;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131118;
    --surface: #1b1822;
    --ink: #f0edf5;
    --ink-soft: #b3adc0;
    --ink-faint: #837d91;
    --accent: #b49cf2;
    --accent-soft: #251f36;
    --rule: #2e2839;
  }
}

* { box-sizing: border-box; }

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

.wrap { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }

header {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
  margin-bottom: 3rem;
}
header .wrap { display: flex; align-items: baseline; gap: 1.25rem; flex-wrap: wrap; }

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand span { color: var(--accent); }

nav { margin-left: auto; display: flex; gap: 1.25rem; }
nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.9rem; }
nav a:hover { color: var(--accent); }

h1 {
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
h2 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 2.75rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
h2:first-of-type { border-top: 0; padding-top: 0; }

.updated { color: var(--ink-faint); font-size: 0.9rem; margin: 0 0 2.5rem; }

p, li { color: var(--ink-soft); }
p { margin: 0 0 1.1rem; }
ul { padding-left: 1.2rem; margin: 0 0 1.1rem; }
li { margin-bottom: 0.45rem; }

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

.callout {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin: 0 0 1.75rem;
}
.callout p:last-child { margin-bottom: 0; }

/* The table is the one thing here that can overflow a phone, so it scrolls
   inside its own box rather than pushing the page sideways. */
.scroll { overflow-x: auto; margin: 0 0 1.5rem; }
table { border-collapse: collapse; width: 100%; font-size: 0.93rem; min-width: 30rem; }
th, td {
  text-align: left;
  padding: 0.6rem 0.9rem 0.6rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  color: var(--ink-soft);
}
th { color: var(--ink); font-weight: 650; white-space: nowrap; }

footer {
  margin-top: 4rem;
  border-top: 1px solid var(--rule);
  padding: 1.75rem 0 3rem;
  color: var(--ink-faint);
  font-size: 0.85rem;
}
footer p { color: var(--ink-faint); margin-bottom: 0.4rem; }

/* Holding page */
.hero { padding: 1rem 0 0; }
.hero h1 { font-size: 2.6rem; }
.lede { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 2rem; }
.pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
