/* Shared chrome for the policy pages. Same tokens as the app so these read as
   part of the product rather than a text file someone forgot to style. */
:root {
  --bg: #f7f6f3; --card: #fff; --sunk: #faf9f6; --ink: #191b19; --muted: #6b7169;
  --line: #e5e3dd; --accent: #1f4d3f; --accent-soft: #e7eee9; --amber: #a9670c;
  --ui: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e100f; --card: #161917; --sunk: #1c201e; --ink: #e8eae7; --muted: #949c93;
    --line: #282d2a; --accent: #6bbb99; --accent-soft: #1b2a24; --amber: #d8a24f;
  }
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink);
       font: 400 15px/1.7 var(--ui); -webkit-font-smoothing: antialiased; }
a { color: var(--accent); }
a:hover { text-decoration: underline; }

header { background: var(--card); border-bottom: 1px solid var(--line); padding: 14px 0; }
header .in { max-width: 720px; margin: 0 auto; padding: 0 24px;
             display: flex; align-items: center; gap: 10px; }
.lockup { display: flex; align-items: center; gap: 9px; color: var(--accent); }
.wordmark { font-family: var(--display); font-weight: 500; font-size: 19px;
            letter-spacing: -.01em; line-height: 1; }
header nav { margin-left: auto; display: flex; gap: 16px; font-size: 13.5px; }

main { max-width: 720px; margin: 0 auto; padding: 44px 24px 90px; }
h1 { font-family: var(--display); font-weight: 500; font-size: 38px;
     letter-spacing: -.015em; margin: 0 0 6px; line-height: 1.15; }
.ver { color: var(--muted); font-size: 13px; margin: 0 0 8px;
       text-transform: uppercase; letter-spacing: .07em; }
.lede { color: var(--muted); font-size: 16px; margin: 0 0 40px;
        padding-bottom: 28px; border-bottom: 1px solid var(--line); }
h2 { font-size: 13px; font-weight: 600; text-transform: uppercase;
     letter-spacing: .09em; color: var(--accent); margin: 44px 0 12px; }
h3 { font-size: 15.5px; font-weight: 600; margin: 26px 0 6px; }
p, li { color: var(--ink); }
ul { padding-left: 20px; }
li { margin-bottom: 8px; }
li::marker { color: var(--muted); }
strong { font-weight: 600; }

/* the passages a reader must not skim past */
.callout { background: var(--sunk); border: 1px solid var(--line);
           border-left: 3px solid var(--accent); border-radius: 8px;
           padding: 16px 20px; margin: 22px 0; }
.callout.warn { border-left-color: var(--amber); }
.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

table { border-collapse: collapse; width: 100%; margin: 18px 0; font-size: 14px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line);
         vertical-align: top; }
th { font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em;
     color: var(--muted); font-weight: 600; }
.wrap { overflow-x: auto; }

footer { border-top: 1px solid var(--line); margin-top: 56px; padding-top: 22px;
         color: var(--muted); font-size: 13px; }
