@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/GeistMono-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #171717;
  --surface-2: #202020;
  --surface-3: #262626;
  --border: #404040;
  --border-soft: #2e2e2e;
  --text: #f7f7f7;
  --muted: #a3a3a3;
  --muted-2: #737373;
  --accent: #00ffa3;
  --accent-soft: rgba(0, 255, 163, 0.12);
  --danger: #ff8c8c;
  --protocol: #ff7bb8;
  --creator: #5b9cff;
  --buyback: #00ffa3;
  --radius: 4px;
  --shell: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.app-shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  border-left: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  min-height: 100dvh;
}

.topbar {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid var(--border);
  background: #080808;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 122px;
  height: auto;
}

.product-title {
  border-left: 1px solid var(--border);
  padding-left: 24px;
  min-width: 0;
}

.product-title h1 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 650;
}

.product-title span {
  color: var(--muted);
  font-size: 12px;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.topbar nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 140ms ease;
}

.topbar nav a:hover {
  color: var(--text);
}

.button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 100ms ease;
}

.button:active,
.icon-button:active,
.tier-tabs button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--accent);
  color: #062117;
}

.button-primary:hover {
  background: #34ffb5;
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.button-secondary:hover {
  background: var(--surface-3);
  border-color: #606060;
}

.status-bar {
  min-height: 38px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
}

.status-bar strong {
  color: var(--text);
  font-weight: 550;
}

.live-mark {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

main {
  padding: 48px 32px 64px;
}

main > section + section {
  margin-top: 72px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 4px 0 5px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 570;
}

.section-heading > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-side,
.leaders-tools,
.panel-tools {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.endpoint-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.endpoint-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #5b9cff;
  border-radius: var(--radius);
  background: rgba(91, 156, 255, 0.08);
  color: #d7e6ff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease, transform 100ms ease;
}

.endpoint-link:hover {
  border-color: #8bb9ff;
  background: rgba(91, 156, 255, 0.16);
  color: #ffffff;
}

.endpoint-link:active {
  transform: translateY(1px);
}

.section-kicker {
  margin: 0;
  color: var(--accent);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.coverage-summary {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px;
  padding: 14px 0 4px 24px;
  border-left: 1px solid var(--border);
}

.coverage-item span,
.method-chip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.coverage-item strong,
.method-chip strong {
  display: block;
  color: var(--text);
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.metric {
  min-height: 138px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}

.metric:last-child {
  border-right: 0;
}

.metric-label {
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 14px;
  font-family: "Geist Mono", monospace;
  font-size: clamp(25px, 2.4vw, 37px);
  line-height: 1;
  font-weight: 620;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.metric small {
  color: var(--muted);
  font-size: 12px;
}

.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-3) 50%, var(--surface) 75%);
  background-size: 200% 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .skeleton {
    animation: shimmer 1.2s ease-in-out infinite;
  }
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

.metric-skeleton {
  min-height: 138px;
  border-right: 1px solid var(--border);
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: 16px;
  margin-top: 16px;
}

.panel {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.panel-head .panel-tools {
  flex: 0 0 auto;
}

.panel-head h3 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 650;
}

.panel-head p,
.panel-note,
.scope-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.meta-value {
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
}

.bar-chart {
  height: 420px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.bar-row {
  display: grid;
  grid-template-columns: 74px minmax(120px, 1fr) 84px;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0;
  border: 0;
  width: 100%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}

.bar-row:hover,
.bar-row.active {
  color: var(--text);
}

.bar-label,
.bar-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.bar-value {
  text-align: right;
}

.bar-track {
  height: 10px;
  background: var(--surface-3);
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  background: #57534e;
  min-width: 2px;
  transform-origin: left center;
}

.bar-row.active .bar-fill {
  background: var(--accent);
}

.currency-select-label {
  display: grid;
  gap: 5px;
  min-width: 150px;
}

.currency-select-label span {
  color: var(--muted);
  font-size: 11px;
}

select,
input[type="search"] {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #101010;
  color: var(--text);
  padding: 0 12px;
}

select:hover,
input[type="search"]:hover {
  border-color: #606060;
}

input[type="search"]::placeholder {
  color: #8c8c8c;
}

.fee-layout {
  min-height: 320px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.donut {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--protocol) 0 48%, var(--creator) 48% 76%, var(--buyback) 76% 100%);
  position: relative;
}

.donut::after {
  content: "";
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface);
  position: absolute;
}

.donut-center {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donut-center strong {
  display: block;
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Geist Mono", monospace;
  font-size: 22px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.donut-center span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fee-legend {
  display: grid;
  gap: 18px;
}

.fee-line {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 9px;
  align-items: start;
}

.fee-swatch {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
}

.fee-copy span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.fee-copy strong,
.fee-percent {
  font-family: "Geist Mono", monospace;
  font-variant-numeric: tabular-nums;
}

.fee-copy strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 550;
}

.fee-percent {
  color: var(--text);
  font-size: 12px;
}

.panel-note {
  margin-top: 18px;
}

.leaders-heading {
  align-items: center;
}

.leaders-tools {
  align-items: end;
}

.method-chip {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: right;
}

.tier-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tier-tabs button {
  min-height: 70px;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}

.tier-tabs button:last-child {
  border-right: 0;
}

.tier-tabs button:hover {
  background: var(--surface-3);
}

.tier-tabs button[aria-selected="true"] {
  background: var(--accent-soft);
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.tier-tabs span,
.tier-tabs small {
  display: block;
}

.tier-tabs span {
  font-family: "Geist Mono", monospace;
  font-size: 15px;
  font-weight: 600;
}

.tier-tabs small {
  margin-top: 2px;
  color: var(--muted);
}

.leader-controls {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-top: 0;
  background: #0c0c0c;
}

.tier-context strong {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
}

.tier-context span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.filters {
  display: flex;
  gap: 8px;
}

.filters input {
  width: 220px;
}

.table-frame {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-top: 0;
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1040px;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  white-space: nowrap;
}

th {
  background: #101010;
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

td {
  font-size: 12px;
}

tbody tr {
  cursor: pointer;
  transition: background-color 120ms ease;
}

tbody tr:hover {
  background: var(--surface-3);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.numeric {
  text-align: right;
  font-family: "Geist Mono", monospace;
  font-variant-numeric: tabular-nums;
}

.rank-col,
.action-col {
  width: 56px;
}

.rank-number {
  color: var(--muted-2);
}

.token-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.token-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #0b0b0b;
  color: var(--accent);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  font-weight: 650;
}

.token-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.token-identity strong,
.token-identity small {
  display: block;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.token-identity strong {
  font-size: 12px;
  font-weight: 650;
}

.token-identity small {
  color: var(--muted);
  font-size: 10px;
}

.status-tag {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.status-tag.pool {
  border-color: rgba(0, 255, 163, 0.35);
  color: var(--accent);
}

.score {
  color: var(--accent);
  font-weight: 650;
}

.row-action {
  color: var(--muted);
  text-align: right;
}

.empty-state {
  height: 180px;
  color: var(--muted);
  text-align: center;
}

.scope-note {
  margin-top: 12px;
  max-width: 1100px;
}

footer {
  min-height: 64px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
}

footer a:hover {
  color: var(--text);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  visibility: hidden;
  pointer-events: none;
}

.drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  opacity: 0;
  cursor: default;
  transition: opacity 180ms ease;
}

.drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 94vw);
  height: 100dvh;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  background: #0c0c0c;
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.drawer-head h2 {
  margin: 10px 0 2px;
  font-size: 26px;
  line-height: 1.1;
}

.drawer-head p {
  margin: 0;
  color: var(--muted);
}

.icon-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.drawer-body {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 22px 0;
}

.drawer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft);
}

.drawer-stat {
  min-height: 92px;
  padding: 14px;
  background: var(--surface);
}

.drawer-stat span,
.drawer-block h3 {
  color: var(--muted);
  font-size: 10px;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.drawer-stat strong {
  display: block;
  margin-top: 10px;
  font-family: "Geist Mono", monospace;
  font-size: 16px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}

.drawer-block {
  margin-top: 24px;
}

.drawer-block h3 {
  margin: 0 0 12px;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.signal-item {
  min-height: 64px;
  padding: 10px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
}

.signal-item strong,
.signal-item span {
  display: block;
}

.signal-item strong {
  font-size: 11px;
}

.signal-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.address-block {
  padding: 12px;
  overflow-wrap: anywhere;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  color: var(--muted);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.error-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 420px;
  padding: 14px 16px;
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  background: #2a1212;
  color: #ffe0e0;
  font-size: 12px;
}

.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;
}

body.drawer-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .topbar nav {
    display: none;
  }

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

  .fee-layout {
    grid-template-columns: 220px 1fr;
  }

  .leader-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    width: 100%;
    flex-wrap: wrap;
  }

  .filters label:first-child {
    flex: 1 1 240px;
  }

  .filters input {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .app-shell {
    border: 0;
  }

  .topbar {
    position: static;
    min-height: auto;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px 16px;
  }

  .brand img {
    width: 108px;
  }

  .product-title {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .topbar > .button {
    min-height: 36px;
    padding-inline: 11px;
    font-size: 12px;
  }

  .status-bar {
    padding: 10px 16px;
    flex-wrap: wrap;
  }

  main {
    padding: 32px 16px 48px;
  }

  main > section + section {
    margin-top: 54px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-side,
  .leaders-tools,
  .panel-tools {
    width: 100%;
    justify-items: stretch;
  }

  .endpoint-actions {
    justify-content: flex-start;
  }

  .panel-head {
    align-items: stretch;
    flex-direction: column;
  }

  .currency-select-label {
    width: 100%;
  }

  .method-chip {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .coverage-summary {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }

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

  .metric,
  .metric-skeleton {
    min-height: 122px;
  }

  .metric:nth-child(2),
  .metric-skeleton:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2),
  .metric-skeleton:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .metric strong {
    font-size: 25px;
  }

  .panel {
    padding: 18px;
  }

  .bar-chart {
    height: 360px;
  }

  .bar-row {
    grid-template-columns: 58px minmax(90px, 1fr) 70px;
    gap: 8px;
  }

  .fee-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
  }

  .fee-legend {
    width: 100%;
  }

  .tier-tabs button {
    min-height: 64px;
    padding: 10px;
  }

  .tier-tabs span {
    font-size: 12px;
  }

  .filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filters label,
  .filters select {
    width: 100%;
  }

  footer {
    min-height: auto;
    padding: 20px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .drawer-panel {
    width: 100vw;
    padding: 20px 16px;
  }
}

@media (max-width: 420px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric-skeleton {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .metric:last-child,
  .metric-skeleton:last-child {
    border-bottom: 0;
  }

  .coverage-summary,
  .drawer-grid,
  .signal-list {
    grid-template-columns: 1fr;
  }

  .tier-tabs small {
    display: none;
  }
}
