/* Shared styling for /privacy and /terms.
   Kept as its own file rather than duplicating the app's inline block: legal
   pages need typography and nothing else, and they should not drift from the
   main page's palette when it changes. Variables mirror index.html. */

:root {
  --bg: #0d0f13;
  --panel: #14171d;
  --line: #232833;
  --text: #e8eaf0;
  --muted: #8b93a5;
  --accent: #5b8cff;
  --radius: 14px;
}
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 32px 20px 80px; }

.back {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 28px;
}
.back:hover { color: var(--accent); }

h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.updated { color: var(--muted); font-size: 0.85rem; margin: 0 0 32px; }

/* The lede sits in a panel so the "there isn't much to tell you" summary reads
   as the answer rather than as the first clause of a long document. */
.lede {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 32px;
}
.lede h2 { margin-top: 0; }

h2 {
  font-size: 1.02rem;
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}

p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 7px; }

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

strong { color: var(--text); }

.contact {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}
footer a { color: var(--muted); margin: 0 8px; }
footer a:hover { color: var(--accent); }

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  .wrap { padding: 24px 18px 60px; }
}
