/* Shared stylesheet for the public document pages (privacy, terms, 404) —
   night-ocean theme matching the landing page. */
:root {
  --night-0: #060b13;
  --night-1: #0b1524;
  --night-2: #0d1b2e;
  --card: #0c1626;
  --line: rgba(148, 184, 222, 0.16);
  --foam: #eef6ff;
  --muted: #9db1c7;
  --gold: #ffc24b;
  --mint: #63f2c4;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--night-0) 0%, var(--night-1) 55%, var(--night-2) 100%);
  color: var(--foam);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 1.5rem 1.25rem 3rem;
}
.site-header {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.brand {
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--foam);
  text-decoration: none;
}
.back-home {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 22, 38, 0.7);
  color: var(--foam);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.back-home:hover { background: rgba(99, 242, 196, 0.08); }
main {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(2, 8, 16, 0.5);
  padding: 2.2rem clamp(1.25rem, 4vw, 2.75rem);
}
h1 { font-size: 1.9rem; margin: 0 0 0.25rem; letter-spacing: -0.02em; }
h2 {
  font-size: 1.2rem;
  margin: 2.2rem 0 0.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  letter-spacing: -0.01em;
  color: var(--gold);
}
h2:first-of-type { border-top: none; padding-top: 0; }
p, li { color: var(--foam); }
a { color: var(--mint); }
.meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }
strong { color: var(--foam); }
.note {
  color: var(--muted);
  font-size: 0.92rem;
}
.summary {
  margin: 1.2rem 0;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(99, 242, 196, 0.3);
  border-radius: 12px;
  background: rgba(99, 242, 196, 0.06);
  color: var(--foam);
}
footer {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}
