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

:root {
  --bg: #0a0a1a;
  --bg2: #0d0d20;
  --bg3: #111128;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --cyan: #22d3ee;
  --cyan-light: #67e8f9;
  --pink: #ec4899;
  --blue: #3b82f6;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --border: rgba(139, 92, 246, 0.15);
  --font: 'Outfit', sans-serif;
  --mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 2px; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--cyan), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--cyan); }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(59,43,110,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(34,211,238,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(139,92,246,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #06060f 0%, #0d0820 40%, #130b28 70%, #0a0617 100%);
}

.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 5%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 18%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 12%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 35%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 10%, rgba(167,139,250,0.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(34,211,238,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 22%, rgba(167,139,250,0.6) 0%, transparent 100%);
}

.neon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: floatOrb 14s ease-in-out infinite;
  pointer-events: none;
}
.orb-a { width:450px;height:450px;background:rgba(139,92,246,0.15);top:-120px;left:-120px;animation-duration:18s; }
.orb-b { width:300px;height:300px;background:rgba(34,211,238,0.1);top:20%;right:-80px;animation-delay:-6s;animation-duration:14s; }
.orb-c { width:200px;height:200px;background:rgba(236,72,153,0.09);bottom:30%;left:10%;animation-delay:-10s;animation-duration:12s; }
.orb-d { width:350px;height:350px;background:rgba(59,130,246,0.08);bottom:-60px;right:5%;animation-delay:-4s;animation-duration:20s; }

@keyframes floatOrb {
  0%,100% { transform:translate(0,0) scale(1); }
  33% { transform:translate(25px,-35px) scale(1.04); }
  66% { transform:translate(-15px,20px) scale(0.96); }
}

.city {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
}
.city svg { width:100%;height:100%; }

.hero-content {
  position: relative;
  z-index: 10;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1;}50%{opacity:0.2;} }

.hero-title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .line2 {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--purple-light) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradShift 4s linear infinite;
}

@keyframes gradShift {
  0%{background-position:0% center;}
  100%{background-position:200% center;}
}

.hero-sub {
  font-family: var(--mono);
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.hero-cta { display:flex;gap:1rem;justify-content:center;flex-wrap:wrap; }

.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-glow.primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: 0 0 30px rgba(139,92,246,0.35);
}
.btn-glow.primary:hover {
  box-shadow: 0 0 50px rgba(139,92,246,0.6), 0 0 80px rgba(34,211,238,0.15);
  transform: translateY(-2px);
}

.btn-glow.ghost {
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--purple-light);
  background: rgba(139,92,246,0.05);
}
.btn-glow.ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34,211,238,0.05);
}

.hero-wave {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.hw { width:3px;border-radius:3px;background:linear-gradient(to top,var(--purple),var(--cyan));animation:hw 1.5s ease-in-out infinite; }
.hw:nth-child(1){height:10px;animation-delay:0s;}
.hw:nth-child(2){height:22px;animation-delay:0.1s;}
.hw:nth-child(3){height:36px;animation-delay:0.2s;}
.hw:nth-child(4){height:20px;animation-delay:0.3s;}
.hw:nth-child(5){height:42px;animation-delay:0.15s;}
.hw:nth-child(6){height:28px;animation-delay:0.25s;}
.hw:nth-child(7){height:16px;animation-delay:0.05s;}
.hw:nth-child(8){height:36px;animation-delay:0.35s;}
.hw:nth-child(9){height:22px;animation-delay:0.1s;}
.hw:nth-child(10){height:12px;animation-delay:0.4s;}

@keyframes hw {
  0%,100%{transform:scaleY(0.3);opacity:0.4;}
  50%{transform:scaleY(1);opacity:1;}
}

/* ABOUT */
.about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 3rem;
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-tag::before { content:'';width:24px;height:1px;background:var(--cyan); }

.section-title {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.grad-text {
  background: linear-gradient(90deg,var(--cyan),var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-pills { display:flex;gap:0.75rem;flex-wrap:wrap;margin-top:2rem; }

.pill {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid;
}
.pill-p { color:var(--purple-light);border-color:rgba(139,92,246,0.3);background:rgba(139,92,246,0.08); }
.pill-c { color:var(--cyan);border-color:rgba(34,211,238,0.3);background:rgba(34,211,238,0.08); }
.pill-pk { color:var(--pink);border-color:rgba(236,72,153,0.3);background:rgba(236,72,153,0.08); }

.eq-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 280px;
  padding: 2rem;
  background: rgba(139,92,246,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.eq-visual::before {
  content:'';
  position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 100%,rgba(139,92,246,0.12) 0%,transparent 70%);
}

.eq-bar {
  width: 18px;
  border-radius: 3px 3px 0 0;
  animation: eq 1.8s ease-in-out infinite;
  position: relative;
}

.eq-bar:nth-child(1){height:40%;background:linear-gradient(to top,var(--purple),var(--purple-light));animation-delay:0s;}
.eq-bar:nth-child(2){height:70%;background:linear-gradient(to top,var(--purple),var(--cyan));animation-delay:0.1s;}
.eq-bar:nth-child(3){height:55%;background:linear-gradient(to top,var(--purple),var(--purple-light));animation-delay:0.2s;}
.eq-bar:nth-child(4){height:90%;background:linear-gradient(to top,var(--purple),var(--cyan));animation-delay:0.05s;}
.eq-bar:nth-child(5){height:60%;background:linear-gradient(to top,var(--blue),var(--cyan));animation-delay:0.25s;}
.eq-bar:nth-child(6){height:80%;background:linear-gradient(to top,var(--purple),var(--pink));animation-delay:0.15s;}
.eq-bar:nth-child(7){height:45%;background:linear-gradient(to top,var(--purple),var(--purple-light));animation-delay:0.3s;}
.eq-bar:nth-child(8){height:75%;background:linear-gradient(to top,var(--blue),var(--cyan));animation-delay:0.08s;}
.eq-bar:nth-child(9){height:50%;background:linear-gradient(to top,var(--purple),var(--cyan));animation-delay:0.22s;}
.eq-bar:nth-child(10){height:65%;background:linear-gradient(to top,var(--purple),var(--pink));animation-delay:0.18s;}

@keyframes eq {
  0%,100%{transform:scaleY(0.3);}
  50%{transform:scaleY(1);}
}

/* CHANNELS */
.channels-section {
  padding: 7rem 3rem;
  background: var(--bg);
}

.channels-wrap { max-width: 1100px; margin: 0 auto; }

.channels-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.channel-card {
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg2);
  display: grid;
  grid-template-columns: 360px 1fr;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.channel-card:hover {
  border-color: rgba(34,211,238,0.35);
  box-shadow: 0 0 60px rgba(139,92,246,0.08), 0 0 100px rgba(34,211,238,0.04);
}

.channel-art {
  position: relative;
  background: linear-gradient(135deg,#0d0820 0%,#1a0d35 40%,#0d1a35 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2.5rem;
  overflow: hidden;
  min-height: 420px;
}

.channel-art::before {
  content:'';
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(139,92,246,0.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(139,92,246,0.06) 1px,transparent 1px);
  background-size: 40px 40px;
}

.channel-art::after {
  content:'';
  position:absolute;bottom:0;left:0;right:0;
  height:50%;
  background:linear-gradient(to top,rgba(13,8,32,0.95) 0%,transparent 100%);
}

.art-glow1 {
  position:absolute;width:200px;height:200px;border-radius:50%;
  filter:blur(60px);top:10%;left:10%;
  background:rgba(139,92,246,0.3);
  animation:floatOrb 8s ease-in-out infinite;
}
.art-glow2 {
  position:absolute;width:150px;height:150px;border-radius:50%;
  filter:blur(50px);bottom:25%;right:5%;
  background:rgba(34,211,238,0.2);
  animation:floatOrb 10s ease-in-out infinite;animation-delay:-4s;
}

.art-emoji {
  font-size:3.5rem;position:relative;z-index:2;
  filter:drop-shadow(0 0 20px rgba(34,211,238,0.5));
}

.art-bottom { position:relative;z-index:2; }
.art-label {
  font-family:var(--mono);font-size:0.6rem;
  letter-spacing:0.2em;text-transform:uppercase;
  color:var(--cyan);margin-bottom:0.4rem;
}
.art-title {
  font-size:1.5rem;font-weight:700;line-height:1.1;
  background:linear-gradient(90deg,var(--text),var(--purple-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

.channel-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.channel-name {
  font-size:clamp(1.6rem,2.5vw,2.2rem);
  font-weight:700;line-height:1.1;
}

.channel-handle {
  font-family:var(--mono);font-size:0.75rem;
  color:var(--purple-light);letter-spacing:0.1em;
}

.channel-desc {
  font-size:1rem;color:var(--text-muted);line-height:1.8;
  border-left:2px solid rgba(139,92,246,0.4);
  padding-left:1rem;
}

.channel-stats {
  display:flex;gap:2rem;
  padding:1.25rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.stat-num {
  font-size:1.4rem;font-weight:700;
  background:linear-gradient(90deg,var(--cyan),var(--purple-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

.stat-lbl {
  font-family:var(--mono);font-size:0.6rem;
  letter-spacing:0.15em;text-transform:uppercase;
  color:var(--text-dim);margin-top:0.2rem;
}

.channel-btns { display:flex;gap:0.75rem;flex-wrap:wrap; }

.cbtn {
  font-family:var(--mono);font-size:0.65rem;
  letter-spacing:0.12em;text-transform:uppercase;
  text-decoration:none;padding:0.7rem 1.4rem;
  border-radius:4px;transition:all 0.3s;
  display:inline-flex;align-items:center;gap:0.4rem;
}
.cbtn-p {
  background:linear-gradient(135deg,var(--purple),var(--blue));
  color:#fff;box-shadow:0 0 20px rgba(139,92,246,0.3);
}
.cbtn-p:hover { box-shadow:0 0 40px rgba(139,92,246,0.5);transform:translateY(-1px); }
.cbtn-o {
  border:1px solid rgba(139,92,246,0.3);
  color:var(--purple-light);background:rgba(139,92,246,0.05);
}
.cbtn-o:hover { border-color:var(--cyan);color:var(--cyan);background:rgba(34,211,238,0.05); }

/* MANIFESTO */
.manifesto {
  background: var(--bg2);
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  text-align:center;padding:8rem 3rem;position:relative;overflow:hidden;
}

.manifesto::before {
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 60% at 50% 50%,rgba(139,92,246,0.07) 0%,transparent 70%);
}

.manifesto blockquote {
  position:relative;
  font-size:clamp(1.4rem,3vw,2.4rem);
  font-weight:300;line-height:1.6;
  max-width:720px;margin:0 auto 2rem;color:var(--text);
}

.manifesto blockquote em {
  font-style:normal;
  background:linear-gradient(90deg,var(--cyan),var(--purple-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

.manifesto cite {
  font-family:var(--mono);font-size:0.65rem;
  letter-spacing:0.25em;text-transform:uppercase;
  color:var(--text-dim);font-style:normal;
}

/* FOOTER */
footer {
  background:#060610;
  border-top:1px solid var(--border);
  padding:3.5rem 3rem 2.5rem;
}

.footer-inner {
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr auto 1fr;
  align-items:center;gap:2rem;
  padding-bottom:2rem;border-bottom:1px solid var(--border);margin-bottom:2rem;
}

.footer-logo {
  font-size:1.3rem;font-weight:700;
  background:linear-gradient(90deg,var(--cyan),var(--purple-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.footer-tagline {
  font-family:var(--mono);font-size:0.62rem;
  letter-spacing:0.1em;color:var(--text-dim);margin-top:0.3rem;
}

.footer-wave { display:flex;align-items:center;gap:3px; }
.fw { width:3px;border-radius:2px;background:linear-gradient(to top,var(--purple),var(--cyan));animation:hw 1.5s ease-in-out infinite; }
.fw:nth-child(1){height:8px;animation-delay:0s;}
.fw:nth-child(2){height:16px;animation-delay:0.1s;}
.fw:nth-child(3){height:24px;animation-delay:0.2s;}
.fw:nth-child(4){height:12px;animation-delay:0.15s;}
.fw:nth-child(5){height:20px;animation-delay:0.05s;}

.footer-links { display:flex;gap:2rem;justify-content:flex-end; }
.footer-links a {
  font-family:var(--mono);font-size:0.65rem;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--text-dim);text-decoration:none;transition:color 0.3s;
}
.footer-links a:hover { color:var(--cyan); }

.footer-copy {
  max-width:1100px;margin:0 auto;
  font-family:var(--mono);font-size:0.6rem;
  letter-spacing:0.1em;color:var(--text-dim);text-align:center;
}

@keyframes fadeUp {
  from{opacity:0;transform:translateY(30px);}
  to{opacity:1;transform:translateY(0);}
}

.reveal {
  opacity:0;transform:translateY(40px);
  transition:opacity 0.9s ease,transform 0.9s ease;
}
.reveal.visible { opacity:1;transform:translateY(0); }

@media(max-width:900px){
  nav{padding:1.25rem 1.5rem;}
  .nav-links{display:none;}
  .about,.channels-section,.manifesto{padding:5rem 1.5rem;}
  .about-grid{grid-template-columns:1fr;gap:3rem;}
  .channel-card{grid-template-columns:1fr;}
  .channel-art{min-height:200px;}
  .channels-header{flex-direction:column;align-items:flex-start;gap:1rem;}
  .footer-inner{grid-template-columns:1fr;text-align:center;}
  .footer-links{justify-content:center;}
  .footer-wave{justify-content:center;}
}
/* ── ARTISTS ── */
.artists-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 3rem;
}

.artists-wrap { max-width: 900px; margin: 0 auto; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.artist-card {
  background: var(--bg);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 16px;
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s;
  cursor: default;
}

.artist-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}

.artist-soon:hover {
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: none;
  transform: none;
}

.artist-avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
}

.artist-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a0d35, #0d1a35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.artist-initial {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font);
  background: linear-gradient(135deg, var(--cyan), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.soon-avatar {
  background: rgba(139, 92, 246, 0.05);
  border: 1px dashed rgba(139, 92, 246, 0.2);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
  z-index: 1;
  animation: spin-ring 6s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), white calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), white calc(100% - 3px));
}

.soon-ring {
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(34,211,238,0.1));
  animation: none;
  opacity: 0.5;
}

@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.artist-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
  font-family: var(--font);
}

.artist-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.atag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.atag-dim {
  color: var(--text-dim);
  background: rgba(139, 92, 246, 0.05);
  border-color: rgba(139, 92, 246, 0.1);
}

@media(max-width: 700px) {
  .artists-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}
