/* Shared stylesheet for the free tools at /tools/*.
   Broadcast-hardware identity: see DESIGN.md. Served statically from /public
   so every tool page shares one cached file. */

@font-face {
  font-family: 'Barlow';
  src: url('/fonts/barlow-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/fonts/barlow-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow Condensed';
  src: url('/fonts/barlow-condensed-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --bg: oklch(0.19 0.006 75);
  --bg-deep: oklch(0.165 0.005 75);
  --panel: oklch(0.23 0.007 75);
  --well: oklch(0.27 0.008 75);
  --seam: oklch(0.33 0.01 75);
  --seam-light: oklch(0.42 0.012 75);
  --ink: oklch(0.93 0.008 85);
  --ink-2: oklch(0.75 0.012 80);
  --ink-3: oklch(0.64 0.012 78);
  --red: oklch(0.56 0.21 28);
  --red-bright: oklch(0.63 0.21 28);
  --red-text: oklch(0.7 0.19 28);
  --key: oklch(0.9 0.01 85);
  --key-hover: oklch(0.97 0.008 85);
  --key-ink: oklch(0.22 0.008 75);
  --green: oklch(0.74 0.17 148);
  --amber: oklch(0.76 0.14 80);
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  --sans: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Barlow Condensed', 'Barlow', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

.mono-label {
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3);
}

/* ── Keys (buttons) ─────────────────────────────────────────────── */
.keybtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px;
  border: none; border-radius: 4px;
  font-family: var(--mono);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, opacity 0.15s;
  white-space: nowrap;
}
.keybtn:active { transform: scale(0.97); }
.keybtn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.keybtn--rec { background: var(--red); color: white; }
.keybtn--rec:not(:disabled):hover { background: var(--red-bright); }
.keybtn--key { background: var(--key); color: var(--key-ink); }
.keybtn--key:not(:disabled):hover { background: var(--key-hover); }
.keybtn--go { background: var(--green); color: var(--key-ink); }
.keybtn--go:not(:disabled):hover { filter: brightness(1.08); }
.keybtn--ghost { background: none; border: 1px solid var(--seam-light); color: var(--ink-2); }
.keybtn--ghost:not(:disabled):hover { background: var(--well); color: var(--ink); }
.keybtn--sm { padding: 9px 16px; font-size: 11.5px; }
.rec-dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }

/* ── Nav ────────────────────────────────────────────────────────── */
nav { border-bottom: 1px solid var(--seam); background: var(--bg); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); }
.logo-word { font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
.nav-link { font-size: 15px; font-weight: 600; color: var(--ink-2); }
.nav-link:hover { color: var(--ink); }
.nav-cta { padding: 9px 18px; font-size: 12px; }
@media (max-width: 700px) { .nav-link { display: none; } }

/* ── Breadcrumb + tool hero ─────────────────────────────────────── */
.crumb { padding: 20px 0 0; }
.crumb a, .crumb span {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3);
}
.crumb a:hover { color: var(--ink); }
.crumb i { font-style: normal; color: var(--seam-light); margin: 0 8px; }

.tool-hero { padding: 24px 0 30px; text-align: center; }
.tool-hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.02; text-transform: uppercase; text-wrap: balance;
}
.tool-hero h1 .accent { color: var(--red-text); }
.tool-hero p {
  margin: 16px auto 0; max-width: 46em;
  color: var(--ink-2); font-size: 1.05rem; text-wrap: pretty;
}
.tool-hero p strong { color: var(--ink); font-weight: 600; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 20px; }
.trust-row span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.trust-row span::before { content: '✓ '; color: var(--green); }

/* ── Tool panel (the console) ───────────────────────────────────── */
.console {
  background: var(--panel);
  border: 1px solid var(--seam);
  border-radius: 10px;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 18px 48px oklch(0 0 0 / 0.35);
}
.console + .console { margin-top: 20px; }

.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding-bottom: 12px; margin-bottom: 18px;
  border-bottom: 1px solid var(--seam);
}
.panel-head h2 {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-3);
}

/* Dropzone */
.drop {
  border: 2px dashed var(--seam-light);
  border-radius: 8px;
  background: var(--bg-deep);
  padding: clamp(30px, 6vw, 56px) 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.drop:hover, .drop:focus-visible { border-color: var(--key); background: var(--well); outline: none; }
.drop--over { border-color: var(--green); background: var(--well); }
.drop-icon { font-size: 30px; line-height: 1; margin-bottom: 12px; }
.drop-title { font-size: 1.15rem; font-weight: 600; }
.drop-sub { margin-top: 8px; color: var(--ink-3); font-size: 0.92rem; }
.drop-sub b { color: var(--ink-2); font-weight: 600; }

/* Loaded file readout */
.file-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--well);
  border: 1px solid var(--seam);
  border-radius: 6px;
  padding: 12px 16px;
}
.file-name { font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.file-meta {
  margin-left: auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

/* Option controls */
.opts { margin-top: 18px; display: grid; gap: 18px; }
.opt-label {
  display: block; margin-bottom: 9px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);
}
.opt-label b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.seg { display: flex; flex-wrap: wrap; gap: 6px; background: var(--bg-deep); border-radius: 6px; padding: 5px; }
.seg button {
  flex: 1 1 auto; min-width: 84px;
  padding: 10px 12px;
  border: none; border-radius: 4px; background: none;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ink-2); cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.seg button:hover { background: var(--well); color: var(--ink); }
.seg button[aria-pressed='true'] { background: var(--key); color: var(--key-ink); }
.seg button small { display: block; font-size: 9.5px; font-weight: 500; letter-spacing: 0.05em; opacity: 0.72; margin-top: 2px; }

select, input[type='text'], textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--seam);
  border-radius: 4px;
  color: var(--ink);
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em;
  padding: 11px 12px;
}
select:focus, input:focus, textarea:focus { outline: none; border-color: var(--key); }
textarea { font-family: var(--sans); font-size: 15px; letter-spacing: 0; line-height: 1.7; resize: vertical; }

/* Fader knob on a 3px flat track (matches the app, see DESIGN.md). */
input[type='range'] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px; border-radius: 0;
  background: var(--seam-light);
  outline: none; cursor: pointer;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 10px; height: 18px; border-radius: 2px;
  background: linear-gradient(
    to bottom,
    var(--key) 0 8px,
    var(--key-ink) 8px 10px,
    var(--key) 10px 100%
  );
  border: 1px solid oklch(0.1 0 0);
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.5);
}
input[type='range']::-moz-range-thumb {
  width: 10px; height: 18px; border-radius: 2px;
  background: linear-gradient(
    to bottom,
    var(--key) 0 8px,
    var(--key-ink) 8px 10px,
    var(--key) 10px 100%
  );
  border: 1px solid oklch(0.1 0 0);
}

.check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.95rem; color: var(--ink-2); }
.check input { accent-color: var(--key); width: 16px; height: 16px; cursor: pointer; }

/* Action row */
.action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.action-row .keybtn { flex: 1 1 auto; }

/* Progress */
.bar-track { height: 6px; background: var(--bg-deep); border-radius: 3px; overflow: hidden; border: 1px solid var(--seam); }
.bar-fill { height: 100%; width: 0%; background: var(--green); transition: width 0.2s linear; }
.work-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  margin-bottom: 10px;
}
.work-row .status { font-size: 0.95rem; color: var(--ink-2); }
.work-row .pct {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.work-note { margin-top: 12px; font-size: 0.86rem; color: var(--ink-3); }

/* Result */
.result-video {
  width: 100%; max-height: 58vh; border-radius: 6px;
  background: var(--bg-deep); border: 1px solid var(--seam);
  display: block;
}
.result-video--tall { max-height: 62vh; width: auto; margin: 0 auto; }
.result-img { max-height: 58vh; margin: 0 auto; border-radius: 6px; border: 1px solid var(--seam); }
.stat-row {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--well); border: 1px solid var(--seam); border-radius: 6px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat b {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);
}
.stat span { font-size: 1.05rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.stat span.good { color: var(--green); }

.hidden { display: none !important; }

.notice {
  margin-top: 16px; padding: 12px 15px;
  border-radius: 6px; font-size: 0.92rem;
  border: 1px solid var(--seam); background: var(--bg-deep); color: var(--ink-2);
}
.notice--err { border-color: var(--red); color: var(--ink); }
.notice--warn { border-color: var(--amber); color: var(--ink-2); }

/* ── Content sections ───────────────────────────────────────────── */
.section { padding: clamp(48px, 7vh, 80px) 0 0; }
.section h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  text-transform: uppercase; margin-bottom: 20px; text-wrap: balance;
}
.section h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.section p { color: var(--ink-2); max-width: 68ch; text-wrap: pretty; }
.section p + p { margin-top: 14px; }
.section p strong, .section li strong { color: var(--ink); font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.step { border-top: 2px solid var(--seam-light); padding-top: 14px; }
.step b {
  display: block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--red-text); margin-bottom: 7px;
}
.step p { color: var(--ink-2); font-size: 0.95rem; }

.faq details { border-top: 1px solid var(--seam); }
.faq details:last-child { border-bottom: 1px solid var(--seam); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; font-weight: 600; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--mono); color: var(--ink-3); font-size: 18px; }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding: 0 0 20px; color: var(--ink-2); max-width: 68ch; }

/* ── App CTA band ───────────────────────────────────────────────── */
.cta-band {
  margin-top: clamp(48px, 7vh, 80px);
  background: var(--bg-deep);
  border-top: 1px solid var(--seam); border-bottom: 1px solid var(--seam);
  padding: clamp(44px, 7vh, 72px) 0;
}
.cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: center; }
@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-band h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.04; text-transform: uppercase; text-wrap: balance;
}
.cta-band h2 .accent { color: var(--red-text); }
.cta-band p { margin-top: 14px; color: var(--ink-2); max-width: 52ch; text-wrap: pretty; }
.cta-band p strong { color: var(--ink); font-weight: 600; }

/* ── Tool grid (hub + related) ──────────────────────────────────── */
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 16px; }
.tool-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--panel);
  border: 1px solid var(--seam); border-radius: 8px;
  padding: 20px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.tool-card:hover { border-color: var(--seam-light); background: var(--well); transform: translateY(-2px); }
.tool-card .tc-icon { font-size: 22px; line-height: 1; }
.tool-card .tc-name { font-size: 1.08rem; font-weight: 600; }
.tool-card .tc-desc { font-size: 0.92rem; color: var(--ink-3); text-wrap: pretty; }
.tool-card .tc-go {
  margin-top: auto; padding-top: 10px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}
.tool-card:hover .tc-go { color: var(--red-text); }
.tool-card--current { border-color: var(--seam-light); background: var(--well); }

/* ── Footer ─────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--seam); background: var(--bg-deep); padding: 36px 0 44px; margin-top: clamp(48px, 7vh, 80px); }
.cta-band + footer { margin-top: 0; border-top: none; }
.foot-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; margin-left: auto; }
.foot-inner span, .foot-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-3);
}
.foot-links a:hover { color: var(--ink); }

/* ── Mic test: scope + level meter ──────────────────────────────── */
.scope {
  width: 100%; height: 180px; display: block;
  background: var(--bg-deep);
  border: 1px solid var(--seam); border-radius: 6px;
}
.meter-block { margin-top: 18px; }
.meter { height: 14px; border-radius: 3px; }
.meter .bar-fill { transition: none; } /* level meters must not lag the signal */
.bar-fill--hot { background: var(--amber); }

/* ── Option layout helpers ──────────────────────────────────────── */
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.trim-block { background: var(--bg-deep); border: 1px solid var(--seam); border-radius: 6px; padding: 16px; }
.tc { font-family: var(--mono); color: var(--ink); font-variant-numeric: tabular-nums; }
#trim-video { max-height: 44vh; margin-bottom: 16px; }

/* ── Teleprompter stage ─────────────────────────────────────────── */
.prompt-stage {
  position: fixed; inset: 0; z-index: 60;
  background: oklch(0.11 0.004 75);
  display: flex; flex-direction: column;
}
.prompt-scroll { flex: 1; overflow: hidden; position: relative; }
.prompt-text {
  padding: 46vh 6vw;
  font-size: 54px; line-height: 1.5; font-weight: 600;
  color: oklch(0.97 0.006 85);
  white-space: pre-wrap; text-wrap: pretty;
  will-change: transform;
}
.prompt-stage--mirror .prompt-text { transform-origin: center; }
.prompt-stage--mirror .prompt-scroll { transform: scaleX(-1); }
.prompt-guide {
  position: absolute; left: 0; right: 0; top: 46vh;
  border-top: 2px solid var(--amber);
  opacity: 0.5; pointer-events: none; z-index: 2;
}
.prompt-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px clamp(14px, 3vw, 26px);
  background: var(--bg-deep);
  border-top: 1px solid var(--seam);
}
.prompt-bar .mono-label { font-variant-numeric: tabular-nums; }

/* ── Script timer readout ───────────────────────────────────────── */
.readout {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(18px, 4vw, 40px); align-items: center;
  margin-top: 22px; padding: 22px;
  background: var(--well); border: 1px solid var(--seam); border-radius: 8px;
}
@media (max-width: 720px) { .readout { grid-template-columns: 1fr; } }
.readout-time {
  display: block; margin-top: 6px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 5rem); line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--seam);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3);
}
.chip b { font-weight: 700; }
.chip--fit { border-color: var(--green); color: var(--green); }
.chip--over { border-color: var(--amber); color: var(--amber); }

.breakdown { width: 100%; border-collapse: collapse; margin-top: 22px; }
.breakdown caption {
  text-align: left; padding-bottom: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3);
}
.breakdown td { padding: 11px 12px; border-top: 1px solid var(--seam); vertical-align: top; font-size: 0.95rem; }
.breakdown tr td:first-child {
  width: 42px; color: var(--ink-3);
  font-family: var(--mono); font-size: 11px; padding-top: 14px;
}
.breakdown tr td:last-child {
  width: 92px; text-align: right; white-space: nowrap;
  font-family: var(--mono); font-size: 12px; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.breakdown .snip { color: var(--ink-2); }

/* ── Comparison pages (/compare/*) ──────────────────────────────── */

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }

/* Intro prose sits in <main>, which has no .section wrapper to inherit from. */
.prose { padding-top: 30px; }
.prose p { color: var(--ink-2); max-width: 68ch; text-wrap: pretty; }
.prose p + p { margin-top: 14px; }
.prose p strong { color: var(--ink); font-weight: 600; }

/* The table is the one element here that cannot reflow below ~560px, so it
   scrolls inside its own box rather than pushing the page sideways. */
.cmp-scroll { overflow-x: auto; border: 1px solid var(--seam); border-radius: 3px; }
.cmp { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.95rem; }
.cmp thead th {
  background: var(--well);
  font-family: var(--mono); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
  text-align: left; padding: 12px 16px; white-space: nowrap;
}
.cmp thead th:nth-child(2) { color: var(--red-text); }
.cmp tbody th {
  text-align: left; font-weight: 600; color: var(--ink);
  padding: 13px 16px; vertical-align: top; width: 30%;
}
.cmp tbody td { color: var(--ink-2); padding: 13px 16px; vertical-align: top; width: 35%; }
.cmp tbody tr + tr th, .cmp tbody tr + tr td { border-top: 1px solid var(--seam); }
.cmp tbody tr:nth-child(odd) { background: oklch(0.21 0.006 75); }
/* Marks rows where we are the stronger option. Deliberately understated: the
   table has to read as a comparison, not a sales chart. */
.cmp td.cmp-win { color: var(--ink); font-weight: 600; }
.cmp td.cmp-win::before { content: '✓ '; color: var(--green); font-weight: 400; }

.cmp-note {
  margin-top: 14px; font-size: 0.88rem; color: var(--ink-3);
  max-width: 68ch; text-wrap: pretty;
}

.disclaimer {
  border: 1px solid var(--seam);
  border-radius: 3px;
  background: var(--panel);
  padding: 22px 24px;
}
.disclaimer h3 {
  font-family: var(--mono); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 12px;
}
.disclaimer p { color: var(--ink-2); font-size: 0.92rem; max-width: 68ch; text-wrap: pretty; }
.disclaimer p + p { margin-top: 12px; }
.src-title {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 16px;
}
.src-list { margin: 8px 0 0; padding-left: 18px; }
.src-list li { color: var(--ink-2); font-size: 0.92rem; margin-top: 5px; }
.src-list a { color: var(--ink-2); text-underline-offset: 3px; }
.src-list a:hover { color: var(--ink); }
.tm { font-size: 0.82rem !important; color: var(--ink-3) !important; margin-top: 16px; }

@media (max-width: 640px) {
  .cmp tbody th, .cmp tbody td { padding: 11px 13px; }
  .disclaimer { padding: 18px 16px; }
}

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