/* legal.css — shared styling for Privacy, Terms, Delete-account pages.
   Matches the Echoes brand (warm-dark + brass, Newsreader serif). */
:root {
  --bg: #0e0e10;
  --bg-raised: #16161a;
  --paper: #ececee;
  --paper-2: rgba(236, 236, 238, 0.72);
  --paper-3: rgba(236, 236, 238, 0.45);
  --brass: #e8a87c;
  --hairline: rgba(255, 255, 255, 0.08);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --ui: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "IBM Plex Mono", SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brass); text-decoration: none; }
a:hover { color: var(--paper); }
.wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
.nav { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.nav .mark { width: 24px; height: 24px; }
.nav .wordmark { font-family: var(--serif); font-size: 19px; font-weight: 500; }
.nav .wordmark em { font-style: italic; color: var(--brass); font-weight: 400; }
.nav .back { margin-left: auto; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--paper-3); }
.nav .back:hover { color: var(--paper); }
h1 { font-family: var(--serif); font-weight: 500; font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 8px; }
.updated { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--paper-3); margin: 0 0 40px; }
h2 { font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.2; margin: 44px 0 12px; }
h3 { font-family: var(--ui); font-weight: 600; font-size: 16px; margin: 28px 0 6px; color: var(--paper); }
p, li { color: var(--paper-2); }
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 22px; }
li { margin: 6px 0; }
strong { color: var(--paper); font-weight: 600; }
code { font-family: var(--mono); font-size: 13px; color: var(--brass); background: rgba(232,168,124,0.08); padding: 2px 6px; border-radius: 3px; }
.callout { background: var(--bg-raised); border: 1px solid var(--hairline); border-radius: 8px; padding: 20px 22px; margin: 20px 0; }
.callout p:last-child { margin-bottom: 0; }
.placeholder { color: var(--brass); font-family: var(--mono); font-size: 0.92em; }
.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps li { counter-increment: step; padding-left: 40px; position: relative; margin: 14px 0; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border: 1px solid var(--hairline); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; color: var(--brass); }
footer { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--hairline); font-family: var(--mono); font-size: 12px; color: var(--paper-3); }
