:root {
  --bg: oklch(98% 0.005 250);
  --surface: oklch(100% 0 0);
  --fg: oklch(22% 0.02 240);
  --muted: oklch(50% 0.018 240);
  --border: oklch(90% 0.008 240);
  --accent: oklch(58% 0.16 145);
  --accent-2: oklch(64% 0.16 200);
  --accent-soft: oklch(58% 0.16 145 / 0.12);
  --fg-soft: color-mix(in oklch, var(--fg) 5%, transparent);
  --font-body: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --container: 1220px;
  --gutter: 14px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--fg) 5%, transparent);
  --shadow-md: 0 8px 28px color-mix(in oklch, var(--fg) 9%, transparent);
}

:root[data-theme="dark"] {
  --bg: oklch(17% 0.015 260);
  --surface: oklch(21% 0.018 260);
  --fg: oklch(95% 0.01 260);
  --muted: oklch(68% 0.02 260);
  --border: oklch(31% 0.015 260);
  --accent: oklch(72% 0.16 150);
  --accent-2: oklch(72% 0.13 205);
  --accent-soft: oklch(72% 0.16 150 / 0.16);
  --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.45);
  --shadow-md: 0 12px 36px oklch(0% 0 0 / 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(720px 360px at 50% -120px, var(--accent-soft), transparent 70%),
    var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
}

.logo,
.topbar-nav,
.topbar-end,
.hero-pills,
.card-status,
.actions,
.sort-tabs,
.footer-inner,
.footer-inner nav {
  display: flex;
  align-items: center;
}

.logo {
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}

.logo-radar {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid color-mix(in oklch, var(--accent) 46%, var(--border));
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--accent) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, transparent 0 8px, color-mix(in oklch, var(--accent) 28%, transparent) 9px 10px),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.logo-radar::before {
  position: absolute;
  left: 15px;
  top: 5px;
  width: 2px;
  height: 13px;
  border-radius: 2px;
  background: var(--accent);
  content: "";
  transform-origin: 1px 11px;
  animation: radarSweep 2.8s linear infinite;
}

.logo-radar::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklch, var(--accent-2) 45%, transparent);
  content: "";
}

.topbar-nav {
  position: absolute;
  left: 50%;
  gap: 4px;
  transform: translateX(-50%);
}

.topbar-nav a,
.sort-tabs button {
  padding: 6px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.topbar-nav a:hover,
.topbar-nav a.active,
.sort-tabs button:hover,
.sort-tabs button.active {
  background: var(--fg-soft);
  color: var(--fg);
}

.topbar-end {
  margin-left: auto;
  gap: 10px;
}

.account-pill,
.theme-toggle,
.primary-link,
.actions a,
.float-qr button {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.account-pill {
  padding: 7px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.theme-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--muted);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-sun,
:root[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

.account-pill:hover,
.theme-toggle:hover,
.primary-link:hover,
.actions a:hover,
.float-qr button:hover {
  border-color: var(--fg);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(62px, 9vw, 106px) 28px;
}

.hero-glow {
  position: absolute;
  inset: -26% -10% auto -10%;
  height: 500px;
  pointer-events: none;
  background:
    radial-gradient(42% 58% at 28% 36%, var(--accent-soft), transparent 72%),
    radial-gradient(36% 54% at 74% 42%, oklch(62% 0.15 250 / 0.14), transparent 72%);
  filter: blur(54px) saturate(1.25);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-title span,
.hero-panel strong,
.card-cta {
  background: linear-gradient(118deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 68ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-pills {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pill,
.model-tag,
.tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in oklch, var(--surface) 76%, transparent);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-pill {
  gap: 8px;
  padding: 7px 14px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.hero-panel,
.filter-panel,
.station-board,
.side-rail section,
.curated-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-sm);
}

.hero-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.panel-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.panel-stat span {
  color: var(--muted);
  font-size: 13px;
}

.panel-stat strong {
  font-family: var(--font-mono);
  font-size: 24px;
}

.status-strip {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding-top: 6px;
}

.bar {
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: var(--border);
}

.bar.on {
  background: var(--accent);
}

.ad-section {
  margin-bottom: 18px;
}

.ad-carousel {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  min-height: 142px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ad-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 142px;
  padding: 26px 30px;
  background:
    radial-gradient(280px 140px at 86% 25%, oklch(100% 0 0 / 0.22), transparent 72%),
    linear-gradient(135deg, color-mix(in oklch, var(--accent) 82%, black), color-mix(in oklch, var(--accent-2) 72%, black));
  color: oklch(99% 0 0);
  animation: adSlide 12s infinite;
}

.ad-kicker {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.75;
}

.ad-slide strong {
  display: block;
  max-width: 720px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.18;
}

.primary-link {
  flex: 0 0 auto;
  padding: 10px 16px;
  background: oklch(100% 0 0 / 0.94);
  color: oklch(28% 0.06 180);
  font-weight: 800;
}

.dashboard {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 154px;
  gap: 14px;
  align-items: start;
  padding-bottom: 44px;
}

.filter-panel,
.side-rail {
  position: sticky;
  top: 82px;
}

.filter-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.filter-panel h2,
.board-head h2,
.curated-lite h2 {
  font-size: 22px;
  letter-spacing: 0;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.filter-panel select,
.filter-panel input[type="range"] {
  width: 100%;
}

.filter-panel select {
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  padding-inline: 9px;
}

.check-row {
  grid-template-columns: 16px 1fr;
  align-items: center;
}

.station-board {
  overflow: visible;
  padding: 14px;
}

.board-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 6px 14px;
}

.sort-tabs {
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px;
  background: var(--bg);
}

.board-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.station-row {
  display: grid;
  grid-template-columns: 54px minmax(180px, 1.2fr) 54px 64px 76px minmax(132px, 0.65fr) 132px;
  gap: 10px;
  align-items: center;
  min-height: 74px;
  padding: 10px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 86px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.station-row[hidden],
.no-results[hidden] {
  display: none;
}

.station-row:hover {
  background: color-mix(in oklch, var(--accent) 5%, transparent);
}

.top-row {
  border-top-color: color-mix(in oklch, var(--accent) 35%, var(--border));
}

.rank {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.station-main h3 {
  font-size: 17px;
  line-height: 1.2;
}

.station-main p {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric,
.rate {
  display: grid;
  gap: 2px;
  text-align: center;
}

.metric strong,
.rate strong {
  font-family: var(--font-mono);
  font-size: 16px;
}

.metric span,
.rate span {
  color: var(--muted);
  font-size: 11px;
}

.rate strong {
  color: var(--accent);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags span,
.model-tag {
  padding: 3px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.actions {
  justify-content: flex-end;
  gap: 6px;
  position: relative;
  z-index: 3;
  min-width: 128px;
}

.actions a {
  min-width: 40px;
  padding: 7px 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  pointer-events: auto;
}

.actions .detail {
  min-width: 38px;
  padding-inline: 8px;
  background: transparent;
  box-shadow: none;
}

.actions .use {
  min-width: 70px;
  padding-inline: 14px;
  border-color: color-mix(in oklch, var(--accent) 44%, var(--border));
  background: var(--accent);
  color: oklch(100% 0 0);
}

.no-results {
  padding: 34px 10px 26px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.side-rail {
  display: grid;
  gap: 10px;
}

.mini-card,
.qr-card {
  padding: 14px;
  scroll-margin-top: 86px;
}

.mini-card span,
.qr-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.mini-card strong {
  display: block;
  margin-block: 6px 4px;
  font-family: var(--font-mono);
  font-size: 20px;
}

.mini-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.qr-code {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, currentColor 8%, transparent 8% 92%, currentColor 92%),
    linear-gradient(currentColor 8%, transparent 8% 92%, currentColor 92%),
    var(--surface);
  color: var(--accent);
  font-weight: 850;
}

.qr-code.business {
  color: var(--accent-2);
}

.curated-lite {
  padding-bottom: 56px;
}

.section-head {
  margin-bottom: 18px;
  text-align: center;
}

.section-note {
  color: var(--muted);
  font-size: 14px;
}

.curated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.curated-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.curated-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.curated-card:hover {
  border-color: color-mix(in oklch, var(--accent) 35%, var(--border));
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.curated-card:hover::before {
  opacity: 1;
}

.card-seal {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-right: 58px;
}

.card-logo {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--accent-soft);
  color: color-mix(in oklch, var(--accent) 82%, black);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 850;
}

.card-logo-img {
  background: linear-gradient(135deg, oklch(98% 0.01 250), oklch(86% 0.04 250));
  color: oklch(40% 0.08 250);
  font-size: 22px;
}

.station-name {
  font-size: 19px;
  font-weight: 750;
  line-height: 1.2;
}

.card-domain {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.card-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.curated-card--placeholder {
  justify-content: center;
  border-style: dashed;
  background: color-mix(in oklch, var(--surface) 78%, var(--bg));
}

.placeholder-inner {
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--muted);
  text-align: center;
}

.placeholder-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--accent);
  font-size: 24px;
}

.placeholder-title {
  color: var(--fg);
  font-size: 18px;
  font-weight: 800;
}

.placeholder-subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
}

.float-qr {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.float-qr button {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.float-panel {
  position: absolute;
  right: 0;
  bottom: 48px;
  display: grid;
  grid-template-columns: repeat(2, 112px);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.float-qr:hover .float-panel,
.float-qr:focus-within .float-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-panel div {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.pagefoot {
  padding-block: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.detail-page {
  padding-block: 34px 72px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.back-link:hover {
  background: var(--fg-soft);
  color: var(--fg);
}

.detail-hero,
.detail-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-sm);
}

.detail-hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.detail-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.detail-hero p:not(.eyebrow) {
  color: var(--muted);
}

.detail-use {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: oklch(100% 0 0);
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 16px;
  overflow: hidden;
}

.detail-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-left: 1px solid var(--border);
}

.detail-grid div:first-child {
  border-left: 0;
}

.detail-grid strong {
  color: var(--muted);
  font-size: 12px;
}

.detail-grid span {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 850;
}

.footer-inner {
  justify-content: space-between;
  gap: 18px;
}

.footer-inner nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-inner a:hover {
  color: var(--fg);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 0.06s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.04); }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes adSlide {
  0%, 27% { transform: translateX(0); }
  33%, 60% { transform: translateX(-100%); }
  66%, 94% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

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

@media (max-width: 1080px) {
  .dashboard {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .side-rail {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, 1fr);
  }

  .station-row {
    grid-template-columns: 50px minmax(170px, 1fr) 54px 66px 76px 128px;
  }

  .station-row .tags {
    display: none;
  }
}

@media (max-width: 880px) {
  .hero-inner,
  .dashboard,
  .curated-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .side-rail {
    position: static;
  }

  .filter-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-panel h2,
  .check-row {
    grid-column: 1 / -1;
  }

  .station-row {
    grid-template-columns: 48px minmax(0, 1fr) 64px 124px;
  }

  .station-row .metric:nth-of-type(2),
  .station-row .rate {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 10px;
  }

  .brand-copy em,
  .account-pill {
    display: none;
  }

  .topbar-nav {
    position: static;
    margin-left: auto;
    transform: none;
  }

  .topbar-nav a {
    padding-inline: 9px;
  }

  .hero {
    padding-block: 46px 22px;
  }

  .hero-title {
    font-size: clamp(36px, 12vw, 52px);
  }

  .ad-slide,
  .board-head,
  .footer-inner,
  .detail-hero {
    align-items: flex-start;
  }

  .board-head,
  .footer-inner {
    flex-direction: column;
  }

  .ad-slide {
    grid-template-columns: 1fr;
  }

  .ad-slide {
    gap: 16px;
  }

  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid div,
  .detail-grid div:first-child {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .detail-grid div:first-child {
    border-top: 0;
  }

  .side-rail,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .station-row {
    grid-template-columns: 42px minmax(0, 1fr) 64px;
    min-height: 112px;
  }

  .station-row .actions {
    grid-column: 1 / -1;
    justify-content: stretch;
    min-width: 0;
  }

  .actions a,
  .actions .use {
    flex: 1;
  }

  .float-qr {
    display: none;
  }
}
