:root {
  --ink: #EDEBF7;
  --ink-soft: #A8A2C4;
  --paper: #100E20;
  --card: #17152B;
  --line: #2E2A4A;
  --accent: #7C6EF2;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body), Arial, sans-serif;
  background: var(--paper);
  background-image: radial-gradient(circle at 18% 0%, #241F47 0%, var(--paper) 55%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ---- header ---- */
.policy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--ink);
}

.nav-brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: white;
}

.nav-brand-name {
  font-family: var(--font-display), sans-serif;
  font-weight: 600;
  font-size: 14.5px;
}

.nav-crumb {
  font-size: 12px;
  color: var(--ink-soft);
}

.back-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.back-link:hover { text-decoration: underline; }

/* ---- content ---- */
.policy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 70px;
}

h1 {
  font-family: var(--font-display), sans-serif;
  font-size: 28px;
  margin: 0 0 6px 0;
}

.updated {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0 0 28px 0;
}

.intro {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 8px;
}

h2 {
  font-family: var(--font-display), sans-serif;
  font-size: 16.5px;
  margin: 32px 0 10px 0;
  color: var(--ink);
}

p, li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

ul { padding-left: 20px; }

a { color: var(--accent); }

strong { color: var(--ink); font-weight: 600; }

.policy-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}
