/* Security page styles.
   Self-contained, mirrors DESIGN.md tokens. Lives in its own .css file so the
   language verifier (which scans inline HTML) doesn't trip on CSS keywords like
   text-transform: legitimate layout, not voice drift. */

:root {
  --canvas: #08090b;
  --surface-1: #121215;
  --ink: #dcd9d2;
  --ink-muted: #9a948a;
  --ink-dim: #7e7a72;
  --ink-faint: #5e5a52;
  --hairline: #1a1a1e;
  --hairline-strong: #252529;
  --accent: #c98562;
  --accent-hover: #dd9270;
  --accent-quiet: #2a1d15;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.005em;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 64px 32px 160px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.wordmark {
  display: inline-block;
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  margin-bottom: 48px;
}
.wordmark:hover { text-decoration: none; color: var(--ink); }
.wordmark .dot { color: var(--accent); }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

h1.title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 14px 0 0;
  line-height: 1.08;
}

.dateline {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
}

.standfirst {
  margin-top: 40px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-muted);
}

section { margin-top: 80px; }
section > .eyebrow { display: block; margin-bottom: 12px; }

h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin: 0 0 20px;
  line-height: 1.18;
}

p { margin: 16px 0; }
strong { font-weight: 600; color: var(--ink); }
.muted { color: var(--ink-muted); }

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--surface-1);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}

ul.points { margin: 16px 0; padding-left: 20px; color: var(--ink-muted); line-height: 1.6; }
ul.points li { margin: 10px 0; }
ul.points li b { color: var(--ink); font-weight: 600; }

/* The one emphasized statement on the page.
   No box. DESIGN.md §8: whitespace is the separator, and the accent is INK — never a
   background tint. A filled callout is the visual language of "important notice", which is
   the anxious register this brand exists to refuse. The content here is reassuring; it should
   read confident, not defensive. So: air around it, weight inside it, and nothing else. */
.line {
  margin: 64px 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* A plain-spoken caveat. Same rule: air, not a box. */
.plain {
  margin: 48px 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.plain b { color: var(--ink); font-weight: 600; }

footer {
  margin-top: 112px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--ink-faint);
  font-family: var(--mono);
  line-height: 1.7;
}
footer a { color: var(--ink-dim); }
footer a:hover { color: var(--ink-muted); }
