:root {
  color-scheme: light;
  --background: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --accent: #06c;
  --border: #d2d2d7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--background); }

body {
  background: var(--background);
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  min-height: 100vh;
}

.privacy-theme {
  background-color: #ffffff;
  color: #1d1d1f;
}

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

.site-header,
footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 61.25rem;
  padding: 0 1.5rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  height: 3.25rem;
}

.brand {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

nav { display: flex; gap: 1.5rem; }
nav a { color: var(--text); font-size: 0.82rem; text-decoration: none; }
nav a:hover { color: var(--accent); }

.document {
  margin: 0 auto;
  max-width: 52rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  text-transform: none;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.document h1 { font-size: clamp(2.25rem, 6vw, 3.25rem); }

.document {
  margin-bottom: 5rem;
  margin-top: 5rem;
  padding-bottom: 1rem;
}

.document h2 {
  border-top: 1px solid var(--border);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 2.75rem;
  padding-top: 2rem;
}

.document h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 1.75rem;
}

.document p,
.document li { color: #424245; }
.document strong { color: var(--text); }
.meta { color: var(--muted); font-size: 0.9rem; }

.contact-card {
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  min-height: 5rem;
}

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

@media (max-width: 600px) {
  .site-header,
  footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  nav { gap: 1rem; }
  .document { margin-top: 3rem; padding-left: 1.25rem; padding-right: 1.25rem; }
  footer { align-items: flex-start; flex-direction: column; gap: 0.35rem; justify-content: center; }
}
