/* Omni web. Dark, tinted surfaces, never pure black — the app's own rule.
   No fonts loaded, no scripts, no analytics: an analytics SDK on a page
   that describes health-data handling is exactly the drift compliance.md
   warns about. */
:root {
  --page: #0d0f12;
  --surface: #14171c;
  --border: #232830;
  --text: #eef1f5;
  --muted: #9aa3af;
  --accent: #8f7bf5;
  --accent-2: #5a8dfa;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 0 20px 96px;
}
.wrap { max-width: 680px; margin: 0 auto; }
header { padding: 64px 0 40px; }
.mark { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.mark img { width: 44px; height: 44px; border-radius: 11px; }
.mark span { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: 34px; line-height: 1.2; letter-spacing: -0.02em; margin: 40px 0 16px; font-weight: 650; }
h2 { font-size: 19px; margin: 40px 0 10px; letter-spacing: -0.01em; font-weight: 620; }
h3 { font-size: 16px; margin: 26px 0 8px; color: var(--text); font-weight: 600; }
p, li { color: var(--muted); }
p { margin: 0 0 14px; }
ul { margin: 0 0 16px; padding-left: 20px; }
li { margin-bottom: 7px; }
strong { color: var(--text); font-weight: 600; }
a { color: var(--accent-2); }
.lede { font-size: 18px; color: var(--text); opacity: 0.9; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 24px 0;
}
.card p:last-child, .card ul:last-child { margin-bottom: 0; }
.meta { font-size: 14px; color: var(--muted); }
.pill {
  display: inline-block; font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 11px; margin-bottom: 20px;
}
footer {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 18px;
}
table { width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: 15px; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--text); font-weight: 600; font-size: 14px; }
td { color: var(--muted); }
@media (prefers-color-scheme: light) {
  :root { --page: #ffffff; --surface: #f6f7f9; --border: #e3e6ea; --text: #14171c; --muted: #545c68; --accent: #6b52e0; --accent-2: #2f6ae0; }
}
