/* Nova Rogues — minimal static site. No external fonts/CDNs (self-contained,
   fast, and nothing third-party loading on a privacy page). System font stack. */
:root {
  --bg: #0c0d14;
  --panel: #141622;
  --text: #d9dae4;
  --muted: #8b8da0;
  --accent: #c46a3d;        /* terracotta — style-bible player accent */
  --accent-soft: #e08a55;
  --border: #242738;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 17px;
}

a { color: var(--accent-soft); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* --- Landing hero --- */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 48px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 106, 61, 0.10), transparent 70%),
    var(--bg);
}
.hero h1 {
  font-size: clamp(40px, 9vw, 76px);
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  font-weight: 800;
}
.hero .accent { color: var(--accent); }
.hero .tagline { color: var(--muted); font-size: clamp(16px, 4vw, 21px); margin: 0 0 6px; }
.hero .sub { color: var(--muted); font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; }

.badges { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.badge {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding: 28px 0 48px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.footer a { margin: 0 10px; }

/* --- Policy / document pages --- */
.doc { padding: 56px 0 72px; }
.doc h1 { font-size: 32px; margin: 0 0 4px; }
.doc h2 { font-size: 22px; margin: 40px 0 12px; color: var(--accent-soft); }
.doc .meta { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.doc th, .doc td { border: 1px solid var(--border); padding: 9px 12px; text-align: left; vertical-align: top; }
.doc th { background: var(--panel); color: var(--text); }
.doc code { background: var(--panel); padding: 2px 6px; border-radius: 5px; font-size: 0.9em; }
.doc .back { display: inline-block; margin-bottom: 28px; color: var(--muted); }
