/* Konode website — self-contained, zero external requests (privacy-first).
   Tokens are documented in DESIGN.md. Don't introduce a value that isn't there. */

/* Display: Schibsted Grotesk, variable 400-900 in a single file. */
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/schibsted-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/schibsted-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/jetbrains-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --border: #ececef;
  --border-strong: #dfe1e6;
  --fg: #11151a;
  --fg-muted: #5b6470;
  --fg-subtle: #68707d;   /* darkened for AA: 4.64:1 on --bg */
  --accent: #12b76a;      /* fills, dots, rules — never text */
  --accent-text: #0a7a43; /* the accent for text: 5.1:1 on --bg */
  --accent-tint: #e7f8f0; /* accent at ~14% over white */
  --on-accent: #ffffff;

  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: system-ui, "Segoe UI Variable Text", -apple-system, "Segoe UI",
    Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  --fs-display: clamp(2.5rem, 5.4vw, 3.75rem);   /* 40 → 60 */
  --fs-h2: clamp(1.875rem, 3.4vw, 2.5rem);       /* 30 → 40 */
  --fs-h3: 0.9375rem;                            /* 15 */
  --fs-lead: clamp(0.9375rem, 1.3vw, 1rem);      /* 15 → 16 */
  --fs-body: 1rem;
  --fs-card: 0.875rem;                           /* 14 */
  --fs-sm: 0.875rem;
  --fs-label: 0.75rem;                           /* 12 — mono labels, eyebrows */

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --maxw: 1152px;
  --maxw-text: 68ch;
  --gutter: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 160ms;
  /* Elevation, used only on genuinely floating things. */
  --lift: 0 1px 2px rgb(17 21 26 / 0.04), 0 8px 24px -12px rgb(17 21 26 / 0.12);
  --lift-lg: 0 1px 2px rgb(17 21 26 / 0.04), 0 20px 50px -30px rgb(17 21 26 / 0.25);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::selection { background: #cdf0de; color: var(--fg); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; }
h1 { font-size: var(--fs-display); letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; line-height: 1.35; }

a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration: none; }
code, kbd, pre, samp { font-family: var(--font-mono); }
strong { font-weight: 600; }
img, svg { max-width: 100%; display: block; }

:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 2px; border-radius: var(--r-sm); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: var(--s-4); top: -100px; z-index: 100;
  background: var(--fg); color: #fff; padding: var(--s-3) var(--s-4);
  border-radius: var(--r-sm); font-size: var(--fs-sm); text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip:focus { top: var(--s-4); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 480px) { :root { --gutter: 20px; } }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-bottom: 1px solid var(--border);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  header.site { background: var(--bg); }
}
header.site .wrap { position: relative; display: flex; align-items: center; height: 60px; gap: var(--s-4); }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem;
  letter-spacing: -0.02em; color: var(--fg); text-decoration: none;
}
.brand svg, .brand img { width: 26px; height: 26px; border-radius: 6px; flex: none; }

.nav {
  display: flex; align-items: center; gap: var(--s-6);
  font-size: var(--fs-sm); margin: 0 auto;
}
.nav a { color: var(--fg-muted); text-decoration: none; transition: color var(--dur) var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }

.head-actions { display: flex; align-items: center; gap: var(--s-2); margin-left: auto; }
.head-actions .src { color: var(--fg-muted); text-decoration: none; font-size: var(--fs-sm); padding: 6px var(--s-3); }
.head-actions .src:hover { color: var(--fg); }

/* Mobile menu — a <details> disclosure, so it needs no JavaScript. */
.menu { display: none; }
.menu > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px var(--s-3); border: 1px solid var(--border-strong);
  border-radius: var(--r-pill); font-size: var(--fs-sm); color: var(--fg);
}
.menu > summary::-webkit-details-marker { display: none; }
.menu > summary::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.menu[open] > summary::after { transform: translateY(1px) rotate(225deg); }
.menu-panel {
  position: absolute; left: var(--gutter); right: var(--gutter);
  top: calc(100% + var(--s-3));
  background: var(--surface); border-radius: var(--r-md);
  box-shadow: var(--lift-lg); padding: var(--s-2); display: grid;
}
.menu-panel a {
  padding: var(--s-3) var(--s-4); border-radius: var(--r-sm);
  color: var(--fg); text-decoration: none; font-size: 0.9375rem;
}
.menu-panel a:hover { background: var(--surface-2); }

@media (max-width: 900px) {
  .nav { display: none; }
  .head-actions .src { display: none; }
  .menu { display: block; margin-left: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  border: 1px solid transparent; border-radius: var(--r-md);
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 500;
  line-height: 1.2; text-decoration: none; cursor: pointer; white-space: nowrap;
  padding: 13px var(--s-5);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-sm { padding: 7px var(--s-3); border-radius: var(--r-sm); }
.btn-sm svg { width: 16px; height: 16px; }

.btn-dark { background: var(--fg); color: #fff; }
.btn-dark:hover { background: #23282f; text-decoration: none; }
.btn-outline { background: var(--surface); color: var(--fg); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--surface-2); text-decoration: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: var(--s-7) 0 var(--s-9); }
.hero .wrap { position: relative; }

/* Concentric orbit rings behind the hero. Decorative, so aria-hidden. */
.orbit { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.orbit-inner { position: relative; width: min(920px, 95%); aspect-ratio: 1; }
.orbit-inner span {
  position: absolute; border: 1px solid var(--border); border-radius: 50%;
}
.orbit-inner span:nth-child(1) { width: 35%; height: 35%; top: 32.5%; left: 32.5%; }
.orbit-inner span:nth-child(2) { width: 55%; height: 55%; top: 22.5%; left: 22.5%; }
.orbit-inner span:nth-child(3) { width: 78%; height: 78%; top: 11%;   left: 11%; }
.orbit-inner span:nth-child(4) { width: 100%; height: 100%; top: 0;   left: 0; }
.orbit-arc { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Integration tiles sitting on the rings. Shadow, no border: they float.
   Positions are classes, not inline styles, so the strict CSP can forbid
   inline styles outright. */
.orbit-tiles { position: absolute; inset: 0; pointer-events: none; }
.orbit-tiles > div { position: absolute; transform: translate(-50%, -50%); }
.p1 { top: 6%;  left: 22%; }
.p2 { top: 10%; left: 78%; }
.p3 { top: 38%; left: 6%;  }
.p4 { top: 36%; left: 94%; }
.p5 { top: 72%; left: 14%; }
.p6 { top: 76%; left: 84%; }
/* No bottom-centre tile: the device card sits there and a tile would cover it. */
.tile {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--r-lg);
  background: var(--surface); box-shadow: var(--lift);
}
.tile svg { width: 26px; height: 26px; }
.tile-lg { width: 60px; height: 60px; }
@media (max-width: 900px) { .orbit-tiles { display: none; } }

.hero-center {
  position: relative; max-width: 40rem; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-top: var(--s-6);
}
.chip {
  display: inline-flex; align-items: center; gap: var(--s-2);
  border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--r-pill); padding: 5px var(--s-3);
  font-size: 0.8125rem; color: var(--fg-muted);
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }

.hero h1 { margin-top: var(--s-6); text-wrap: balance; }
.hero-lead {
  margin-top: var(--s-5); max-width: 36rem;
  font-size: var(--fs-lead); line-height: 1.65; color: var(--fg-muted);
}
.hero-cta { margin-top: var(--s-7); display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }

/* ---------- Device card (the product visual) ---------- */
.device {
  margin-top: var(--s-8); width: 100%; max-width: 28rem;
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--lift-lg); padding: var(--s-4); text-align: left;
}
.device-head { display: flex; align-items: center; gap: var(--s-3); }
.device-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--accent-tint); flex: none;
}
.device-icon .dot { width: 8px; height: 8px; }
.device-who { flex: 1; font-size: var(--fs-sm); min-width: 0; }
.device-who b { display: block; font-weight: 600; color: var(--fg); }
.device-who span { color: var(--fg-muted); }
.device-badge {
  background: var(--accent-tint); color: var(--accent-text);
  border-radius: var(--r-sm); padding: 2px var(--s-2);
  font-family: var(--font-mono); font-size: var(--fs-label); flex: none;
}
.device-rows { margin-top: var(--s-3); display: grid; gap: 2px; }
.device-rows > div {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding: 7px var(--s-2); border-radius: var(--r-sm); font-size: 0.8125rem;
}
.device-rows > div:hover { background: var(--surface-2); }
.device-rows b { font-weight: 400; color: var(--fg); }
.device-rows span { font-family: var(--font-mono); font-size: var(--fs-label); color: var(--fg-subtle); }

/* ---------- Proof strip ---------- */
.proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-2); }
.proof .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s-3) var(--s-7); padding: var(--s-5) var(--gutter);
}
.proof span {
  font-family: var(--font-mono); font-size: var(--fs-label);
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-subtle);
}

/* ---------- Sections ---------- */
section.band { padding: var(--s-9) 0; }
.sec-head { max-width: 40rem; margin: 0 auto; text-align: center; }
.eyebrow {
  display: block; margin-bottom: var(--s-3);
  font-family: var(--font-mono); font-size: var(--fs-label);
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-text);
}
.sec-head h2 { text-wrap: balance; }
.sec-body { margin-top: var(--s-7); }
.sec-note {
  margin: var(--s-6) auto 0; max-width: 36rem; text-align: center;
  font-size: var(--fs-sm); color: var(--fg-muted);
}

/* ---------- Hairline grid (what syncs) ----------
   1px gaps over a border-coloured backdrop give exact hairline dividers. */
.hairgrid {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
@media (min-width: 760px) { .hairgrid { grid-template-columns: 1fr 1fr; } }
.hairgrid > div { background: var(--surface); padding: var(--s-6); }
.hairgrid h3 { display: flex; align-items: center; gap: var(--s-2); }
.hairgrid p { margin-top: var(--s-3); font-size: var(--fs-card); line-height: 1.65; color: var(--fg-muted); }

/* ---------- Cards ---------- */
.cards { display: grid; gap: var(--s-4); }
@media (min-width: 760px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 760px) { .cards-2 { grid-template-columns: repeat(2, 1fr); } }

/* Border only, no shadow: cards sit on the page, they don't float. */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s-5);
  transition: border-color var(--dur) var(--ease);
}
.card:hover { border-color: var(--border-strong); }
.card p { font-size: var(--fs-card); line-height: 1.65; color: var(--fg-muted); }

/* Storage backend card: tile and auth label share a row, so the heading sits
   below in flow rather than under a stacked icon block. */
.card-top { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.card-top .tile { width: 44px; height: 44px; border-radius: var(--r-md); }
.card-top .tile svg { width: 22px; height: 22px; }
.auth {
  font-family: var(--font-mono); font-size: var(--fs-label);
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-subtle);
  text-align: right;
}
.card-name { margin-top: var(--s-5); font-size: 1rem; font-weight: 600; font-family: var(--font-display); letter-spacing: -0.01em; }
.card-name + p { margin-top: var(--s-2); }

.planned {
  margin-top: var(--s-4); border: 1px dashed var(--border-strong);
  background: var(--surface-2); border-radius: var(--r-md);
  padding: var(--s-3) var(--s-5); text-align: center;
  font-size: var(--fs-card); color: var(--fg-muted);
}
.planned b { font-family: var(--font-mono); font-weight: 400; color: var(--accent-text); }

.card-head { display: flex; align-items: flex-start; gap: var(--s-2); }
.card-head svg { width: 16px; height: 16px; flex: none; margin-top: 2px; }
.card-head + p { margin-top: var(--s-3); }

/* ---------- Code window ---------- */
.window {
  max-width: 48rem; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s-5);
}
.window-bar { display: flex; align-items: center; gap: 6px; margin-bottom: var(--s-4); }
.window-bar i { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.window-bar i:nth-child(1) { background: #ff5f57; }
.window-bar i:nth-child(2) { background: #febc2e; }
.window-bar i:nth-child(3) { background: #28c840; }
.window-bar span {
  margin-left: var(--s-3); font-family: var(--font-mono); font-size: var(--fs-label);
  letter-spacing: 0.1em; color: var(--fg-subtle); overflow-wrap: anywhere;
}
.window pre {
  font-size: 0.8125rem; line-height: 1.8; color: var(--fg);
  overflow-x: auto; white-space: pre;
}
.window pre .k { color: var(--fg-muted); }
.window pre .v { color: var(--accent-text); }

/* ---------- Final CTA ---------- */
.final { padding: 0 0 var(--s-9); }
.final-card {
  max-width: 56rem; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s-8) var(--s-5);
}
@media (min-width: 760px) { .final-card { padding: var(--s-9) var(--s-8); } }
.final-card > svg { width: 44px; height: 44px; margin: 0 auto; border-radius: 10px; }
.final-card h2 { margin: var(--s-5) auto 0; max-width: 34rem; text-wrap: balance; }
.final-card p { margin: var(--s-4) auto 0; max-width: 28rem; font-size: var(--fs-lead); color: var(--fg-muted); }
.final-card .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--border); padding: var(--s-7) 0; }
footer.site .top {
  display: flex; flex-direction: column; gap: var(--s-5);
  justify-content: space-between; align-items: flex-start;
}
@media (min-width: 860px) { footer.site .top { flex-direction: row; align-items: center; } }
footer.site .about { margin-top: var(--s-2); max-width: 44ch; font-size: 0.8125rem; color: var(--fg-subtle); }
footer.site .about b { font-weight: 400; color: var(--fg-muted); }
footer.site .links {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-5);
  font-size: var(--fs-sm);
}
footer.site .links a { color: var(--fg-muted); text-decoration: none; }
footer.site .links a:hover { color: var(--fg); text-decoration: underline; }
footer.site .links .lic { font-family: var(--font-mono); font-size: var(--fs-label); color: var(--fg-subtle); }

/* ---------- Long-form pages (privacy, setup, troubleshooting, roadmap) ---------- */
.doc { padding: var(--s-8) 0 var(--s-9); }
.doc > * { max-width: var(--maxw-text); }
.doc h1 { font-size: clamp(2rem, 4.4vw, 2.75rem); letter-spacing: -0.025em; }
.doc .updated { margin-top: var(--s-3); font-family: var(--font-mono); font-size: var(--fs-label); color: var(--fg-subtle); }
.doc .lead { margin-top: var(--s-5); font-size: var(--fs-lead); line-height: 1.7; color: var(--fg-muted); }
.doc h2 { font-size: 1.5rem; letter-spacing: -0.015em; margin: var(--s-8) 0 var(--s-4); }
.doc h3 { font-size: 1.0625rem; margin: var(--s-6) 0 var(--s-3); }
.doc p, .doc li { margin-bottom: var(--s-3); }
.doc ul, .doc ol { padding-left: 1.4em; margin-bottom: var(--s-4); }
.doc li::marker { color: var(--fg-subtle); }
.doc code { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 1px 5px; font-size: 0.8125rem; }
.steps { padding-left: 1.4em; }
.steps li { margin-bottom: var(--s-3); max-width: 62ch; }
.steps li::marker { color: var(--fg-subtle); }
.doc .small { font-size: var(--fs-sm); }
.doc .muted { color: var(--fg-muted); }

pre.code {
  background: var(--fg); color: #e9ecef; border-radius: var(--r-md);
  padding: var(--s-5); overflow-x: auto; font-size: 0.8125rem; line-height: 1.8;
  margin-bottom: var(--s-5); max-width: 100%;
}
pre.code .c { color: #98a0ab; }
pre.code code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }
code.inline { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 1px 5px; font-size: 0.8125rem; }

.callout {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--accent); border-radius: var(--r-sm);
  padding: var(--s-5); margin-bottom: var(--s-5);
}
.callout p:last-child { margin-bottom: 0; }

.toc { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s-5); margin: var(--s-7) 0; }
.toc h2 { font-size: 0.9375rem; font-family: var(--font-body); margin: 0 0 var(--s-3); }
.toc ol { margin: 0; padding-left: 1.3em; }
.toc li { margin-bottom: var(--s-2); }

.qa { border-top: 1px solid var(--border); margin-top: var(--s-6); }
.qa > div { padding: var(--s-6) 0; border-bottom: 1px solid var(--border); }
.qa h3 { margin-top: 0; }
.qa p:last-child { margin-bottom: 0; }

.rm { list-style: none; padding: 0; border-top: 1px solid var(--border); }
.rm > li { display: grid; gap: var(--s-2) var(--s-5); padding: var(--s-5) 0; border-bottom: 1px solid var(--border); margin: 0; }
@media (min-width: 700px) { .rm > li { grid-template-columns: 9rem 1fr; align-items: baseline; } }
.rm h3 { margin: 0; }
.rm p { margin: 0; color: var(--fg-muted); }
.rm .st { font-family: var(--font-mono); font-size: var(--fs-label); text-transform: uppercase; letter-spacing: 0.1em; }
.st-shipped { color: var(--accent-text); }
.st-beta { color: var(--fg); }
.st-planned { color: var(--fg-subtle); }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
table.cmp { width: 100%; border-collapse: collapse; font-size: var(--fs-card); min-width: 760px; }
table.cmp th, table.cmp td { text-align: left; padding: var(--s-4); border-bottom: 1px solid var(--border); vertical-align: top; }
table.cmp thead th { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; white-space: nowrap; }
table.cmp tbody th { font-weight: 500; color: var(--fg-muted); white-space: nowrap; }
table.cmp tr:last-child th, table.cmp tr:last-child td { border-bottom: 0; }
table.cmp .self { background: var(--accent-tint); }
table.cmp thead .self { font-weight: 700; }
.table-hint { margin-top: var(--s-3); font-size: var(--fs-sm); color: var(--fg-muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  header.site, footer.site, .skip, .hero-cta, .orbit, .orbit-tiles { display: none; }
  body { background: #fff; color: #000; }
  .doc { padding: 0; }
}
