/* Shared styling for the plain-text pages (privacy, support), matching the
   landing page's palette and type so they do not read as bolted on. */
:root {
  --bg: #121414;
  --card: #1e2020;
  --border: #2e3131;
  --text: #e6e3e0;
  --muted: #9a9691;
  --accent: #ffb77d;
  --accent-strong: #ff8c00;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrap { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 24px; }

header { padding: 48px 0 0; }
header img { height: 38px; width: auto; display: block; }

main { flex: 1; padding: 32px 0 72px; }

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.updated { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }
.lede { margin-top: 20px; font-size: 1.05rem; color: var(--text); }

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
h3 { font-size: 1rem; font-weight: 600; margin-top: 22px; }
p { margin-top: 12px; color: var(--text); }
p.muted { color: var(--muted); }
ul { margin: 12px 0 0 20px; }
li { margin-top: 8px; }
li strong { font-weight: 600; }
a { color: var(--accent); }
a:hover { color: var(--accent-strong); }

.box {
  margin-top: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.box p:first-child { margin-top: 0; }

table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.95rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }

footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 0.88rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
footer a { color: var(--text); text-decoration: none; }
footer a:hover { color: var(--accent); }

@media (max-width: 520px) {
  table, thead, tbody, tr, th, td { display: block; }
  th { border: 0; padding-bottom: 0; }
  td { border-bottom: 1px solid var(--border); padding-top: 4px; }
}
