.profile-list:empty {
  display: none;
}

:root {
  --muted: #5f6762;
}

input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.outline-button,
.state-tabs button,
.chip,
.control-row select {
  min-height: 44px;
}

.hero-grid h1 {
  max-width: 8ch;
  font-size: clamp(56px, 9vw, 96px);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.item-card::before {
  inset: 0 0 auto;
  width: auto;
  height: 5px;
}

.blast-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.blast-filters label {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}

.blast-filters select {
  min-width: 0;
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--sheet);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .blast-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-grid h1 {
    font-size: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .item-card {
    animation: none;
  }
}

@keyframes card-in {
  from {
    transform: translateY(8px);
  }

  to {
    transform: none;
  }
}
