@font-face {
  font-family: "Material Symbols Outlined";
  src: url("/fonts/MaterialSymbolsOutlined.woff2") format("woff2");
  font-weight: 100 700;
  font-display: block;
}
.material-icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  font-feature-settings: "liga";
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  -webkit-font-smoothing: antialiased;
}
:root {
  --blue: var(--of-heading);
  --ink: var(--of-text);
  --muted: var(--of-muted);
  --border: var(--of-border);
  --lime: var(--of-action);
  --surface: var(--of-subtle);
  --violet: #ece8f7;
  --font: var(--aiden-font-body);
  --shell-header-height: 80px;
  --sidebar-rail-width: 72px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}
body {
  font: 15px/1.5 var(--font);
  color: var(--ink);
  background: #fff;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}
button,
a {
  transition:
    background 0.15s,
    color 0.15s;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #8093bf;
  outline-offset: 3px;
}
a {
  color: var(--blue);
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: var(--aiden-font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0;
  color: var(--blue);
}
h2 {
  font-size: 27px;
  line-height: 1.25;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 10px;
}
h3 {
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 0;
}
p {
  color: var(--muted);
}
small {
  font-size: 12px;
  color: var(--muted);
}
code {
  font:
    13px/1.6 ui-monospace,
    SFMono-Regular,
    monospace;
  overflow-wrap: anywhere;
  background: #f2f4f8;
  border-radius: 4px;
  padding: 3px 5px;
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip {
  position: fixed;
  top: -100px;
  z-index: 10;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 0;
}
.sidebar {
  background: var(--blue);
  color: #fff;
  width: 244px;
  position: fixed;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  z-index: 5;
  transform: translateX(-100%);
  visibility: hidden;
}
body.nav-open .sidebar {
  transform: translateX(0);
  visibility: visible;
}
.brand {
  height: var(--shell-header-height);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  color: #fff;
  border-bottom: 1px solid #ffffff26;
  font-size: 22px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--of-control-radius);
  background: rgba(255, 255, 255, 0.08);
}
.brand img {
  display: block;
  object-fit: contain;
}
.brand strong {
  font-weight: 700;
}
.nav-caption {
  font-size: 10px;
  letter-spacing: 1.8px;
  color: #becce0;
  font-weight: 700;
  padding: 28px 25px 10px;
}
.sidebar nav {
  padding: 0 12px;
  overflow-y: auto;
}
.sidebar nav .nav-caption {
  padding-left: 13px;
}
.sidebar nav a {
  color: #eaf0fb;
  display: flex;
  gap: 13px;
  align-items: center;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 7px;
  margin-bottom: 5px;
  border-left: 3px solid transparent;
  font-size: 14px;
}
.sidebar nav a .material-icon {
  font-size: 20px;
  line-height: 1;
  width: 21px;
}
.sidebar nav a:hover {
  background: #ffffff12;
}
.sidebar nav a.active {
  background: #ffffff22;
  border-left-color: var(--lime);
  color: #fff;
  font-weight: 700;
}
.sidebar-footer {
  margin: auto 16px 20px;
  padding: 14px;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  font-size: 12px;
}
.sidebar-footer small {
  display: block;
  color: #bdcce2;
  margin: 5px 0 0 16px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9b1c0;
  margin-right: 7px;
}
.status-dot.ready {
  background: #57d494;
}
.status-dot.warning {
  background: #ffc467;
}
.workspace {
  min-width: 0;
}
.topbar {
  height: var(--shell-header-height);
  background: var(--of-topbar);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
}
.page-heading {
  min-width: 0;
}
.eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 1.45px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 21px;
}
.profile {
  border: 0;
  background: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--ink);
  min-height: 46px;
  text-align: left;
}
.profile > span:not(.avatar) {
  display: none;
  font-size: 12px;
  font-weight: 700;
}
.profile small {
  display: block;
  font-size: 10px;
  font-weight: 400;
}
.avatar {
  background: #eaf0f7;
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
}
main {
  max-width: 1640px;
  margin: auto;
  padding: 24px 18px 12px;
}
main > *,
section,
article,
.form-row > * {
  min-width: 0;
}
.panel {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 22px;
  background: #fff;
}
.panel-heading,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.panel-heading a {
  font-size: 13px;
}
.section-heading p {
  margin-bottom: 0;
}
.section-heading h2 {
  margin-bottom: 5px;
}
.intro {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0;
}
.intro h2 {
  font-size: 30px;
}
.intro p:last-child {
  margin-bottom: 0;
}
.primary,
.secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
}
.primary {
  background: var(--lime);
  color: #2e3c24;
  border: 1px solid var(--lime);
}
.primary:hover {
  background: #cede59;
}
.secondary {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue);
}
.secondary:hover {
  background: #edf1f7;
}
.danger {
  color: #a5303d;
}
.context-bar {
  margin-bottom: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding: 17px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fafbfe;
}
.context-bar > div:first-child {
  flex: 1 1 210px;
}
.context-bar select {
  max-width: 360px;
  width: 100%;
  padding: 6px 10px;
  min-height: 38px;
}
.context-bar .eyebrow {
  margin-bottom: 2px;
}
.context-description {
  font-size: 12px;
  color: var(--muted);
  flex: 1 1 200px;
}
.metrics {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.metric {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 21px 23px;
  background: linear-gradient(140deg, #fff, #f9fafc);
}
.metric > span {
  font-size: 13px;
  color: var(--muted);
}
.metric strong {
  display: block;
  font-size: 36px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.35;
  margin: 9px 0;
}
.metric strong.model-name {
  font-size: 29px;
  line-height: 1.68;
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0 22px;
}
.tint-icon {
  font-size: 24px;
  background: #ffe8f2;
  color: #de3e8b;
  border-radius: 11px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: flex;
  gap: 14px;
  margin: 21px 0;
}
.steps li > span {
  background: #eff2fb;
  color: var(--blue);
  border-radius: 8px;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.steps strong {
  font-size: 14px;
}
.steps p {
  font-size: 12px;
  margin: 3px 0 0;
}
.service-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #edf0f5;
  flex-wrap: wrap;
}
.service-row > div:nth-child(2) {
  flex: 1;
  min-width: 140px;
}
.service-row strong {
  font-size: 14px;
}
.service-row small {
  display: block;
}
.service-icon {
  background: #e8f1ff;
  color: #2446e8;
  border-radius: 9px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 700;
}
.service-icon.violet {
  background: var(--violet);
  color: #766099;
}
.service-icon.material-icon {
  font-size: 22px;
  font-weight: normal;
}
.badge {
  display: inline-block;
  white-space: nowrap;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
}
.badge.neutral {
  color: #66738a;
  background: #edf0f5;
}
.badge.good {
  background: #eaf8ee;
  color: #176332;
}
.badge.bad {
  background: #fff0e8;
  color: #a94316;
}
.violet-badge {
  background: var(--violet);
  color: #6a547e;
}
.help {
  font-size: 12px;
  margin: 16px 0 0;
  line-height: 1.65;
  color: var(--muted);
}
.empty-state {
  padding: 34px 12px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.empty-state strong {
  display: block;
  color: var(--blue);
  margin-bottom: 6px;
}
.collection-row,
.data-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #e9edf3;
  padding: 17px 0;
}
.collection-row:last-child,
.data-row:last-child {
  border-bottom: 0;
}
.row-main {
  flex: 1 1 220px;
  min-width: 0;
}
.row-main strong {
  font-size: 14px;
  display: block;
  overflow-wrap: anywhere;
}
.row-main small {
  display: block;
  overflow-wrap: anywhere;
}
.row-main p {
  font-size: 13px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 6px 0 0;
}
.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.score {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  border-radius: 6px;
  padding: 8px 12px;
  background: #eef2f8;
}
.search-rank {
  font-size: 12px;
  color: var(--muted);
}
.muted {
  color: var(--muted);
  font-size: 12px;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.form-row > div {
  flex: 1 1 210px;
}
.form-row > .small-field {
  flex: 0 1 120px;
}
.query-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.query-row input {
  flex: 1 1 240px;
}
label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  color: var(--blue);
  margin: 15px 0 7px;
}
input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
}
textarea {
  resize: vertical;
}
input::placeholder {
  color: #7a879b;
}
form > .primary {
  margin-top: 18px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.5;
}
.check input {
  width: 18px;
  min-height: 18px;
}
.endpoint {
  border-top: 1px solid var(--border);
  padding: 18px 0 0;
  margin-top: 18px;
}
.endpoint > span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #716084;
  margin-bottom: 7px;
}
.endpoint p {
  font-size: 13px;
  margin: 6px 0 0;
}
.callout {
  background: #f6f8fc;
  border-left: 3px solid #889bbb;
}
.callout p {
  font-size: 13px;
  margin: 12px 0 0;
}
.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #8993a5;
  font-size: 11px;
  padding: 20px 0;
}
.notice {
  padding: 13px 17px;
  border: 1px solid #b9d8c2;
  background: #f0faf3;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.notice.error {
  background: #fff3f1;
  border-color: #efc7c0;
  color: #963b32;
}
.login-card {
  max-width: 530px;
  margin: 55px auto;
  padding: 32px;
}
.login-card h2 {
  font-size: 32px;
}
.login-card p {
  font-size: 14px;
}
.login-card small {
  display: block;
  margin-top: 22px;
}
dialog {
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 580px;
  width: calc(100% - 32px);
  padding: 26px;
  box-shadow: 0 20px 100px #23385930;
}
dialog::backdrop {
  background: #20304970;
}
.dialog-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.dialog-heading h2 {
  font-size: 23px;
  margin-bottom: 0;
}
dialog code {
  display: block;
  margin: 18px 0;
  padding: 15px;
}
#record-namespace {
  overflow-wrap: anywhere;
  font-size: 14px;
}
.record-tools {
  display: flex;
  gap: 8px;
}
@media (min-width: 520px) {
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile > span:not(.avatar) {
    display: block;
  }
}
@media (min-width: 1000px) {
  .sidebar {
    transform: none;
  }
  .workspace {
    margin-left: 244px;
  }
  .topbar {
    padding: 12px 28px;
  }
  main {
    padding: 28px 30px 12px;
  }
  #menu {
    display: inline-grid;
  }
  .sidebar {
    visibility: visible;
  }
  body.nav-collapsed .sidebar {
    width: var(--sidebar-rail-width);
  }
  body.nav-collapsed .workspace {
    margin-left: var(--sidebar-rail-width);
  }
  body.nav-collapsed .brand {
    justify-content: center;
    padding: 0;
    gap: 0;
  }
  body.nav-collapsed .brand-title,
  body.nav-collapsed .nav-label,
  body.nav-collapsed .nav-caption,
  body.nav-collapsed .sidebar-footer {
    display: none;
  }
  body.nav-collapsed .sidebar nav {
    padding: 16px 8px;
  }
  body.nav-collapsed .sidebar nav a {
    display: grid;
    place-items: center;
    min-height: 48px;
    padding: 0;
    gap: 0;
    border-left: 0;
  }
  body.nav-collapsed .sidebar nav a.active {
    box-shadow: inset 3px 0 var(--lime);
  }
  .two-column {
    grid-template-columns: 1.1fr 1fr;
  }
}
.portal-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.portal-choice [aria-current="page"] {
  background: var(--of-selection);
  border-color: var(--of-heading);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: #20304970;
  z-index: 4;
  border: 0;
}
@media (min-width: 1280px) {
  .metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 390px) {
  .topbar {
    gap: 8px;
    padding: 12px;
  }
  .profile {
    padding: 8px;
  }
  .top-actions {
    gap: 6px;
  }
  h1 {
    font-size: 22px;
  }
  main {
    padding: 18px 12px;
  }
  .panel {
    padding: 18px;
  }
  .intro h2 {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
