/* /privacy and /terms. Loads AFTER site.css, which carries the real tokens,
   nav, footer and buttons lifted from the landing page. Everything here is only
   the reading-page layer on top. */

/* nav, footer, tokens, fonts and the page background all come from site.css,
   which is the homepage's stylesheet verbatim. Nothing here may redefine them —
   that divergence is exactly what made these pages look like another site. */
/* ⚠️ Reserve the scrollbar gutter so short pages line up with long ones. Without
   it a page that does not scroll gets a ~15px wider viewport and everything
   centred - the header included - sits a few pixels off from /privacy. The
   homepage needs no rule: it always scrolls, so the space is always taken. */
html { scrollbar-gutter: stable; }

footer { margin-top: 100px; }

.doc { max-width: 780px; margin: 0 auto; padding: 72px 28px 40px; }

.eyebrow {
  font-family: "Geist Mono", ui-monospace, Consolas, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--eyebrow); margin: 0 0 14px;
}
.doc h1 {
  font-size: clamp(34px, 5vw, 46px); font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.08; margin: 0 0 10px;
}
.updated { color: var(--text-dim); font-size: 14px; margin: 0 0 40px; }

/* The summary card, same surface treatment as the landing page's panels. */
.lede {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 8px;
  box-shadow: 0 0 40px -20px var(--gold-soft);
}
.lede p { margin: 0; color: var(--text-soft); font-size: 16px; }
.lede strong { color: var(--gold); }

.doc h2 {
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
  margin: 52px 0 12px; padding-top: 26px; border-top: 1px solid var(--line);
}
.doc p, .doc li { color: var(--text-soft); font-size: 15.5px; }
.doc ul { padding-left: 22px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--text); font-weight: 600; }
.doc a { color: var(--gold); }
.doc a:hover { text-decoration: underline; }
.doc code {
  font-family: "Geist Mono", ui-monospace, Consolas, monospace;
  font-size: 13.5px; color: var(--gold);
  background: var(--gold-faint); border: 1px solid var(--gold-soft);
  border-radius: 5px; padding: 1px 6px;
}

@media (max-width: 720px) {
  .doc { padding-top: 48px; }
  .nav-links { display: none; }
}
