/* Shared styling for the legal / support pages.
   Kept in step with index.html's palette so a visitor who clicks Privacy from
   an ad never feels like they've left the site — and, more to the point, never
   leaves getpolaris.net at all.  These pages exist BECAUSE the footer used to
   send people to nord-tech.org, whose title carries the platform name that
   this domain deliberately avoids. */
:root {
  --bg: #0a0a0a; --panel: #141414; --border: rgba(255,255,255,.09);
  --text: #f2f2f2; --muted: #a3a3a3;
  --gold1: #f3d27c; --gold2: #caa23e; --gold-text: #e8c15a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--text);
  font: 16px/1.6 "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-text); }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

header { padding: 18px 0; border-bottom: 1px solid var(--border); }
header .row { display: flex; align-items: center; justify-content: space-between; }
header .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
header .brand img { width: 26px; height: 26px; }
header .back { font-size: 14px; color: var(--muted); text-decoration: none; }
header .back:hover { color: var(--text); }

main { padding: 48px 0 64px; }
h1 { font-size: 30px; line-height: 1.25; margin-bottom: 8px; }
h2 { font-size: 20px; margin: 32px 0 8px; }
.updated { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
p { margin-bottom: 16px; }
ul { margin: 0 0 16px 22px; }
li { margin-bottom: 8px; }
strong { color: #fff; }

.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px; margin-top: 22px;
}
.card h2 { margin-top: 0; }
.btn {
  display: inline-block; margin-top: 14px; border-radius: 11px;
  padding: 11px 18px; text-decoration: none; font-weight: 700; font-size: 15px;
  background: linear-gradient(180deg, var(--gold1), var(--gold2)); color: #1a1400;
}
.note { font-size: 13px; color: var(--muted); margin-top: 12px; }

footer {
  border-top: 1px solid var(--border); padding: 28px 0 40px;
  font-size: 13px; color: var(--muted);
}
footer .row { display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: space-between; align-items: center; }
footer a { color: var(--muted); }
