/* ============================================================
   Crux audit viewer — design tokens
   (same structural spine as AgentDesk's viewer, own palette:
   terracotta accent instead of indigo, 2 terminal states not 4)
   ============================================================ */

:root {
  --bg: #f6f4f0;
  --surface: #ffffff;
  --surface-2: #f0ede6;
  --surface-3: #e5e0d5;
  --border: #ded7c9;
  --border-strong: #c7bda8;
  --ink: #221c15;
  --ink-2: #3f362a;
  --ink-muted: #6b6152;
  --ink-faint: #948a78;

  /* -- accent: terracotta, distinct from AgentDesk's indigo -- */
  --accent: #b5540c;
  --accent-ink: #ffffff;
  --accent-tint: #fbe9d9;
  --accent-tint-border: #ecc79a;

  /* -- semantic: only two terminal states -- */
  --report: #1f7a5c;
  --report-tint: #e2f2ec;
  --report-border: #b3ddc9;

  --rejected: #a13f3f;
  --rejected-tint: #f7e6e6;
  --rejected-border: #e3bcbc;

  /* verdict_withheld is a stated, deliberate outcome — not success,
     not failure, so it gets its own tone rather than borrowing report/rejected */
  --withheld: #8a5a12;
  --withheld-tint: #f5e8d2;
  --withheld-border: #ddc292;

  --fail: #b23b3b;
  --pass: #1f7a5c;
  --not-reached: #9c9382;

  --font-ui: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow-card: 0 1px 2px rgba(34, 28, 21, 0.05), 0 1px 1px rgba(34, 28, 21, 0.04);
  --shadow-pop: 0 8px 24px rgba(34, 28, 21, 0.12), 0 2px 6px rgba(34, 28, 21, 0.07);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #14100b;
    --surface: #1c1712;
    --surface-2: #241e17;
    --surface-3: #30271d;
    --border: #3a2f23;
    --border-strong: #4c3f2e;
    --ink: #f3ede2;
    --ink-2: #d8cfbe;
    --ink-muted: #a89b85;
    --ink-faint: #756a58;

    --accent: #e08a3e;
    --accent-ink: #1c1004;
    --accent-tint: #34220e;
    --accent-tint-border: #5c3d18;

    --report: #4bbf95;
    --report-tint: #14302a;
    --report-border: #235c47;

    --rejected: #e08080;
    --rejected-tint: #341c1c;
    --rejected-border: #5e2c2c;

    --withheld: #dba24c;
    --withheld-tint: #362810;
    --withheld-border: #614a1e;

    --fail: #e08080;
    --pass: #4bbf95;
    --not-reached: #756a58;

    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.35), 0 1px 1px rgba(0, 0, 0, 0.25);
    --shadow-pop: 0 8px 28px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
  }
}

:root[data-theme="dark"] {
  --bg: #14100b;
  --surface: #1c1712;
  --surface-2: #241e17;
  --surface-3: #30271d;
  --border: #3a2f23;
  --border-strong: #4c3f2e;
  --ink: #f3ede2;
  --ink-2: #d8cfbe;
  --ink-muted: #a89b85;
  --ink-faint: #756a58;

  --accent: #e08a3e;
  --accent-ink: #1c1004;
  --accent-tint: #34220e;
  --accent-tint-border: #5c3d18;

  --report: #4bbf95;
  --report-tint: #14302a;
  --report-border: #235c47;

  --rejected: #e08080;
  --rejected-tint: #341c1c;
  --rejected-border: #5e2c2c;

  --withheld: #dba24c;
  --withheld-tint: #362810;
  --withheld-border: #614a1e;

  --fail: #e08080;
  --pass: #4bbf95;
  --not-reached: #756a58;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.35), 0 1px 1px rgba(0, 0, 0, 0.25);
  --shadow-pop: 0 8px 28px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   base
   ============================================================ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

body {
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  .run-card, .gate-chip, .stage-card { transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease; }
}

a { color: var(--accent); }
code, .mono { font-family: var(--font-mono); }

::selection { background: var(--accent-tint-border); }

/* ============================================================
   topbar
   ============================================================ */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.brand-mark {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.brand-sub { font-size: 11.5px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.07em; }

.thesis {
  margin: 0;
  color: var(--ink-muted);
  font-size: 13.5px;
  flex: 1 1 320px;
  min-width: 0;
}

.model-key { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.model-key .m {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--ink-2);
  white-space: nowrap;
}
.model-key .m b { color: var(--ink); font-weight: 600; }

/* ============================================================
   intro / evidence-scope panel
   ============================================================ */

.viewer-note {
  max-width: 1400px;
  margin: 14px auto 0;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--accent-tint);
  border-top: 1px solid var(--accent-tint-border);
  border-bottom: 1px solid var(--accent-tint-border);
}
.viewer-note strong { color: var(--ink); }

.intro {
  max-width: 1400px;
  margin: 16px auto 0;
  padding: 0 24px;
}

.intro summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.intro summary::-webkit-details-marker { display: none; }

.intro-summary-text { font-weight: 700; font-size: 14.5px; }

.intro-toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
}
.intro-toggle::before { content: "collapse"; }
.intro:not([open]) .intro-toggle::before { content: "expand — what am I looking at?"; }
.intro:not([open]) .intro-summary-text { display: none; }

.intro-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 4px 22px 22px;
  margin-top: -1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-lede {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 76ch;
  margin: 4px 0 0;
}
.intro-lede strong { color: var(--ink); }

.intro-pipeline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.intro-stage {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 150px;
}
.intro-stage-mediator { background: var(--accent-tint); border-color: var(--accent-tint-border); }
.intro-stage-name { font-weight: 700; font-size: 13px; }
.intro-stage-model { font-size: 11.5px; color: var(--ink-muted); }
.intro-stage-tag { font-size: 11px; color: var(--ink-faint); }

.intro-arrow { color: var(--ink-faint); font-size: 16px; flex-shrink: 0; }
.intro-parallel-wrap { display: flex; flex-direction: column; gap: 6px; align-items: stretch; }
.intro-parallel-label { font-size: 10.5px; color: var(--ink-faint); text-align: center; text-transform: uppercase; letter-spacing: 0.05em; }

.intro-callout {
  border: 1px solid var(--withheld-border);
  background: var(--withheld-tint);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
}
.intro-callout b { font-weight: 700; }

.intro-callout-warn { border-color: var(--rejected-border); background: var(--rejected-tint); }

.intro-eval {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.intro-eval b { color: var(--ink-2); font-weight: 600; }

/* ============================================================
   shell / layout
   ============================================================ */

.shell {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 20px 24px 40px;
  align-items: start;
}

@media (max-width: 880px) {
  .shell { grid-template-columns: 1fr; }
}

/* ============================================================
   run list (left rail)
   ============================================================ */

.run-list {
  position: sticky;
  top: 76px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 880px) {
  .run-list { position: static; max-height: none; }
}

.run-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.run-list-head h2 { margin: 0; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-muted); }
.run-count { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); }

.run-list-items {
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.run-list-scope {
  margin: 0;
  padding: 10px 12px 2px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ink-faint);
}

.run-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--state-color, var(--border));
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  cursor: pointer;
  font-family: var(--font-ui);
}

.run-card:hover { background: var(--surface-2); }

.run-card[aria-current="true"] {
  background: var(--accent-tint);
  border-color: var(--accent-tint-border);
  border-left-color: var(--state-color, var(--accent));
  box-shadow: var(--shadow-card);
}

.run-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 4px; }
.run-card-id { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); }
.run-card-question { font-weight: 600; font-size: 13px; color: var(--ink); margin-bottom: 3px; line-height: 1.35; }
.run-card-meta { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--ink-faint); flex-wrap: wrap; }

/* ============================================================
   pill / badge components
   ============================================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.pill-report { background: var(--report-tint); color: var(--report); border-color: var(--report-border); }
.pill-rejected { background: var(--rejected-tint); color: var(--rejected); border-color: var(--rejected-border); }
.pill-withheld { background: var(--withheld-tint); color: var(--withheld); border-color: var(--withheld-border); }

.pill-lg { font-size: 13px; padding: 6px 14px; }
.pill-lg::before { width: 8px; height: 8px; }

/* ============================================================
   detail pane
   ============================================================ */

.detail { min-width: 0; display: flex; flex-direction: column; gap: 20px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-muted);
}

/* -- summary strip -- */

.summary { display: flex; align-items: flex-start; gap: 22px; flex-wrap: wrap; padding: 18px 22px; }
.summary-outcome { display: flex; flex-direction: column; gap: 8px; }
.summary-outcome-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.summary-question { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35; max-width: 56ch; }
.summary-runid { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); }

.summary-stats { display: flex; gap: 24px; margin-left: auto; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }
.stat-value { font-family: var(--font-mono); font-size: 15px; font-weight: 600; color: var(--ink); }

/* -- narrative banner -- */

.narrative { border-radius: var(--radius); padding: 14px 18px; font-size: 13.5px; line-height: 1.55; border: 1px solid; }
.narrative b { font-weight: 600; }
.narrative-report { background: var(--report-tint); border-color: var(--report-border); color: var(--ink-2); }
.narrative-rejected { background: var(--rejected-tint); border-color: var(--rejected-border); color: var(--ink-2); }

/* ============================================================
   the crux — headline card
   ============================================================ */

.crux-card {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-tint) 0%, var(--surface) 130%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 22px 24px;
}

.crux-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}
.crux-card-label .shape {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
}

.crux-disagreement {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}

.crux-why {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.crux-why b { color: var(--ink); }

.crux-resolving {
  border: 1px solid var(--accent-tint-border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.crux-resolving-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.crux-resolving-fact { font-size: 14.5px; line-height: 1.5; color: var(--ink); font-weight: 600; }

.crux-obtain-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.crux-obtain-item { display: flex; flex-direction: column; gap: 3px; min-width: 180px; }
.crux-obtain-item .k { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); }
.crux-obtain-item .v { font-size: 13px; color: var(--ink-2); line-height: 1.45; }

.crux-deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.crux-deadline-badge.yes { background: var(--report-tint); color: var(--report); border: 1px solid var(--report-border); }
.crux-deadline-badge.no { background: var(--rejected-tint); color: var(--rejected); border: 1px solid var(--rejected-border); }

.crux-verdict {
  border-top: 1px solid var(--accent-tint-border);
  padding-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.crux-verdict-text { font-size: 13px; line-height: 1.55; color: var(--ink-2); flex: 1 1 320px; }
.crux-verdict-text b { color: var(--ink); }

.crux-not-reached {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--surface-2);
}
.crux-not-reached-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.crux-not-reached-body { font-size: 13.5px; line-height: 1.6; color: var(--ink-2); }
.crux-not-reached-body b { color: var(--ink); }

/* ============================================================
   agreements / divergences
   ============================================================ */

.agreements-list { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.agreements-list li { font-size: 13px; line-height: 1.55; color: var(--ink-2); }

.divergence {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
  background: var(--surface-2);
}
.divergence:last-child { margin-bottom: 0; }
.divergence-top { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.divergence-positions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
@media (max-width: 700px) { .divergence-positions { grid-template-columns: 1fr; } }
.divergence-position { font-size: 12.5px; line-height: 1.5; color: var(--ink-2); }
.divergence-position .k { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); margin-bottom: 2px; }
.divergence-resolve { font-size: 12px; color: var(--ink-muted); border-top: 1px dashed var(--border); padding-top: 8px; line-height: 1.5; }
.divergence-resolve b { color: var(--ink-2); }

/* ============================================================
   optimist / pessimist position panels
   ============================================================ */

.panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) { .panels { grid-template-columns: 1fr; } }

.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 8px; flex-wrap: wrap; }
.panel-head h3 { margin: 0; }

.stance-thesis { font-size: 13.5px; line-height: 1.55; color: var(--ink); font-weight: 600; margin-bottom: 14px; }

.reasoning-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 8px;
  background: var(--surface-2);
}
.reasoning-item:last-child { margin-bottom: 0; }
.reasoning-claim { font-size: 12.5px; line-height: 1.5; color: var(--ink-2); margin-bottom: 6px; }
.reasoning-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 10.5px; }
.reasoning-refs { font-family: var(--font-mono); font-weight: 700; color: var(--accent); }
.reasoning-tag {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--surface-3);
  color: var(--ink-muted);
}

.wwcmm-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); margin: 14px 0 6px; }
.wwcmm-list { margin: 0; padding-left: 18px; font-size: 12.5px; color: var(--ink-2); line-height: 1.6; }

.panel-word-count { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); }

/* ============================================================
   evidence pack
   ============================================================ */

.evidence-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 8px;
  background: var(--surface-2);
}
.evidence-item:last-child { margin-bottom: 0; }
.evidence-top { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.evidence-id { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--accent); }
.evidence-confidence {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1px 6px;
  border-radius: 4px;
  background: var(--surface-3);
  color: var(--ink-muted);
}
.evidence-statement { font-size: 12.5px; line-height: 1.5; color: var(--ink-2); margin-bottom: 4px; }
.evidence-source { font-size: 11px; color: var(--ink-faint); }

.pack-context { font-size: 13px; line-height: 1.55; color: var(--ink-2); margin-bottom: 14px; }
.pack-deadline { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); margin-bottom: 14px; }

/* ============================================================
   gate log
   ============================================================ */

.gate-log { display: flex; flex-direction: column; gap: 8px; }
.gate-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.gate-status-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.gate-status-dot.pass { background: var(--pass); }
.gate-status-dot.fail { background: var(--fail); }
.gate-row-body { flex: 1 1 auto; min-width: 0; }
.gate-row-name { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink); font-weight: 600; }
.gate-row-detail { font-size: 12px; color: var(--ink-muted); margin-top: 3px; line-height: 1.5; word-break: break-word; }
.gate-row.fail .gate-row-detail { color: var(--rejected); }

/* -- not captured state -- */

.not-captured { border: 1.5px dashed var(--border-strong); border-radius: var(--radius-sm); padding: 16px 14px; background: var(--surface-2); }
.not-captured .nc-label {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-muted); margin-bottom: 8px;
}
.not-captured .nc-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid var(--ink-faint); flex-shrink: 0; }
.not-captured .nc-reason { font-size: 12.5px; color: var(--ink-2); line-height: 1.55; }

/* ============================================================
   footer
   ============================================================ */

.foot { max-width: 1400px; margin: 0 auto; padding: 10px 24px 32px; color: var(--ink-faint); font-size: 11.5px; }
.foot code { background: var(--surface-2); padding: 1px 5px; border-radius: 3px; }
