:root {
  color-scheme: dark;
  --ink: #eef8ff;
  --muted: #91aabd;
  --dim: #617a8e;
  --void: #02060a;
  --panel: #07121c;
  --panel-soft: #0b1824;
  --line: rgba(151, 205, 236, .16);
  --blue: #2f80ff;
  --cyan: #52e8ff;
  --green: #34d399;
  --amber: #f4a949;
  --red: #ff647c;
  --display: "Michroma", sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; background: var(--void); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(21, 112, 166, .2), transparent 32rem),
    linear-gradient(180deg, #02070c 0%, #03080d 50%, #020508 100%);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  max-width: 100%;
  overflow-x: clip;
}
body:before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .12;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(122, 205, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 205, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
.preview-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 max(20px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(2, 8, 13, .9);
  backdrop-filter: blur(18px);
}
.preview-brand { font: 400 13px/1 var(--display); letter-spacing: .08em; text-decoration: none; }
.preview-brand span { color: var(--cyan); }
.preview-nav nav { display: flex; gap: 22px; }
.preview-nav nav a { color: var(--muted); font-size: 13px; text-decoration: none; }
.preview-nav nav a:hover { color: white; }
.visually-hidden, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  color: black;
}
.observatory-shell { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }
.hero { padding: 124px 0 28px; }
.hero-copy { max-width: 930px; margin-bottom: 42px; }
.live-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(82, 232, 255, .26);
  border-radius: 999px;
  color: #b8d5e7;
  background: rgba(6, 17, 26, .78);
  font: 600 12px/1 var(--mono);
  letter-spacing: .08em;
}
.status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dim);
  box-shadow: 0 0 0 5px rgba(97, 122, 142, .1);
}
.live-ribbon[data-state="fresh"] .status-light {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(52, 211, 153, .12), 0 0 18px rgba(52, 211, 153, .7);
}
.live-ribbon[data-state="stale"] .status-light { background: var(--amber); }
.live-ribbon[data-state="error"] .status-light { background: var(--red); }
.ribbon-divider { width: 1px; height: 14px; background: var(--line); }
.eyebrow, .micro-label {
  color: var(--cyan);
  font: 600 12px/1.3 var(--mono);
  letter-spacing: .14em;
}
.hero .eyebrow { margin: 28px 0 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font: 400 clamp(38px, 5.5vw, 72px)/1.04 var(--display);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-lede {
  max-width: 760px;
  margin-bottom: 26px;
  color: #b6cad8;
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.button-primary { background: var(--blue); color: white; box-shadow: 0 12px 36px rgba(47, 128, 255, .28); }
.button-secondary { border: 1px solid var(--line); background: rgba(8, 21, 31, .72); }
.button:hover, .filter-chip:hover, .provider-card:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* Shared 360 degree scope instrument. Geometry lives in
   /assets/hive-radar-scope.css, which the homepage beacon loads too. */
.instrument-stage { display: grid; gap: 16px; min-width: 0; }
.instrument {
  position: relative;
  padding: 20px 20px 18px;
  border: 1px solid rgba(82, 232, 255, .23);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 42%, rgba(47, 128, 255, .12), transparent 58%),
    #020a10;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .58), inset 0 0 80px rgba(39, 165, 220, .08);
  isolation: isolate;
}
.instrument.hrs {
  --hrs-live: var(--green);
  --hrs-blue: var(--blue);
  --hrs-fault: var(--red);
  --hrs-line: var(--line);
  --hrs-ink: var(--ink);
  --hrs-muted: var(--muted);
}
.instrument[data-scope-missing] { padding: 26px; color: var(--muted); font: 500 13px/1.5 var(--mono); }
.telemetry-rack {
  padding: 18px;
  border: 1px solid rgba(82, 232, 255, .27);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(8, 23, 34, .96), rgba(3, 10, 16, .94));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5), inset 0 0 34px rgba(82, 232, 255, .04);
}
.hero > .telemetry-rack,
.hero > .signal-marquee { grid-column: 1 / -1; }
.telemetry-providers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.telemetry-head { display: flex; justify-content: space-between; gap: 12px; color: #a9c4d5; font: 600 12px/1 var(--mono); letter-spacing: .08em; }
.telemetry-seal { color: var(--green); }
.telemetry-provider {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 24, 35, .7);
}
.telemetry-provider-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.telemetry-provider-head strong { font-size: 15px; }
.telemetry-provider-head span { color: var(--green); font: 600 12px/1 var(--mono); }
.telemetry-model { margin: 5px 0 12px; overflow: hidden; color: var(--dim); font: 12px/1.4 var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.telemetry-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.telemetry-metrics span { color: #8eaabc; font-size: 12px; }
.telemetry-metrics b { display: block; color: white; font: 600 18px/1.2 var(--mono); }
.telemetry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 0; }
.telemetry-grid div { padding-top: 10px; border-top: 1px solid var(--line); }
.telemetry-grid dt { color: var(--dim); font-size: 12px; }
.telemetry-grid dd { margin: 3px 0 0; color: #d7eaf5; font: 500 12px/1.3 var(--mono); }
.telemetry-placeholder { height: 110px; margin-top: 14px; border-radius: 12px; background: linear-gradient(90deg, #091722, #102535, #091722); background-size: 200% 100%; animation: shimmer 1.5s linear infinite; }
.signal-marquee {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #061019;
}
.marquee-label { padding: 11px 14px; color: var(--cyan); background: rgba(47, 128, 255, .13); font: 600 12px/1.4 var(--mono); letter-spacing: .08em; }
.marquee-window { overflow: hidden; }
.signal-marquee, .marquee-window { max-width: 100%; contain: inline-size; }
.activity-tape {
  width: max-content;
  padding: 11px 0 11px 24px;
  color: #9fb7c6;
  font: 12px/1.4 var(--mono);
  white-space: nowrap;
  animation: crawl 24s linear infinite;
}

.section { padding: 110px 0 0; scroll-margin-top: 90px; }
.section-header { max-width: 820px; margin-bottom: 36px; }
.section-header h2, .sidecar-copy h2, .boundary-section h2 {
  margin: 10px 0 16px;
  font: 400 clamp(28px, 3.5vw, 44px)/1.15 var(--display);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.section-header p:not(.eyebrow), .sidecar-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.split-header { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(270px, .6fr); gap: 44px; max-width: none; align-items: end; }
.split-header > p { margin: 0; }
.window-key { display: flex; flex-wrap: wrap; gap: 14px 18px; color: var(--muted); font: 12px/1.4 var(--mono); }
.window-key span { display: inline-flex; align-items: center; gap: 7px; }
.key-dot, .key-ring { display: inline-block; width: 9px; height: 9px; border-radius: 50%; }
.key-dot.openrouter { background: var(--cyan); }
.key-dot.groq { background: #8e7dff; }
.key-ring { border: 2px solid var(--green); }

.pulse-board { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 16px; }
.chart-panel, .incident-rail {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(9, 24, 35, .92), rgba(3, 10, 16, .9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
.chart-panel { min-width: 0; padding: 22px; }
.chart-topline { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.chart-topline strong { display: block; margin-top: 5px; font-size: 17px; }
.chart-stat { text-align: right; }
.chart-stat span { display: block; color: var(--dim); font: 12px/1 var(--mono); }
.chart-stat strong { color: var(--cyan); font: 500 18px/1.2 var(--mono); }
.pulse-chart { min-height: 390px; margin-top: 18px; }
.pulse-chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.pulse-chart text { fill: #7f9aab; font: 12px var(--mono); }
.pulse-chart .grid { stroke: rgba(132, 188, 221, .12); stroke-width: 1; }
.pulse-chart .line-openrouter { fill: none; stroke: var(--cyan); stroke-width: 3; filter: drop-shadow(0 0 5px rgba(82, 232, 255, .48)); }
.pulse-chart .line-groq { fill: none; stroke: #8e7dff; stroke-width: 3; filter: drop-shadow(0 0 5px rgba(142, 125, 255, .42)); }
.pulse-chart .area-openrouter { fill: url(#openrouterArea); }
.pulse-chart .area-groq { fill: url(#groqArea); }
.pulse-chart .point { stroke: #07111a; stroke-width: 3; }
.pulse-chart .proof-ring { fill: none; stroke: var(--green); stroke-width: 1.5; }
.chart-footnote { margin-top: 8px; color: var(--dim); font-size: 12px; }
.incident-rail { padding: 22px 18px; }
.incident-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.incident-head h3 { margin: 5px 0 0; font-size: 20px; }
.incident-count { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); font: 600 14px/1 var(--mono); }
.incident-list { display: grid; gap: 10px; margin-top: 18px; }
.incident-item { padding: 13px; border-left: 2px solid var(--amber); background: rgba(244, 169, 73, .05); }
.incident-item[data-kind="verified"] { border-color: var(--green); background: rgba(52, 211, 153, .04); }
.incident-item strong { display: block; font-size: 14px; }
.incident-item span { color: var(--muted); font-size: 12px; }
.empty-state { padding: 24px 14px; border: 1px dashed var(--line); border-radius: 12px; color: var(--muted); }

.filter-bar { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #07131d;
  cursor: pointer;
  transition: .2s ease;
}
.filter-chip.is-active { border-color: var(--blue); background: rgba(47, 128, 255, .16); color: white; }
.provider-search input {
  min-height: 42px;
  width: 230px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: white;
  background: #07131d;
}
.constellation-summary { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.summary-pill { padding: 7px 10px; border-radius: 7px; color: #9bb3c3; background: rgba(113, 162, 191, .08); font: 12px/1.2 var(--mono); }
.summary-pill b { color: white; }
.provider-constellation { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.provider-card {
  position: relative;
  min-height: 226px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
  background: radial-gradient(circle at 100% 0, rgba(47, 128, 255, .11), transparent 42%), #07111a;
  cursor: pointer;
  transition: .2s ease;
}
.provider-card:after {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 44px;
  height: 44px;
  content: "";
  border: 1px solid rgba(100, 177, 222, .2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(47, 128, 255, .04);
}
.provider-card[data-state="recurring_live"] { border-color: rgba(52, 211, 153, .38); box-shadow: inset 0 0 38px rgba(52, 211, 153, .035); }
.provider-card[data-state="recurring_live"]:after { border-color: var(--green); box-shadow: 0 0 18px rgba(52, 211, 153, .25), inset 0 0 0 8px rgba(52, 211, 153, .06); }
.provider-card[data-state="credential_required"] { background: radial-gradient(circle at 100% 0, rgba(244, 169, 73, .08), transparent 42%), #07111a; }
.provider-card-head { display: flex; justify-content: space-between; gap: 12px; }
.provider-card h3 { margin: 0; font-size: 18px; }
.provider-state { color: var(--muted); font: 600 12px/1.3 var(--mono); text-align: right; text-transform: uppercase; }
.provider-card[data-state="recurring_live"] .provider-state { color: var(--green); }
.provider-modalities { display: flex; flex-wrap: wrap; gap: 5px; margin: 12px 0 18px; }
.provider-modalities span { padding: 4px 7px; border-radius: 999px; color: #9ab3c4; background: rgba(114, 170, 203, .08); font: 12px/1.2 var(--mono); text-transform: uppercase; }
.provider-primary { margin-bottom: 8px; color: white; font: 500 23px/1.2 var(--mono); }
.provider-secondary { max-width: 80%; color: var(--dim); font-size: 12px; }
.provider-skeleton { min-height: 226px; border-radius: 16px; background: linear-gradient(90deg, #07111a, #0d202d, #07111a); background-size: 200% 100%; animation: shimmer 1.5s linear infinite; }

.vault-stage {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  border: 1px solid rgba(82, 232, 255, .18);
  border-radius: 22px;
  background: #02080c;
}
.vault-stage img { width: 100%; height: 100%; min-height: 345px; object-fit: cover; opacity: .9; }
.vault-stage:after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 30%, rgba(2, 8, 12, .18) 62%, #02080c 84%); }
.vault-live-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 4%;
  width: min(370px, 40%);
  padding: 20px;
  transform: translateY(-50%);
  border: 1px solid rgba(82, 232, 255, .3);
  border-radius: 15px;
  background: rgba(4, 15, 23, .98);
  backdrop-filter: blur(16px);
}
.vault-live-card > strong { display: block; margin-top: 8px; font-size: 22px; }
.vault-live-card > span { color: var(--muted); }
.vault-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0; }
.vault-metrics span { padding: 10px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); font-size: 12px; }
.vault-metrics b { display: block; color: var(--green); font: 600 17px/1.2 var(--mono); }
.vault-live-card a, .text-link { color: var(--cyan); font-weight: 700; text-underline-offset: 4px; }

.sidecar-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.sidecar-flow { display: grid; grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr; align-items: center; }
.sidecar-flow > div { min-height: 150px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: #07121b; }
.sidecar-flow > div > span { color: var(--dim); font: 12px/1 var(--mono); }
.sidecar-flow strong { display: block; margin: 28px 0 6px; font-size: 14px; }
.sidecar-flow small { color: var(--muted); }
.sidecar-flow > i { height: 1px; background: linear-gradient(90deg, var(--line), var(--cyan)); }
.sidecar-flow .sidecar-active { border-color: var(--blue); box-shadow: 0 16px 45px rgba(47, 128, 255, .18); }
.sidecar-flow .sidecar-active strong { color: var(--cyan); }
.boundary-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; padding-bottom: 110px; }
.boundary-list { display: grid; gap: 8px; }
.boundary-item { padding: 14px 16px; border-left: 2px solid var(--blue); color: #afc4d2; background: rgba(47, 128, 255, .045); }
.boundary-section .text-link { grid-column: 2; }
.radar-footer { padding: 24px 0 80px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13px; }
.radar-footer .observatory-shell { display: flex; justify-content: space-between; gap: 24px; }
.footer-brand { color: white; font-family: var(--display); }

.provider-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: min(820px, calc(100vh - 28px));
  padding: 0;
  border: 1px solid rgba(82, 232, 255, .28);
  border-radius: 20px;
  color: white;
  background: #06111a;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .8);
}
.provider-dialog::backdrop { background: rgba(0, 4, 8, .82); backdrop-filter: blur(8px); }
.dialog-close { position: sticky; z-index: 2; top: 14px; float: right; margin: 14px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; background: #0a1a26; cursor: pointer; }
.dialog-body { padding: 34px; }
.dialog-body h2 { margin: 8px 0 6px; font: 400 32px/1.2 var(--display); }
.dialog-state { color: var(--green); font: 600 12px/1.4 var(--mono); text-transform: uppercase; }
.dialog-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 26px 0; }
.dialog-metric { padding: 13px; border: 1px solid var(--line); border-radius: 10px; }
.dialog-metric span { display: block; color: var(--dim); font-size: 12px; }
.dialog-metric strong { display: block; margin-top: 5px; overflow-wrap: anywhere; font: 500 14px/1.35 var(--mono); }
.dialog-boundary { padding: 16px; border-left: 2px solid var(--amber); color: #b9cad5; background: rgba(244, 169, 73, .05); }
.dialog-history { margin-top: 24px; }
.dialog-history-row { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); font: 12px/1.4 var(--mono); }

@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes crawl { to { transform: translateX(-40%); } }
@media (max-width: 980px) {
  .pulse-board, .sidecar-section, .boundary-section { grid-template-columns: 1fr; }
  .provider-constellation { grid-template-columns: repeat(2, 1fr); }
  .sidecar-section { gap: 30px; }
  .boundary-section { gap: 26px; }
  .boundary-section .text-link { grid-column: 1; }
}
@media (max-width: 700px) {
  .observatory-shell { width: min(100% - 24px, 1240px); }
  .hero { padding-top: 104px; }
  .preview-nav nav { gap: 12px; }
  .preview-nav nav a:nth-child(3), .preview-nav nav a:nth-child(4) { display: none; }
  h1 { font-size: clamp(34px, 11vw, 52px); }
  .hero-copy { margin-bottom: 28px; }
  .hero-lede { font-size: 17px; }
  .live-ribbon { max-width: 100%; }
  #hero-clock, .ribbon-divider { display: none; }
  .button { width: 100%; }
  .instrument { padding: 12px 10px 14px; border-radius: 18px; }
  .telemetry-rack { padding: 14px; }
  .telemetry-provider { padding: 11px; }
  .telemetry-grid { gap: 8px; }
  .signal-marquee { grid-template-columns: 1fr; }
  .marquee-label { text-align: center; }
  .section { padding-top: 78px; }
  .split-header { grid-template-columns: 1fr; gap: 16px; }
  .section-header h2, .sidecar-copy h2, .boundary-section h2 { font-size: clamp(26px, 8vw, 36px); }
  .pulse-board { grid-template-columns: 1fr; }
  .pulse-chart { min-height: 280px; overflow-x: auto; }
  .pulse-chart svg { min-width: 650px; }
  .filter-bar { align-items: stretch; flex-direction: column; }
  .provider-search input { width: 100%; }
  .provider-constellation { grid-template-columns: 1fr; }
  .vault-stage { min-height: 610px; }
  .vault-stage img { min-height: 360px; height: 360px; object-position: left center; }
  .vault-stage:after { background: linear-gradient(180deg, transparent 18%, rgba(2, 8, 12, .9) 58%); }
  .vault-live-card { top: auto; right: 14px; bottom: 14px; left: 14px; width: auto; transform: none; }
  .sidecar-flow { grid-template-columns: 1fr; gap: 8px; }
  .sidecar-flow > i { width: 1px; height: 18px; margin-left: 28px; background: linear-gradient(var(--line), var(--cyan)); }
  .sidecar-flow > div { min-height: 112px; }
  .sidecar-flow strong { margin-top: 18px; }
  .dialog-body { padding: 24px 18px; }
  .dialog-body h2 { font-size: 25px; }
  .dialog-metrics { grid-template-columns: 1fr 1fr; }
  .radar-footer .observatory-shell { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .activity-tape { width: auto; white-space: normal; }
}

/* Live observatory refinement */
.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 34px 38px;
  align-items: start;
  padding-top: 104px;
}
.hero-copy { max-width: 980px; margin: 0; min-width: 0; }
.hero h1 {
  max-width: 670px;
  margin-bottom: 16px;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.08;
}
.hero-lede { max-width: 620px; margin-bottom: 18px; font-size: clamp(16px, 1.5vw, 19px); }
.hero .eyebrow { margin: 20px 0 10px; }
.hero .telemetry-rack,
.hero .signal-marquee { grid-column: 1 / -1; }
.hero .signal-marquee { margin-top: 0; }

.verdict-slab {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 126px;
  margin: 18px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(82, 232, 255, .28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0 50%, rgba(47, 128, 255, .2), transparent 52%),
    linear-gradient(135deg, rgba(9, 27, 40, .96), rgba(3, 12, 19, .94));
  box-shadow: inset 0 0 32px rgba(82, 232, 255, .04), 0 18px 50px rgba(0, 0, 0, .26);
}
.verdict-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.verdict-state strong {
  margin: 9px 0 5px;
  color: var(--green);
  font: 400 20px/1.15 var(--display);
  letter-spacing: -.02em;
}
.verdict-slab[data-state="stale"] .verdict-state strong { color: var(--amber); }
.verdict-state > span:last-child { color: var(--muted); font: 12px/1.35 var(--mono); }
.verdict-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
.verdict-facts > div { padding: 13px 15px; border-bottom: 1px solid var(--line); }
.verdict-facts > div:nth-child(2) { border-left: 1px solid var(--line); }
.verdict-facts .verdict-wide { grid-column: 1 / -1; border-bottom: 0; }
.verdict-facts dt { color: var(--dim); font-size: 12px; }
.verdict-facts dd { margin: 4px 0 0; color: #e6f5ff; font: 500 12px/1.35 var(--mono); }

.compact-comb-wrap {
  margin: 0 0 14px;
  padding: 12px 14px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(4, 14, 22, .86);
}
.compact-comb-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 7px;
  color: var(--muted);
  font: 600 12px/1.3 var(--mono);
}
.compact-comb-head a { color: var(--cyan); text-underline-offset: 3px; }

.sounding-comb { position: relative; min-width: 0; }
.sounding-comb-full { min-height: 330px; margin-top: 18px; }
.sounding-comb-compact { height: 72px; }
.comb-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-left: 154px;
  color: var(--dim);
  font: 12px/1 var(--mono);
}
.comb-scale span:last-child { text-align: right; color: var(--cyan); }
.sounding-comb-compact .comb-scale { display: none; }
.comb-rows { display: grid; gap: 10px; margin-top: 10px; }
.sounding-comb-compact .comb-rows { height: 62px; margin: 0; }
.comb-row {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  min-height: 118px;
  gap: 10px;
}
.sounding-comb-compact .comb-row { display: block; min-height: 62px; }
.sounding-comb-compact .comb-track { height: 62px; }
.comb-row-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
  border-right: 1px solid var(--line);
}
.comb-row-label strong { font-size: 14px; }
.comb-row-label span { margin-top: 5px; color: var(--dim); font: 12px/1.35 var(--mono); }
.comb-track {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(121, 180, 255, .2);
  background-image: repeating-linear-gradient(90deg, rgba(121, 180, 255, .1) 0 1px, transparent 1px calc(100% / 60));
  background-size: 100% 100%;
}
.freshness-shelf {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 33.333%;
  border-top: 1px solid rgba(52, 211, 153, .4);
  background: linear-gradient(180deg, rgba(52, 211, 153, .08), rgba(52, 211, 153, .015));
}
.now-gate {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 1px;
  bottom: 0;
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(82, 232, 255, .62);
}
.now-gate:before {
  position: absolute;
  top: 0;
  right: -5px;
  width: 12px;
  height: 4px;
  content: "";
  background: var(--cyan);
}
.comb-stem {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: var(--left);
  width: 9px;
  height: var(--height);
  min-height: 12px;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  border-radius: 2px 2px 0 0;
  background: rgba(82, 232, 255, .3);
  box-shadow: 0 0 14px rgba(82, 232, 255, .18);
  cursor: pointer;
}
.comb-stem.provider-groq { background: rgba(142, 125, 255, .35); }
.comb-stem i {
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 3px;
  height: var(--latency);
  max-height: 100%;
  content: "";
  background: var(--blue);
}
.comb-stem b {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 7px;
  border: 1px solid var(--green);
  background: var(--green);
  box-shadow: 0 0 12px rgba(52, 211, 153, .64);
}
.comb-stem.is-invalid b { border-color: var(--red); background: transparent; box-shadow: 0 0 12px rgba(255, 100, 124, .5); }
.comb-stem:hover, .comb-stem:focus-visible { z-index: 7; transform: translateX(-50%) scaleX(1.5); }
.comb-verdict {
  margin: 14px 0 0 154px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #bdd2df;
  font: 500 12px/1.4 var(--mono);
}

.activity-tape { width: auto; overflow: hidden; text-overflow: ellipsis; animation: none; }

.modality-axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.modality-cell {
  min-width: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
  background: rgba(7, 19, 29, .86);
  cursor: pointer;
}
.modality-cell:hover, .modality-cell.is-active { border-color: rgba(82, 232, 255, .5); background: rgba(47, 128, 255, .09); }
.modality-name { display: block; color: var(--cyan); font: 600 12px/1 var(--mono); text-transform: uppercase; }
.modality-cell strong { display: block; margin: 9px 0 3px; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.modality-cell > span:nth-child(3) { color: var(--dim); font-size: 12px; }
.modality-stack { display: flex; height: 5px; margin-top: 12px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.05); }
.modality-stack b[data-state="recurring_live"] { background: var(--green); }
.modality-stack b[data-state="archived_verified"] { background: var(--blue); }
.modality-stack b[data-state="credential_required"] { background: var(--amber); }
.modality-stack b[data-state="not_yet_exercised"] { background: var(--dim); }
.modality-stack b[data-state="unavailable"] { background: var(--red); }

.provider-constellation { display: block; }
.provider-tier { margin-top: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: rgba(5, 15, 23, .72); }
.provider-tier > header { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 14px; }
.provider-tier > header > div { display: flex; align-items: center; gap: 9px; color: var(--cyan); font: 600 12px/1 var(--mono); }
.provider-tier > header strong { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; color: white; }
.provider-tier > header p { margin: 0; color: var(--dim); font-size: 12px; }
.provider-live-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.provider-live-grid .provider-card { min-height: 278px; }
.provider-live-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 12px 0; }
.provider-live-metrics > span { padding: 9px; border: 1px solid var(--line); border-radius: 8px; color: var(--dim); font-size: 12px; }
.provider-live-metrics b { display: block; margin-top: 3px; color: white; font: 500 13px/1.3 var(--mono); }
.provider-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.provider-card-compact { min-height: 164px; padding: 14px; }
.provider-card-compact:after { width: 28px; height: 28px; }
.provider-card-compact .provider-primary { font-size: 17px; }
.provider-card-compact .provider-state { max-width: 48%; }
.provider-collapsed { padding: 0; overflow: hidden; }
.provider-collapsed summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.provider-collapsed summary::-webkit-details-marker { display: none; }
.provider-collapsed summary span { color: #d7eaf5; font-weight: 700; }
.provider-collapsed summary small { color: var(--dim); font-size: 12px; }
.provider-collapsed summary:after { content: "+"; color: var(--cyan); font: 18px/1 var(--mono); }
.provider-collapsed[open] summary:after { content: "−"; }
.provider-row-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 14px 14px; }

.vault-proof-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.vault-proof-row span { color: var(--dim); font-size: 12px; }
.vault-proof-row code { overflow: hidden; color: #d5edf9; font: 12px/1.35 var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.vault-actions { display: flex; gap: 10px; margin-top: 12px; }
.vault-actions a, .vault-actions button {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(47, 128, 255, .08);
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1 { max-width: 820px; }
  .hero .instrument-stage { grid-column: 1; }
}

@media (max-width: 760px) {
  .hero { gap: 18px; padding-top: 32px; }
  .hero .instrument-stage { order: -1; }
  .hero .telemetry-rack { display: block; }
  .hero h1 { font-size: clamp(32px, 9.5vw, 39px); }
  .hero .eyebrow { margin: 14px 0 8px; }
  .hero-lede { margin-bottom: 12px; }
  .verdict-slab { margin-top: 12px; }
  .compact-comb-wrap { margin-bottom: 10px; }
  .verdict-slab { grid-template-columns: 1fr; }
  .verdict-state { border-right: 0; border-bottom: 1px solid var(--line); }
  .verdict-state strong { font-size: 18px; }
  .comb-scale { margin-left: 0; }
  .comb-row { grid-template-columns: 1fr; gap: 4px; min-height: 150px; }
  .comb-row-label { min-height: 46px; border-right: 0; border-bottom: 1px solid var(--line); }
  .comb-track { min-height: 94px; }
  .comb-verdict { margin-left: 0; }
  .modality-axis { grid-template-columns: repeat(2, 1fr); }
  .modality-cell:last-child { grid-column: 1 / -1; }
  .provider-live-grid, .provider-archive-grid, .provider-row-list { grid-template-columns: 1fr; }
  .provider-tier > header, .provider-collapsed summary { align-items: flex-start; flex-direction: column; }
  .provider-collapsed summary:after { position: absolute; right: 18px; }
  .provider-collapsed { position: relative; }
  .provider-live-metrics { grid-template-columns: 1fr 1fr; }
  .vault-proof-row { grid-template-columns: 1fr; gap: 3px; }
  .vault-actions { flex-direction: column; }
}

/* Command center composition */
.hero {
  grid-template-areas:
    "copy scope"
    "metrics scope"
    "ticker ticker";
  gap: 22px 34px;
  padding-top: 80px;
  padding-bottom: 0;
}
.hero-copy { grid-area: copy; }
.hero .verdict-slab { display: none; }
.hero .instrument-stage { grid-area: scope; }
.hero .signal-marquee { grid-area: ticker; }
.instrument .hrs-reading-key,
.instrument .hrs-legend,
.instrument .hrs-note { display: none; }
.hero-command-rail {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.command-capsule {
  position: relative;
  min-width: 0;
  min-height: 82px;
  padding: 9px 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(10, 28, 41, .94), rgba(4, 12, 19, .94));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}
.command-capsule:after {
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 94px;
  height: 94px;
  content: "";
  border: 1px solid rgba(82, 232, 255, .09);
  border-radius: 50%;
}
.command-capsule-primary {
  border-color: rgba(52, 211, 153, .28);
  background:
    radial-gradient(circle at 100% 0, rgba(52, 211, 153, .11), transparent 46%),
    linear-gradient(145deg, rgba(10, 28, 41, .96), rgba(4, 12, 19, .96));
}
.capsule-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #87a3b7;
  font: 600 12px/1.2 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.capsule-signal {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .09), 0 0 12px rgba(52, 211, 153, .45);
}
.command-capsule > strong {
  display: block;
  margin: 7px 0 3px;
  overflow: hidden;
  color: #f2f9ff;
  font: 500 clamp(14px, 1.35vw, 19px)/1.2 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.command-capsule > small,
.command-capsule-graph > small {
  display: block;
  overflow: hidden;
  color: var(--dim);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.command-capsule-graph { grid-column: 1 / -1; min-height: 76px; padding-bottom: 5px; }
.capsule-graph-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.capsule-graph-head a { color: var(--cyan); font: 600 12px/1 var(--mono); text-underline-offset: 3px; }
.command-capsule-graph .sounding-comb-compact { height: 31px; margin: 2px 0 1px; }
.command-capsule-graph .sounding-comb-compact .comb-rows,
.command-capsule-graph .sounding-comb-compact .comb-track { height: 29px; }
.mini-pulse-skeleton {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 39px;
  padding: 5px 0 2px;
  border-bottom: 1px solid rgba(82, 232, 255, .16);
}
.mini-pulse-skeleton i {
  flex: 1;
  height: 42%;
  background: rgba(82, 232, 255, .12);
  animation: command-breathe 1.8s ease-in-out infinite alternate;
}
.mini-pulse-skeleton i:nth-child(2),
.mini-pulse-skeleton i:nth-child(6) { height: 68%; animation-delay: .2s; }
.mini-pulse-skeleton i:nth-child(3),
.mini-pulse-skeleton i:nth-child(7) { height: 31%; animation-delay: .35s; }
.mini-pulse-skeleton i:nth-child(4),
.mini-pulse-skeleton i:nth-child(8) { height: 82%; animation-delay: .5s; }
.mini-pulse-zero {
  position: relative;
  display: flex;
  align-items: end;
  gap: 7px;
  height: 47px;
  overflow: hidden;
  border-bottom: 1px solid rgba(82, 232, 255, .14);
}
.mini-pulse-zero i { flex: 1; height: 8px; border-top: 1px dashed rgba(144, 181, 204, .16); }
.mini-pulse-zero span {
  position: absolute;
  right: 0;
  bottom: 15px;
  color: var(--dim);
  font: 600 12px/1 var(--mono);
  letter-spacing: .06em;
}

.section { padding-top: 76px; }
.section-header { margin-bottom: 22px; }
.section-header h2,
.sidecar-copy h2,
.boundary-section h2 { margin-top: 7px; margin-bottom: 10px; }
.section-header p:not(.eyebrow),
.sidecar-copy p:not(.eyebrow) { margin-bottom: 0; font-size: 16px; }
.split-header { gap: 28px; }

.live-board-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, .72fr);
  gap: 12px;
}
.board-panel,
.chart-panel,
.incident-rail {
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0, rgba(47, 128, 255, .07), transparent 40%),
    linear-gradient(155deg, rgba(9, 24, 35, .94), rgba(3, 10, 16, .92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}
.board-panel { min-width: 0; padding: 18px; }
.board-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.board-panel-head h3 { margin: 5px 0 0; font-size: 18px; }
.board-counter {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 9px;
  border: 1px solid rgba(52, 211, 153, .25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(52, 211, 153, .045);
  font: 600 13px/1 var(--mono);
}
.telemetry-providers-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.telemetry-providers-board .telemetry-provider { margin: 0; min-height: 140px; }
.telemetry-provider-skeleton { position: relative; overflow: hidden; }
.telemetry-provider-skeleton:after,
.trace-row-skeleton:after,
.provider-skeleton:after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(160, 214, 244, .07), transparent);
  animation: command-scan 1.8s linear infinite;
}
.skeleton-line { height: 10px; margin-top: 13px; border-radius: 999px; background: rgba(144, 181, 204, .11); }
.skeleton-line-short { width: 42%; margin-top: 0; }
.skeleton-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.skeleton-metrics i { height: 44px; border: 1px solid rgba(144, 181, 204, .09); border-radius: 7px; }
.board-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--line);
}
.board-ledger div { min-width: 0; padding: 10px; background: rgba(4, 14, 21, .96); }
.board-ledger dt { color: var(--dim); font-size: 12px; }
.board-ledger dd {
  margin: 4px 0 0;
  overflow: hidden;
  color: #d9edf9;
  font: 500 12px/1.3 var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.trace-clock { color: var(--muted); font: 500 12px/1 var(--mono); }
.trace-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: var(--line); }
.trace-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 9px 10px;
  background: rgba(4, 14, 21, .98);
}
.trace-row > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(52, 211, 153, .38);
}
.trace-row > span { min-width: 0; overflow: hidden; color: #c9dce7; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.trace-row > span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(52, 211, 153, .42);
}
.trace-row[data-valid="false"] > span i { border: 1px solid var(--red); background: transparent; box-shadow: none; }
.trace-row > b { color: var(--muted); font: 500 12px/1 var(--mono); }
.trace-row time { color: var(--dim); font: 500 12px/1 var(--mono); }
.trace-row-skeleton { grid-template-columns: 10px 1fr 48px; }
.trace-row-skeleton > i,
.trace-row-skeleton > span,
.trace-row-skeleton > b { height: 8px; border-radius: 999px; background: rgba(144, 181, 204, .1); box-shadow: none; }
.trace-row-skeleton > span { width: 76%; }
.trace-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin-top: 12px;
  color: var(--dim);
  font-size: 12px;
}
.trace-legend span { display: inline-flex; align-items: center; gap: 6px; }
.trace-legend i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.trace-legend i[data-tone="observed"] { background: var(--blue); }
.trace-legend i[data-tone="unavailable"] { border: 1px solid var(--dim); background: transparent; }
.board-chart-panel { grid-column: 1; }
.live-board-grid > .incident-rail { grid-column: 2; grid-row: 2; }
.chart-zero-structure {
  display: grid;
  gap: 22px;
  min-height: 280px;
  padding-top: 14px;
  background-image:
    linear-gradient(rgba(130, 178, 232, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 178, 232, .08) 1px, transparent 1px);
  background-size: 100% 25%, 20% 100%;
}
.chart-zero-axis { display: flex; justify-content: space-between; color: var(--dim); font: 12px/1 var(--mono); }
.chart-zero-track { display: flex; align-items: end; gap: 8%; height: 92px; border-bottom: 1px solid rgba(82, 232, 255, .18); }
.chart-zero-track i {
  width: 7px;
  height: 34%;
  background: rgba(82, 232, 255, .14);
  animation: command-breathe 1.6s ease-in-out infinite alternate;
}
.chart-zero-track i:nth-child(2),
.chart-zero-track i:nth-child(5) { height: 74%; }
.chart-zero-track i:nth-child(3) { height: 48%; }
.chart-zero-track i:nth-child(4) { height: 88%; }
.chart-zero-track-secondary { height: 72px; opacity: .6; }
.incident-item-loading { border-left-color: var(--blue); background: rgba(47, 128, 255, .035); }
.incident-skeleton { display: grid; gap: 7px; margin-top: 16px; }
.incident-skeleton i { height: 8px; border-radius: 999px; background: rgba(144, 181, 204, .1); }
.incident-skeleton i:nth-child(2) { width: 76%; }
.incident-skeleton i:nth-child(3) { width: 48%; }

.provider-constellation { content-visibility: auto; contain-intrinsic-size: 900px; }
.provider-skeleton {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(144, 181, 204, .11), rgba(144, 181, 204, .11)) 18px 22px / 42% 10px no-repeat,
    linear-gradient(rgba(144, 181, 204, .08), rgba(144, 181, 204, .08)) 18px 52px / 70% 8px no-repeat,
    linear-gradient(90deg, #07111a, #0b1c28);
}

.vault-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  min-height: 430px;
  overflow: visible;
  border: 0;
  background: transparent;
}
.vault-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(82, 232, 255, .18);
  border-radius: 20px 0 0 20px;
  background: #02080c;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38);
}
.vault-stage .vault-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 14% center;
  opacity: .88;
}
.vault-stage:after { display: none; }
.vault-visual:after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 35%, rgba(2, 8, 12, .62)),
    linear-gradient(180deg, transparent 55%, rgba(2, 8, 12, .8));
}
.vault-visual-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 100, 124, .22);
  border-radius: 10px;
  background: rgba(3, 11, 18, .9);
  backdrop-filter: blur(12px);
}
.vault-visual-label span { color: var(--dim); font: 600 12px/1 var(--mono); letter-spacing: .08em; }
.vault-visual-label strong { color: #f2bdc6; font: 500 13px/1.3 var(--mono); }
.vault-live-card {
  position: relative;
  top: auto;
  right: auto;
  width: auto;
  padding: 24px;
  transform: none;
  border-radius: 0 20px 20px 0;
  background:
    radial-gradient(circle at 100% 0, rgba(52, 211, 153, .09), transparent 45%),
    linear-gradient(150deg, rgba(7, 23, 33, .99), rgba(3, 11, 17, .99));
}
.retention-compare {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  align-items: stretch;
  gap: 8px;
  margin: 18px 0;
}
.retention-compare > div {
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(255, 100, 124, .2);
  border-radius: 10px;
  background: rgba(255, 100, 124, .035);
}
.retention-compare .retention-hive { border-color: rgba(52, 211, 153, .27); background: rgba(52, 211, 153, .04); }
.retention-compare > i {
  position: relative;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--green));
}
.retention-compare > i:after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  content: "";
  transform: rotate(45deg);
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
}
.retention-compare span,
.retention-compare small { display: block; color: var(--dim); font-size: 12px; }
.retention-compare strong { display: block; margin: 8px 0 4px; color: #f4ced5; font: 600 13px/1.25 var(--mono); }
.retention-compare .retention-hive strong { color: #8af1b9; }

.sidecar-section {
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
.sidecar-copy { display: grid; grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr); gap: 32px; align-items: end; }
.sidecar-copy .eyebrow,
.sidecar-copy h2 { grid-column: 1; }
.sidecar-copy p:last-child { grid-column: 2; grid-row: 1 / 3; align-self: end; }
.sidecar-flow > div {
  position: relative;
  min-height: 136px;
  overflow: hidden;
}
.sidecar-flow > div:after {
  position: absolute;
  right: -24px;
  bottom: -36px;
  width: 88px;
  height: 88px;
  content: "";
  border: 1px solid rgba(82, 232, 255, .08);
  border-radius: 50%;
}

.instrument-section { content-visibility: auto; contain-intrinsic-size: 650px; }
.primitive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.primitive-tile {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 0 0, rgba(47, 128, 255, .1), transparent 42%),
    linear-gradient(145deg, rgba(8, 22, 32, .96), rgba(3, 10, 16, .96));
}
.primitive-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(82, 232, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 232, 255, .05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.primitive-copy { align-self: center; padding: 24px; }
.primitive-copy > span { color: var(--cyan); font: 600 12px/1 var(--mono); letter-spacing: .12em; }
.primitive-copy h3 { margin: 14px 0 9px; font-size: 22px; line-height: 1.2; }
.primitive-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.commit-disc,
.coverage-dial {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(82, 232, 255, .4);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(47, 128, 255, .12), inset 0 0 30px rgba(47, 128, 255, .08);
}
.commit-disc:before,
.commit-disc:after {
  position: absolute;
  width: 166px;
  height: 166px;
  content: "";
  border: 1px dashed rgba(82, 232, 255, .19);
  border-radius: 50%;
}
.commit-disc:after { width: 92px; height: 92px; border-style: solid; }
.commit-disc i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
.commit-disc b { position: absolute; top: 17px; width: 1px; height: 24px; background: var(--cyan); }
.commit-disc span { position: absolute; bottom: 20px; color: var(--muted); font: 500 12px/1 var(--mono); }
.commit-lines { position: absolute; right: 16px; bottom: 16px; display: grid; gap: 5px; }
.commit-lines i { width: 48px; height: 3px; background: rgba(82, 232, 255, .18); }
.execution-track { display: flex; align-items: center; gap: 17px; }
.execution-track i { width: 16px; height: 16px; border: 1px solid var(--cyan); transform: rotate(45deg); }
.execution-track i:not(:last-child):after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 7px 0 0 16px;
  content: "";
  background: var(--blue);
}
.execution-stamp { position: absolute; right: 18px; bottom: 17px; display: flex; align-items: center; gap: 8px; color: var(--green); font: 600 12px/1 var(--mono); }
.execution-stamp b { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(52, 211, 153, .35); border-radius: 50%; }
.coverage-dial { border: 9px solid rgba(47, 128, 255, .18); border-top-color: var(--cyan); border-right-color: var(--cyan); transform: rotate(22deg); }
.coverage-dial:after { position: absolute; inset: 12px; content: ""; border: 1px dashed rgba(82, 232, 255, .28); border-radius: 50%; }
.coverage-dial span { z-index: 1; transform: rotate(-22deg); color: white; font: 600 16px/1 var(--mono); }
.coverage-key { position: absolute; right: 17px; bottom: 17px; display: flex; gap: 5px; }
.coverage-key i { width: 9px; height: 9px; background: var(--cyan); }
.coverage-key i:last-child { border: 1px solid var(--dim); background: transparent; }
.bundle-stack { position: relative; width: 126px; height: 132px; }
.bundle-stack i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(82, 232, 255, .28);
  border-radius: 8px;
  background: rgba(5, 18, 27, .95);
}
.bundle-stack i:nth-child(1) { transform: translate(-16px, 12px); opacity: .35; }
.bundle-stack i:nth-child(2) { transform: translate(-8px, 6px); opacity: .6; }
.bundle-stack i:nth-child(3):before {
  display: block;
  width: 68%;
  height: 54px;
  margin: 20px;
  content: "";
  background: repeating-linear-gradient(180deg, rgba(82, 232, 255, .25) 0 2px, transparent 2px 11px);
}
.bundle-stack b { position: absolute; right: 13px; bottom: 13px; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: #011109; background: var(--green); box-shadow: 0 0 18px rgba(52, 211, 153, .4); }
.bundle-digest { position: absolute; right: 15px; bottom: 15px; color: var(--dim); font: 500 12px/1 var(--mono); }

.boundary-section {
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  gap: 34px;
  padding-bottom: 78px;
}
.boundary-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.boundary-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 3px 10px;
  min-height: 104px;
  padding: 13px;
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 10px;
  color: #afc4d2;
  background: rgba(7, 19, 29, .72);
}
.boundary-item > span { grid-row: 1 / 3; color: var(--cyan); font: 600 12px/1.4 var(--mono); }
.boundary-item > strong { color: #e3f0f8; font-size: 13px; }
.boundary-item > small { color: var(--muted); font-size: 12px; line-height: 1.4; }
.boundary-section .text-link { align-self: end; }

.designed-state {
  display: grid;
  gap: 10px;
  min-height: 140px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(rgba(82, 232, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 232, 255, .04) 1px, transparent 1px),
    rgba(4, 14, 21, .92);
  background-size: 24px 24px;
}
.designed-state-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.designed-state-head strong { font-size: 14px; }
.designed-state-head span { color: var(--cyan); font: 600 12px/1 var(--mono); }
.designed-state p { margin: 0; color: var(--muted); font-size: 12px; }
.designed-state-rows { display: grid; gap: 6px; }
.designed-state-rows i { height: 7px; border-radius: 999px; background: rgba(144, 181, 204, .1); }
.designed-state-rows i:nth-child(2) { width: 76%; }
.designed-state-rows i:nth-child(3) { width: 48%; }

@keyframes command-scan { to { transform: translateX(100%); } }
@keyframes command-breathe { to { opacity: .35; } }

@media (max-width: 1120px) {
  .hero {
    grid-template-areas:
      "copy"
      "scope"
      "metrics"
      "ticker";
  }
  .hero-command-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .command-capsule-graph { grid-column: 1 / -1; }
  .live-board-grid { grid-template-columns: 1fr 1fr; }
  .board-chart-panel,
  .live-board-grid > .incident-rail { grid-column: 1 / -1; grid-row: auto; }
  .vault-stage { grid-template-columns: 1fr; }
  .vault-visual { border-radius: 20px 20px 0 0; }
  .vault-live-card { border-radius: 0 0 20px 20px; }
  .primitive-tile { grid-template-columns: 170px minmax(0, 1fr); }
}

@media (max-width: 780px) {
  .hero {
    grid-template-areas:
      "scope"
      "copy"
      "metrics"
      "ticker";
  }
  .hero-command-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .command-capsule-graph { grid-column: 1 / -1; }
  .live-board-grid { grid-template-columns: 1fr; }
  .telemetry-providers-board { grid-template-columns: 1fr; }
  .board-ledger { grid-template-columns: 1fr 1fr; }
  .board-ledger div:last-child { grid-column: 1 / -1; }
  .section { padding-top: 58px; }
  .sidecar-copy { grid-template-columns: 1fr; gap: 12px; }
  .sidecar-copy .eyebrow,
  .sidecar-copy h2,
  .sidecar-copy p:last-child { grid-column: 1; grid-row: auto; }
  .primitive-grid { grid-template-columns: 1fr; }
  .primitive-tile { grid-template-columns: 148px minmax(0, 1fr); min-height: 245px; }
  .primitive-visual { min-height: 245px; }
  .primitive-copy { padding: 18px; }
  .primitive-copy h3 { font-size: 19px; }
  .boundary-section { grid-template-columns: 1fr; }
  .boundary-list { grid-template-columns: 1fr 1fr; }
  .boundary-section .text-link { grid-column: 1; }
}

@media (max-width: 520px) {
  .hero-command-rail { gap: 7px; }
  .command-capsule { min-height: 104px; padding: 12px; }
  .command-capsule > strong { font-size: 14px; }
  .trace-row { grid-template-columns: 58px minmax(0, 1fr); }
  .trace-row > b { grid-column: 2; }
  .vault-stage { min-height: 0; }
  .vault-visual,
  .vault-stage .vault-visual img { min-height: 310px; }
  .retention-compare { grid-template-columns: 1fr; }
  .retention-compare > i { width: 1px; height: 20px; margin-left: 20px; background: linear-gradient(var(--red), var(--green)); }
  .retention-compare > i:after { top: auto; right: -3px; bottom: -1px; transform: rotate(135deg); }
  .primitive-tile { grid-template-columns: 1fr; }
  .primitive-visual { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .boundary-list { grid-template-columns: 1fr; }
}
