@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[hidden] {
  display: none !important;
}

body.route-run {
  min-height: 100vh;
  background: #050506;
  color: #f5f7fb;
  color-scheme: dark;
}

.route-run,
.route-run * {
  scrollbar-color: rgba(106, 115, 128, 0.72) #090b0f;
}

.route-run a {
  color: inherit;
  text-decoration: none;
}

.route-run button,
.route-run input,
.route-run textarea {
  font: inherit;
}

.route-run button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.route-run svg {
  display: block;
}

.route-run .run-app-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(20, 220, 229, 0.08), transparent 22%),
    linear-gradient(180deg, #050506 0%, #040405 100%);
}

.route-run .run-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: 296px;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 4, 5, 0.96);
}

.route-run .run-sidebar-brand {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 11px 8px;
}

.route-run .run-brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.route-run .run-brand-mark,
.route-run .run-account-avatar {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(17, 217, 231, 0.1);
  box-shadow: inset 0 0 0 1px rgba(17, 217, 231, 0.08);
  color: #11d9e7;
}

.route-run .run-brand-mark {
  overflow: hidden;
  background: #000;
}

.route-run .run-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-run .run-brand-link strong,
.route-run .run-account-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.route-run .run-brand-link span span,
.route-run .run-account-card span span {
  display: block;
  margin-top: 3px;
  color: #9b9fad;
  font-size: 0.82rem;
}

.route-run .run-sidebar-nav,
.route-run .run-sidebar-bottom {
  padding: 9px;
}

.route-run .run-sidebar-nav {
  flex: 1 1 auto;
  overflow-y: auto;
}

.route-run .run-nav-group + .run-nav-group {
  margin-top: 2px;
}

.route-run .run-nav-heading {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 4px;
  color: #8f938f;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-run .run-nav-items {
  display: grid;
  gap: 2px;
}

.route-run .run-nav-chevron {
  width: 18px;
  height: 18px;
  color: #848896;
  transition: transform 160ms ease, color 160ms ease;
}

.route-run .run-nav-group.is-collapsed .run-nav-chevron,
.route-run .run-nav-heading[aria-expanded="false"] .run-nav-chevron {
  transform: rotate(-90deg);
  color: #6e7380;
}

.route-run .run-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 39px;
  border-radius: 14px;
  color: #b7bac6;
  padding: 7px 10px;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.route-run .run-nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f5f7fb;
}

.route-run .run-nav-link.is-active {
  background: #0d0f14;
  color: #fff;
}

.route-run .run-nav-link.is-active .run-nav-icon {
  color: #10d7e4;
}

.route-run .run-nav-icon,
.route-run .run-button-icon,
.route-run .run-nav-chevron {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.route-run .run-sidebar-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.route-run .run-account-shell {
  position: relative;
}

.route-run .run-account-card {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(10, 11, 15, 0.68);
  padding: 9px 11px;
  text-align: left;
}

.route-run .run-account-shell.is-open .run-account-card {
  border-color: rgba(16, 215, 228, 0.28);
  background: #11151c;
}

.route-run .run-account-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: #7e838f;
}

.route-run .run-account-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% - 4px);
  left: 0;
  z-index: 35;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(11, 13, 16, 0.98);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  padding: 12px;
}

.route-run .run-account-menu-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 4px 12px;
}

.route-run .run-account-menu-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.route-run .run-account-menu-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-run .run-account-menu-copy span {
  margin-top: 4px;
  color: #9298a6;
  font-size: 0.82rem;
}

.route-run .run-account-menu-links {
  display: grid;
  gap: 4px;
}

.route-run .run-account-menu-link {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 14px;
  color: #d4d9e1;
  padding: 0 14px;
}

.route-run .run-account-menu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.route-run .run-account-menu-link.is-signout {
  margin-top: 12px;
  color: #f1b1b1;
}

.route-run .run-account-menu-link.is-signout::before {
  position: absolute;
  top: -8px;
  right: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
}

.route-run .run-mobile-bar,
.route-run .run-mobile-drawer,
.route-run .run-mobile-overlay {
  display: none;
}

.route-run .run-mobile-bar {
  position: sticky;
  top: 0;
  z-index: 28;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 8, 0.94);
  padding: 12px 16px;
  backdrop-filter: blur(18px);
}

.route-run .run-mobile-brand {
  flex: 1 1 auto;
  min-width: 0;
}

.route-run .run-mobile-brand .run-brand-mark {
  width: 40px;
  height: 40px;
}

.route-run .run-mobile-icon-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #0d1015;
  color: #f5f7fb;
}

.route-run .run-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.58);
}

.route-run .run-mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 32;
  width: min(320px, calc(100vw - 52px));
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 8, 0.99);
  box-shadow: 24px 0 44px rgba(0, 0, 0, 0.34);
}

.route-run .run-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 16px 16px;
}

.route-run .run-mobile-drawer-nav {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px 14px;
}

.route-run .run-main {
  min-height: 100vh;
  margin-left: 296px;
}

.route-run .run-main-inner {
  width: 100%;
  max-width: 1520px;
  min-width: 0;
  margin: 0 auto;
  padding: 20px 40px 44px;
}

.route-run .run-card {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(9, 10, 13, 0.96);
  padding: 22px;
}

.route-run .template-empty-workspace {
  min-height: calc(100vh - 64px);
}

.route-run .run-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.route-run .run-section-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.route-run .run-section-head p,
.route-run .run-card p {
  margin: 14px 0 0;
  color: #959aa7;
  font-size: 0.95rem;
  line-height: 1.55;
}

.route-run .run-empty-state {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
}

.route-run .run-empty-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #6f7481;
}

.route-run .run-empty-state h3 {
  margin: 14px 0 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.route-run .run-empty-state p {
  width: min(100%, 560px);
  margin: 8px 0 0;
  color: #9499a5;
  line-height: 1.45;
}

.route-run .trust-console {
  display: grid;
  gap: 14px;
}

.route-run .trust-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  align-items: end;
  gap: 28px;
  order: 1;
  padding: 2px 0 4px;
}

.route-run .trust-kicker {
  margin: 0 0 9px;
  color: #8e95a4;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-run .trust-header h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
}

.route-run .trust-summary {
  width: min(100%, 720px);
  margin: 10px 0 0;
  color: #aab0bd;
  font-size: 0.98rem;
  line-height: 1.45;
}

.route-run .trust-summary.is-compact {
  width: min(100%, 780px);
  color: #d2d8e4;
}

.route-run .trust-brief {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.route-run .trust-generated {
  display: grid;
  justify-items: end;
  gap: 5px;
  color: #8e95a4;
  font-size: 0.82rem;
}

.route-run .trust-generated strong {
  color: #eef2f7;
  font-size: 0.95rem;
}

.route-run .trust-brief-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(255, 98, 0, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 98, 0, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(10, 11, 14, 0.82);
  padding: 15px;
}

.route-run .trust-brief-card span {
  color: #ffb45c;
  font-size: 0.76rem;
  font-weight: 780;
}

.route-run .trust-brief-card strong {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.28;
}

.route-run .trust-brief-card p {
  margin: 0;
  color: #a9b0bf;
  font-size: 0.82rem;
  line-height: 1.42;
}

.route-run .trust-metrics {
  order: 5;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(11, 12, 15, 0.72);
  overflow: hidden;
}

.route-run .trust-metric {
  min-width: 0;
  padding: 13px 16px;
}

.route-run .trust-metric + .trust-metric {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.route-run .trust-metric span {
  display: block;
  color: #8d95a4;
  font-size: 0.78rem;
  font-weight: 650;
}

.route-run .trust-metric strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1;
}

.route-run .trust-metric.is-warn strong {
  color: #ffb45c;
}

.route-run .trust-metric.is-critical strong {
  color: #ff6b5f;
}

.route-run .trust-mode-banner {
  order: 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 98, 0, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 98, 0, 0.11), rgba(255, 255, 255, 0.025));
  padding: 12px 16px;
}

.route-run .trust-mode-banner span,
.route-run .attention-count {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(255, 98, 0, 0.28);
  border-radius: 999px;
  color: #ffb45c;
  font-size: 0.72rem;
  font-weight: 750;
  padding: 0 9px;
}

.route-run .trust-mode-banner strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.route-run .trust-mode-banner p {
  margin: 0;
  color: #aab0bd;
  font-size: 0.9rem;
  line-height: 1.5;
}

.route-run .trust-mode-banner.is-native {
  border-color: rgba(68, 208, 132, 0.28);
  background: linear-gradient(135deg, rgba(68, 208, 132, 0.1), rgba(255, 255, 255, 0.025));
}

.route-run .trust-mode-banner.is-native span {
  border-color: rgba(68, 208, 132, 0.28);
  color: #91e8b4;
}

.route-run .monitoring-gaps-panel {
  order: 2;
  border-radius: 16px;
  border-color: rgba(255, 98, 0, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 98, 0, 0.08), rgba(95, 180, 255, 0.035)),
    rgba(10, 11, 14, 0.86);
  padding: 16px;
}

.route-run .monitoring-gaps-panel .trust-panel-head {
  margin-bottom: 12px;
}

.route-run .monitoring-gaps-panel .trust-panel-head a {
  color: #ffb45c;
  font-size: 0.82rem;
  font-weight: 720;
}

.route-run .monitoring-gap-list {
  display: grid;
  gap: 8px;
}

.route-run .monitoring-gap-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
  padding: 13px 14px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.route-run .monitoring-gap-row:hover {
  border-color: rgba(255, 98, 0, 0.28);
  background: rgba(255, 98, 0, 0.045);
}

.route-run .monitoring-gap-row > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: rgba(255, 159, 61, 0.16);
  color: #ffb45c;
  font-size: 0.72rem;
  font-weight: 780;
  padding: 0 9px;
}

.route-run .monitoring-gap-row h3 {
  margin: 0;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.25;
}

.route-run .token-spend-panel {
  order: 2;
  border: 1px solid rgba(248, 113, 113, 0.34);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.24), rgba(9, 17, 24, 0.86)),
    rgba(10, 11, 14, 0.86);
  margin: 16px 0;
  padding: 16px;
}

.route-run .token-spend-panel .trust-panel-head {
  margin-bottom: 12px;
}

.route-run .token-spend-panel .trust-panel-head a,
.route-run .token-primary-link {
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.route-run .token-spend-list {
  display: grid;
  gap: 8px;
}

.route-run .token-spend-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
  color: inherit;
  padding: 13px 14px;
  text-decoration: none;
}

.route-run .token-spend-row:hover {
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(127, 29, 29, 0.12);
}

.route-run .token-spend-row > span {
  color: #fecaca;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-run .token-spend-row h3 {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.25;
  margin: 0;
}

.route-run .token-spend-row p {
  color: #aab0bd;
  margin: 4px 0 0;
}

.route-run .token-spend-row > strong {
  color: #fff;
  white-space: nowrap;
}

.route-run .token-console {
  margin: 0 auto;
  max-width: 1320px;
  padding: 30px clamp(18px, 4vw, 48px) 64px;
}

.route-run .token-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(248, 113, 113, 0.36);
  border-radius: 16px;
  background:
    radial-gradient(circle at 95% 5%, rgba(248, 113, 113, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(127, 29, 29, 0.34), rgba(2, 6, 23, 0.92));
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.route-run .token-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.route-run .token-hero p {
  color: #c5cbd8;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 820px;
}

.route-run .token-verdict {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: grid;
  justify-items: start;
  padding: 20px;
}

.route-run .token-verdict span,
.route-run .token-answer span,
.route-run .token-bars span {
  color: #aab0bd;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-run .token-verdict strong {
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
}

.route-run .token-verdict small {
  color: #fecaca;
}

.route-run .token-answer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0;
  overflow: hidden;
}

.route-run .token-answer > div {
  min-width: 0;
  background: rgba(5, 8, 13, 0.92);
  padding: 18px;
}

.route-run .token-answer strong {
  color: #fff;
  display: block;
  font-size: 1.08rem;
  margin-top: 7px;
}

.route-run .token-answer p {
  color: #aab0bd;
  margin: 6px 0 0;
}

.route-run .token-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  margin-bottom: 18px;
}

.route-run .token-bars,
.route-run .token-table {
  display: grid;
}

.route-run .token-bars div,
.route-run .token-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.route-run .token-table-row {
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1.4fr);
}

.route-run .token-table-row strong {
  color: #fff;
}

.route-run .token-table-row span,
.route-run .token-table-row p {
  color: #aab0bd;
  margin: 4px 0 0;
}

.route-run .token-heartbeat-list,
.route-run .token-request-list {
  display: grid;
  gap: 10px;
}

.route-run .token-heartbeat-row,
.route-run .token-request-row {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: inherit;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.95fr);
  padding: 14px 16px;
  text-decoration: none;
}

.route-run .token-heartbeat-row:hover {
  border-color: rgba(248, 113, 113, 0.32);
  background: rgba(127, 29, 29, 0.1);
}

.route-run .token-heartbeat-row span {
  color: #fecaca;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-run .token-heartbeat-row strong,
.route-run .token-request-row strong {
  color: #fff;
}

.route-run .token-heartbeat-row p,
.route-run .token-request-row p {
  color: #aab0bd;
  margin: 5px 0 0;
}

.route-run .token-heartbeat-row dl,
.route-run .token-request-row dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
}

.route-run .token-request-row dl {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-run .token-heartbeat-row dt,
.route-run .token-request-row dt {
  color: #7f8796;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-run .token-heartbeat-row dd,
.route-run .token-request-row dd {
  color: #fff;
  font-weight: 850;
  margin: 4px 0 0;
}

.route-run .monitoring-gap-row small {
  display: block;
  margin-top: 4px;
  color: #8992a2;
  font-size: 0.78rem;
  line-height: 1.35;
}

.route-run .monitoring-gap-row p {
  margin: 6px 0 0;
  color: #a6adbc;
  font-size: 0.82rem;
  line-height: 1.42;
}

.route-run .monitoring-gap-row strong {
  color: #dce7f8;
  font-size: 0.82rem;
  line-height: 1.35;
}

.route-run .settings-console,
.route-run .settings-grid,
.route-run .settings-token-list {
  display: grid;
  gap: 14px;
}

.route-run .settings-header h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}

.route-run .settings-header p {
  width: min(100%, 680px);
  margin: 10px 0 0;
  color: #aab0bd;
  line-height: 1.45;
}

.route-run .settings-token-reveal {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(16, 215, 228, 0.28);
  border-radius: 16px;
  background: rgba(16, 215, 228, 0.08);
  padding: 16px;
}

.route-run .settings-token-reveal span,
.route-run .settings-token-form label span {
  color: #8e95a4;
  font-size: 0.76rem;
  font-weight: 700;
}

.route-run .settings-token-reveal strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
}

.route-run .settings-token-reveal p {
  margin: 0;
  color: #aab0bd;
  font-size: 0.86rem;
}

.route-run .settings-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.route-run .settings-token-form {
  display: grid;
  gap: 10px;
}

.route-run .settings-token-form label {
  display: grid;
  gap: 6px;
}

.route-run .settings-token-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #0c0f14;
  color: #f6f8fb;
  padding: 0 11px;
}

.route-run .settings-token-form button {
  min-height: 42px;
  border-radius: 8px;
  background: #10d7e4;
  color: #061115;
  font-weight: 760;
}

.route-run .settings-token-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  padding: 12px;
}

.route-run .settings-token-row strong,
.route-run .settings-token-row span {
  display: block;
}

.route-run .settings-token-row strong {
  color: #fff;
  font-size: 0.9rem;
}

.route-run .settings-token-row span,
.route-run .settings-token-row small {
  margin-top: 4px;
  color: #8d95a4;
  font-size: 0.78rem;
}

.route-run .settings-empty {
  margin: 0;
  color: #8d95a4;
  font-size: 0.9rem;
}

.route-run .settings-row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.route-run .settings-row-actions form {
  margin: 0;
}

.route-run .settings-row-actions button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce7f8;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 740;
}

.route-run .run-project-group {
  margin-top: 6px;
}

.route-run .run-project-link {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 46px;
  border-radius: 12px;
  padding: 7px 10px;
  color: #aaaebb;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.route-run .run-project-link:hover {
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.route-run .run-project-link.is-active {
  background: rgba(255, 98, 0, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 98, 0, 0.26);
}

.route-run .project-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff9a3d;
  box-shadow: 0 0 0 3px rgba(255, 154, 61, 0.11);
}

.route-run .project-dot.is-native {
  background: #44d084;
  box-shadow: 0 0 0 3px rgba(68, 208, 132, 0.12);
}

.route-run .project-dot.is-mixed {
  background: #5fb4ff;
  box-shadow: 0 0 0 3px rgba(95, 180, 255, 0.12);
}

.route-run .run-project-copy {
  display: block;
  min-width: 0;
}

.route-run .run-project-copy strong {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-run .run-project-copy small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #858d9d;
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-run .trust-grid {
  order: 6;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.route-run .trust-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(10, 11, 14, 0.82);
  padding: 18px;
}

.route-run .trust-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
}

.route-run .trust-panel-head h2 {
  margin: 0;
  color: #f7f9fc;
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: 0;
}

.route-run .trust-panel-head p {
  margin: 6px 0 0;
  color: #8f96a5;
  font-size: 0.88rem;
  line-height: 1.45;
}

.route-run .watcher-list,
.route-run .attention-list,
.route-run .incident-list,
.route-run .codex-list,
.route-run .proof-list,
.route-run .incident-table {
  display: grid;
  gap: 8px;
}

.route-run .attention-row,
.route-run .watcher-row,
.route-run .incident-table-row,
.route-run .codex-row,
.route-run .proof-row,
.route-run .incident-row,
.route-run .trust-empty {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.route-run a.attention-row,
.route-run a.watcher-row,
.route-run a.incident-row,
.route-run a.incident-table-row,
.route-run a.codex-row {
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.route-run a.attention-row:hover,
.route-run a.watcher-row:hover,
.route-run a.incident-row:hover,
.route-run a.incident-table-row:hover,
.route-run a.codex-row:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.route-run .attention-panel {
  order: 4;
  background: rgba(12, 13, 16, 0.9);
}

.route-run .attention-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) minmax(210px, 0.48fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
}

.route-run .attention-row > span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 760;
  padding: 0 9px;
}

.route-run .attention-row.is-late > span {
  background: rgba(255, 180, 92, 0.16);
  color: #ffcc90;
}

.route-run .attention-row.is-stale > span {
  background: rgba(255, 159, 61, 0.2);
  color: #ffb45c;
}

.route-run .attention-row.is-unproven > span,
.route-run .attention-row.is-unknown > span {
  background: rgba(255, 159, 61, 0.18);
  color: #ffbf75;
}

.route-run .attention-row.is-dead > span,
.route-run .attention-row.is-critical > span {
  background: rgba(255, 95, 87, 0.2);
  color: #ff9b94;
}

.route-run .attention-row h3 {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.route-run .attention-row p {
  margin: 5px 0 0;
  color: #9098a7;
  font-size: 0.82rem;
  line-height: 1.45;
}

.route-run .attention-row strong {
  color: #cbd3df;
  font-size: 0.82rem;
  line-height: 1.35;
}

.route-run .watcher-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) minmax(190px, auto);
  gap: 14px;
  align-items: center;
  padding: 13px;
}

.route-run .watcher-status {
  width: 10px;
  height: 44px;
  border-radius: 999px;
  background: #6f7481;
}

.route-run .watcher-status.is-healthy {
  background: #44d084;
  box-shadow: 0 0 18px rgba(68, 208, 132, 0.28);
}

.route-run .watcher-status.is-warning,
.route-run .watcher-status.is-late,
.route-run .watcher-status.is-stale {
  background: #ff9f3d;
  box-shadow: 0 0 18px rgba(255, 159, 61, 0.26);
}

.route-run .watcher-status.is-dead,
.route-run .watcher-status.is-critical {
  background: #ff5f57;
  box-shadow: 0 0 18px rgba(255, 95, 87, 0.28);
}

.route-run .watcher-main {
  min-width: 0;
}

.route-run .watcher-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.route-run .watcher-title h3,
.route-run .incident-table-row h3,
.route-run .codex-row h3,
.route-run .incident-row h3 {
  margin: 0;
  color: #f7f9fc;
  font-size: 0.94rem;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.25;
}

.route-run .watcher-title span,
.route-run .incident-severity {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #9aa2b1;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0 8px;
}

.route-run .watcher-row p,
.route-run .incident-table-row p,
.route-run .incident-row p {
  margin: 6px 0 0;
  color: #8f96a5;
  font-size: 0.82rem;
  line-height: 1.45;
}

.route-run .watcher-row .watcher-explain {
  color: #c2cad8;
}

.route-run .watcher-meta,
.route-run .incident-times {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: #87909f;
  font-size: 0.78rem;
  text-align: right;
}

.route-run .watcher-meta strong,
.route-run .incident-times strong {
  color: #c3cad6;
  font-size: 0.78rem;
}

.route-run .watcher-meta small {
  max-width: 210px;
  color: #8f96a5;
  font-size: 0.74rem;
  line-height: 1.35;
}

.route-run .trust-empty {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.route-run .trust-empty strong {
  color: #fff;
  font-size: 1rem;
}

.route-run .trust-empty span {
  color: #8f96a5;
  font-size: 0.88rem;
}

.route-run .incident-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 18px;
  padding: 14px;
}

.route-run .incident-severity {
  width: fit-content;
  margin-bottom: 8px;
  color: #ffb45c;
  text-transform: uppercase;
}

.route-run .codex-row {
  display: grid;
  gap: 8px;
  padding: 13px;
}

.route-run .codex-row span {
  color: #8f96a5;
  font-size: 0.76rem;
}

.route-run .codex-row code {
  display: block;
  overflow: hidden;
  color: #aeb7c8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-run .proof-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 13px;
}

.route-run .proof-row span {
  color: #cbd3df;
  font-size: 0.88rem;
}

.route-run .proof-row strong {
  color: #fff;
  font-size: 1rem;
}

.route-run .proof-row small {
  grid-column: 1 / -1;
  color: #8f96a5;
  font-size: 0.76rem;
}

.route-run .detail-console {
  display: grid;
  gap: 18px;
}

.route-run .detail-back {
  width: fit-content;
  color: #aab0bd;
  font-size: 0.86rem;
  font-weight: 700;
}

.route-run .detail-back:hover {
  color: #fff;
}

.route-run .detail-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.route-run .detail-header.is-source-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: start;
}

.route-run .detail-project-kicker {
  color: #aeb5c4;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}

.route-run .detail-header h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  letter-spacing: 0;
  line-height: 1.05;
}

.route-run .detail-header p {
  width: min(100%, 780px);
  margin: 12px 0 0;
  color: #aab0bd;
  font-size: 0.95rem;
  line-height: 1.55;
}

.route-run .detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
}

.route-run .detail-status-note {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(68, 208, 132, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(68, 208, 132, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 14, 0.84);
  padding: 16px 18px;
}

.route-run .detail-status-note strong {
  color: #fff;
  font-size: 0.92rem;
}

.route-run .detail-status-note p {
  margin: 0;
  color: #aab0bd;
  font-size: 0.88rem;
  line-height: 1.45;
}

.route-run .detail-source-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.route-run .detail-grid.is-source-detail {
  align-items: start;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
}

.route-run .detail-orientation-panel {
  border: 1px solid rgba(255, 98, 0, 0.24);
  border-radius: 18px;
  border-color: rgba(255, 98, 0, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 98, 0, 0.08), rgba(7, 8, 10, 0) 44%),
    rgba(255, 255, 255, 0.025);
  padding: 18px;
}

.route-run .detail-header-proof {
  align-self: start;
  display: grid;
  align-content: center;
}

.route-run .detail-header-proof .trust-panel-head {
  margin-bottom: 12px;
}

.route-run .detail-proof-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-run .detail-proof-list li {
  position: relative;
  padding-left: 18px;
  color: #d7dde7;
  font-size: 0.86rem;
  line-height: 1.45;
}

.route-run .detail-proof-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff6200;
  box-shadow: 0 0 14px rgba(255, 98, 0, 0.58);
  content: "";
}

.route-run .detail-run-list {
  display: grid;
  gap: 10px;
}

.route-run .detail-run-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 10px;
}

.route-run .detail-run-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.route-run .detail-run-row strong {
  color: #fff;
  font-size: 0.86rem;
}

.route-run .detail-run-row p {
  margin: 4px 0 0;
  color: #aab0bd;
  font-size: 0.8rem;
  line-height: 1.42;
}

.route-run .detail-run-row small {
  color: #8f96a5;
  font-size: 0.76rem;
  font-weight: 800;
}

.route-run .detail-facts {
  display: grid;
  gap: 8px;
}

.route-run .detail-facts div {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 0 8px;
}

.route-run .detail-facts span {
  color: #8f96a5;
  font-size: 0.78rem;
}

.route-run .detail-facts strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #eef2f7;
  font-size: 0.84rem;
  line-height: 1.4;
}

.route-run .detail-code-block {
  display: grid;
  gap: 8px;
}

.route-run .detail-code-block + .detail-code-block {
  margin-top: 16px;
}

.route-run .detail-code-block span {
  color: #8f96a5;
  font-size: 0.78rem;
  font-weight: 700;
}

.route-run .detail-code-block code,
.route-run .detail-code-block pre {
  display: block;
  max-height: 520px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #07080a;
  color: #cbd5e1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 13px;
  white-space: pre-wrap;
}

.route-run .detail-check-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 2px;
}

.route-run .detail-check-row {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) minmax(190px, 0.52fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  padding: 13px;
}

.route-run .detail-check-row strong {
  color: #fff;
  font-size: 0.88rem;
}

.route-run .detail-check-row p {
  margin: 5px 0 0;
  color: #aab0bd;
  font-size: 0.82rem;
  line-height: 1.45;
}

.route-run .detail-check-row code {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  margin-top: 8px;
  color: #cbd5e1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
}

.route-run .detail-check-row dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.route-run .detail-check-row dl div {
  min-width: 0;
}

.route-run .detail-check-row dt {
  color: #747b89;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-run .detail-check-row dd {
  margin: 3px 0 0;
  color: #eef2f7;
  font-size: 0.78rem;
  font-weight: 700;
}

.route-public {
  min-height: 100vh;
  background: #08090d;
  color: #f8fafc;
  color-scheme: dark;
}

.route-auth {
  position: relative;
  overflow-x: hidden;
}

.route-auth::before,
.route-auth::after {
  position: fixed;
  pointer-events: none;
  content: "";
}

.route-auth::before {
  inset: -30px;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.42), rgba(5, 6, 10, 0.66)),
    radial-gradient(circle at 50% 20%, rgba(16, 215, 228, 0.16), transparent 34%),
    linear-gradient(135deg, #12141b, #07080c);
  filter: blur(10px) saturate(1.06) brightness(1.08);
  opacity: 0.84;
  transform: scale(1.04);
}

.route-auth::after {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(16, 215, 228, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.06), rgba(8, 9, 13, 0.48));
}

.auth-fast-page {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 42px 20px;
}

.auth-fast-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.auth-fast-logo img {
  display: block;
  width: 174px;
  max-width: 58vw;
  height: auto;
}

.auth-fast-card {
  width: min(100%, 430px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #14141d;
  box-shadow: 0 26px 84px rgba(0, 0, 0, 0.34);
  padding: 28px;
}

.eav-auth-root {
  display: grid;
  gap: 14px;
}

.eav-auth-copy {
  display: grid;
  gap: 6px;
  text-align: center;
}

.eav-auth-title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.eav-auth-subtitle {
  margin: 0;
  color: #aeb5c2;
  font-size: 0.95rem;
  line-height: 1.55;
}

.eav-auth-error {
  border-color: rgba(241, 177, 177, 0.34);
  border: 1px solid rgba(241, 177, 177, 0.34);
  border-radius: 14px;
  background: rgba(241, 177, 177, 0.08);
  color: #ffd9df;
  font-size: 0.9rem;
  padding: 12px 14px;
}

.eav-auth-error.is-success {
  border-color: rgba(16, 215, 228, 0.28);
  background: rgba(16, 215, 228, 0.08);
  color: #c8f7df;
}

.eav-auth-google {
  display: grid;
  gap: 10px;
  min-height: 44px;
}

.eav-auth-google-button,
.eav-auth-google-button > div {
  width: 100% !important;
}

.eav-auth-separator {
  position: relative;
  color: #8e95a4;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.eav-auth-separator::before {
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  content: '';
}

.eav-auth-separator span {
  position: relative;
  display: inline-block;
  background: #14141d;
  padding: 0 12px;
}

.eav-auth-form {
  display: grid;
  gap: 11px;
}

.eav-auth-field {
  display: grid;
  gap: 6px;
}

.eav-auth-field span {
  color: #b9c0ce;
  font-size: 0.84rem;
}

.eav-auth-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  padding: 0 12px;
}

.eav-auth-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.eav-auth-link {
  color: #a99bff;
  font-size: 0.88rem;
  font-weight: 600;
}

.eav-auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 215, 228, 0.4);
  border-radius: 8px;
  background: #10d7e4;
  color: #031114;
  font-weight: 700;
}

.eav-auth-actions .primary-button {
  width: 100%;
}

.page-panel {
  width: min(720px, calc(100% - 40px));
  margin: 80px auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(9, 10, 13, 0.96);
  padding: 22px;
}

@media (max-width: 1080px) {
  .route-run .run-sidebar {
    display: none;
  }

  .route-run .run-mobile-bar,
  .route-run .run-mobile-drawer,
  .route-run .run-mobile-overlay {
    display: flex;
  }

  .route-run .run-main {
    margin-left: 0;
  }

  .route-run .run-main-inner {
    padding: 18px 18px 42px;
  }

  .route-run .trust-header {
    grid-template-columns: 1fr;
  }

  .route-run .trust-generated {
    justify-items: start;
  }

  .route-run .trust-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-run .trust-metric:nth-child(4) {
    border-left: 0;
  }

  .route-run .trust-metric:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .route-run .trust-grid {
    grid-template-columns: 1fr;
  }

  .route-run .trust-mode-banner,
  .route-run .monitoring-gap-row,
  .route-run .token-spend-row,
  .route-run .token-hero,
  .route-run .token-answer,
  .route-run .token-grid,
  .route-run .token-heartbeat-row,
  .route-run .token-request-row,
  .route-run .token-table-row,
  .route-run .settings-grid,
  .route-run .detail-header,
  .route-run .detail-grid,
  .route-run .detail-source-grid,
  .route-run .attention-row {
    grid-template-columns: 1fr;
  }

  .route-run .run-mobile-brand span {
    min-width: 0;
  }

  .auth-fast-page {
    justify-content: flex-start;
    gap: 24px;
    padding: 34px 18px 42px;
  }

  .auth-fast-card {
    width: 100%;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .route-run .run-card {
    border-radius: 18px;
    padding: 18px;
  }

  .route-run .run-mobile-bar {
    padding: 12px 14px;
  }

  .route-run .run-empty-state {
    min-height: 188px;
    padding: 24px;
  }

  .route-run .trust-header h1 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .route-run .trust-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-run .trust-metric {
    padding: 14px;
  }

  .route-run .trust-metric:nth-child(odd) {
    border-left: 0;
  }

  .route-run .trust-metric:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .route-run .watcher-row,
  .route-run .incident-table-row {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .route-run .incident-table-row {
    grid-template-columns: 1fr;
  }

  .route-run .watcher-meta,
  .route-run .incident-times {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .route-run .incident-times {
    grid-column: auto;
  }

  .route-run .token-heartbeat-row dl,
  .route-run .token-request-row dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
