:root {
  color-scheme: dark;
  --bg: #09090b;
  --panel: #121217;
  --text: #f5f5f7;
  --muted: #b3b3bf;
  --line: #2b2b36;
  --accent: #b794ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
}

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

.policy-home {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.policy-home .panel {
  width: 100%;
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 24px;
}

.policy-home h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.policy-home p {
  color: var(--muted);
}

.policy-home section {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.policy-home h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.policy-home a {
  text-decoration: none;
  display: inline-block;
  margin-right: 18px;
  margin-top: 8px;
  font-weight: 600;
}

.policy-home a:hover {
  text-decoration: underline;
}

.policy-doc {
  line-height: 1.65;
}

.policy-doc main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 70px;
}

.policy-doc h1,
.policy-doc h2 {
  line-height: 1.25;
}

.policy-doc h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.policy-doc h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.policy-doc .lead {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.policy-doc .card {
  background: color-mix(in srgb, var(--panel) 92%, black);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin: 14px 0;
}

.policy-doc ul {
  padding-left: 1.1rem;
}

.policy-doc .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-doc footer {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
