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

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #111111;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --accent: #111111;
  --max-width: 640px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 64px;
  min-height: 100vh;
}

header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
}

.updated {
  font-size: 13px;
  color: var(--text-muted);
}

nav.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
}

nav.legal-nav a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}

nav.legal-nav a:hover {
  color: var(--text);
  text-decoration: underline;
}

nav.legal-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

main section {
  margin-bottom: 32px;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  color: var(--text-secondary);
  margin: 0 0 12px 20px;
}

li {
  margin-bottom: 6px;
}

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

footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

footer a {
  color: var(--text-secondary);
}

@media (max-width: 480px) {
  .page {
    padding: 32px 20px 48px;
  }

  h1 {
    font-size: 24px;
  }
}
