/* Modern flat override */
@font-face {
  font-family: "Gilroy";
  src: url("/fonts/gilroy/Gilroy-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/gilroy/Gilroy-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/gilroy/Gilroy-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/gilroy/Gilroy-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg: #030303;
  --sidebar: #070707;
  --surface: #0b0b0c;
  --surface-raised: #101011;
  --surface-hover: #151516;
  --line: transparent;
  --line-strong: transparent;
  --text: #f0f0ef;
  --soft: #c5c5c3;
  --muted: #797977;
  --green: #43d58b;
  --yellow: #f1b94c;
  --red: #f07870;
  --blue: #b8b8b5;
  --radius: 16px;
  --shadow: none;
  font-family: "Gilroy", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #2b313a transparent;
}

html,
body {
  background: var(--bg);
}

body {
  font-weight: 500;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.shell {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px 18px;
  background: var(--sidebar);
}

.brand {
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.brand-mark,
.boot-mark {
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.brand-mark {
  width: 34px;
  height: 38px;
}

.brand-mark img {
  width: 31px;
  height: 35px;
}

.boot-mark img {
  width: 46px;
  height: 52px;
}

.sidebar-section {
  margin-top: 52px;
}

.sidebar-label {
  display: block;
  margin: 0 10px 10px;
  color: #737371;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.sidebar-nav {
  display: grid;
  gap: 4px;
}

.nav-button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition: color .16s ease, background .16s ease;
}

.nav-button:hover {
  background: rgba(255, 255, 255, .045);
  color: var(--text);
}

.nav-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px 0;
}

.user-chip {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px;
  background: transparent;
}

.user-chip > div {
  min-width: 0;
}

.user-chip strong,
.user-chip span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-chip strong {
  color: var(--soft);
  font-size: 13px;
  font-weight: 650;
}

.user-chip span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.user-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  box-shadow: none;
}

.workspace {
  min-width: 0;
}

.page {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 58px 48px 80px;
}

.page-heading {
  align-items: flex-end;
  margin-bottom: 38px;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.page-heading h1 {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.012em;
}

.page-heading p {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.btn {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: var(--surface-raised);
  font-size: 14px;
  font-weight: 650;
}

.btn:hover {
  background: var(--surface-hover);
}

.btn-primary {
  background: #f0f2f4;
  color: #0a0c0f;
}

.btn-primary:hover {
  background: #fff;
}

.btn svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.btn-icon,
.btn-icon:hover,
.btn-icon:active {
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.btn-icon {
  color: var(--muted);
}

.btn-icon:hover {
  color: var(--text);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, .8fr) minmax(220px, .8fr);
  gap: 14px;
  margin-bottom: 34px;
}

.metric-card {
  min-width: 0;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
}

.metric-primary {
  background: linear-gradient(145deg, #0f0f10, #090909 68%);
}

.metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.metric-value {
  display: block;
  margin-top: 34px;
}

.metric-value strong,
.metric-value span {
  display: block;
}

.metric-value strong {
  overflow: hidden;
  color: var(--text);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.008em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-value span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
}

.metric-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.metric-row,
.metric-foot,
.capacity-track {
  margin-top: auto;
}

.metric-row {
  display: flex;
  gap: 28px;
  padding-top: 18px;
}

.metric-pair strong,
.metric-pair span {
  display: block;
}

.metric-pair strong {
  font-size: 14px;
  font-weight: 650;
}

.metric-pair span,
.metric-foot {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.metric-foot {
  padding-top: 18px;
}

.status-pill {
  min-height: 30px;
  padding: 0 11px;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.status-live {
  color: var(--green);
  background: rgba(67, 213, 139, .08);
}

.status-waiting {
  color: var(--yellow);
  background: rgba(241, 185, 76, .08);
}

.status-error {
  color: var(--red);
  background: rgba(240, 120, 112, .08);
}

.status-connecting {
  color: #c2c2c0;
  background: rgba(255, 255, 255, .045);
}

.status-disabled {
  color: var(--muted);
  background: rgba(255, 255, 255, .035);
}

.capacity-track {
  height: 4px;
  background: rgba(255, 255, 255, .06);
}

.capacity-fill {
  background: #8d8d8a;
}

.section-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.section-header {
  min-height: 88px;
  padding: 0 24px;
  background: rgba(255, 255, 255, .012);
}

.section-title {
  align-items: center;
  gap: 16px;
}

.section-title h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-title p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-title > span {
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.refresh-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.section-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-tile {
  position: relative;
  width: 128px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #050505;
  color: white;
  cursor: pointer;
}

.preview-tile video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.preview-shade {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .08);
  opacity: 0;
  transition: opacity .18s ease;
}

.preview-shade svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-tile:hover .preview-shade,
.preview-tile:focus-visible .preview-shade {
  opacity: 1;
}

.preview-status {
  position: absolute;
  left: 8px;
  bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
}

.preview-status i,
.player-caption i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.player-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #000;
}

.player-stage {
  position: relative;
  width: min(1440px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.player-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.player-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  color: white;
  background: rgba(0, 0, 0, .42);
}

.player-caption {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
}

.refresh-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.refresh-error i {
  background: var(--red);
}

.table-head,
.partner-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.35fr) minmax(160px, 1fr) 120px 120px 145px 92px;
  align-items: center;
  gap: 20px;
  padding-inline: 24px;
}

.table-head {
  min-height: 46px;
  border-bottom: 1px solid var(--line);
  color: #70706e;
  font-size: 11px;
  font-weight: 700;
}

.partner-row {
  min-height: 92px;
  transition: background .15s ease;
}

.partner-row:last-child {
  margin-bottom: 4px;
}

.partner-row:hover {
  background: rgba(255, 255, 255, .022);
  transform: none;
}

.partner-main {
  gap: 14px;
}

.partner-indicator {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.partner-indicator.status-live {
  background: var(--green);
}

.partner-indicator.status-waiting {
  background: var(--yellow);
}

.partner-indicator.status-error {
  background: var(--red);
}

.partner-indicator.status-connecting {
  background: var(--blue);
}

.partner-indicator.status-disabled {
  background: #626c78;
}

.partner-name strong {
  font-size: 15px;
  font-weight: 650;
}

.partner-name span,
.destination span,
.route-cell span,
.relay-metric span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.destination strong,
.route-cell strong,
.relay-metric strong {
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
}

.destination span {
  font-size: 11px;
}

.row-actions {
  gap: 0;
}

.row-actions .btn-danger {
  color: var(--red);
}

.menu-popover {
  width: 170px;
  padding: 5px;
  background: var(--surface-raised);
}

.menu-popover button {
  min-height: 40px;
  font-size: 13px;
  font-weight: 600;
}

.empty-state {
  min-height: 360px;
}

.empty-icon {
  width: 58px;
  height: 58px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.empty-icon svg {
  width: 38px;
  height: 38px;
}

.empty-state h3 {
  margin-top: 12px;
  font-size: 19px;
  font-weight: 700;
}

.empty-state p {
  max-width: 340px;
  font-size: 14px;
}

.modal {
  border-radius: 16px;
  background: var(--surface);
}

.modal-header,
.modal-footer {
  border: 0;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 700;
}

.field label,
.switch-copy strong {
  font-weight: 650;
}

.field input,
.field select {
  height: 50px;
  background: #090909;
  font-size: 14px;
  font-weight: 550;
}

.field input:hover,
.field select:hover {
  background: #111112;
}

.field input:focus,
.field select:focus {
  background: #141415;
  outline: 2px solid rgba(255, 255, 255, .1);
  outline-offset: 0;
}

.route-picker {
  position: relative;
}

.route-select {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 13px;
  padding: 9px 15px;
  border: 0;
  border-radius: 13px;
  background: #090909;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: background .15s ease;
}

.route-select:hover,
.route-picker.is-open .route-select {
  background: #131313;
}

.route-select:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .12);
  outline-offset: 0;
}

.route-select-indicator,
.route-option-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9be3b2;
}

.route-select[data-route="proxy"] .route-select-indicator {
  background: #aaa9a4;
}

.route-select-copy,
.route-option > span:nth-child(2) {
  min-width: 0;
}

.route-select-copy strong,
.route-select-copy small,
.route-option strong,
.route-option small {
  display: block;
}

.route-select-copy strong,
.route-option strong {
  color: #f2f2ef;
  font-size: 14px;
  font-weight: 650;
}

.route-select-copy small,
.route-option small {
  margin-top: 3px;
  overflow: hidden;
  color: #777775;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-chevron {
  width: 8px;
  height: 8px;
  justify-self: end;
  border-right: 1.5px solid #777775;
  border-bottom: 1.5px solid #777775;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .15s ease;
}

.route-picker.is-open .route-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.route-options {
  position: absolute;
  z-index: 20;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  display: grid;
  gap: 3px;
  padding: 5px;
  border-radius: 14px;
  background: #191919;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .34);
}

.route-options[hidden] {
  display: none;
}

.route-option {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 13px;
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.route-option:hover,
.route-option.is-selected {
  background: rgba(255, 255, 255, .055);
}

.route-option[data-route="proxy"] .route-option-indicator {
  background: #aaa9a4;
}

.route-option i {
  width: 7px;
  height: 12px;
  justify-self: center;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(45deg);
}

.route-option.is-selected i {
  border-color: #f0f0ec;
}

/* Readability spacing pass */
body {
  line-height: 1.45;
  letter-spacing: .02em;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
}

button,
input,
select,
textarea {
  line-height: 1.3;
  letter-spacing: .018em;
}

h1,
h2,
h3,
strong {
  line-height: 1.25;
  letter-spacing: .012em;
}

.page-heading h1,
.metric-value strong {
  line-height: 1.08;
  letter-spacing: .006em;
}

.overview-grid {
  gap: 18px;
}

.metric-card {
  min-height: 234px;
  padding: 26px;
}

.metric-label,
.metric-value span,
.metric-sub,
.metric-pair span,
.metric-foot,
.section-title p,
.section-title > span {
  line-height: 1.45;
}

.metric-label {
  min-height: 36px;
  gap: 20px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .04em;
  word-spacing: .1em;
}

.metric-label > span {
  line-height: 1.5;
}

.metric-label .status-pill {
  min-height: 32px;
  padding-inline: 12px;
  font-size: 12px;
  letter-spacing: .025em;
}

.metric-value {
  margin-top: 36px;
}

.metric-value span {
  margin-top: 14px;
  font-size: 14px;
  word-spacing: .1em;
}

.metric-sub {
  margin-top: 22px;
  font-size: 13px;
  word-spacing: .1em;
}

.table-head,
.partner-row {
  column-gap: 24px;
}

.table-head {
  min-height: 50px;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .028em;
}

.partner-row {
  min-height: 102px;
  padding-block: 16px;
}

.partner-name,
.destination,
.route-cell,
.relay-metric {
  min-width: 0;
}

.partner-name strong,
.destination strong,
.route-cell strong,
.relay-metric strong {
  line-height: 1.35;
  letter-spacing: .018em;
}

.partner-name span,
.destination span,
.route-cell span,
.relay-metric span {
  margin-top: 11px;
  line-height: 1.45;
  letter-spacing: .022em;
  word-spacing: .1em;
}

.route-cell strong {
  font-size: 15px;
}

.route-cell span {
  font-size: 13px;
}

.partner-row .route-cell {
  display: grid;
  align-content: center;
  gap: 10px;
}

.partner-row .route-cell strong,
.partner-row .route-cell span {
  margin-top: 0;
  line-height: 1.4;
}

.metric-card .metric-label {
  min-height: 38px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .045em;
  word-spacing: .12em;
}

.metric-card .metric-sub,
.metric-card .metric-value span,
.metric-card .metric-pair span,
.metric-card .metric-foot {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: .025em;
  word-spacing: .12em;
}

.status-pill {
  line-height: 1.3;
  letter-spacing: .018em;
}

.field {
  gap: 10px;
}

.field label,
.field small,
.switch-copy strong,
.switch-copy span {
  line-height: 1.4;
  letter-spacing: .018em;
}

.form-grid {
  gap: 20px;
}

.route-select,
.route-option {
  min-height: 72px;
  gap: 15px;
  padding-block: 12px;
}

.route-select-copy,
.route-option > span:nth-child(2) {
  display: grid;
  gap: 9px;
}

.route-select-copy strong,
.route-option strong {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: .035em;
  word-spacing: .08em;
}

.route-select-copy small,
.route-option small {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: .032em;
  word-spacing: .12em;
}

.field > small,
.switch-copy span,
.section-title p,
.section-title > span {
  word-spacing: .1em;
}

.btn,
.menu-popover button {
  letter-spacing: .018em;
}

.switch-row,
.secret-item,
.audit-item,
.log-box {
  border: 0;
  background: #090909;
}

.profile-note,
.warning-note {
  border: 0;
  background: #101011;
  color: var(--soft);
}

#partners-list {
  display: grid;
  gap: 4px;
  padding: 6px;
}

.partner-row {
  padding-inline: 18px;
  border-radius: 11px;
}

.table-head {
  border: 0;
}

@media (max-width: 1120px) {
  .shell {
    grid-template-columns: 214px minmax(0, 1fr);
  }

  .page {
    padding-inline: 28px;
  }

  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-primary {
    grid-column: 1 / -1;
  }

  .table-head {
    display: none;
  }

  .partner-row {
    grid-template-columns: minmax(0, 1fr) minmax(140px, auto) auto;
    gap: 10px 18px;
    padding-block: 15px;
  }

  .partner-main {
    grid-column: 1;
  }

  .status-cell {
    grid-column: 2;
  }

  .row-actions {
    grid-column: 3;
    grid-row: 1;
  }

  .destination {
    grid-column: 1;
  }

  .route-cell {
    grid-column: 2;
  }

  .relay-metric {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .shell {
    display: block;
  }

  .sidebar {
    position: sticky;
    z-index: 40;
    width: 100%;
    height: 58px;
    flex-direction: row;
    align-items: center;
    padding: 0 12px;
    border-right: 0;
  }

  .sidebar-main {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .brand {
    padding: 0 4px;
  }

  .brand-copy,
  .sidebar-label,
  .user-chip {
    display: none;
  }

  .sidebar-section {
    margin: 0;
  }

  .sidebar-nav {
    display: flex;
  }

  .nav-button {
    width: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 0;
  }

  .nav-button span {
    display: none;
  }

  .sidebar-footer {
    padding: 0;
    border: 0;
  }

  .page {
    padding: 34px 16px 48px;
  }

  .page-heading {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 26px;
  }

  .page-heading h1 {
    font-size: 34px;
  }

  .heading-actions {
    display: block;
  }

  .heading-actions .btn {
    width: 100%;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .metric-primary {
    grid-column: auto;
  }

  .metric-card {
    min-height: 204px;
  }

  .section-header {
    min-height: 72px;
    padding-inline: 14px;
  }

  .preview-tile {
    width: 104px;
  }

  .section-title p,
  .refresh-state {
    display: none;
  }

  .section-tools {
    gap: 8px;
  }

  .preview-tile {
    width: 96px;
  }

  .preview-status {
    display: none;
  }

  .player-overlay {
    padding: 0;
  }

  .player-stage {
    width: 100%;
  }

  .partner-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 11px;
    padding: 14px;
  }

  .partner-main {
    grid-column: 1;
    grid-row: 1;
  }

  .row-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .status-cell {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .destination {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .route-cell {
    grid-column: 1 / -1;
    grid-row: 4;
  }

  .relay-metric {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 5;
    align-items: baseline;
    gap: 8px;
  }

  .relay-metric span {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
