/* =====================================================
   SongSuey — Dark Editorial Design
   ===================================================== */

:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-2: #242424;
  --border: #2e2e2e;
  --text: #f0f0f0;
  --text-muted: #888;
  --score-high: #4ade80;
  --score-mid: #facc15;
  --score-low: #f87171;
  --score-none: #6b7280;
  --accent: #60a5fa;
  --accent-2: #a78bfa;
  --accent-3: #fb923c;
  --accent-4: #f472b6;
  --gradient-accent: linear-gradient(135deg, #93c5fd, #3b82f6);
  --gradient-high: linear-gradient(135deg, #6dbf8a, #3a7554);
  --gradient-mid: linear-gradient(135deg, #c9a84c, #7a6030);
  --gradient-low: linear-gradient(135deg, #c47878, #7a3c3c);
  --gradient-none: linear-gradient(135deg, #8a96a4, #4a5560);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Cascadia Code", Consolas, monospace;
  --radius: 6px;
  --max-width: 1200px;
}

/* =====================================================
   Reset & Base
   ===================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================================================
   Layout
   ===================================================== */

.main-content {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* =====================================================
   Nav
   ===================================================== */

.site-header {
  background: rgba(26, 26, 26, 0.40);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav__logo-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.nav__logo-science {
  color: var(--accent);
}

.nav__logo:hover {
  color: var(--text);
  text-decoration: none;
}

.nav__logo:hover .nav__logo-icon {
  opacity: 1;
}

.nav__logo:hover .nav__logo-science {
  color: var(--accent-2);
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}

.nav__links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* =====================================================
   Footer
   ===================================================== */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* =====================================================
   Score Badges
   ===================================================== */

.score-badge {
  display: inline-block;
  padding: 0.2em 0.65em;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #0f0f0f;
}

.score-badge.score-high { background: var(--gradient-high); }
.score-badge.score-mid  { background: var(--gradient-mid); }
.score-badge.score-low  { background: var(--gradient-low); }
.score-badge.score-none { background: var(--gradient-none); color: var(--text); }

/* =====================================================
   Credit Bars
   ===================================================== */

.credit-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 80px;
}

.credit-pct {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-mono);
}

.credit-bar {
  background: var(--border);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.credit-bar__fill {
  height: 100%;
  width: var(--pct, 0%);
  border-radius: 4px;
  background: var(--accent);
  transition: width 0.3s ease;
}

/* =====================================================
   Hero Section (Home)
   ===================================================== */

.site-top {
  position: relative;
  overflow-x: clip;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  margin-top: -56px;
  padding-top: 56px;
}

.site-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.12) 20%, rgba(0,0,0,0.45) 45%, black 75%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.12) 20%, rgba(0,0,0,0.45) 45%, black 75%);
}

.hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-top__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
}

.hero-chip {
  position: absolute;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  padding: 0.22rem 0.65rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  animation: hero-float linear 1 both;
  will-change: transform, opacity;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-chip--high {
  background: rgba(74, 222, 128, 0.40);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.35);
}

.hero-chip--mid {
  background: rgba(250, 204, 21, 0.40);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.35);
}

.hero-chip--low {
  background: rgba(248, 113, 113, 0.40);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.hero-chip--none {
  background: rgba(107, 114, 128, 0.40);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.35);
}

.hero-chip--name {
  background: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.hero-chip--blue {
  background: rgba(96, 165, 250, 0.40);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.hero-chip--purple {
  background: rgba(167, 139, 250, 0.40);
  color: #a78bfa;
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.hero-chip--orange {
  background: rgba(251, 146, 60, 0.40);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.35);
}

.hero-chip--pink {
  background: rgba(244, 114, 182, 0.40);
  color: #f472b6;
  border: 1px solid rgba(244, 114, 182, 0.35);
}

@keyframes hero-float {
  0%   { opacity: 0; transform: translate(0, 0); }
  8%   { opacity: 0.5; }
  92%  { opacity: 0.5; }
  100% { opacity: 0; transform: translate(var(--tx, 0px), var(--ty, -40px)); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero__description {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =====================================================
   Section Titles
   ===================================================== */

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
}

/* =====================================================
   Artist Grid (Home)
   ===================================================== */

.artist-grid-section {
  margin-bottom: 3rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.artist-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}

.artist-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  text-decoration: none;
  color: var(--text);
}

.artist-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.artist-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex: 1;
}

.artist-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.artist-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.artist-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.artist-card__albums {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================
   Methodology Section (Home)
   ===================================================== */

.methodology {
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.methodology__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.methodology__item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.methodology__item p,
.methodology__item ul {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.label-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.label-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =====================================================
   Artist Hero Page
   ===================================================== */

.artist-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.artist-hero__name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.artist-hero__details {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.artist-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin: 0.85rem 0 1rem;
}

.artist-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.artist-meta-item__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.artist-meta-item__value {
  font-size: 0.9rem;
  color: var(--text);
}

.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.genre-tag {
  background: color-mix(in srgb, var(--accent-2) 8%, var(--surface-2));
  border: 1px solid color-mix(in srgb, var(--accent-2) 25%, var(--border));
  border-radius: 9999px;
  padding: 0.15em 0.7em;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--accent-2) 60%, var(--text-muted));
}

.score-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
}

.score-display__number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: -0.04em;
  line-height: 1;
}

.score-display__number.score-high { color: var(--score-high); }
.score-display__number.score-mid  { color: var(--score-mid); }
.score-display__number.score-low  { color: var(--score-low); }
.score-display__number.score-none { color: var(--score-none); }

.score-display__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insight-callout {
  border-left: 3px solid var(--accent-2);
  background: var(--surface-2);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.5rem;
}

.insight-callout__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.insight-callout__text {
  color: var(--text);
  font-size: 0.975rem;
  line-height: 1.7;
  margin: 0;
}

.artist-description {
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 760px;
}

/* =====================================================
   Member Credits Table
   ===================================================== */

.member-credits {
  margin-bottom: 3rem;
}

.member-credits__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.member-credits__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.member-credits__table th {
  background: var(--surface-2);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.member-credits__table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.member-credits__table tr:last-child td {
  border-bottom: none;
}

.member-credits__table tr:hover td {
  background: var(--surface-2);
}

.member-row--former td {
  opacity: 0.7;
}

.member-name {
  font-weight: 600;
  white-space: nowrap;
}

.member-period {
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.former-tag {
  display: inline-block;
  margin-left: 0.4em;
  padding: 0.1em 0.45em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  vertical-align: middle;
}

/* =====================================================
   Album Grid
   ===================================================== */

.album-section {
  margin-bottom: 3rem;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.album-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}

.album-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  text-decoration: none;
  color: var(--text);
}

.album-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.album-card__year {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.album-card__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.album-card__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.album-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.album-card__tracks,
.album-card__producers {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.album-card__producers {
  text-align: right;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =====================================================
   Album Hero Page
   ===================================================== */

.album-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.album-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.album-hero__details {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.album-hero__producers {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =====================================================
   Album Stats Row
   ===================================================== */

.album-stats {
  margin-bottom: 2.5rem;
}

.stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  min-width: 90px;
  text-align: center;
}

.stat-item__value {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-item__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =====================================================
   Track Table
   ===================================================== */

.tracklist-section {
  margin-bottom: 2.5rem;
}

.track-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.track-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.track-table th {
  background: var(--surface-2);
  padding: 0.7rem 0.9rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.track-table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.track-row:last-child td {
  border-bottom: none;
}

.track-row:nth-child(even) td {
  background: var(--surface);
}

.track-row:hover td {
  background: var(--surface-2);
}

.track-table__num {
  width: 2.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-align: center;
}

.track-table__title {
  font-weight: 600;
  min-width: 160px;
}

.track-table__credit {
  min-width: 130px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.track-table__performers {
  min-width: 200px;
}

.performer-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.performer-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.performer-roles {
  font-size: 0.75rem;
  opacity: 0.7;
}

.no-data {
  color: var(--border);
}

/* =====================================================
   Data Note
   ===================================================== */

.data-note {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--text-muted);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =====================================================
   Sources
   ===================================================== */

.sources {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.sources__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sources__list li {
  font-size: 0.88rem;
}

.sources__list a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sources__list a:hover {
  color: var(--accent);
}

/* =====================================================
   Breadcrumb
   ===================================================== */

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 640px) {
  .artist-hero,
  .album-hero {
    flex-direction: column;
  }

  .score-display {
    width: 100%;
  }

.track-table__performers {
    display: none;
  }

  .nav__links {
    gap: 1rem;
  }
}

/* Deceased artist tag */
.died-tag {
  display: inline-block;
  margin-left: 0.4em;
  padding: 0.1em 0.45em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  vertical-align: middle;
}

/* Cross-links to artist pages within credit tables */
.credit-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted color-mix(in srgb, var(--accent) 45%, transparent);
  transition: border-color 0.15s;
}

.credit-link:hover {
  border-bottom-color: var(--accent);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.filter-empty {
  padding: 3rem 2rem;
  text-align: center;
  background: color-mix(in srgb, var(--accent-2) 12%, transparent);
  border: 1px dashed color-mix(in srgb, var(--accent-2) 55%, transparent);
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

.filter-empty__heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.filter-empty__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.filter-row__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 3.5rem;
  flex-shrink: 0;
}

.genre-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.genre-filter {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.genre-filter:hover {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--text-muted);
}

.genre-filter.active {
  background: var(--gradient-accent);
  border-color: var(--accent);
  color: #0f0f0f;
}

/* New badge */
.artist-card__name-row {
  display: flex;
  align-items: center;
}

.new-tag {
  position: absolute;
  bottom: 0.3rem;
  right: -1.85rem;
  width: 5.5rem;
  text-align: center;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f0f0f;
  background: color-mix(in srgb, var(--accent-3) 65%, #0f0f0f);
  padding: 0.2rem 0;
  transform: rotate(-45deg);
  pointer-events: none;
}


/* Dev-only upcoming section */
.artist-card--unreleased {
}

.artist-card__release {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid var(--border);
}

.artist-card__release-rel {
  color: var(--accent-3);
  margin-left: 0.4em;
}

/* Date added */
.artist-card__date {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Page hero (artists listing, schedule) */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.page-hero__sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Upcoming teaser */
.upcoming-teaser {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.upcoming-teaser a {
  color: var(--accent);
}

/* Coming soon page */
.coming-soon {
  padding: 4rem 0 3rem;
  max-width: 520px;
}

.coming-soon__name {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.coming-soon__message {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.coming-soon__date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.coming-soon__link {
  font-size: 0.9rem;
  color: var(--accent);
}

/* Schedule table */
.schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.schedule-table th {
  background: var(--surface-2);
  padding: 0.7rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.schedule-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.schedule-row:last-child td {
  border-bottom: none;
}

.schedule-row--upcoming td {
  opacity: 0.55;
}

.schedule-num {
  width: 2.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-align: center;
}

.schedule-artist a {
  font-weight: 600;
  color: var(--text);
}

.schedule-artist a:hover {
  color: var(--accent);
  text-decoration: none;
}

.schedule-genres {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.schedule-date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  white-space: nowrap;
}

.status-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border-radius: 3px;
}

.status-badge--live {
  background: color-mix(in srgb, var(--score-high) 15%, transparent);
  color: var(--score-high);
}

.status-badge--upcoming {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
