/* ============================================================
 * Capabilities page v2 — alternating spotlight rows
 * ============================================================ */
.cp {
  padding: 32px 0 96px;
  background: var(--bg-app);
}

.cp__row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.cp__row:last-child { border-bottom: 0; }
.cp__row--right .cp__copy   { order: 2; }
.cp__row--right .cp__visual { order: 1; }
@media (max-width: 980px) {
  .cp__row { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .cp__row--right .cp__copy { order: 1; }
  .cp__row--right .cp__visual { order: 2; }
}

.cp__copy { max-width: 480px; }

.cp__kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  margin-bottom: 16px;
}
.cp__kicker .mono { color: var(--accent-strong); letter-spacing: 0.06em; }
.cp__kicker-dash {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
}
.cp__kicker-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.cp__title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 660;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}
.cp__body {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
  max-width: 46ch;
}
.cp__verbs {
  list-style: none;
  padding: 24px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cp__verbs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 540;
  color: var(--fg-2);
  letter-spacing: -0.005em;
}
.cp__verbs li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Visual frame — dark, glassy, no marketing tropes */
.cp__visual {
  position: relative;
  min-width: 0;
}
.cp__visual-frame {
  position: relative;
  background: #0E1117;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 60px -24px rgba(11, 18, 32, 0.30);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
}
.cp__visual-frame > * { width: 100%; height: 100%; }

/* ============================================================
 * Shared visual base (.cpv) — dark, mono-tight, restrained
 * ============================================================ */
.cpv {
  color: #E8EAEF;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  padding: 22px;
  gap: 14px;
}

/* ---------- 01 · Ask ---------- */
.cpv--ask {
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(33,214,199,0.08), transparent 70%),
    #0E1117;
  gap: 12px;
}

/* Answer bubble — replaces the old "proposed plan" — satellite analytics */
.cpv__answer {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.cpv__answer-text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(232, 234, 239, 0.88);
  letter-spacing: -0.005em;
}
.cpv__answer-text b { color: #FFFFFF; font-weight: 620; }

/* Temporal-compare imagery — two panes side-by-side */
.cpv__sat {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 10px;
  overflow: hidden;
  background: #0A0E14;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cpv__sat-pane {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #0D1218;
}
.cpv__sat-svg { width: 100%; height: 100%; display: block; }
/* "−30 d" pane — genuinely older imagery (Wayback) needs only a light neutral
   recede vs the "now" pane, not a heavy sepia (30-day-old optical isn't warm). */
.cpv__sat-pane--past .sat::after {
  background:
    linear-gradient(rgba(8, 11, 16, 0.18), rgba(8, 11, 16, 0.18)),
    radial-gradient(130% 100% at 50% 45%, transparent 52%, rgba(5, 8, 13, 0.52) 100%);
}
.cpv__sat-pane-label {
  position: absolute;
  top: 6px; left: 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(10,14,20,0.55);
}
.cpv__sat-label {
  position: absolute;
  bottom: 6px; right: 8px;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

/* Tiny analytics row under the imagery */
.cpv__answer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cpv__answer-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 10px;
  position: relative;
}
.cpv__answer-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.cpv__answer-k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 234, 239, 0.5);
}
.cpv__answer-v {
  font-size: 14px;
  font-weight: 620;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.cpv__answer-v--warn { color: #E0A85F; }

/* Composer — sits below the answer, +/mic/send */
.cpv__composer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 13px;
  color: rgba(232, 234, 239, 0.88);
  letter-spacing: -0.005em;
}
.cpv__composer-plus,
.cpv__composer-mic {
  width: 30px; height: 30px;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: rgba(232, 234, 239, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 160ms var(--ease-standard), color 160ms var(--ease-standard);
}
.cpv__composer-plus:hover,
.cpv__composer-mic:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}
.cpv__composer-text {
  font-size: 12.5px;
  color: rgba(232, 234, 239, 0.88);
  overflow: visible;
  white-space: nowrap;
  padding: 0 4px;
}
.cpv__composer-send {
  width: 30px; height: 30px;
  border: 0;
  border-radius: 9999px;
  background: var(--accent);
  color: #07111F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- 02 · Map ---------- */
.cpv--map { padding: 0; background: #0F141C; position: relative; }
.cpv--map svg { display: block; width: 100%; height: 100%; }

/* Copilot peek on the map */
.cpv__map-copilot {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 6px;
  padding: 5px 5px 5px 5px;
  border-radius: 9999px;
  background: rgba(10, 14, 20, 0.66);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.6);
}
.cpv__map-copilot-plus,
.cpv__map-copilot-send {
  width: 26px; height: 26px;
  border: 0;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cpv__map-copilot-plus {
  background: transparent;
  color: rgba(232, 234, 239, 0.7);
}
.cpv__map-copilot-plus:hover { color: #FFFFFF; background: rgba(255,255,255,0.06); }
.cpv__map-copilot-send {
  background: var(--accent);
  color: #07111F;
}
.cpv__map-copilot-text {
  font-size: 12px;
  color: rgba(232, 234, 239, 0.92);
  letter-spacing: -0.005em;
  padding: 0 6px;
  white-space: nowrap;
}

/* ---------- 03 · Monitor ---------- */
.cpv--mon { background: #0E1117; }
.cpv__mon-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: rgba(232, 234, 239, 0.88);
}
.cpv__mon-head .mono { font-size: 10.5px; color: rgba(232, 234, 239, 0.55); font-weight: 500; }
.cpv__mon-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cpv__mon-row {
  display: grid;
  grid-template-columns: 4px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cpv__mon-bar {
  display: block;
  width: 3px; height: 28px;
  border-radius: 2px;
}
.cpv__mon-bar--running { background: #6FD9C0; }
.cpv__mon-bar--alert   { background: #E0A85F; box-shadow: 0 0 8px rgba(224,168,95,0.5); }
.cpv__mon-bar--queued  { background: rgba(232, 234, 239, 0.3); }
.cpv__mon-body { min-width: 0; }
.cpv__mon-name {
  font-size: 12.5px;
  font-weight: 540;
  color: rgba(232, 234, 239, 0.92);
  letter-spacing: -0.005em;
}
.cpv__mon-note {
  font-size: 10.5px;
  color: rgba(232, 234, 239, 0.55);
  margin-top: 2px;
}
.cpv__mon-row--alert .cpv__mon-note { color: #E0A85F; }
.cpv__mon-cad {
  font-size: 10px;
  color: rgba(232, 234, 239, 0.55);
  padding: 2px 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- 04 · Desk dashboard ---------- */
.cpv--desk {
  background: #0E1117;
  padding: 14px;
  gap: 10px;
}
.cpv__desk-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cpv__desk-name {
  font-size: 13px;
  font-weight: 620;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  margin-right: 8px;
}
.cpv__desk-asof {
  font-size: 10px;
  color: rgba(232, 234, 239, 0.55);
}
.cpv__desk-fresh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(232, 234, 239, 0.7);
  padding: 3px 9px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.cpv__desk-fresh-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #6FD9C0;
}

.cpv__desk-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.cpv__desk-kpi {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cpv__desk-kpi-k {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 234, 239, 0.5);
}
.cpv__desk-kpi-v {
  font-size: 16px;
  font-weight: 660;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.cpv__desk-kpi-v--crit { color: #F19390; }
.cpv__desk-kpi-v--warn { color: #E0A85F; }
.cpv__desk-kpi-d {
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(232, 234, 239, 0.5);
}
.cpv__desk-kpi-d--ok { color: #6FD9C0; }

.cpv__desk-body {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 8px;
  flex: 1;
}

.cpv__desk-watchlist {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cpv__desk-watchlist-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 234, 239, 0.5);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2px;
}
.cpv__desk-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
  font-size: 11px;
}
.cpv__desk-row-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.cpv__desk-row-name > span:first-child {
  color: #FFFFFF;
  font-weight: 540;
  letter-spacing: -0.005em;
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cpv__desk-row-sub {
  font-size: 9.5px;
  color: rgba(232, 234, 239, 0.45);
}
.cpv__desk-risk {
  font-size: 9.5px;
  font-weight: 600;
  padding: 1.5px 7px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}
.cpv__desk-risk--critical {
  background: rgba(241, 147, 144, 0.15);
  color: #F19390;
  border: 1px solid rgba(241, 147, 144, 0.30);
}
.cpv__desk-risk--high {
  background: rgba(224, 168, 95, 0.14);
  color: #E0A85F;
  border: 1px solid rgba(224, 168, 95, 0.28);
}
.cpv__desk-spark {
  width: 36px;
  height: 16px;
}
.cpv__desk-conf {
  font-size: 10.5px;
  color: rgba(232, 234, 239, 0.85);
  font-weight: 540;
  min-width: 30px;
  text-align: right;
}

.cpv__desk-actions {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cpv__desk-actions-head {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 234, 239, 0.5);
  padding: 0 4px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2px;
}
.cpv__desk-act {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 0;
  background: transparent;
  border-radius: 6px;
  font-size: 10.5px;
  color: rgba(232, 234, 239, 0.85);
  letter-spacing: -0.005em;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}
.cpv__desk-act:hover { background: rgba(255, 255, 255, 0.05); color: #FFFFFF; }
.cpv__desk-act svg { color: var(--accent); flex-shrink: 0; }

/* ---------- LEGACY 04 styles (kept for safety) ---------- */
.cpv--ws { background: #0E1117; }
.cpv__ws-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cpv__ws-tab {
  padding: 5px 10px;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 11.5px;
  color: rgba(232, 234, 239, 0.7);
  letter-spacing: -0.005em;
}
.cpv__ws-tab.is-active {
  background: var(--accent);
  color: #07111F;
  border-color: var(--accent);
  font-weight: 600;
}
.cpv__ws-plus {
  margin-left: auto;
  font-size: 11px;
  color: var(--accent);
}
.cpv__ws-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}
.cpv__ws-panel {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cpv__ws-panel--wide { grid-column: span 2; }
.cpv__ws-panel-h {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(232, 234, 239, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cpv__ws-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cpv__ws-stat b {
  font-size: 22px;
  font-weight: 660;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
}
.cpv__ws-stat span {
  font-size: 11px;
  color: rgba(232, 234, 239, 0.6);
}
.cpv__ws-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(232, 234, 239, 0.85);
}
.cpv__ws-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #6FD9C0;
  flex-shrink: 0;
}
.cpv__ws-pip--warn { background: #E0A85F; }
.cpv__ws-policy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11.5px;
  color: rgba(232, 234, 239, 0.78);
}
.cpv__ws-policy-row { display: flex; gap: 10px; align-items: baseline; }
.cpv__ws-policy-k {
  font-size: 9.5px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 80px;
}

/* ---------- 05 · Evidence ---------- */
.cpv--ev {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 30%),
    #0E1117;
  gap: 14px;
}
.cpv__ev-doc {
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cpv__ev-doc-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cpv__ev-doctype {
  font-size: 9.5px;
  color: rgba(232, 234, 239, 0.5);
  letter-spacing: 0.10em;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
}
.cpv__ev-id {
  font-size: 11px;
  color: rgba(232, 234, 239, 0.7);
}
.cpv__ev-doc-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.cpv__ev-doc-blurb {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(232, 234, 239, 0.7);
}
.cpv__ev-doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 11.5px;
  margin-top: auto;
}
.cpv__ev-doc-grid > div { display: flex; flex-direction: column; gap: 2px; }
.cpv__ev-k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(232, 234, 239, 0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cpv__ev-doc-grid span:nth-child(2) { color: rgba(232, 234, 239, 0.9); }

.cpv__ev-stamp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(33,214,199,0.10);
  border: 1px solid rgba(33,214,199,0.28);
}
.cpv__ev-stamp-k {
  font-size: 9.5px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.cpv__ev-stamp-v {
  font-size: 11px;
  color: rgba(232, 234, 239, 0.8);
  font-family: var(--font-mono);
}

/* ---------- 06 · Governance ---------- */
.cpv--gov { background: #0E1117; }

/* Approval gate — the human-in-the-loop decision moment (amber = pending). */
.cpv__gate {
  border-radius: 11px;
  background: rgba(224, 168, 95, 0.09);
  border: 1px solid rgba(224, 168, 95, 0.32);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}
.cpv__gate-head { display: flex; align-items: center; gap: 8px; }
.cpv__gate-icon { color: #E0A85F; display: inline-flex; }
.cpv__gate-title {
  font-size: 12.5px;
  font-weight: 620;
  color: #FFFFFF;
  letter-spacing: -0.005em;
}
.cpv__gate-flag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #E0A85F;
  padding: 2.5px 9px;
  border-radius: 9999px;
  background: rgba(224, 168, 95, 0.14);
  border: 1px solid rgba(224, 168, 95, 0.30);
}
.cpv__gate-body {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(232, 234, 239, 0.82);
  letter-spacing: -0.005em;
}
.cpv__gate-body b { color: #FFFFFF; font-weight: 600; }
.cpv__gate-actions { display: flex; gap: 8px; justify-content: flex-end; }
.cpv__gate-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 540;
  padding: 5px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(232, 234, 239, 0.85);
  cursor: pointer;
}
.cpv__gate-btn--approve {
  background: var(--accent);
  color: #07111F;
  border-color: var(--accent);
  font-weight: 600;
}
.cpv__gov-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
  color: rgba(232, 234, 239, 0.88);
}
.cpv__gov-head .mono { font-size: 10.5px; color: rgba(232, 234, 239, 0.55); font-weight: 500; }
.cpv__gov-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cpv__gov-list li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 4px;
  font-size: 11.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(232, 234, 239, 0.85);
}
.cpv__gov-list li:last-child { border-bottom: 0; }
.cpv__gov-list li b { color: #FFFFFF; font-weight: 600; }
.cpv__gov-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-left: 4px;
}
.cpv__gov-pip--ok    { background: #6FD9C0; }
.cpv__gov-pip--warn  { background: #E0A85F; }
.cpv__gov-pip--alert { background: #F19390; }
.cpv__gov-time { font-size: 10.5px; color: rgba(232, 234, 239, 0.5); }

/* ---------- 07 · Sources ---------- */
.cpv--src { background: #0E1117; }
.cpv__src-head {
  font-size: 12px;
  font-weight: 600;
  color: rgba(232, 234, 239, 0.88);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cpv__src-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}
.cpv__src-card {
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cpv__src-k {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.cpv__src-v {
  font-size: 12px;
  color: rgba(232, 234, 239, 0.88);
  line-height: 1.4;
}
.cpv__src-state {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(232, 234, 239, 0.55);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.cpv__src-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #6FD9C0;
}
.cpv__src-card--commercial .cpv__src-pip { background: #E0A85F; }
.cpv__src-card--customer   .cpv__src-pip { background: var(--trust-blue); }
