/* Privacy policy page.
 *
 * A deliberately standalone layout — it does not use base.css, because the
 * policy is a single narrow column with its own background and spacing rather
 * than the site's navbar/#content shell. It does share tokens.css, so the
 * colours here track the rest of the site instead of being hardcoded hex
 * values duplicated from the design system.
 */

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

body {
  font-family: 'Geist', sans-serif;
  background: var(--bg-deep);
  color: var(--gray-800);
  padding: 60px 24px;
  line-height: 1.7;
}

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

h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

h2 {
  font-size: 19px;
  font-weight: 600;
  color: var(--gray-900);
  margin: 36px 0 16px;
}

.updated {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--gray-700);
}

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

a:hover {
  text-decoration: underline;
}

.nav-back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-hairline);
  font-size: 14px;
}
