@font-face {
  font-family: Manrope;
  src: url("./assets/manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --paper: #f6f5ef;
  --surface: #fffefb;
  --surface-soft: #f0f2eb;
  --ink: #153e35;
  --muted: #4c6258;
  --text-caption: 12px;
  --text-control: 13px;
  --text-body: 14px;
  --line: #dce2d8;
  --accent: #257761;
  --accent-soft: #e3eee5;
  --coral: #c77b59;
  --shadow: 0 10px 35px #163f3510;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --paper: #0c1311;
  --surface: #1b2823;
  --surface-soft: #24372e;
  --ink: #f2f5ef;
  --muted: #b3c3bb;
  --line: #466051;
  --accent: #b4e4b8;
  --accent-soft: #314f3c;
  --coral: #ffb28b;
  --shadow: 0 10px 35px #0005;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    14px/1.6 Manrope,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button,
a,
input,
select,
summary {
  touch-action: manipulation;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
button,
select,
input {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 7px;
}
button:hover,
a.button:hover {
  filter: brightness(0.96);
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  color: var(--muted);
  margin: 0 0 14px;
}
h1,
h2,
h3,
h4 {
  font-weight: 650;
  letter-spacing: -0.055em;
  margin: 0;
  line-height: 1.16;
}
h2 {
  font-size: clamp(28px, 3vw, 37px);
}
h3 {
  font-size: 23px;
}
h4 {
  font-size: 17px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
select {
  max-width: 100%;
  min-height: 36px;
  padding: 5px 24px 5px 8px;
}
input {
  min-height: 38px;
  padding: 7px 11px;
}
button {
  min-height: 40px;
  padding: 8px 13px;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 20px;
  transform: translateY(-120%);
  background: var(--surface);
  padding: 10px;
}
.skip-link:focus {
  transform: none;
}
.page-width {
  max-width: 1264px;
  width: calc(100% - 104px);
  margin-inline: auto;
}
.site-header {
  max-width: 1380px;
  min-height: 89px;
  width: calc(100% - 64px);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.wordmark img {
  opacity: 0.86;
}
.wordmark-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  margin-left: 1px;
}
:root[data-theme="dark"] .wordmark img {
  filter: invert(88%) sepia(10%) saturate(344%) hue-rotate(68deg);
}
.site-header nav {
  display: flex;
  gap: 27px;
  font-size: 12px;
  font-weight: 650;
  margin-left: 20px;
}
.site-header nav a:hover,
.text-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-left: auto;
}
.forest-link {
  font-size: 12px;
  color: var(--muted);
}
.theme-toggle {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 8px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 46px;
  border-radius: 7px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.button.primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.button.small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 12px;
}
.text-link {
  font-size: 12px;
  font-weight: 650;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  position: relative;
  padding-top: 63px;
  padding-bottom: 40px;
  min-height: 417px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.7px;
  color: var(--accent);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
h1 {
  font-size: clamp(44px, 5vw, 65px);
  line-height: 1.06;
  letter-spacing: -3.3px;
}
.hero-description {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 24px;
}
.hero-footnote {
  font-size: 12px;
  margin-top: 17px;
}
.hero-landscape {
  background: url("./assets/forest-light.png") right bottom/auto 100% no-repeat;
  position: absolute;
  right: -15px;
  top: 40px;
  bottom: 15px;
  width: 58%;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000);
}
:root[data-theme="dark"] .hero-landscape {
  background-image: url("./assets/forest-dark.png");
  filter: brightness(0.85) saturate(0.6);
  mask-image:
    linear-gradient(90deg, transparent, #000 32%, #000 93%, transparent),
    linear-gradient(0deg, transparent, #000 24%, #000 80%, transparent);
  mask-composite: intersect;
}
.landscape-caption {
  position: absolute;
  right: 12%;
  top: 27%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  transform: rotate(-3deg);
  opacity: 0.66;
}
.landscape-caption strong {
  font-size: 16px;
  font-weight: 500;
}
.proof-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.proof-strip strong {
  font-size: 21px;
  font-weight: 650;
  color: var(--ink);
  margin-right: 7px;
  letter-spacing: -0.8px;
}
.proof-note {
  margin-left: auto;
  font-size: 12px;
  max-width: 255px;
  text-align: right;
}
.explore-section {
  padding-top: 48px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section-heading .eyebrow {
  margin-bottom: 10px;
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.8;
  margin: 0 0 3px;
}
.explorer-card,
.connections-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.view-tabs {
  display: flex;
  padding: 0 23px;
  gap: 29px;
  border-bottom: 1px solid var(--line);
  min-height: 58px;
  align-items: stretch;
}
.view-tabs button {
  border: 0;
  border-radius: 0;
  background: none;
  font-size: 12px;
  font-weight: 650;
  padding: 17px 0;
  color: var(--muted);
  position: relative;
}
.view-tabs button[aria-selected="true"] {
  color: var(--ink);
}
.view-tabs button[aria-selected="true"]:after {
  content: "";
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.live-status {
  font-size: 12px;
  margin-left: auto;
  align-self: center;
  color: var(--muted);
}
.live-status:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 6px;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 23px;
  border-bottom: 1px solid var(--line);
}
.control {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.control > span {
  color: var(--muted);
}
.control select {
  font-size: 12px;
}
.toggle-filter {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  min-height: 40px;
  white-space: nowrap;
}
.filter-button {
  font-size: 12px;
  background: none;
  border-color: var(--line);
  margin-left: 4px;
  white-space: nowrap;
}
.search-control {
  margin-left: auto;
  max-width: 210px;
  flex: 1;
  min-width: 130px;
}
.search-control input {
  width: 100%;
  font-size: 12px;
  background: var(--paper);
}
.extra-filters {
  background: var(--surface-soft);
  padding: 12px 23px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.extra-filters p {
  font-size: 12px;
  margin: 0;
}
.axis-bar {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 10px 23px;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.axis-bar > div {
  display: flex;
  gap: 17px;
}
.axis-bar label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.axis-bar select {
  border: 0;
  background: none;
  font-size: 12px;
  min-height: 28px;
  padding: 3px 18px 3px 4px;
  max-width: 180px;
}
.subtle-button {
  border: 0;
  background: transparent;
  font-size: 12px;
  min-height: 30px;
  padding: 3px 0;
}
.axis-bar .subtle-button:first-of-type {
  margin-left: auto;
}
.workload-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 23px;
  background: var(--surface-soft);
  font-size: 12px;
}
.workload-controls input {
  width: 120px;
  margin-left: 6px;
}
.workload-controls span {
  margin-left: auto;
}
.chart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
}
.chart-main {
  min-width: 0;
  padding: 23px 23px 0;
}
.plot-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.plot-heading h3 {
  font-size: 17px;
  letter-spacing: -0.5px;
}
.plot-heading p {
  font-size: 12px;
  margin: 6px 0 0;
}
.chart-hint {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.main-chart {
  min-height: 315px;
  position: relative;
}
.main-chart svg,
.flow-chart svg {
  display: block;
  width: 100%;
  overflow: visible;
  font-family: Manrope, Arial, sans-serif;
}
.chart-legend {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  min-height: 24px;
  padding: 4px 0 12px;
  font-size: 12px;
  color: var(--muted);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dot);
}
.chart-footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 11px 0;
  min-height: 57px;
}
.chart-footer p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.inspect-select {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  max-width: 48%;
}
.inspect-select select {
  font-size: 12px;
  min-height: 31px;
  max-width: 220px;
  min-width: 80px;
}
.inspector {
  border-left: 1px solid var(--line);
  padding: 24px 21px;
  background: color-mix(in srgb, var(--surface-soft) 45%, var(--surface));
  min-width: 0;
}
.inspector .eyebrow {
  font-size: 12px;
  margin-bottom: 10px;
}
.inspector h3 {
  font-size: 23px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.inspector > p {
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.85;
}
.inspector-empty {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
  font-size: 12px;
  color: var(--muted);
}
.inspector-empty span:before {
  content: "↗";
  color: var(--accent);
  margin-right: 12px;
}
.model-id {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin: 16px 0;
}
.endpoint-route-list {
  max-height: 240px;
  overflow: auto;
  overscroll-behavior: contain;
  display: grid;
  gap: 5px;
  margin-block: 12px;
}
.endpoint-route {
  width: 100%;
  text-align: left;
  background: var(--surface);
  padding: 9px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.endpoint-route[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 2px 0 var(--accent);
}
.endpoint-detail {
  padding: 12px;
  margin-block: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.endpoint-detail p {
  font-size: 12px;
}
.model-id code {
  font-size: 12px;
  overflow-wrap: anywhere;
  flex: 1;
}
.model-id button {
  padding: 3px 7px;
  min-height: 31px;
  font-size: 12px;
  border: 0;
  background: none;
}
.metric-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.metric-pair span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.metric-pair strong {
  display: block;
  font-size: 25px;
  letter-spacing: -1px;
  font-weight: 600;
  margin-top: 5px;
}
.price-outlier-note {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.5;
  margin: -7px 0 19px;
}
.detail-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.detail-list div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: baseline;
  font-size: 12px;
}
.detail-list dt {
  color: var(--muted);
}
.detail-list dd {
  margin: 0;
  text-align: right;
  overflow-wrap: anywhere;
}
.tag-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tag {
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 5px;
}
.inspector .button {
  width: 100%;
  margin-top: 18px;
  min-height: 38px;
  font-size: 12px;
  padding-inline: 10px;
}
.inspector .source-link {
  display: inline-block;
  font-size: 12px;
  color: var(--accent);
  margin-top: 12px;
}
.inspector small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 12px;
}
.quota-note {
  border-left: 2px solid var(--coral);
  padding: 7px 0 7px 10px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}
.quota-note strong {
  display: block;
  color: var(--ink);
}
.provider-compare {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.provider-compare h4 {
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.compare-row {
  font-size: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px;
  align-items: center;
  margin-bottom: 9px;
}
.compare-bar {
  height: 4px;
  grid-column: 1/-1;
  background: var(--accent-soft);
  border-radius: 3px;
  overflow: hidden;
}
.compare-bar i {
  display: block;
  background: var(--accent);
  height: 4px;
}
.disclosure-strip {
  display: flex;
  gap: 12px;
  padding: 13px 23px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.disclosure-strip strong {
  color: var(--ink);
  font-weight: 600;
}
.disclosure-icon {
  border: 1px solid var(--muted);
  border-radius: 50%;
  font-size: 12px;
  min-width: 13px;
  height: 13px;
  line-height: 12px;
  text-align: center;
  margin-top: 3px;
}
.inline-button {
  font-size: inherit;
  color: var(--accent);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  min-height: 24px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.source-details {
  font-size: 12px;
  color: var(--muted);
  padding: 15px 0;
}
.source-details summary {
  cursor: pointer;
}
.source-details summary span {
  float: right;
  font-size: 12px;
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 18px 0;
}
.source-item {
  padding: 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
}
.source-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}
.source-item a {
  color: var(--accent);
  text-decoration: underline;
}
.source-item p {
  margin: 4px 0;
}
.connections-section {
  padding-top: 48px;
  padding-bottom: 65px;
}
.flow-controls {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 17px 23px;
  border-bottom: 1px solid var(--line);
}
.flow-period {
  font-size: 12px;
  margin-left: auto;
  color: var(--muted);
}
.flow-chart {
  padding: 18px 24px 0;
  min-height: 300px;
}
.flow-inspection {
  margin: 5px 24px;
  padding: 10px 12px;
  background: var(--surface-soft);
  border-radius: 6px;
  min-height: 40px;
  font-size: 12px;
}
.flow-inspection a {
  text-decoration: underline;
  color: var(--accent);
}
.chart-note {
  font-size: 12px;
  line-height: 1.8;
  padding: 8px 24px 17px;
  margin: 0;
}
.connection-cta {
  background: url("./assets/forest-light.png") right bottom/auto 100% no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 45px 0 37px;
  min-height: 380px;
  position: relative;
}
:root[data-theme="dark"] .connection-cta {
  background-image: none;
  isolation: isolate;
}
:root[data-theme="dark"] .connection-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("./assets/forest-dark.png") right bottom/auto 110% no-repeat;
  filter: brightness(0.85) saturate(0.6);
  opacity: 0.8;
  mask-image:
    linear-gradient(90deg, transparent 20%, #000 65%, #000),
    linear-gradient(0deg, transparent, #000 26%, #000 74%, transparent);
  mask-composite: intersect;
}
.connection-cta .page-width {
  position: relative;
}
.connection-cta h2 {
  font-size: 43px;
  line-height: 1.11;
  max-width: 550px;
}
.connection-cta p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 17px;
}
.connection-cta .button {
  margin-top: 8px;
}
.client-row {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 650;
  margin-top: 23px;
  flex-wrap: wrap;
}
.connection-cta p.cta-caption {
  font-size: 12px;
  margin-top: 14px;
}
.lower-links {
  padding-block: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
}
.lower-links .eyebrow {
  font-size: 12px;
}
.lower-links h3 {
  font-size: 24px;
}
.lower-links p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 12px;
}
.site-footer {
  display: flex;
  gap: 25px;
  align-items: center;
  min-height: 100px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.site-footer .wordmark {
  font-size: 14px;
  color: var(--ink);
}
.site-footer > span {
  margin-right: auto;
}
.limits-dialog {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 28px;
  max-width: 760px;
  width: calc(100% - 32px);
  max-height: 85vh;
  box-shadow: 0 25px 100px #0004;
}
.limits-dialog::backdrop {
  background: #06191088;
  backdrop-filter: blur(3px);
}
.dialog-heading {
  display: flex;
  align-items: start;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dialog-heading h2 {
  font-size: 28px;
}
.icon-button {
  font-size: 24px;
  line-height: 1;
  min-width: 40px;
  padding: 6px;
  background: none;
}
.limits-dialog h3 {
  font-size: 20px;
  margin: 22px 0 12px;
}
.limits-dialog p {
  font-size: 12px;
}
.limits-dialog a {
  color: var(--accent);
  text-decoration: underline;
}
.quota-bars {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.quota-bars > div {
  display: grid;
  grid-template-columns: 180px 1fr 65px;
  gap: 15px;
  align-items: center;
  font-size: 12px;
}
.quota-bars i {
  height: 8px;
  background: var(--accent);
  min-width: 4px;
  border-radius: 3px;
}
.quota-bars strong {
  font-size: 13px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 8px;
  z-index: 30;
  box-shadow: var(--shadow);
  font-size: 12px;
}
.empty-chart {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}
.empty-chart h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.empty-chart p {
  font-size: 12px;
  max-width: 430px;
}
.empty-chart .button {
  font-size: 12px;
}
.chart-axis text {
  font-size: 12px;
  fill: var(--muted);
}
.chart-axis path,
.chart-axis line {
  stroke: var(--line);
  shape-rendering: crispEdges;
}
.chart-grid line {
  stroke: var(--line);
  stroke-dasharray: 2 4;
  opacity: 0.65;
}
.chart-grid path {
  display: none;
}
.axis-title {
  fill: var(--muted);
  font-size: 12px;
}
.data-point {
  cursor: pointer;
  opacity: 1;
  stroke: var(--surface);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.data-point:hover,
.data-point.selected {
  stroke: var(--ink);
  stroke-width: 2.5;
  opacity: 1 !important;
}
.plot-callout {
  fill: var(--ink);
  font-size: 12px;
  paint-order: stroke;
  stroke: var(--surface);
  stroke-width: 4px;
  stroke-linejoin: round;
  pointer-events: none;
}
.chart-tooltip {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  background: var(--ink);
  color: var(--paper);
  max-width: 240px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 12px;
  box-shadow: var(--shadow);
}
.flow-node {
  cursor: pointer;
}
.flow-node text {
  fill: var(--ink);
  font-size: 12px;
}
.flow-link {
  cursor: pointer;
  fill: none;
  stroke-linecap: round;
  opacity: 0.42;
  transition: opacity 0.15s;
}
.flow-link:hover,
.flow-link:focus {
  opacity: 0.85 !important;
}
.flow-label-small {
  fill: var(--muted);
  font-size: 12px;
}
.filter-note {
  font-size: 12px;
  padding: 10px 22px;
  margin: 0;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero {
    min-height: 445px;
  }
  .hero-landscape {
    background-size: auto 110%;
  }
}
@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
  }
  .site-header nav {
    gap: 16px;
    margin: 0;
  }
  .header-actions {
    gap: 12px;
  }
  .forest-link {
    display: none;
  }
  .page-width {
    width: calc(100% - 64px);
  }
  .chart-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }
  .filter-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .search-control {
    max-width: none;
  }
  .proof-strip {
    gap: 22px;
  }
  .axis-bar {
    gap: 12px;
  }
  .chart-hint {
    display: none;
  }
  .flow-controls {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 36px);
    min-height: 76px;
  }
  .site-header nav {
    display: none;
  }
  .page-width {
    width: calc(100% - 40px);
  }
  .hero {
    padding-top: 44px;
    min-height: 385px;
  }
  .hero-landscape {
    width: 57%;
    right: -20px;
    opacity: 0.8;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-copy {
    min-width: 420px;
  }
  .landscape-caption {
    display: none;
  }
  .proof-strip {
    gap: 22px;
    flex-wrap: wrap;
  }
  .proof-note {
    max-width: none;
    flex-basis: 100%;
    text-align: left;
    margin: 0;
  }
  .chart-layout {
    grid-template-columns: minmax(0, 1fr) 225px;
  }
  .chart-main {
    padding-inline: 15px;
  }
  .inspector {
    padding: 22px 16px;
  }
  .chart-footer {
    display: block;
  }
  .inspect-select {
    margin-top: 9px;
    max-width: 100%;
  }
  .inspect-select select {
    max-width: 90%;
    flex: 1;
  }
  .axis-bar > div {
    gap: 7px;
  }
  .axis-bar select {
    max-width: 150px;
  }
  .section-heading > p {
    max-width: 220px;
  }
  .view-tabs {
    gap: 24px;
  }
  .flow-period {
    max-width: 160px;
  }
  .connection-cta {
    background-position: 70% bottom;
  }
  .connection-cta .page-width {
    background: linear-gradient(90deg, var(--paper), transparent 95%);
  }
  .site-footer > span {
    display: none;
  }
  .site-footer .wordmark {
    margin-right: auto;
  }
}
@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    gap: 8px;
  }
  .wordmark {
    font-size: 15px;
    gap: 5px;
  }
  .wordmark img {
    width: 22px;
    height: 22px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-actions > .button {
    display: none;
  }
  .theme-toggle {
    font-size: 18px;
    min-width: 44px;
    justify-content: center;
  }
  .theme-toggle span {
    display: none;
  }
  .page-width {
    width: calc(100% - 32px);
  }
  .hero {
    display: block;
    min-height: 480px;
    padding-top: 35px;
    padding-bottom: 100px;
  }
  .hero-copy {
    min-width: 0;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2.8px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-landscape {
    top: auto;
    height: 195px;
    bottom: -10px;
    width: 100%;
    opacity: 0.65;
    mask-image: linear-gradient(0deg, #000, transparent 100%);
    background-size: cover;
  }
  .hero-footnote {
    font-size: 12px;
  }
  .proof-strip {
    gap: 13px;
    justify-content: space-between;
    padding-block: 17px;
    font-size: 12px;
  }
  .proof-strip strong {
    font-size: 19px;
    display: block;
    margin-bottom: 3px;
  }
  .proof-note {
    font-size: 12px;
    line-height: 1.7;
  }
  .explore-section {
    padding-top: 32px;
  }
  .section-heading {
    display: block;
    margin-bottom: 19px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading > p {
    max-width: none;
    font-size: 12px;
    margin-top: 13px;
  }
  .section-heading > p br {
    display: none;
  }
  .section-heading .eyebrow {
    font-size: 12px;
  }
  .view-tabs {
    gap: 19px;
    padding-inline: 16px;
    flex-wrap: wrap;
    min-height: 58px;
  }
  .view-tabs button {
    font-size: 12px;
    min-height: 44px;
  }
  .live-status {
    flex-basis: 100%;
    margin: 0;
    padding-bottom: 11px;
    font-size: 12px;
  }
  .filter-bar {
    padding: 14px;
    gap: 8px;
  }
  .control {
    gap: 5px;
    font-size: 12px;
  }
  .control select {
    font-size: 12px;
    min-height: 40px;
    max-width: 150px;
  }
  .toggle-filter {
    font-size: 12px;
    min-height: 44px;
  }
  .filter-button {
    font-size: 12px;
    margin-left: auto;
    min-height: 40px;
  }
  .search-control {
    min-width: 100%;
    margin: 0;
  }
  .search-control input {
    min-height: 42px;
  }
  .extra-filters {
    padding: 14px;
    gap: 10px;
  }
  .axis-bar {
    padding: 10px 14px;
    gap: 10px;
  }
  .axis-bar > div {
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
    justify-content: space-between;
  }
  .axis-bar label {
    font-size: 12px;
  }
  .axis-bar select {
    min-height: 34px;
    max-width: 155px;
  }
  .axis-bar .subtle-button:first-of-type {
    margin-left: auto;
  }
  .workload-controls {
    flex-wrap: wrap;
    gap: 10px;
  }
  .workload-controls span {
    margin: 0;
  }
  .chart-layout {
    display: block;
  }
  .chart-main {
    padding: 19px 13px 0;
  }
  .plot-heading h3 {
    font-size: 16px;
  }
  .plot-heading p {
    font-size: 12px;
    line-height: 1.8;
  }
  .main-chart {
    min-height: 310px;
  }
  .chart-footer p {
    font-size: 12px;
  }
  .chart-legend {
    font-size: 12px;
    gap: 9px;
  }
  .inspector {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 23px;
    display: block;
  }
  .inspector .metric-pair strong {
    font-size: 27px;
  }
  .inspector-empty {
    flex-direction: row;
    margin-top: 22px;
  }
  .inspector h3 {
    font-size: 23px;
  }
  .inspector .button {
    width: auto;
    min-width: 200px;
  }
  .detail-list {
    max-width: 440px;
  }
  .disclosure-strip {
    padding: 14px;
    font-size: 12px;
  }
  .source-details summary span {
    float: none;
    display: block;
    margin-top: 7px;
  }
  .source-grid {
    grid-template-columns: 1fr;
  }
  .connections-section {
    padding-top: 28px;
    padding-bottom: 36px;
  }
  .flow-controls {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px;
  }
  .flow-period {
    max-width: none;
    font-size: 12px;
    width: 100%;
    margin: 4px 0;
  }
  .flow-chart {
    padding: 15px 8px 0;
  }
  .flow-inspection {
    margin: 5px 13px;
  }
  .chart-note {
    padding: 10px 13px 17px;
  }
  .connection-cta {
    padding: 34px 0;
    min-height: 420px;
    background-size: auto 90%;
    background-position: 70% bottom;
  }
  .connection-cta h2 {
    font-size: 35px;
  }
  .connection-cta p:not(.eyebrow) {
    font-size: 12px;
    max-width: 300px;
  }
  .desktop-break {
    display: none;
  }
  .client-row {
    gap: 12px;
    font-size: 12px;
    max-width: 270px;
  }
  .lower-links {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-block: 33px;
  }
  .lower-links br {
    display: none;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 13px;
    padding-block: 23px;
    font-size: 12px;
    min-height: 90px;
  }
  .site-footer .wordmark {
    width: 100%;
    font-size: 14px;
  }
  .limits-dialog {
    padding: 22px;
  }
  .dialog-heading h2 {
    font-size: 25px;
  }
  .quota-bars > div {
    grid-template-columns: 130px 1fr 60px;
    gap: 9px;
  }
  .chart-tooltip {
    max-width: 200px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
.native-prices {
  margin: 18px 0;
}
.native-price {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 12px;
}
.native-price strong {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.8px;
}
.native-price small {
  margin-top: 3px;
}
.native-prices > p {
  font-size: 12px;
}
.pack-group-label {
  font-size: 12px;
  fill: var(--ink);
  paint-order: stroke;
  stroke: var(--surface);
  stroke-width: 3px;
  pointer-events: none;
}
@media (min-width: 681px) {
  .inspector {
    max-height: 545px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
  }
}
.more-views {
  align-self: center;
  margin-left: 0;
}
.more-views select {
  font-size: 12px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  max-width: 155px;
}
.more-views select:focus {
  color: var(--ink);
}
.axis-bar select {
  font-size: 12px;
}
.disclosure-strip {
  font-size: 12px;
}
@media (max-width: 680px) {
  .more-views {
    margin-left: auto;
  }
  .more-views select {
    max-width: 135px;
    font-size: 12px;
  }
  .view-tabs {
    column-gap: 15px;
  }
  .disclosure-strip {
    font-size: 12px;
  }
}
@media (max-width: 680px) {
  .state-query-grid {
    grid-template-columns: 1fr;
  }
  .state-measurement-card {
    grid-template-columns: 1fr;
  }
  .state-ledger-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 680px) {
  .view-tabs {
    row-gap: 0;
    padding-bottom: 8px;
  }
  .more-views {
    order: 5;
  }
  .live-status {
    order: 4;
    flex-basis: auto;
    margin-right: auto;
    padding-bottom: 0;
  }
  .more-views select {
    min-height: 40px;
  }
}
/* Selected Open Field composition: a compact two-column introduction. */
@media (min-width: 901px) {
  .site-header {
    min-height: 76px;
  }
  .hero {
    display: block;
    min-height: 270px;
    padding-top: 32px;
    padding-bottom: 27px;
  }
  .hero-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 55px;
  }
  .hero-copy > .eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 17px;
  }
  .hero h1 {
    grid-column: 1;
    grid-row: 2/5;
    font-size: clamp(49px, 4.9vw, 65px);
    letter-spacing: -3px;
  }
  .hero-description {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
    margin: 8px 0 0;
    max-width: 440px;
  }
  .hero-actions {
    grid-column: 2;
    grid-row: 3;
    margin-top: 17px;
    gap: 20px;
  }
  .hero-footnote {
    grid-column: 2;
    grid-row: 4;
    font-size: 12px;
    margin: 14px 0 0;
  }
  .hero-landscape {
    top: 0;
    bottom: 0;
    width: 56%;
    background-size: auto 115%;
    opacity: 0.65;
  }
  .landscape-caption {
    display: none;
  }
  .proof-strip {
    padding-block: 13px;
  }
  .proof-strip strong {
    font-size: 19px;
  }
  .explore-section {
    padding-top: 30px;
  }
  .section-heading {
    margin-bottom: 21px;
  }
  .section-heading .eyebrow {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .connection-cta {
    min-height: 260px;
    padding: 32px 0 27px;
    background-size: auto 110%;
  }
  .connection-cta h2 {
    font-size: 34px;
    max-width: 650px;
  }
  .connection-cta h2 br {
    display: none;
  }
  .connection-cta .eyebrow {
    margin-bottom: 12px;
  }
  .connection-cta p:not(.eyebrow) {
    font-size: 12px;
    margin-top: 12px;
    max-width: 600px;
  }
  .connection-cta .button {
    position: absolute;
    right: 9%;
    top: 58px;
  }
  .connection-cta .client-row {
    font-size: 12px;
    gap: 24px;
    margin-top: 18px;
  }
  .connection-cta p.cta-caption {
    font-size: 12px;
    margin-top: 12px;
  }
  .lower-links {
    padding-block: 35px;
  }
  .site-footer {
    min-height: 80px;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: 420px;
    padding-bottom: 70px;
  }
  .hero-landscape {
    height: 155px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .proof-strip {
    font-size: 12px;
  }
  .proof-strip strong {
    font-size: 18px;
  }
}
:root[data-theme="dark"] .data-point,
:root[data-theme="dark"] .legend-dot,
:root[data-theme="dark"] .main-chart svg > path[fill="none"],
:root[data-theme="dark"] .main-chart svg g[role="button"] rect,
:root[data-theme="dark"] .flow-node circle {
  filter: brightness(1.65) saturate(0.8);
}
:root[data-theme="dark"] .data-point {
  opacity: 0.88;
}
:root[data-theme="dark"] .flow-link {
  filter: brightness(1.6) saturate(0.8);
  opacity: 0.38;
}
/* Explorer readability and filter hierarchy. Keep typography stable at narrow widths. */
.explorer-status {
  padding: 8px 22px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}
.explorer-status .live-status {
  font-size: var(--text-caption);
}
.view-tabs {
  flex-wrap: wrap;
  gap: 4px 22px;
  padding: 0 22px;
  overflow: visible;
}
.view-tabs button {
  font-size: var(--text-control);
  min-height: 48px;
  padding: 13px 0;
  white-space: nowrap;
}
#model-controls > .filter-bar {
  display: grid;
  grid-template-columns: minmax(200px, 1.45fr) minmax(150px, 1fr) minmax(
      150px,
      1fr
    ) auto auto;
  align-items: end;
  gap: 12px;
  padding: 16px 22px 12px;
  border-bottom: 0;
}
#model-controls .search-control {
  margin: 0;
  min-width: 0;
  max-width: none;
  display: grid;
  gap: 6px;
}
#model-controls .search-control > span,
.control > span {
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-caption);
}
#model-controls > .filter-bar .control {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.control,
.control select,
.search-control input,
.toggle-filter,
.filter-button {
  font-size: var(--text-control);
}
.control select,
.search-control input {
  min-height: 42px;
  min-width: 0;
  width: 100%;
}
.filter-button {
  min-height: 42px;
  margin: 0;
}
.filter-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  padding: 0 22px 13px;
  border-bottom: 1px solid var(--line);
}
.filter-summary p {
  margin: 0;
  flex-basis: 100%;
  color: var(--ink);
  font-size: var(--text-control);
  font-weight: 600;
}
#active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-chip {
  min-height: 34px;
  border-radius: 20px;
  background: var(--accent-soft);
  border-color: transparent;
  padding: 4px 11px;
  font-size: var(--text-caption);
  max-width: 100%;
  overflow-wrap: anywhere;
}
.filter-summary .subtle-button {
  margin-left: auto;
  font-size: var(--text-caption);
  padding: 4px;
  min-height: 36px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.provider-pair-control {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 10px 18px;
  align-items: center;
  padding: 11px 22px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent-soft) 44%, var(--surface));
}
.provider-pair-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.provider-pair-heading strong {
  font-size: var(--text-control);
  color: var(--ink);
}
.provider-pair-heading span {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.4;
}
.provider-pair-fields {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}
.provider-pair-fields label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: var(--text-caption);
}
.provider-pair-fields select {
  min-width: 0;
  width: 150px;
  min-height: 34px;
  font-size: var(--text-caption);
}
.provider-pair-fields .pair-vs {
  color: var(--accent);
  font-size: var(--text-control);
  font-weight: 750;
}
.provider-pair-fields .subtle-button {
  margin-left: auto;
  white-space: nowrap;
}
.pair-comparison {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
}
.pair-comparison-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  color: var(--muted);
  font-size: var(--text-caption);
}
.pair-comparison-heading strong {
  color: var(--ink);
  font-size: var(--text-control);
}
.pair-comparison-empty {
  font-size: var(--text-control);
  margin: 9px 0 0;
}
.pair-comparison-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 9px;
  font-size: var(--text-caption);
}
.pair-comparison-table caption {
  text-align: left;
  color: var(--muted);
  margin-bottom: 5px;
}
.pair-comparison-table th,
.pair-comparison-table td {
  border-bottom: 1px solid var(--line);
  padding: 6px 8px 6px 0;
  text-align: left;
  vertical-align: top;
}
.pair-comparison-table th {
  color: var(--ink);
  font-weight: 650;
}
.pair-comparison-table code {
  overflow-wrap: anywhere;
}
.capability-state-view {
  padding: 4px 0 18px;
}
.state-provider-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.state-provider-chip {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  padding: 7px 9px;
}
.state-provider-chip strong {
  font-size: 12px;
}
.state-provider-chip small {
  color: var(--muted);
  font-size: 11px;
}
.state-query-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.state-query-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.state-query-card h4 {
  font-size: 17px;
  margin-bottom: 7px;
}
.state-query-card p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.state-measurement-card {
  background: color-mix(in srgb, var(--accent-soft) 48%, var(--surface));
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 12px 18px;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  margin: 0 0 22px;
  padding: 14px 16px;
}
.state-measurement-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.state-measurement-card h4 span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-left: 5px;
}
.state-measurement-card p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.state-measurement-cost {
  margin-top: 8px !important;
}
.state-measurement-foot {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  padding-top: 9px;
}
.state-vantage-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.state-vantage {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  padding: 7px 9px;
}
.state-vantage strong {
  font-size: 11px;
}
.state-vantage small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .05em;
}
.state-query-meta {
  display: grid;
  grid-template-columns: minmax(90px, .35fr) minmax(0, 1fr);
  gap: 6px 14px;
  margin: 0;
}
.state-query-meta div {
  display: contents;
}
.state-query-meta dt {
  color: var(--muted);
  font-size: 12px;
}
.state-query-meta dd {
  margin: 0;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.state-query-meta code {
  margin-right: 4px;
}
.state-ledger-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}
.state-ledger-heading h4 {
  font-size: 18px;
}
.state-ledger-heading .eyebrow {
  margin-bottom: 3px;
}
.state-table-wrap {
  max-height: 560px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
}
.state-table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}
.state-table th,
.state-table td {
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  font-size: 12px;
}
.state-table thead th {
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
  position: sticky;
  text-transform: uppercase;
  top: 0;
  z-index: 1;
}
.state-table tbody tr:last-child th,
.state-table tbody tr:last-child td {
  border-bottom: 0;
}
.state-table tbody th {
  color: var(--ink);
  font-weight: 650;
  max-width: 300px;
}
.state-table tbody th code {
  display: block;
  overflow-wrap: anywhere;
}
.state-table tbody th small {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
}
.state-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  text-transform: uppercase;
}
.state-live {
  background: var(--accent-soft);
  color: var(--ink);
}
.state-rate_limited {
  background: color-mix(in srgb, var(--coral) 18%, var(--surface));
  color: var(--ink);
}
.state-unknown {
  background: transparent;
  color: var(--muted);
}
.state-table-note {
  font-size: 12px;
  margin: 9px 0 0;
}
.pair-axis path,
.pair-axis line {
  stroke: var(--line);
}
.pair-axis text,
.pair-value,
.pair-legend text {
  fill: var(--muted);
  font-size: 11px;
}
.pair-bar {
  cursor: pointer;
  opacity: 0.84;
}
.pair-bar:hover,
.pair-bar:focus {
  opacity: 1;
  outline: none;
}
.extra-filters {
  gap: 12px 20px;
  padding: 12px 22px;
}
.extra-filters p {
  font-size: var(--text-caption);
  flex-basis: 100%;
}
.axis-bar {
  padding: 12px 22px;
  gap: 10px 16px;
  background: var(--surface-soft);
}
.axis-bar,
.axis-bar label,
.axis-bar select,
.axis-bar .subtle-button {
  font-size: var(--text-caption);
  color: var(--ink);
}
.axis-bar label {
  flex-wrap: wrap;
  gap: 6px;
}
.axis-bar select {
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 38px;
  max-width: 220px;
  padding: 6px 24px 6px 8px;
}
.axis-bar > div {
  flex-wrap: wrap;
  gap: 10px 16px;
}
.axis-bar .subtle-button {
  min-height: 38px;
  padding: 4px 0;
}
.axis-bar .subtle-button:first-of-type {
  margin-left: 0;
}
#alternate-controls {
  flex-wrap: wrap;
  gap: 12px 18px;
}
#alternate-controls .control {
  min-width: 160px;
  max-width: 100%;
  flex: 1 1 200px;
  display: grid;
  gap: 5px;
}
.chart-layout {
  grid-template-columns: minmax(0, 1fr) 305px;
}
.chart-main {
  padding: 22px 22px 0;
}
.plot-heading {
  align-items: start;
}
.plot-heading h3 {
  font-size: 21px;
}
.plot-heading p,
.chart-footer p,
.chart-note,
.flow-inspection,
.flow-period,
.filter-note {
  font-size: var(--text-control);
  line-height: 1.65;
}
.chart-hint,
.chart-legend,
.inspect-select,
.inspect-select select {
  font-size: var(--text-caption);
}
.chart-legend {
  gap: 8px 15px;
}
.legend-dot {
  width: 9px;
  height: 9px;
}
.main-chart .tick text,
.main-chart text.axis-label,
.flow-label-small {
  font-size: var(--text-caption);
  fill: var(--ink);
}
.chart-footer {
  flex-wrap: wrap;
  align-items: start;
}
.chart-footer p {
  flex-basis: 100%;
}
.inspect-select {
  max-width: 100%;
  width: 100%;
  margin: 0 0 8px;
}
.inspect-select select {
  max-width: 100%;
  flex: 1;
  min-height: 42px;
}
.inspector {
  padding: 23px 20px;
}
.inspector p,
.inspector small,
.inspector > small,
.detail-list > div,
.native-price small,
.quota-note,
.quota-note small,
.provider-compare small {
  font-size: var(--text-control);
  line-height: 1.65;
}
.inspector .eyebrow,
.metric-pair span,
.model-id,
.model-id button,
.compare-row,
.native-price span,
.endpoint-detail,
.endpoint-route {
  font-size: var(--text-caption);
}
.inspector h3 {
  overflow-wrap: anywhere;
}
.quota-note {
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid var(--line);
}
.quota-note strong {
  font-size: var(--text-body);
}
.disclosure-strip {
  font-size: var(--text-body);
  color: var(--ink);
  padding: 18px 22px;
  align-items: start;
  background: var(--surface-soft);
}
.disclosure-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
.disclosure-strip p {
  color: var(--ink);
  margin: 3px 0;
  font-size: var(--text-body);
  line-height: 1.65;
}
.disclosure-strip .inline-button {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 0;
  font-size: var(--text-control);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.disclosure-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  font-size: 14px;
}
.source-details summary,
.source-item p,
.source-item a {
  font-size: var(--text-control);
}
.flow-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 12px 18px;
}
.flow-controls .control {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.flow-controls .flow-period {
  grid-column: 1 / -1;
  margin: 0;
  max-width: none;
  white-space: normal;
  overflow-wrap: normal;
}
.flow-chart {
  min-width: 0;
}
.flow-link {
  opacity: 0.42;
}
:root[data-theme="dark"] .flow-link {
  opacity: 0.54;
}
#limits-dialog p,
#limits-dialog small,
#limits-dialog .detail-list > div {
  font-size: var(--text-body);
  color: var(--ink);
}
#limits-dialog .quota-bars {
  font-size: var(--text-control);
}
[hidden] {
  display: none !important;
}
@media (max-width: 1180px) {
  #model-controls > .filter-bar {
    grid-template-columns: minmax(180px, 1.3fr) minmax(150px, 1fr) minmax(
        150px,
        1fr
      );
  }
  #model-controls .toggle-filter,
  #model-controls .filter-button {
    justify-self: start;
  }
  .chart-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
  }
}
@media (max-width: 1000px) {
  .chart-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .inspector {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .inspector .detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
  }
  .inspector .button.primary {
    width: auto;
    display: inline-flex;
    margin-right: 15px;
  }
  .view-tabs {
    gap: 0 20px;
  }
}
@media (max-width: 680px) {
  .view-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
    padding: 0 15px;
  }
  .view-tabs button {
    text-align: left;
    font-size: var(--text-control);
    padding: 10px 0;
  }
  .explorer-status {
    padding: 9px 15px;
  }
  #model-controls > .filter-bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 15px;
    gap: 10px;
  }
  #model-controls .search-control {
    grid-column: 1 / -1;
  }
  #model-controls .toggle-filter {
    white-space: normal;
  }
  #model-controls .filter-button {
    justify-self: stretch;
    padding-inline: 8px;
  }
  .control select,
  .search-control input {
    font-size: 16px;
  }
  .filter-summary,
  .extra-filters,
  .axis-bar {
    padding-inline: 15px;
  }
  .provider-pair-control {
    grid-template-columns: 1fr;
    padding-inline: 15px;
  }
  .provider-pair-fields {
    flex-wrap: wrap;
  }
  .provider-pair-fields label {
    flex: 1 1 140px;
  }
  .provider-pair-fields select {
    width: auto;
    flex: 1;
  }
  .provider-pair-fields .subtle-button {
    margin-left: 0;
  }
  .pair-comparison-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .pair-comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .axis-bar > div {
    flex-basis: 100%;
  }
  .axis-bar label {
    flex-wrap: nowrap;
    width: 100%;
  }
  .axis-bar select {
    max-width: none;
    min-width: 0;
    flex: 1;
    font-size: var(--text-control);
  }
  .axis-bar > #text-axes {
    display: grid;
    grid-template-columns: 1fr;
  }
  .chart-main {
    padding: 18px 12px 0;
  }
  .plot-heading h3 {
    font-size: 20px;
  }
  .flow-controls {
    grid-template-columns: minmax(0, 1fr);
  }
  .flow-controls .control {
    display: grid;
  }
  .flow-controls .flow-period {
    grid-column: auto;
  }
  .inspector .detail-list {
    grid-template-columns: 1fr;
  }
  .disclosure-strip {
    padding: 18px 15px;
  }
  .workload-controls {
    flex-wrap: wrap;
    font-size: var(--text-control);
  }
  .workload-controls label {
    flex-basis: 100%;
  }
  .workload-controls input {
    max-width: 100%;
  }
}
/* Compact, source-backed overview. */
#overview-panel {
  padding: 22px;
}
.loading-overview {
  padding: 20px;
}
.overview-section + .overview-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.overview-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 15px;
}
.overview-section-head h3 {
  font-size: 23px;
}
.overview-section-head p {
  font-size: 13px;
  margin: 0;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.overview-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 19px;
  background: var(--surface);
}
.overview-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.overview-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.overview-card p {
  font-size: 13px;
  line-height: 1.65;
}
.overview-kicker {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  color: var(--muted);
}
.overview-stat {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
}
.overview-note {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 12px;
}
.overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  margin-top: 12px;
}
.overview-actions .button {
  min-height: 40px;
  padding: 8px 13px;
  font-size: 13px;
}
.overview-choice-list {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}
.overview-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  position: relative;
  text-align: left;
  min-height: 44px;
  border: 0;
  border-radius: 5px;
  background: var(--surface-soft);
  padding: 8px 12px;
  font-size: 13px;
  overflow: hidden;
}
.overview-choice:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  width: var(--overview-share, 0%);
  left: 0;
}
.overview-choice > span {
  position: relative;
  z-index: 1;
}
.overview-mini-chart {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.overview-mini-chart text {
  fill: var(--ink);
  font:
    12px Manrope,
    Arial,
    sans-serif;
}
.overview-inspection {
  font-size: 13px;
  padding: 9px 12px;
  background: var(--surface-soft);
  border-radius: 6px;
  overflow-wrap: anywhere;
}
.overview-source-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.overview-source-button {
  text-align: left;
  padding: 12px;
  font-size: 13px;
  min-height: 70px;
  border-color: var(--line);
  border-left: 4px solid var(--accent);
}
.overview-source-button[data-state="failed"],
.overview-source-button[data-state="stale"],
.overview-source-button[data-state="delayed"] {
  border-left-color: var(--coral);
}
.overview-source-button[data-state="unknown"] {
  border-left-color: var(--muted);
}
.overview-source-button strong,
.overview-source-button small {
  display: block;
  font-size: 13px;
}
.overview-tool-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.overview-tool-groups ul {
  padding: 0;
  list-style: none;
  margin: 10px 0 0;
}
.overview-tool-link {
  display: block;
  font-size: 13px;
  padding: 7px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1000px) {
  .overview-source-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .overview-tool-groups {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }
}
@media (max-width: 680px) {
  #overview-panel {
    padding: 15px;
  }
  .overview-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .overview-card {
    padding: 15px;
  }
  .overview-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.overview-section-head {
  display: block;
}
.overview-section-head .overview-kicker {
  margin-bottom: 7px;
}
.overview-section-head h2 {
  font-size: 26px;
  letter-spacing: -0.04em;
}
.overview-project-list {
  margin: 12px 0;
  padding-left: 22px;
}
.overview-project-list li {
  padding: 9px 4px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.overview-project-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.overview-project-metric {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.overview-project-rank {
  background: linear-gradient(
    90deg,
    var(--accent-soft) var(--overview-share),
    transparent var(--overview-share)
  );
  border-bottom: 1px solid var(--line);
}
.overview-history-item {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.overview-history-link {
  font-size: 14px;
  font-weight: 650;
  padding: 4px 0;
  min-height: 34px;
  border: 0;
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.overview-history-chart {
  max-height: 85px;
}
.overview-history-item p {
  margin-bottom: 7px;
}
.overview-unit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.overview-details {
  margin-top: 15px;
  font-size: 13px;
}
.overview-details summary {
  cursor: pointer;
  min-height: 40px;
  padding: 8px 0;
  font-weight: 600;
}
.overview-run-id {
  display: block;
  font-size: 12px;
  margin: 7px 0;
  overflow-wrap: anywhere;
}
.overview-speed-note {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}
.overview-tool-groups h3 {
  font-size: 18px;
}
button.overview-tool-link {
  border: 0;
  border-radius: 0;
  background: none;
  text-align: left;
}
.overview-contract-list {
  padding-left: 20px;
}
.overview-contract-list li {
  margin: 8px 0;
  overflow-wrap: anywhere;
}
.overview-inspection {
  margin-top: 10px;
}
.overview-card .control {
  flex-wrap: wrap;
  gap: 6px;
}
.overview-card .control select {
  flex: 1 1 180px;
  width: 100%;
  max-width: 100%;
}
#alternate-controls .control select,
.flow-controls .control select {
  max-width: none;
  width: 100%;
}
.history-members {
  padding-left: 18px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
@media (max-width: 680px) {
  #alternate-controls .control {
    flex-basis: 100%;
    width: 100%;
  }
}
@media (max-width: 680px) {
  .overview-section-head h2 {
    font-size: 23px;
  }
}
.overview-quota-note {
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: var(--surface-soft);
  margin: 12px 0;
}
.overview-card .overview-quota-note p {
  color: var(--ink);
  font-size: 14px;
  margin: 3px 0 8px;
}
