:root {
  /* Light (default) and dark (Deep Navy, the final pick over the earlier
     brand.html palette) — same tokens as index.html's inline styles,
     kept in sync by hand since that page is otherwise self-contained. */
  --ink: #f5f6f8;
  --deep: #edeef2;
  --surface: #ffffff;
  --border: #dee2e8;
  --chalk: #14171f;
  --slate: #5b6472;
  --blue-1: #93c5fd;
  --blue-2: #3b82f6;
  --blue-3: #1d4ed8;
  --success: #34d399;
  --max-width: 1120px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #161b26;
    --deep: #10141d;
    --surface: #1f2634;
    --border: #2c3446;
    --chalk: #edf1f7;
    --slate: #97a3b7;
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --ink: #161b26;
  --deep: #10141d;
  --surface: #1f2634;
  --border: #2c3446;
  --chalk: #edf1f7;
  --slate: #97a3b7;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--chalk);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  margin: 0;
}

a {
  color: var(--blue-1);
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--deep);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.lockup .word {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--chalk);
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
}

.site-nav a {
  color: var(--slate);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--chalk);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--deep);
  padding-block: 40px;
  font-size: 14px;
  color: var(--slate);
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--slate);
  text-decoration: none;
  margin-left: 20px;
}

.site-footer a:hover {
  color: var(--chalk);
}

/* ── Content pages (Support / Privacy / 404) ───────────────────────────── */

.page {
  padding-block: 72px 96px;
  max-width: 760px;
  margin: 0 auto;
  padding-inline: 24px;
}

.page .eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-2);
  font-weight: 600;
  margin-bottom: 12px;
}

.page h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 8px;
}

.page .updated {
  color: var(--slate);
  font-size: 14px;
  margin-bottom: 24px;
}

.draft-notice {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--chalk);
  line-height: 1.5;
}

.page h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 14px;
}

.page p,
.page li {
  color: var(--chalk);
  font-size: 16px;
}

.page ul {
  padding-left: 22px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.faq-item p {
  margin: 0;
  color: var(--slate);
}

.not-found {
  text-align: center;
  padding-block: 140px;
}

.not-found h1 {
  font-size: 96px;
  background: linear-gradient(90deg, var(--blue-1), var(--blue-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
