:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-card: #ffffff;
  --line: #d2d2d7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --brand: #1d1d1f;
  --brand-2: #6e6e73;
  --accent: #1d1d1f;
  --shadow: 0 10px 30px rgba(0, 0, 0, .07);
  --radius: 16px;
  --maxw: 1180px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--text); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled { border-color: var(--line); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .5px;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 13px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
}
.brand__name { font-size: 18px; }
.brand__name span { color: var(--muted); font-weight: 800; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }
.nav a.is-active { color: var(--text); font-weight: 700; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(160deg, #1d1d1f 0%, #2c2c2e 55%, #3a3a3c 100%);
  padding: 120px 0 64px;
  text-align: center;
}
.page-hero .eyebrow {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.04;
}
.page-hero__sub {
  margin: 16px auto 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.header__actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: .25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1d1d1f 0%, #2c2c2e 55%, #3a3a3c 100%);
}
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, .12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero .eyebrow { color: #fff; border-color: rgba(255,255,255,.35); }
.hero__title { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__sub { color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.hero__points { color: rgba(255,255,255,.92); }

/* Ondas de sonido en movimiento (canvas de fondo del hero) */
.hero__waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 26%, #000 52%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 26%, #000 52%, #000 100%);
}

/* Iconos de música flotantes */
.hero__icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-icon {
  position: absolute;
  top: var(--t);
  right: var(--r, auto);
  left: var(--l, auto);
  width: var(--sz, 60px);
  height: var(--sz, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .45);
  animation: floatY var(--fdur, 6s) ease-in-out var(--fdelay, 0s) infinite alternate;
}
.float-icon img { width: 54%; height: 54%; object-fit: contain; display: block; }
@keyframes floatY {
  from { transform: translateY(0); }
  to { transform: translateY(-16px); }
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero__title {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.5px;
  max-width: 14ch;
  margin: 0 auto;
}
@property --hue {
  syntax: "<number>";
  inherits: false;
  initial-value: 280;
}
.gradient {
  --hue: 280;
  background: linear-gradient(
    120deg,
    hsl(var(--hue), 95%, 75%),
    hsl(calc(var(--hue) + 45), 95%, 70%),
    hsl(calc(var(--hue) + 90), 95%, 72%)
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 7s ease infinite;
  transition: --hue .25s linear;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__sub {
  margin: 26px auto 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}
.hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__points {
  margin: 44px auto 0;
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.hero__points li { display: flex; align-items: center; gap: 8px; }
.hero__points li::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* En escritorio: texto a la izquierda e iconos a la derecha (estilo Ditto) */
@media (min-width: 901px) {
  .hero__inner { text-align: left; }
  .hero__title { margin-left: 0; max-width: 15ch; }
  .hero__sub { margin-left: 0; max-width: 44ch; }
  .hero__cta, .hero__points { justify-content: flex-start; }
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section--dark {
  background: linear-gradient(160deg, #1d1d1f 0%, #2c2c2e 100%);
  color: #f5f5f7;
}
.section--stores { background: var(--bg-soft); }
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: rgba(255, 255, 255, .72); }
.section--dark .section__index { color: rgba(255, 255, 255, .55); }
.section__index {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
  max-width: 18ch;
}
.section__lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
}
.center { text-align: center; margin-top: 40px; }

/* ===== STATS ===== */
.stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.stat__num {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { display: block; font-weight: 700; margin: 6px 0 8px; font-size: 18px; }
.stat p { color: var(--muted); font-size: 15px; }

/* ===== STORES ===== */
.stores__caption {
  margin-top: 60px;
  text-align: center;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
.stores {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  font-size: 15px;
  box-shadow: var(--shadow);
  transition: border-color .2s, transform .2s;
}
.store img {
  height: 24px;
  width: auto;
  display: block;
}
.store:hover { border-color: var(--brand); transform: translateY(-2px); }
.store--more { background: linear-gradient(120deg, var(--brand), var(--brand-2)); border-color: transparent; color: #fff; }

/* ===== CARDS ===== */
.cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--brand); }
.card__icon { font-size: 32px; display: block; margin-bottom: 14px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* ===== ARTISTS ===== */
.artists {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.artist {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  font-weight: 800;
  font-size: 20px;
  background:
    linear-gradient(160deg, rgba(0,0,0,.06), rgba(0,0,0,.02)),
    var(--bg-card);
  border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
}
.artist:hover { transform: scale(1.02); border-color: var(--brand); }

/* ===== ARTISTS GRID (galería con imágenes) ===== */
.artists-wide {
  width: min(100% - 32px, 1680px);
  margin: 0 auto;
}
.artists-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.artist-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: #111;
}
.artist-card__img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: inherit;
  background: #111;
}
.artist-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}
.artist-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.34) 48%, transparent);
  pointer-events: none;
}
.artist-card:hover .artist-card__img img { transform: scale(1.06); filter: brightness(.82); }
.artist-card h3 {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  line-height: 1.2;
}

/* ===== ARTIST PROFILE ===== */
.artist-profile {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  color: #fff;
  background: #101014;
}
.artist-profile__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(32px) saturate(1.15);
  transform: scale(1.08);
  opacity: .42;
}
.artist-profile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.86), rgba(0,0,0,.45));
}
.artist-profile__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: 54px;
  align-items: center;
}
.artist-profile__back {
  position: absolute;
  top: -58px;
  left: 24px;
  color: rgba(255,255,255,.76);
  font-weight: 800;
  text-decoration: none;
}
.artist-profile__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}
.artist-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-profile .eyebrow { color: #fff; border-color: rgba(255,255,255,.35); }
.artist-profile h1 {
  font-size: clamp(44px, 7vw, 90px);
  line-height: .96;
  letter-spacing: -1px;
  margin: 0;
}
.artist-profile__content p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 58ch;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.55;
}
.artist-profile__links {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.artist-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease;
}
.artist-link:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); }
.artist-profile__empty { color: var(--muted); font-weight: 700; }
.artist-detail-section { background: var(--bg-soft); }
.release-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.release-embed { border: 0; }
.release-spotify-card {
  min-height: 352px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1d1d1f 0%, #101011 100%);
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .14);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.release-spotify-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.08) 42%, transparent 70%);
  transform: translateX(-100%);
  animation: cardShimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}
.release-spotify-card.is-hydrated {
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.release-spotify-card.is-hydrated::after { display: none; }
.release-spotify-card.is-hydrated > :not(.release-embed) { display: none; }
.release-spotify-card__art {
  width: 142px;
  aspect-ratio: 1;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #1db954, #f6f7fb 52%, #8f8f99);
  color: #111113;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}
.release-spotify-card__art span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}
.release-spotify-card__art strong {
  font-size: 34px;
  line-height: 1;
}
.release-spotify-card__body { position: relative; z-index: 1; }
.release-spotify-card__badge {
  display: inline-flex;
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
  color: #111113;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
  margin-bottom: 18px;
}
.release-spotify-card h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.04;
  margin-bottom: 8px;
}
.release-spotify-card p {
  color: rgba(255, 255, 255, .62);
  font-weight: 800;
}
.release-spotify-card .release-embed {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.release-spotify-card.is-hydrated .release-embed {
  position: static;
  display: block;
  width: 100%;
  height: 352px;
  border-radius: 12px;
  opacity: 1;
  pointer-events: auto;
}
.release-card {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.release-card:hover { transform: translateY(-3px); border-color: var(--text); }
.release-card span { font-weight: 900; line-height: 1.25; }
.release-card small { color: var(--muted); font-weight: 800; }

/* ===== VIDEOS ===== */
.videos {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.video:hover { transform: translateY(-4px); border-color: var(--brand); }
.video__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #1b1b27, #2a1340);
  overflow: hidden;
}
.video__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, filter .3s ease;
}
.video__thumb:hover img { transform: scale(1.05); filter: brightness(.85); }
.video .play {
  position: relative;
  z-index: 1;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  border: 2px solid rgba(255, 255, 255, .9);
  color: #fff; font-size: 20px;
  transition: transform .2s ease, background .2s ease;
}
.video__thumb:hover .play { transform: scale(1.1); background: var(--text); }
.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #000;
}
.video__note {
  padding: 12px 18px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.video h3 { font-size: 16px; padding: 16px 18px 4px; line-height: 1.35; }
.video > a {
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 0 18px 18px;
  transition: color .2s ease;
}
.video > a:hover { color: var(--text); }

/* ===== RADIO ===== */
.radio-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, .9), transparent 24%),
    radial-gradient(circle at 88% 42%, rgba(255, 228, 220, .88), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(151, 119, 178, .82), transparent 32%),
    radial-gradient(circle at 55% 82%, rgba(158, 84, 50, .58), transparent 34%),
    linear-gradient(135deg, #d8d8dc 0%, #5c6174 34%, #ac7d70 66%, #f6b6c3 100%);
}
.radio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .26);
  backdrop-filter: blur(20px);
}
.radio-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.16), rgba(0,0,0,.08));
  pointer-events: none;
}
.radio-section .container { position: relative; z-index: 1; }
.radio {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: clamp(34px, 7vw, 74px);
  color: #0b0b0d;
  background: transparent;
  box-shadow: none;
}
.radio__glass {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.radio__body {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.radio__brand {
  color: #fff;
  font-size: clamp(42px, 8vw, 92px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: 7px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}
.radio__line {
  display: block;
  width: min(560px, 64%);
  height: 2px;
  margin: 22px auto 34px;
  background: rgba(0, 0, 0, .45);
}
.radio__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 8px;
  color: #050505;
  text-transform: uppercase;
}
.radio__live .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 0 0 rgba(255, 45, 45, .62);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 45, 45, .62); }
  70% { box-shadow: 0 0 0 13px rgba(255, 45, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 45, 0); }
}
.radio__progress {
  position: relative;
  height: 4px;
  margin-top: 46px;
  background: rgba(0, 0, 0, .88);
}
.radio__time {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: rgba(0, 0, 0, .82);
  font-weight: 700;
}
.radio__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 30px;
}
.radio__skip,
.radio__play {
  border: 0;
  color: #000;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}
.radio__play {
  font-size: clamp(58px, 8vw, 88px);
  min-width: 92px;
  min-height: 92px;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.radio__play:hover { transform: scale(1.06); }
.radio__play.is-playing {
  width: clamp(82px, 9vw, 104px);
  height: clamp(82px, 9vw, 104px);
  border: 2px solid rgba(255, 255, 255, .42);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, .28);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}
.radio__play.is-playing::before,
.radio__play.is-playing::after {
  content: "";
  width: 17px;
  height: 48px;
  border-radius: 2px;
  background: #050505;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.radio__play.is-playing::before { left: calc(50% - 18px); }
.radio__play.is-playing::after { right: calc(50% - 18px); }
.radio__skip {
  font-size: clamp(42px, 6vw, 64px);
  opacity: .95;
}
.radio__skip:disabled { cursor: default; }
.radio__track {
  margin-top: 30px;
  color: #050505;
  font-size: clamp(16px, 2.1vw, 24px);
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
}
.radio__desc {
  margin: 10px auto 0;
  max-width: 56ch;
  color: rgba(0, 0, 0, .72);
  font-size: 15px;
  font-weight: 700;
}
.radio__volume {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  color: #000;
}
.radio__volume input {
  accent-color: #fff;
  width: min(530px, 62vw);
}
.radio__volume-btn {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #000;
  background: transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.radio__volume-btn:hover { transform: scale(1.08); }
.radio__volume-btn:active { transform: scale(.96); }
.radio__volume-btn svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.radio__volume-btn svg path:first-child { stroke: none; }
.radio__volume-btn:disabled {
  opacity: .42;
  cursor: default;
  transform: none;
}

/* ===== PLAYLISTS ===== */
.playlists {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.playlist { border: 0; }
.playlist-card {
  min-height: 352px;
  border-radius: 12px;
  background: linear-gradient(180deg, #1d1d1f 0%, #111113 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .24);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.playlist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.08) 42%, transparent 70%);
  transform: translateX(-100%);
  animation: cardShimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}
.playlist-card.is-hydrated {
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.playlist-card.is-hydrated::after { display: none; }
.playlist-card.is-hydrated > :not(.playlist) { display: none; }
@keyframes cardShimmer {
  100% { transform: translateX(100%); }
}
.playlist-card__cover {
  width: 148px;
  aspect-ratio: 1;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}
.playlist-card__cover span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
}
.playlist-card__cover strong {
  font-size: 30px;
  line-height: 1;
}
.playlist-card__cover--one { background: linear-gradient(135deg, #78e2d5, #f0d27d); color: #08726c; }
.playlist-card__cover--two { background: linear-gradient(135deg, #ff3f79, #ffd84a); color: #5d1731; }
.playlist-card__cover--three { background: linear-gradient(135deg, #f2a98c, #cbbcff); color: #cf3d9f; }
.playlist-card__body { position: relative; z-index: 1; }
.playlist-card__badge {
  display: inline-flex;
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
  color: #111113;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
  margin-bottom: 18px;
}
.playlist-card h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  margin-bottom: 8px;
}
.playlist-card p {
  color: rgba(255, 255, 255, .62);
  font-weight: 700;
}
.playlist-card .playlist {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.playlist-card.is-hydrated .playlist {
  position: static;
  display: block;
  width: 100%;
  height: 352px;
  border-radius: 12px;
  opacity: 1;
  pointer-events: auto;
}

/* ===== PLANS ===== */
.plans {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.plan--featured {
  border-color: var(--text);
  box-shadow: 0 0 0 1px var(--text), 0 20px 50px rgba(0,0,0,.1);
}
.badge {
  position: absolute;
  top: -12px; left: 32px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan__name { font-weight: 800; letter-spacing: 1px; color: var(--muted); font-size: 13px; }
.plan__price { font-size: 34px; font-weight: 900; margin: 6px 0; }
.plan__desc { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.plan__features { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.plan__features li { padding-left: 26px; position: relative; font-size: 15px; color: #3a3a48; }
.plan__features li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent); font-weight: 800;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(29, 185, 84, .16), transparent 30%),
    linear-gradient(160deg, #f5f5f7 0%, #ffffff 58%, #ececf1 100%);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(29, 29, 31, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(29, 29, 31, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 48px;
  align-items: center;
}
.cta__copy { max-width: 660px; }
.cta .section__title { max-width: 13ch; }
.cta .section__lead { max-width: 48ch; }
.cta__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta__panel {
  min-height: 360px;
  border: 1px solid rgba(29, 29, 31, .12);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(29, 29, 31, .94), rgba(58, 58, 60, .96)),
    #1d1d1f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.cta__panel::before {
  content: "LYNX";
  position: absolute;
  top: 28px;
  left: 28px;
  color: rgba(255, 255, 255, .12);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 8px;
}
.cta__disc {
  width: min(58vw, 210px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f5f5f7 0 9%, transparent 10%),
    repeating-radial-gradient(circle, rgba(255,255,255,.34) 0 2px, transparent 3px 13px),
    conic-gradient(from 130deg, #ffffff, #8f8f99, #1db954, #ffffff, #3a3a3c, #ffffff);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .35);
  position: relative;
}
.cta__disc span {
  position: absolute;
  inset: 37%;
  border-radius: 50%;
  background: #1d1d1f;
  border: 10px solid rgba(255, 255, 255, .9);
}
.cta__pulse {
  position: absolute;
  right: 34px;
  bottom: 96px;
  height: 76px;
  display: flex;
  align-items: end;
  gap: 8px;
}
.cta__pulse span {
  width: 10px;
  border-radius: 999px;
  background: #1db954;
  box-shadow: 0 0 22px rgba(29, 185, 84, .55);
}
.cta__pulse span:nth-child(1) { height: 34px; }
.cta__pulse span:nth-child(2) { height: 58px; }
.cta__pulse span:nth-child(3) { height: 44px; }
.cta__pulse span:nth-child(4) { height: 76px; }
.cta__pulse span:nth-child(5) { height: 50px; }
.cta__tags {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta__tags span {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
}

/* ===== CONTACTO ===== */
.contact {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact__form {
  display: grid;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .06);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact__form .btn { justify-self: start; }

.contact__info { display: grid; gap: 18px; }
.contact__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact__card h3 { font-size: 18px; margin-bottom: 6px; }
.contact__card p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.contact__card > a {
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.contact__card > a:hover { border-color: var(--brand); }
.contact__card .socials { margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 50px;
}
.footer__brand p { color: var(--muted); margin: 18px 0; max-width: 38ch; font-size: 15px; }
.socials { display: flex; gap: 14px; flex-wrap: wrap; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.socials a img { width: 28px; height: 28px; display: block; }
.socials a:hover { transform: translateY(-2px); border-color: var(--brand); }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.footer__col a { display: block; color: #3a3a48; font-size: 15px; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--brand-2); }
.footer__bottom {
  margin-top: 50px;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .artists-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
}
@media (max-width: 900px) {
  .stats, .cards, .artists, .videos, .playlists, .plans, .release-grid { grid-template-columns: 1fr 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__copy { max-width: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__icons { display: none; }
}
@media (max-width: 760px) {
  .header__actions { display: none; }
  .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid transparent;
    padding: 0 24px;
    gap: 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: max-height .34s ease, opacity .24s ease, transform .24s ease, padding .24s ease, border-color .24s ease, visibility 0s linear .34s;
  }
  .nav.open {
    max-height: 260px;
    opacity: 1;
    padding: 20px 24px;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    border-bottom-color: var(--line);
    transition: max-height .34s ease, opacity .24s ease, transform .24s ease, padding .24s ease, border-color .24s ease, visibility 0s;
  }
  .hamburger { display: flex; }
  .stats, .cards, .artists, .videos, .playlists, .plans, .release-grid, .footer__cols { grid-template-columns: 1fr; }
  .cta__inner { gap: 30px; }
  .cta .section__title { max-width: 12ch; }
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; }
  .cta__panel { min-height: 300px; border-radius: 20px; }
  .cta__pulse { right: 22px; bottom: 88px; }
  .artists-wide { width: min(100% - 20px, 1680px); }
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .artist-card h3 { font-size: 13px; left: 8px; right: 8px; bottom: 8px; }
  .artist-profile { padding: 92px 0 64px; }
  .artist-profile__inner { grid-template-columns: 1fr; gap: 28px; }
  .artist-profile__back { top: -46px; left: 24px; }
  .artist-profile__media { max-width: 340px; width: 100%; margin: 0 auto; }
  .artist-profile__content { text-align: center; }
  .artist-profile__content p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
  .artist-profile__links { justify-content: center; }
  .contact { grid-template-columns: 1fr; }
  .radio-section { padding: 58px 0; }
  .radio { padding: 32px 18px; }
  .radio__brand { letter-spacing: 3px; }
  .radio__line { width: 72%; margin-bottom: 26px; }
  .radio__live, .radio__track { letter-spacing: 4px; }
  .radio__progress { margin-top: 34px; }
  .radio__controls { margin-top: 24px; gap: 18px; }
  .radio__play { font-size: 54px; }
  .radio__play.is-playing { width: 78px; height: 78px; border-radius: 20px; }
  .radio__play.is-playing::before,
  .radio__play.is-playing::after { width: 14px; height: 42px; }
  .radio__skip { font-size: 36px; }
  .radio__volume input { width: min(390px, 58vw); }
  .hero { padding: 80px 0 70px; }
  .hero__icons { display: none; }
}

/* Respeta a quien prefiere menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .float-icon { animation: none; }
  .gradient { animation: none; }
}
