:root {
  --text: #1a1a1a;
  --muted: #666;
  --border: #e0e0e0;
  --bg: #fff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding: 3rem 1.5rem;
}

header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

header a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

header a::before {
  content: "← ";
}

header a:hover {
  color: var(--text);
}

main {
  max-width: 640px;
  margin: 0 auto;
}

footer {
  max-width: 640px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

footer address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

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

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

h1 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

h2 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

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

h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}


ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

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

ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Privacy policy prose */
.prose h2 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-top: none;
  padding-top: 0;
}

.prose h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}

.prose p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.prose ul li {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.prose strong {
  font-weight: 600;
}

.prose em {
  color: var(--muted);
  font-style: italic;
}
