.artists-shell {
  padding-bottom: 56px;
}

.artists-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px 0 8px;
}

.artists-hero-subtitle {
  margin: 18px 0 0;
  color: rgba(244, 241, 235, 0.82);
  font-family: "Sora", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  letter-spacing: 0.03em;
}

.artists-hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.artists-hero-visual {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 24%, rgba(213, 68, 68, 0.1), transparent 28%),
    radial-gradient(circle at 74% 18%, rgba(136, 160, 255, 0.16), transparent 26%),
    radial-gradient(circle at 54% 72%, rgba(242, 235, 224, 0.06), transparent 20%),
    linear-gradient(160deg, rgba(16, 17, 22, 0.96), rgba(7, 8, 12, 0.96));
}

.artists-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.orbit-a {
  width: 360px;
  height: 360px;
  top: 38px;
  right: 44px;
}

.orbit-b {
  width: 220px;
  height: 220px;
  top: 104px;
  right: 112px;
}

.orbit-c {
  width: 120px;
  height: 120px;
  top: 158px;
  right: 164px;
}

.artists-signal-wave {
  position: absolute;
  inset: 0;
}

.artists-signal-wave span {
  position: absolute;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(136, 160, 255, 0), rgba(136, 160, 255, 0.52), rgba(242, 235, 224, 0));
  opacity: 0.52;
}

.artists-signal-wave span:nth-child(1) {
  top: 20%;
  right: 18%;
  width: 240px;
  transform: rotate(16deg);
}

.artists-signal-wave span:nth-child(2) {
  top: 34%;
  right: 24%;
  width: 160px;
  transform: rotate(-54deg);
}

.artists-signal-wave span:nth-child(3) {
  top: 56%;
  right: 10%;
  width: 220px;
  transform: rotate(12deg);
}

.artists-signal-wave span:nth-child(4) {
  top: 70%;
  right: 22%;
  width: 190px;
  transform: rotate(-18deg);
}

.artists-hero-stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 34ch;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(10, 11, 15, 0.72);
}

.artists-hero-stat-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artists-hero-stat-value {
  margin: 0 0 10px;
  font-family: "Sora", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.artists-hero-stat-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.artists-grid-section {
  padding: 0 0 30px;
}

.artists-grid-section .section-heading {
  margin-bottom: 16px;
}

.artists-grid-section .section-subtitle {
  max-width: none;
  white-space: nowrap;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.artist-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 30px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 241, 235, 0.16);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.26);
}

.artist-card-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 4.4;
  background: #0b0d12;
}

.artist-card-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 280ms ease;
}

.artist-card:hover .artist-card-visual img {
  transform: scale(1.035);
}

.artist-card-copy {
  display: grid;
  gap: 14px;
}

.artist-card-copy h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.artist-card-roles,
.artist-modal-roles,
.artist-modal-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.artist-role-chip,
.artist-specialty-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 241, 235, 0.86);
  font-family: "Sora", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
}

.artist-card-bio {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artist-card-action {
  justify-self: start;
}

.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 68;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.artist-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.artist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.artist-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 96px));
  height: min(calc(100vh - 92px), 860px);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(213, 68, 68, 0.12), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(136, 160, 255, 0.12), transparent 20%),
    linear-gradient(160deg, rgba(14, 15, 20, 0.98), rgba(6, 7, 10, 0.98));
  transform: translateY(18px) scale(0.985);
  transition: transform 240ms ease;
}

.artist-modal.is-open .artist-modal-panel {
  transform: translateY(0) scale(1);
}

.artist-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(120, 18, 24, 0.22);
  color: rgba(244, 241, 235, 0.9);
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.artist-modal-close:hover,
.artist-modal-close:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(244, 241, 235, 0.16);
}

.artist-modal-layout {
  display: grid;
  grid-template-columns: minmax(300px, 35%) minmax(0, 65%);
  height: 100%;
}

.artist-modal-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 30px 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow-y: auto;
  background:
    radial-gradient(circle at 18% 80%, rgba(213, 68, 68, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(17, 18, 24, 0.94), rgba(11, 12, 16, 0.92));
}

.artist-modal-avatar {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.artist-modal-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.artist-modal-avatar-note {
  width: 100%;
  margin: -4px 0 0;
  color: rgba(244, 241, 235, 0.5);
  font-size: 0.72rem;
  line-height: 1.6;
}

.artist-modal-avatar-note.is-hidden {
  display: none;
}

.artist-modal-identity {
  display: grid;
  gap: 12px;
  width: 100%;
}

.artist-modal-identity h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.artist-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.artist-modal-links:empty,
.artist-modal-contact.is-hidden {
  display: none;
}

.artist-modal-content {
  overflow-y: auto;
  padding: 92px 34px 40px;
  display: grid;
  align-content: start;
  gap: 26px;
}

.artist-modal-section {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.artist-modal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.artist-modal-prose {
  max-width: 64ch;
}

.artist-modal-prose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.84;
  font-size: 1rem;
  white-space: pre-line;
}

.artist-modal-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.artist-modal-section-head h3 {
  font-size: 1.6rem;
}

.artist-modal-section-note {
  margin: 0;
  color: rgba(244, 241, 235, 0.52);
  font-size: 0.9rem;
}

.artist-modal-release-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.artist-release-card {
  appearance: none;
  cursor: pointer;
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.artist-release-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 241, 235, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.artist-release-cover {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  background: #090b10;
}

.artist-release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-release-meta {
  display: grid;
  gap: 6px;
}

.artist-release-meta strong {
  font-family: "Sora", "Noto Sans SC", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.14;
  color: rgba(244, 241, 235, 0.96);
}

.artist-release-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.artist-release-empty {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.72;
}

@media (max-width: 1120px) {
  .artists-hero {
    grid-template-columns: 1fr;
  }

  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artists-grid-section .section-subtitle {
    white-space: normal;
  }

  .artist-modal-panel {
    width: min(1120px, calc(100vw - 48px));
    height: min(calc(100vh - 60px), 860px);
  }
}

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

  .artist-modal {
    padding: 14px;
  }

  .artist-modal-panel {
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
  }

  .artist-modal-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .artist-modal-visual {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 46vh;
  }

  .artist-modal-content {
    padding: 26px 20px 28px;
  }

  .artist-modal-section-head {
    align-items: start;
    flex-direction: column;
  }
}
