/* Choke Spots — shared legal-page styles.
   Emerald flat-light system (matches leo-reskin / sms-optin). Trust-first, readable.
   Light + dark via prefers-color-scheme. No JS. */

:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --surface-2: #f3f6f4;
  --text: #121a16;
  --muted: #5d6c66;
  --faint: #8a978f;
  --border: #e5eae7;
  --border-strong: #d6ddd9;
  --accent: #047857;
  --accent-strong: #065f46;
  --accent-soft: #ecfdf5;
  --accent-soft-border: #c8efe0;
  --shadow-sm: 0 1px 2px rgba(16, 40, 30, 0.05), 0 1px 3px rgba(16, 40, 30, 0.04);
  --r-card: 14px;
  --r-sm: 9px;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1512;
    --surface: #141d19;
    --surface-2: #18221d;
    --text: #e8efea;
    --muted: #9fb0a8;
    --faint: #708078;
    --border: #243029;
    --border-strong: #2e3c34;
    --accent: #34d399;
    --accent-strong: #6ee7b7;
    --accent-soft: #11241c;
    --accent-soft-border: #1f4234;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .3);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 22px 96px;
}

/* ---- header ---- */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.brand {
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.brand span { color: var(--accent); }
.top nav { display: flex; gap: 18px; flex-wrap: wrap; }
.top nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.top nav a:hover, .top nav a[aria-current="page"] { color: var(--accent); }

/* ---- document head ---- */
.doc-title {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 8px;
}
.dates {
  color: var(--faint);
  font-size: 0.88rem;
  margin: 0 0 30px;
}
.lede {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0 0 8px;
}

/* ---- body content ---- */
h2 {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  margin: 38px 0 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
h2:first-of-type { border-top: 0; padding-top: 0; }
h3 { font-size: 1rem; margin: 22px 0 8px; }
p { margin: 0 0 14px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin: 0 0 7px; }
strong { font-weight: 600; }
a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent); }

.legalese {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: none;
}

/* callout used for the "not a government service" notice */
.callout {
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft-border);
  border-radius: var(--r-card);
  padding: 16px 18px;
  margin: 0 0 16px;
}
.callout p:last-child { margin-bottom: 0; }

/* data-sharing table (privacy §3) */
.table-scroll { overflow-x: auto; margin: 0 0 16px; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 520px;
}
th, td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
th {
  background: var(--surface-2);
  font-weight: 600;
  color: var(--text);
}
td:first-child { font-weight: 600; }

/* ---- footer ---- */
.foot {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--faint);
  font-size: 0.86rem;
}
.foot a { color: var(--muted); }
.foot .contact { margin: 0 0 10px; color: var(--muted); }
