/* Shared styling for the scre.me legal/policy pages (privacy, terms, legal).
   Matches the thingwicked.html look: site fonts, dark ground, quiet accents. */
:root {
  --heading: 'Unbounded', sans-serif;
  --body: 'Space Grotesk', sans-serif;
  --text: #e9e9ed;
  --muted: oklch(0.78 0.02 20);
  --faint: oklch(0.66 0.025 20);
  --accent: oklch(0.62 0.16 22);
  --accent-300: oklch(0.80 0.08 22);
  --divider: color-mix(in srgb, #ede9e9 16%, transparent);
  --surface: oklch(0.24 0.04 20);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(170deg, oklch(0.16 0.03 18) 0%, oklch(0.21 0.045 20) 70%, oklch(0.26 0.07 22) 100%);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
}
main { max-width: 780px; margin: 0 auto; padding: 64px 32px 96px; }
nav.crumb { font-size: 13px; margin-bottom: 36px; }
nav.crumb a { color: var(--faint); }
.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.kicker .mark { display: inline-block; width: 28px; height: 2px; background: var(--accent); }
.kicker .label { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-300); }
h1 { font-family: var(--heading); font-size: 30px; font-weight: 600; line-height: 1.22; letter-spacing: -.01em; margin: 0 0 10px; }
.updated { font-size: 13px; color: var(--faint); margin-bottom: 40px; }
h2 { font-family: var(--heading); font-size: 16.5px; font-weight: 500; margin: 44px 0 12px; }
h3 { font-family: var(--body); font-size: 15px; font-weight: 700; color: var(--text); margin: 26px 0 8px; }
p, li { font-size: 15.5px; color: var(--muted); }
p { margin: 0 0 14px; }
ul, ol { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 6px; }
li::marker { color: var(--accent-300); }
strong { color: var(--text); font-weight: 600; }
a { color: var(--accent-300); text-decoration: none; }
a:hover { color: oklch(0.88 0.05 22); }
table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 8px 0 18px; }
th { text-align: left; font-weight: 500; color: var(--faint); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 9px 12px; border-bottom: 1px solid var(--divider); }
td { padding: 10px 12px; border-bottom: 1px solid var(--divider); color: var(--muted); vertical-align: top; }
td:first-child { color: var(--text); font-weight: 500; }
.card { background: color-mix(in srgb, var(--surface) 70%, transparent); border: 1px solid var(--divider); border-radius: 10px; padding: 18px 22px; margin: 8px 0 18px; }
/* Placeholder values pending owner/counsel confirmation — unmistakable on the page. */
mark.todo {
  background: color-mix(in srgb, #e0a83c 22%, transparent);
  color: #f2d9a4;
  border-radius: 4px;
  padding: 0 5px;
  font-style: normal;
}
footer { margin-top: 72px; padding-top: 20px; border-top: 1px solid var(--divider); font-size: 13px; color: var(--faint); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer .links { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 560px) {
  main { padding: 44px 20px 64px; }
  h1 { font-size: 24px; }
  td, th { padding: 8px 8px; }
}
