/* Shared shell for the legal pages (privacy / cookies / terms / accessibility).
   These pages exist to be read and to be defensible, so: high contrast, real
   text sizes, no animation, no tracking, works with the browser zoomed to 200%. */
:root {
  color-scheme: dark;
  --canvas: #0d1615;
  --ink: #e9f3f1;
  --muted: #a7c0bb;
  --accent: #7fe0c8;
  --accent-2: #b8efe0;
  --line: #1e2f2c;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Assistant", "Heebo", "Segoe UI", Arial, sans-serif;
  line-height: 1.75;
  font-size: 17px;
}
header.legal-top { padding: 20px 24px; border-bottom: 1px solid var(--line); }
header.legal-top a { font-weight: 700; text-decoration: none; font-size: 1.05rem; color: var(--accent); }
main { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
h1 { font-size: 1.9rem; color: var(--accent); margin: 0 0 4px; line-height: 1.3; }
.updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 32px; }
h2 { font-size: 1.15rem; margin: 34px 0 8px; color: var(--accent-2); }
h3 { font-size: 1rem; margin: 20px 0 4px; }
p, li { margin: 0 0 10px; }
ul, ol { padding-inline-start: 1.4rem; }
a { color: var(--accent); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.note {
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--accent);
  border-radius: 10px;
  background: rgba(127, 224, 200, 0.05);
  padding: 14px 16px;
  margin: 20px 0;
}
/* Wide tables must scroll inside themselves — never push the page sideways. */
.table-scroll { overflow-x: auto; margin: 14px 0; }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: 0.92rem; }
th, td { border: 1px solid var(--line); padding: 9px 11px; text-align: start; vertical-align: top; }
th { background: rgba(127, 224, 200, 0.07); color: var(--accent-2); }
footer.legal-foot {
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}
footer.legal-foot a { margin: 0 6px; }
.skip {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  background: var(--accent);
  color: #04211d;
  padding: 10px 16px;
  font-weight: 700;
  z-index: 10;
}
.skip:focus { inset-inline-start: 0; }
