:root {
  --bg: #121212;
  --surface: #1a1a1e;
  --text: #e8e8ec;
  --muted: #9ca3af;
  --cyan: #00e5ff;
  --pink: #ff2d95;
  --yellow: #ffe600;
  --border: rgba(255, 255, 255, 0.08);
  --max-width: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

.policy-header {
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
}

.policy-logo {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.policy-logo span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.policy-logo span:nth-child(1) {
  background: var(--cyan);
  color: var(--cyan);
}

.policy-logo span:nth-child(2) {
  background: var(--pink);
  color: var(--pink);
}

.policy-logo span:nth-child(3) {
  background: var(--yellow);
  color: var(--yellow);
}

.policy-header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.policy-header .subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-header .updated {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

h2:first-of-type {
  margin-top: 0;
}

p,
li {
  color: var(--text);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.card {
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.policy-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.policy-footer a {
  color: var(--muted);
}

.policy-footer a:hover {
  color: var(--cyan);
}
