/* Mia TaxiBots page */
.taxi-page {
  --taxi-accent: #34d399;
  --taxi-accent-2: #10b981;
  --taxi-accent-dim: rgba(52, 211, 153, 0.14);
  --taxi-accent-glow: rgba(52, 211, 153, 0.35);
  --taxi-premium: #fbbf24;
  --taxi-premium-dim: rgba(251, 191, 36, 0.12);
  --taxi-border: #2a2d3a;
  --taxi-card: #1a1c24;
  --taxi-card-hover: #1f2230;
  --taxi-muted: #a3a3a3;
  --taxi-danger: #f87171;
}

.taxi-page {
  background:
    radial-gradient(
      ellipse 90% 50% at 50% -10%,
      rgba(52, 211, 153, 0.06),
      transparent 55%
    ),
    radial-gradient(
      ellipse 40% 30% at 100% 20%,
      rgba(16, 185, 129, 0.04),
      transparent 50%
    );
}

.taxi-hero {
  position: relative;
  overflow: hidden;
  max-width: 56rem;
  margin: 0 auto 2rem;
  padding: 2rem 1.25rem 1.75rem;
  border-radius: 1.35rem;
  border: 1px solid var(--taxi-border);
  background:
    radial-gradient(
      ellipse 80% 60% at 50% -20%,
      rgba(52, 211, 153, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 100% 100%,
      rgba(16, 185, 129, 0.1),
      transparent 50%
    ),
    var(--taxi-card);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.taxi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.04),
    transparent 40%,
    rgba(251, 191, 36, 0.03)
  );
  pointer-events: none;
}

.taxi-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taxi-accent);
  margin-bottom: 0.65rem;
}

.taxi-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  z-index: 1;
}

@media (min-width: 768px) {
  .taxi-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.taxi-hero-copy h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.55rem;
  background: linear-gradient(
    90deg,
    #ecfdf5,
    var(--taxi-accent),
    var(--taxi-accent-2)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.taxi-hero-copy h2 {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.75rem;
}

.taxi-hero-lead {
  color: var(--taxi-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.taxi-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.taxi-hero-glow {
  position: relative;
  padding: 0.35rem;
  border-radius: 1.35rem;
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.45),
    rgba(16, 185, 129, 0.15),
    rgba(251, 191, 36, 0.2)
  );
  box-shadow: 0 0 40px rgba(52, 211, 153, 0.2);
}

.taxi-hero-glow img {
  width: 100%;
  max-width: 14rem;
  height: auto;
  display: block;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.08);
  object-fit: contain;
  background: #0a0a0a;
}

.taxi-live-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 700;
  color: #86efac;
  white-space: nowrap;
}

.taxi-live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
  animation: taxi-pulse 2s ease-in-out infinite;
}

@keyframes taxi-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.85);
  }
}

.taxi-stat-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.35rem 0 1.15rem;
}

@media (min-width: 640px) {
  .taxi-stat-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.taxi-stat-card {
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid var(--taxi-border);
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}

.taxi-stat-card strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: #f5f5f5;
  margin-bottom: 0.15rem;
}

.taxi-stat-card span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--taxi-muted);
}

.taxi-stat-card--online strong {
  color: #86efac;
}

.taxi-stat-card--free strong {
  color: var(--taxi-accent);
}

.taxi-stat-card--premium strong {
  color: var(--taxi-premium);
}

.taxi-stat-card--available strong {
  color: #93c5fd;
}

.taxi-hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.taxi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s,
    border-color 0.15s;
}

.taxi-btn:hover {
  transform: translateY(-1px);
}

.taxi-btn--primary {
  color: #052e1a;
  background: linear-gradient(135deg, var(--taxi-accent), var(--taxi-accent-2));
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.28);
}

.taxi-btn--primary:hover {
  box-shadow: 0 8px 28px rgba(52, 211, 153, 0.38);
}

.taxi-btn--ghost {
  color: #f5f5f5;
  border: 1px solid var(--taxi-border);
  background: rgba(255, 255, 255, 0.04);
}

.taxi-btn--ghost:hover {
  border-color: rgba(52, 211, 153, 0.35);
  background: var(--taxi-accent-dim);
}

.taxi-ui-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.taxi-hero-kicker svg,
.taxi-feature-icon svg,
.taxi-jump a svg,
.taxi-cmd-icon svg {
  color: var(--taxi-accent);
  stroke: currentColor;
}

.taxi-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  padding: 0 0.5rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.taxi-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--taxi-border);
  background: rgba(255, 255, 255, 0.03);
  color: #d4d4d4;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  scroll-margin-top: 6rem;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.taxi-jump a:hover {
  color: #ecfdf5;
  border-color: rgba(52, 211, 153, 0.35);
  background: var(--taxi-accent-dim);
}

.taxi-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.35rem;
  padding: 0 0.5rem;
  scroll-margin-top: 6rem;
}

.taxi-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--taxi-accent);
  margin-bottom: 0.45rem;
}

.taxi-section-head p {
  color: var(--taxi-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.taxi-steps {
  margin-bottom: 2.75rem;
}

.taxi-steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .taxi-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .taxi-steps-grid::before {
    content: "";
    position: absolute;
    top: 1.75rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(52, 211, 153, 0.35),
      transparent
    );
    z-index: 0;
  }
}

.taxi-step-card {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--taxi-border);
  background: var(--taxi-card);
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.taxi-step-card:hover {
  border-color: rgba(52, 211, 153, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.taxi-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--taxi-accent-dim),
    rgba(16, 185, 129, 0.08)
  );
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--taxi-accent);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.taxi-step-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.35rem;
}

.taxi-step-card p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--taxi-muted);
}

.taxi-step-card code {
  font-size: 0.78rem;
  padding: 0.12rem 0.4rem;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(52, 211, 153, 0.15);
  color: #a7f3d0;
}

.taxi-features {
  margin-bottom: 2.75rem;
}

.taxi-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .taxi-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.taxi-feature-card {
  display: flex;
  gap: 0.85rem;
  padding: 1.05rem;
  border-radius: 1rem;
  border: 1px solid var(--taxi-border);
  background: var(--taxi-card);
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.taxi-feature-card:hover {
  border-color: rgba(52, 211, 153, 0.28);
  background: var(--taxi-card-hover);
  transform: translateY(-1px);
}

.taxi-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--taxi-accent-dim);
  border: 1px solid rgba(52, 211, 153, 0.15);
  flex-shrink: 0;
}

.taxi-feature-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.25rem;
}

.taxi-feature-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--taxi-muted);
}

.taxi-commands {
  margin-bottom: 2.75rem;
}

.taxi-commands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .taxi-commands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.taxi-cmd-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--taxi-border);
  background: var(--taxi-card);
  transition: border-color 0.2s;
}

.taxi-cmd-card:hover {
  border-color: rgba(52, 211, 153, 0.25);
}

.taxi-cmd-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.taxi-cmd-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--taxi-accent-dim);
}

.taxi-cmd-head code {
  font-size: 0.88rem;
  font-weight: 700;
  color: #d1fae5;
}

.taxi-cmd-card p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--taxi-muted);
}

.taxi-compare {
  margin-bottom: 2.75rem;
}

.taxi-compare-table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--taxi-border);
  background: var(--taxi-card);
}

.taxi-compare-table {
  width: 100%;
  min-width: 20rem;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.taxi-compare-table th,
.taxi-compare-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.taxi-compare-table th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taxi-muted);
  background: rgba(0, 0, 0, 0.25);
}

.taxi-compare-table td:first-child,
.taxi-compare-table th:first-child {
  text-align: left;
  color: #e5e5e5;
  font-weight: 600;
}

.taxi-compare-table tr:last-child td {
  border-bottom: none;
}

.taxi-compare-table .taxi-yes {
  color: var(--taxi-accent);
  font-weight: 700;
}

.taxi-compare-table .taxi-premium-col {
  color: var(--taxi-premium);
  font-weight: 700;
}

.taxi-fleet {
  margin-bottom: 2.5rem;
}

.taxi-fleet-panel {
  border-radius: 1.25rem;
  border: 1px solid var(--taxi-border);
  background:
    radial-gradient(
      ellipse 70% 40% at 50% 0%,
      rgba(52, 211, 153, 0.08),
      transparent 55%
    ),
    var(--taxi-card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.taxi-fleet-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.taxi-fleet-panel-head h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f5f5f5;
}

.taxi-fleet-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  color: #86efac;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.taxi-fleet-body {
  padding: 1.15rem;
}

.taxi-fleet-toolbar {
  margin-bottom: 0.85rem;
}

.taxi-fleet-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .taxi-fleet-filters {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.taxi-fleet-filters input,
.taxi-fleet-filters select {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--taxi-border);
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem;
  color: #f5f5f5;
  font-size: 0.88rem;
}

.taxi-fleet-filters input:focus,
.taxi-fleet-filters select:focus {
  outline: none;
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.12);
}

.taxi-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.taxi-chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--taxi-border);
  background: rgba(255, 255, 255, 0.03);
  color: #d4d4d4;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    color 0.15s,
    border-color 0.15s,
    background 0.15s;
}

.taxi-chip:hover {
  border-color: rgba(52, 211, 153, 0.3);
  color: #ecfdf5;
}

.taxi-chip.active {
  color: #052e1a;
  border-color: rgba(52, 211, 153, 0.5);
  background: linear-gradient(135deg, var(--taxi-accent), var(--taxi-accent-2));
}

.taxi-fleet-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .taxi-fleet-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.taxi-meta-pill {
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid var(--taxi-border);
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  font-size: 0.72rem;
  color: var(--taxi-muted);
}

.taxi-meta-pill strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 0.1rem;
}

.taxi-meta-pill--free strong {
  color: var(--taxi-accent);
}

.taxi-meta-pill--premium strong {
  color: var(--taxi-premium);
}

.taxi-meta-pill--online strong {
  color: #86efac;
}

.taxi-fleet-updated {
  text-align: center;
  font-size: 0.74rem;
  color: var(--taxi-muted);
  margin-bottom: 1rem;
}

.taxi-bot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.taxi-bot-card {
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--taxi-border);
  background: rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.taxi-bot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 211, 153, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.35);
}

.taxi-bot-card--premium {
  border-color: rgba(251, 191, 36, 0.35);
  background:
    radial-gradient(
      ellipse 90% 60% at 100% 0%,
      rgba(251, 191, 36, 0.1),
      transparent 55%
    ),
    rgba(0, 0, 0, 0.25);
}

.taxi-bot-card--premium:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.08);
}

.taxi-bot-card--offline {
  opacity: 0.65;
}

.taxi-bot-card--offline:hover {
  transform: none;
  box-shadow: none;
}

.taxi-bot-premium-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: var(--taxi-premium);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.taxi-bot-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.taxi-bot-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.taxi-bot-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  display: block;
}

.taxi-bot-card--premium .taxi-bot-avatar {
  border-color: rgba(251, 191, 36, 0.45);
}

.taxi-bot-status-dot {
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: 2px solid var(--taxi-card);
}

.taxi-bot-status-dot--online {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}

.taxi-bot-status-dot--offline {
  background: #737373;
}

.taxi-bot-meta {
  min-width: 0;
  flex: 1;
}

.taxi-bot-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5f5f5;
  word-break: break-word;
  margin-bottom: 0.2rem;
}

.taxi-bot-tier {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--taxi-muted);
}

.taxi-bot-tier--high {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.1);
}

.taxi-bot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.taxi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid var(--taxi-border);
  background: rgba(0, 0, 0, 0.3);
}

.taxi-badge--online {
  color: #86efac;
  border-color: rgba(52, 211, 153, 0.35);
}

.taxi-badge--offline {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.35);
}

.taxi-badge--free {
  color: var(--taxi-accent);
}

.taxi-badge--premium {
  color: var(--taxi-premium);
}

.taxi-badge--busy {
  color: #fdba74;
}

.taxi-badge--ready {
  color: #93c5fd;
}

.taxi-bot-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.taxi-bot-stat {
  padding: 0.45rem 0.35rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
}

.taxi-bot-stat span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--taxi-muted);
  margin-bottom: 0.15rem;
}

.taxi-bot-stat strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f5f5f5;
}

.taxi-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  gap: 0.85rem;
}

.taxi-skeleton-card {
  height: 10.5rem;
  border-radius: 1rem;
  border: 1px solid var(--taxi-border);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.07) 50%,
    rgba(255, 255, 255, 0.03) 75%
  );
  background-size: 200% 100%;
  animation: taxi-shimmer 1.4s ease-in-out infinite;
}

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

.taxi-status-message {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 1rem;
  border: 1px dashed var(--taxi-border);
  color: var(--taxi-muted);
  font-size: 0.9rem;
}

.taxi-status-message.taxi-loading {
  color: var(--taxi-accent);
  border-color: rgba(52, 211, 153, 0.25);
}

.taxi-status-message.taxi-error {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.35);
}

.taxi-notice {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #fca5a5;
  border-left: 3px solid rgba(248, 113, 113, 0.5);
  background: rgba(248, 113, 113, 0.06);
  border-radius: 0 0.5rem 0.5rem 0;
}

.taxi-notice strong {
  color: #fecaca;
}

.taxi-cta {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(52, 211, 153, 0.22);
  background: var(--taxi-accent-dim);
}

.taxi-cta h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #d1fae5;
  margin-bottom: 0.4rem;
}

.taxi-cta > p {
  font-size: 0.88rem;
  color: var(--taxi-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.taxi-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.taxi-cta-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.76rem;
  color: var(--taxi-muted);
}

.taxi-cta-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.taxi-empty-grid {
  grid-column: 1 / -1;
}
