:root {
  color-scheme: dark;
  --background: #09090b;
  --panel: #12151c;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --line: #27272a;
  --accent: #22d3ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.12), transparent 34rem),
    linear-gradient(180deg, #09090b 0%, #111827 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.policy-shell {
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.policy-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
}

.brand {
  margin: 0;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
}

.effective-date {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  margin-top: 2rem;
}

h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

p {
  margin: 0.8rem 0 0;
  color: #d4d4d8;
}

a {
  color: var(--accent);
  text-decoration-color: rgba(34, 211, 238, 0.45);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #67e8f9;
}
