/* =========================================================
   ARTIST PROFILE PAGE
========================================================= */

.artist-profile-page-body {
  --artist-profile-bg: #050606;
  --artist-profile-text: #f4f1ec;
  --artist-profile-accent: #c9ff00;

  color: var(--artist-profile-text);
  background: var(--artist-profile-bg);
}

.artist-profile-page {
  min-height: 100vh;
  background: var(--artist-profile-bg);
}

/* =========================================================
   HERO
========================================================= */

.artist-profile-hero {
  --artist-profile-image: url("../assets/img/p1.webp");

  position: relative;
  width: 100%;
  height: clamp(845px, 46.62vw, 895px);
  min-height: 845px;
  overflow: hidden;
  isolation: isolate;
  color: var(--artist-profile-text);
  background: var(--artist-profile-bg);
}

.artist-profile-hero__background,
.artist-profile-hero__image,
.artist-profile-hero__overlay,
.artist-profile-hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.artist-profile-hero__background {
  z-index: -8;
  background: #070808;
}

.artist-profile-hero__image {
  z-index: -7;
  background-image: var(--artist-profile-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  transform: scale(1.002);
  transform-origin: center top;
}

.artist-profile-hero__overlay {
  z-index: -6;
  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 6, 0.76) 0%,
      rgba(5, 6, 6, 0.43) 20%,
      rgba(5, 6, 6, 0.04) 43%,
      rgba(5, 6, 6, 0.02) 65%,
      rgba(5, 6, 6, 0.30) 82%,
      rgba(5, 6, 6, 0.66) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 6, 6, 0.08) 0%,
      rgba(5, 6, 6, 0) 47%,
      rgba(5, 6, 6, 0.30) 78%,
      #050606 100%
    );
}

.artist-profile-hero__grain {
  z-index: -5;
  opacity: 0.05;
  background-image: url("../assets/img/noise.png");
  background-size: 280px 280px;
  mix-blend-mode: screen;
}

/* =========================================================
   HEADER — DARK VERSION
========================================================= */

.artist-profile-header {
  position: relative;
  z-index: 50;
  color: var(--artist-profile-text);
}

.artist-profile-header .logo__image {
  filter: none;
}

.artist-profile-header .nav__link,
.artist-profile-header .join-link,
.artist-profile-header .language-btn {
  color: var(--artist-profile-text);
}

.artist-profile-header .nav__link::after {
  background: var(--artist-profile-accent);
}

.artist-profile-header .menu-btn {
  border-color: rgba(244, 241, 236, 0.56);
}

.artist-profile-header .menu-btn span {
  background: var(--artist-profile-text);
}

.artist-profile-header .menu-btn:hover {
  border-color: var(--artist-profile-accent);
  box-shadow: 0 0 25px rgba(201, 255, 0, 0.13);
}

.artist-profile-page-body .mobile-menu {
  background: rgba(5, 6, 6, 0.96);
}

.artist-profile-page-body .mobile-menu a[aria-current="page"] {
  color: var(--artist-profile-accent);
}

/* =========================================================
   LEFT SOCIAL RAIL
========================================================= */

/* =========================================================
   DESKTOP LAYOUT — 1920 × ~895
========================================================= */

.artist-profile-hero__content-wrap {
  position: relative;
  z-index: 12;
  min-height: calc(100% - var(--header-height));
  padding: 0;
  display: block;
}

/* LEFT ARTIST INFORMATION */

.artist-profile-hero__identity {
  position: absolute;
  left: clamp(150px, 10.16vw, 195px);
  top: clamp(116px, 6.72vw, 129px);
  z-index: 8;
  width: min(560px, 31vw);
}

.artist-profile-hero__title {
  position: relative;
  width: max-content;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(156px, 9.9vw, 190px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.066em;
  text-transform: uppercase;
  color: var(--artist-profile-text);
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.50);
}

.artist-profile-hero__title span {
  display: block;
  transform: scaleX(0.82);
  transform-origin: left center;
}

.artist-profile-hero__country {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(244, 241, 236, 0.86);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.artist-profile-hero__country img {
  width: 25px;
  height: 16px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(244, 241, 236, 0.22);
}

.artist-profile-hero__genre {
  width: 486px;
  max-width: 100%;
  margin-top: 42px;
}

.artist-profile-hero__genre > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(244, 241, 236, 0.88);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* WAVEFORM */

.artist-profile-hero__waveform {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  cursor: pointer;
  touch-action: none;
}

.artist-profile-hero__waveform:focus-visible {
  outline: 1px solid rgba(201, 255, 0, 0.72);
  outline-offset: 7px;
}

.artist-profile-hero__waveform i {
  --wave-height: 31%;

  width: 4px;
  height: var(--wave-height);
  flex: 1 1 0;
  max-width: 5px;
  min-width: 2px;
  background: rgba(244, 241, 236, 0.20);
  box-shadow: none;
  transform-origin: center;
  transition:
    background 0.16s ease,
    box-shadow 0.16s ease,
    opacity 0.16s ease,
    transform 0.16s ease;
}

.artist-profile-hero__waveform i:nth-child(2n) { --wave-height: 53%; }
.artist-profile-hero__waveform i:nth-child(3n) { --wave-height: 84%; }
.artist-profile-hero__waveform i:nth-child(5n) { --wave-height: 100%; }
.artist-profile-hero__waveform i:nth-child(7n) { --wave-height: 40%; }
.artist-profile-hero__waveform i:nth-child(11n) { --wave-height: 70%; }

.artist-profile-hero__waveform i.is-played,
.artist-profile-hero__waveform i.is-current {
  background: rgba(201, 255, 0, 0.96);
  box-shadow: 0 0 7px rgba(201, 255, 0, 0.22);
}

.artist-profile-hero__waveform i.is-current {
  background: #dcff55;
  box-shadow: 0 0 11px rgba(201, 255, 0, 0.48);
  transform: scaleY(1.12);
}

.artist-profile-hero__waveform.is-playing i.is-played,
.artist-profile-hero__waveform.is-playing i.is-current {
  animation: artistProfileWave 0.82s ease-in-out infinite alternate;
  animation-delay: calc(var(--wave-order, 0) * -34ms);
}

@keyframes artistProfileWave {
  from {
    opacity: 0.48;
    transform: scaleY(0.44);
  }

  to {
    opacity: 1;
    transform: scaleY(1.12);
  }
}

/* PLATFORMS */

.artist-profile-hero__platforms {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 43px;
}

.artist-profile-hero__platforms a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: rgba(244, 241, 236, 0.60);
  font-size: 19px;
  line-height: 1;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    filter 0.25s ease;
}

.artist-profile-hero__platforms a:hover {
  color: var(--artist-profile-accent);
  filter: drop-shadow(0 0 9px rgba(201, 255, 0, 0.36));
  transform: translateY(-3px);
}

/* PLAY / FOLLOW */

.artist-profile-hero__actions {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.artist-profile-hero__actions button {
  width: 207px;
  min-height: 54px;
  padding: 0 24px 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(244, 241, 236, 0.24);
  border-radius: 7px;
  color: rgba(244, 241, 236, 0.86);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.artist-profile-hero__actions button:hover {
  transform: translateY(-2px);
}

.artist-profile-hero__play {
  color: #060706 !important;
  background: var(--artist-profile-accent);
  border-color: var(--artist-profile-accent) !important;
  box-shadow:
    0 0 24px rgba(201, 255, 0, 0.29),
    0 0 65px rgba(201, 255, 0, 0.17);
}

.artist-profile-hero__play:hover {
  background: #d7ff38;
  box-shadow:
    0 0 30px rgba(201, 255, 0, 0.38),
    0 0 82px rgba(201, 255, 0, 0.20);
}

.artist-profile-hero__play.is-playing {
  box-shadow:
    0 0 0 4px rgba(201, 255, 0, 0.06),
    0 0 34px rgba(201, 255, 0, 0.38);
}

.artist-profile-hero__follow:hover,
.artist-profile-hero__follow.is-following {
  color: var(--artist-profile-accent);
  border-color: rgba(201, 255, 0, 0.62);
  background: rgba(201, 255, 0, 0.04);
  box-shadow: 0 0 24px rgba(201, 255, 0, 0.08);
}

/* =========================================================
   RIGHT STATISTICS
========================================================= */

.artist-profile-hero__stats {
  position: absolute;
  top: clamp(65px, 3.86vw, 74px);
  right: clamp(72px, 6.77vw, 130px);
  z-index: 9;
  width: 250px;
  padding: 0;
  display: grid;
  justify-items: start;
  gap: 5px;
  border: 0;
  animation: none !important;
  filter: none !important;
  transform: none;
  will-change: auto;

}

.artist-profile-hero__stat {
  display: grid;
  justify-items: start;
}

.artist-profile-hero__stat > span {
  margin-bottom: 8px;
  color: rgba(244, 241, 236, 0.55);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.artist-profile-hero__stat strong {
  min-width: 0 !important;
  color: var(--artist-profile-text);
  font-size: clamp(37px, 2.30vw, 44px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.025em;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums lining-nums;
}

.artist-profile-hero__stat small {
  margin-top: 8px;
  color: var(--artist-profile-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.artist-profile-hero__stats-link {
  width: fit-content;
  margin-top: -3px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: var(--artist-profile-accent);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.artist-profile-hero__stats-link i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.artist-profile-hero__stats-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   HERO ENTRANCE
========================================================= */

html.artist-profile-animations-ready .artist-profile-hero__identity,
html.artist-profile-animations-ready .artist-profile-hero__stats {
  opacity: 0;
}

html.artist-profile-animations-ready .artist-profile-hero__identity {
  will-change: opacity, transform, filter;
}

html.artist-profile-animations-ready .artist-profile-hero__stats {
  will-change: auto;
}

html.artist-profile-animations-ready .artist-profile-hero__identity {
  filter: blur(7px);
  transform: translate3d(-34px, 15px, 0);
}

html.artist-profile-animations-ready .artist-profile-hero__stats {
  transform: none;
}

html.artist-profile-animations-ready.artist-profile-is-visible .artist-profile-hero__identity {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

html.artist-profile-animations-ready.artist-profile-is-visible .artist-profile-hero__stats {
  opacity: 1;
  transform: none;
}

html.artist-profile-animations-ready .artist-profile-hero__identity {
  transition:
    opacity 1.05s ease 0.06s,
    transform 1.45s cubic-bezier(0.16, 1, 0.3, 1) 0.06s,
    filter 1.1s ease 0.06s;
}

html.artist-profile-animations-ready .artist-profile-hero__stats {
  transition: opacity 0.7s ease 0.28s;
}

/* =========================================================
   ARTIST PROFILE STATS
========================================================= */

.artist-profile-hero__stats,
.artist-profile-hero__stats.is-counting,
.artist-profile-hero__stats.is-count-complete {
  animation: none !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
  backface-visibility: visible;
}

.artist-profile-hero__stats .artist-profile-hero__stat > span,
.artist-profile-hero__stats .artist-profile-hero__stat strong,
.artist-profile-hero__stats .artist-profile-hero__stat small,
.artist-profile-hero__stats .artist-profile-hero__stats-link {
  filter: none !important;
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: visible;
}

.artist-profile-hero__stats .hero__stat strong[data-count-to],
.artist-profile-hero__stats.is-counting .hero__stat strong[data-count-to],
.artist-profile-hero__stats .hero__stat strong[data-count-to].is-count-complete {
  animation: none !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
}

.artist-profile-hero__stat small,
.artist-profile-hero__stats-link {
  opacity: 1;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1440px) {
  .artist-profile-hero {
    height: 845px;
  }

  .artist-profile-hero__identity {
    left: 145px;
    top: 118px;
    width: 500px;
  }

  .artist-profile-hero__title {
    font-size: 156px;
  }

  .artist-profile-hero__genre {
    width: 430px;
  }

  .artist-profile-hero__stats {
    right: 70px;
    width: 215px;
    gap: 26px;
  }

  .artist-profile-hero__stat strong {
    font-size: 37px;
  }
}

@media (max-width: 1180px) {
  .artist-profile-hero__identity {
    left: 112px;
    width: 450px;
  }

  .artist-profile-hero__title {
    font-size: 138px;
  }

  .artist-profile-hero__genre {
    width: 390px;
  }

  .artist-profile-hero__actions button {
    width: 178px;
  }

  .artist-profile-hero__stats {
    right: 45px;
    width: 180px;
  }
}

@media (max-width: 1024px) {
  .artist-profile-hero {
    height: auto;
    min-height: 800px;
  }

  .artist-profile-hero__image {
    background-position: 58% top;
  }

  .artist-profile-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(5, 6, 6, 0.80) 0%,
        rgba(5, 6, 6, 0.55) 42%,
        rgba(5, 6, 6, 0.16) 73%,
        rgba(5, 6, 6, 0.50) 100%
      ),
      linear-gradient(180deg, transparent 50%, #050606 100%);
  }

  .artist-profile-hero__content-wrap {
    min-height: 708px;
  }

  .artist-profile-hero__identity {
    left: 90px;
    top: 92px;
    width: min(510px, calc(100% - 145px));
  }

  .artist-profile-hero__title {
    font-size: clamp(112px, 15vw, 145px);
  }

  .artist-profile-hero__genre {
    width: min(440px, 100%);
  }

  .artist-profile-hero__stats {
    display: none;
  }
}

@media (max-width: 760px) {
  .artist-profile-hero {
    min-height: 760px;
  }

  .artist-profile-hero__content-wrap {
    min-height: 682px;
  }

  .artist-profile-hero__identity {
    left: 24px;
    top: 78px;
    width: calc(100% - 48px);
  }

  .artist-profile-hero__title {
    font-size: clamp(82px, 22vw, 122px);
  }

  .artist-profile-hero__country {
    margin-top: 22px;
    font-size: 12px;
  }

  .artist-profile-hero__genre {
    margin-top: 34px;
  }

  .artist-profile-hero__platforms {
    gap: 30px;
  }

  .artist-profile-hero__actions {
    margin-top: 40px;
    gap: 12px;
  }

  .artist-profile-hero__actions button {
    width: min(50%, 190px);
    min-width: 0;
    padding-inline: 20px;
  }
}

@media (max-width: 520px) {
  .artist-profile-hero {
    min-height: 735px;
  }

  .artist-profile-hero__identity {
    top: 62px;
  }

  .artist-profile-hero__title {
    font-size: clamp(74px, 23vw, 108px);
  }

  .artist-profile-hero__genre {
    width: 100%;
  }

  .artist-profile-hero__platforms {
    justify-content: space-between;
    gap: 12px;
    max-width: 280px;
  }

  .artist-profile-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .artist-profile-hero__actions button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .artist-profile-hero__waveform.is-playing i {
    animation: none;
  }

  html.artist-profile-animations-ready .artist-profile-hero__identity,
  html.artist-profile-animations-ready .artist-profile-hero__stats {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }
}

/* =========================================================
   LATEST RELEASE + TOP TRACKS
========================================================= */

.artist-profile-music {
  position: relative;
  z-index: 20;
  padding: 0 clamp(20px, 6.77vw, 130px) clamp(26px, 2.2vw, 42px);
  color: var(--artist-profile-text);
  background:
    radial-gradient(circle at 52% 0%, rgba(201, 255, 0, 0.025), transparent 30%),
    #050606;
}

.artist-profile-music__shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(12px, 1vw, 18px);
}

.artist-profile-panel {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.105);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 48%),
    rgba(8, 9, 9, 0.92);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.artist-profile-panel__header {
  min-height: 61px;
  padding: 0 clamp(22px, 1.7vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.artist-profile-panel__header h3 {
  color: rgba(244, 241, 236, 0.92);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.artist-profile-panel__header a,
.artist-profile-release__link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--artist-profile-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.artist-profile-panel__header a i,
.artist-profile-release__link i {
  font-size: 9px;
  transition: transform 0.25s ease;
}

.artist-profile-panel__header a:hover i,
.artist-profile-release__link:hover i {
  transform: translateX(5px);
}

/* LATEST RELEASE */

.artist-profile-release__body {
  min-height: 438px;
  padding: 0 clamp(20px, 1.75vw, 34px) clamp(26px, 1.8vw, 34px);
  display: grid;
  grid-template-columns: minmax(250px, 1.08fr) minmax(205px, 0.92fr);
  gap: clamp(24px, 2vw, 38px);
}

.artist-profile-release__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  align-self: start;
  overflow: hidden;
  background: #101211;
}

.artist-profile-release__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 255, 0, 0.08), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.artist-profile-release__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.12) brightness(0.9);
  will-change: opacity, transform;
  transition:
    opacity 0.28s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-profile-release__cover img.is-changing {
  opacity: 0.45;
  transform: scale(1.025);
}

.artist-profile-release__volume {
  position: absolute;
  left: 13px;
  top: 13px;
  z-index: 6;
}

.artist-profile-release__volume .now-playing-volume__slider {
  z-index: 20;
}

.artist-profile-release__details {
  padding: 46px 0 4px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.artist-profile-release__details h4 {
  color: var(--artist-profile-text);
  font-size: clamp(23px, 1.55vw, 30px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-profile-release__song > p {
  margin-top: 11px;
  color: rgba(244, 241, 236, 0.84);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.artist-profile-release__date {
  margin-top: 33px;
  color: rgba(244, 241, 236, 0.5);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-profile-release__date span {
  color: rgba(244, 241, 236, 0.34);
}

.artist-profile-release__waveform {
  height: 43px;
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: hidden;
}

.artist-profile-release__waveform i {
  --release-wave-height: 30%;
  width: 3px;
  height: var(--release-wave-height);
  flex: 1 1 0;
  min-width: 2px;
  max-width: 4px;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.18);
  transform-origin: center;
  transition:
    background 0.14s linear,
    box-shadow 0.14s linear,
    opacity 0.14s linear,
    transform 0.14s linear;
}

.artist-profile-release__waveform {
  cursor: pointer;
  touch-action: none;
}

.artist-profile-release__waveform:focus-visible {
  outline: 1px solid rgba(201, 255, 0, 0.7);
  outline-offset: 5px;
}

.artist-profile-release__waveform i.is-played {
  background: var(--artist-profile-accent);
  box-shadow: 0 0 8px rgba(201, 255, 0, 0.24);
}

.artist-profile-release__waveform i.is-current {
  background: #e3ff72;
  box-shadow: 0 0 11px rgba(201, 255, 0, 0.56);
  transform: scaleY(1.18);
}

.artist-profile-release__waveform i:nth-child(2n) { --release-wave-height: 58%; }
.artist-profile-release__waveform i:nth-child(3n) { --release-wave-height: 91%; }
.artist-profile-release__waveform i:nth-child(5n) { --release-wave-height: 44%; }
.artist-profile-release__waveform i:nth-child(7n) { --release-wave-height: 76%; }

.artist-profile-release__player {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.artist-profile-release__player button {
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.artist-profile-release__player button:hover {
  transform: translateY(-2px);
}

.artist-profile-release__main {
  width: 58px;
  height: 58px;
  color: #060706;
  background: var(--artist-profile-accent);
  font-size: 15px;
  box-shadow: 0 0 27px rgba(201, 255, 0, 0.24);
}

.artist-profile-release__main:hover,
.artist-profile-release__main.is-playing {
  background: #d9ff3f;
  box-shadow: 0 0 38px rgba(201, 255, 0, 0.36);
}

.artist-profile-release__skip {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 241, 236, 0.18);
  color: rgba(244, 241, 236, 0.68);
  background: rgba(244, 241, 236, 0.025);
  font-size: 11px;
}

.artist-profile-release__skip:hover {
  color: var(--artist-profile-accent);
  border-color: rgba(201, 255, 0, 0.5);
  background: rgba(201, 255, 0, 0.045);
  box-shadow: 0 0 18px rgba(201, 255, 0, 0.08);
}

.artist-profile-release__timeline {
  margin-top: 24px;
}

.artist-profile-release__progress {
  position: relative;
  width: 100%;
  height: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}

.artist-profile-release__progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 241, 236, 0.15);
}

.artist-profile-release__progress span {
  position: relative;
  z-index: 1;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: var(--artist-profile-accent);
  box-shadow: 0 0 10px rgba(201, 255, 0, 0.38);
  pointer-events: none;
}

.artist-profile-release__progress span::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--artist-profile-accent);
  box-shadow: 0 0 12px rgba(201, 255, 0, 0.58);
  transform: translateY(-50%);
}

.artist-profile-release__progress:focus-visible {
  outline: 1px solid rgba(201, 255, 0, 0.72);
  outline-offset: 5px;
}

.artist-profile-release__time {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 241, 236, 0.46);
  font-size: 10px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.artist-profile-release__link {
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  font-size: 12px;
  letter-spacing: 0.07em;
  gap: 18px;
}

.artist-profile-release__link i {
  font-size: 11px;
}

/* TOP TRACKS */

.artist-profile-tracks__list {
  padding: 0 14px 15px;
  display: grid;
}

.artist-profile-track {
  position: relative;
  width: 100%;
  min-height: 79px;
  padding: 6px 16px 6px 13px;
  display: grid;
  grid-template-columns: 44px 54px minmax(145px, 1fr) 54px 28px;
  align-items: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--artist-profile-text);
  text-align: left;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.artist-profile-track + .artist-profile-track {
  border-top-color: rgba(244, 241, 236, 0.055);
  border-radius: 0;
}

.artist-profile-track:hover {
  background: rgba(244, 241, 236, 0.025);
}

.artist-profile-track.is-active {
  border-color: rgba(201, 255, 0, 0.42);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(201, 255, 0, 0.10), rgba(201, 255, 0, 0.025));
  box-shadow:
    inset 0 0 22px rgba(201, 255, 0, 0.035),
    0 0 22px rgba(201, 255, 0, 0.025);
}

.artist-profile-track.is-active + .artist-profile-track {
  border-top-color: transparent;
}

.artist-profile-track__number {
  color: rgba(244, 241, 236, 0.44);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.artist-profile-track.is-active .artist-profile-track__number {
  color: var(--artist-profile-accent);
}

.artist-profile-track__cover {
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: #121313;
}

.artist-profile-track__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.8);
}

.artist-profile-track__cover--two img {
  object-position: 20% center;
  filter: grayscale(0.25) brightness(0.72);
}

.artist-profile-track__cover--three img {
  object-position: 72% center;
  filter: grayscale(0.9) contrast(1.12) brightness(0.62);
}

.artist-profile-track__cover--four img {
  object-position: 42% center;
  filter: saturate(0.35) brightness(0.7);
}

.artist-profile-track__cover--five img {
  object-position: 86% center;
  filter: grayscale(0.45) brightness(0.58);
}

.artist-profile-track__copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.artist-profile-track__copy strong,
.artist-profile-track__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artist-profile-track__copy strong {
  color: rgba(244, 241, 236, 0.9);
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.artist-profile-track__copy small {
  color: rgba(244, 241, 236, 0.43);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.artist-profile-track__equalizer {
  width: 22px;
  height: 19px;
  display: grid;
  grid-template-columns: repeat(4, 3px);
  align-items: end;
  justify-content: center;
  column-gap: 2.5px;
  overflow: visible;
}

.artist-profile-track__equalizer i {
  width: 3px;
  height: 18px;
  display: block;
  border-radius: 1px 1px 0 0;
  background: rgba(244, 241, 236, 0.32);
  box-shadow: none;
  transform-origin: 50% 100%;
  transform: scaleY(0.25);
  will-change: transform, opacity;
}

.artist-profile-track__equalizer i:nth-child(2) { transform: scaleY(0.52); }
.artist-profile-track__equalizer i:nth-child(3) { transform: scaleY(0.78); }
.artist-profile-track__equalizer i:nth-child(4) { transform: scaleY(0.38); }

.artist-profile-track.is-active .artist-profile-track__equalizer i {
  background: linear-gradient(180deg, #e9ff87 0%, var(--artist-profile-accent) 48%, #8fb800 100%);
  box-shadow: 0 0 6px rgba(201, 255, 0, 0.32);
}

.artist-profile-track.is-playing .artist-profile-track__number {
  text-shadow: 0 0 12px rgba(201, 255, 0, 0.32);
}

.artist-profile-track__duration {
  color: rgba(244, 241, 236, 0.45);
  font-size: 10px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.artist-profile-youtube-holder {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.artist-profile-youtube-holder iframe {
  width: 1px !important;
  height: 1px !important;
}

/* REVEAL */

html.artist-profile-sections-ready .artist-profile-panel {
  opacity: 0;
  transform: translateY(24px);
}

html.artist-profile-sections-ready .artist-profile-panel.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.artist-profile-sections-ready .artist-profile-panel {
  transition:
    opacity 0.85s ease,
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

html.artist-profile-sections-ready .artist-profile-panel:nth-child(2) {
  transition-delay: 0.12s;
}

/* RESPONSIVE MUSIC */

@media (max-width: 1320px) {
  .artist-profile-music {
    padding-inline: 40px;
  }

  .artist-profile-release__body {
    grid-template-columns: minmax(210px, 1fr) minmax(180px, 0.9fr);
    gap: 24px;
  }

  .artist-profile-track {
    grid-template-columns: 38px 48px minmax(130px, 1fr) 45px 28px;
    gap: 10px;
  }
}

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

  .artist-profile-panel {
    min-height: 0;
  }

  .artist-profile-release__body {
    min-height: 420px;
    grid-template-columns: minmax(260px, 0.92fr) minmax(250px, 1.08fr);
  }
}

@media (max-width: 720px) {
  .artist-profile-music {
    padding-inline: 18px;
  }

  .artist-profile-release__body {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .artist-profile-release__details {
    padding-top: 10px;
  }

  .artist-profile-release__link {
    margin-top: 30px;
  }

  .artist-profile-track {
    min-height: 72px;
    grid-template-columns: 35px 44px minmax(0, 1fr) 46px 24px;
  }

  .artist-profile-track__cover {
    width: 42px;
    height: 42px;
  }

  .artist-profile-track__equalizer {
    width: 20px;
    column-gap: 2px;
  }

  .artist-profile-track__equalizer i {
    width: 2.5px;
  }
}

@media (max-width: 480px) {
  .artist-profile-panel__header {
    padding-inline: 17px;
  }

  .artist-profile-release__body {
    padding-inline: 17px;
  }

  .artist-profile-panel__header a span {
    display: none;
  }

  .artist-profile-track {
    padding-inline: 8px;
    grid-template-columns: 30px 40px minmax(0, 1fr) 40px 22px;
    gap: 8px;
  }

  .artist-profile-track__number {
    font-size: 22px;
  }

  .artist-profile-track__cover {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.artist-profile-sections-ready .artist-profile-panel {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }
}

/* =========================================================
   ABOUT ARTIST + STATISTICS OVERVIEW
========================================================= */

.artist-profile-overview {
  position: relative;
  z-index: 20;
  padding: 0 clamp(20px, 6.77vw, 130px) clamp(26px, 2.2vw, 42px);
  color: var(--artist-profile-text);
  background: #050606;
}

.artist-profile-overview__shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(12px, 1vw, 18px);
}

.artist-profile-overview .artist-profile-panel {
  min-height: 345px;
}

.artist-profile-overview .artist-profile-panel__header h2 {
  color: rgba(244, 241, 236, 0.92);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.artist-profile-overview .artist-profile-panel__header > a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--artist-profile-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.artist-profile-overview .artist-profile-panel__header > a i {
  font-size: 9px;
  transition: transform 0.25s ease;
}

.artist-profile-overview .artist-profile-panel__header > a:hover i {
  transform: translateX(5px);
}

/* ABOUT */

.artist-profile-about__body {
  min-height: 282px;
  padding: 14px clamp(22px, 1.75vw, 34px) 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(185px, 0.94fr);
  gap: clamp(28px, 2.5vw, 48px);
}

.artist-profile-about__copy {
  position: relative;
  padding-right: clamp(24px, 2.2vw, 42px);
  display: flex;
  flex-direction: column;
}

.artist-profile-about__copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(244, 241, 236, 0.11) 12%,
    rgba(244, 241, 236, 0.11) 88%,
    transparent
  );
}

.artist-profile-about__copy p {
  max-width: 330px;
  color: rgba(244, 241, 236, 0.69);
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.58;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.artist-profile-about__link {
  width: fit-content;
  min-width: 146px;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(201, 255, 0, 0.58);
  border-radius: 6px;
  color: var(--artist-profile-accent);
  background: rgba(201, 255, 0, 0.02);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.artist-profile-about__link:hover {
  color: #070807;
  border-color: var(--artist-profile-accent);
  background: var(--artist-profile-accent);
  box-shadow: 0 0 24px rgba(201, 255, 0, 0.18);
  transform: translateY(-2px);
}

.artist-profile-about__link i {
  font-size: 9px;
}

.artist-profile-about__facts {
  display: grid;
  align-content: start;
  gap: 19px;
}

.artist-profile-about__facts > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
}

.artist-profile-about__facts dt {
  color: var(--artist-profile-accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.artist-profile-about__facts dd {
  min-width: 0;
  color: rgba(244, 241, 236, 0.72);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.artist-profile-about__facts dd a {
  overflow-wrap: anywhere;
  text-transform: none;
  transition: color 0.25s ease;
}

.artist-profile-about__facts dd a:hover {
  color: var(--artist-profile-accent);
}

/* STATISTICS */

.artist-profile-statistics__body {
  min-height: 282px;
  padding: 7px clamp(18px, 1.5vw, 28px) 22px;
}

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

.artist-profile-stat-card {
  min-height: 94px;
  padding: 15px 15px 13px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(244, 241, 236, 0.08);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.014), transparent 62%),
    rgba(255, 255, 255, 0.005);
}

.artist-profile-stat-card strong {
  color: rgba(244, 241, 236, 0.94);
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums lining-nums;
}

.artist-profile-stat-card span {
  margin-top: 8px;
  color: rgba(244, 241, 236, 0.47);
  font-size: 8px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.artist-profile-stat-card small {
  margin-top: 10px;
  color: rgba(244, 241, 236, 0.62);
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
}

.artist-profile-chart {
  height: 148px;
  margin-top: 7px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
}

.artist-profile-chart__axis {
  padding: 13px 0 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(244, 241, 236, 0.33);
  font-size: 7px;
  line-height: 1;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.artist-profile-chart__canvas {
  position: relative;
  min-width: 0;
  padding-bottom: 20px;
}

.artist-profile-chart__canvas svg {
  width: 100%;
  height: 128px;
  overflow: visible;
}

.artist-profile-chart__grid line {
  stroke: rgba(244, 241, 236, 0.06);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.artist-profile-chart__area {
  fill: url(#artistProfileChartFill);
  opacity: 0;
  transition: opacity 1.1s ease 0.35s;
}

.artist-profile-chart__line {
  fill: none;
  stroke: var(--artist-profile-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: url(#artistProfileChartGlow);
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.artist-profile-chart.is-revealed .artist-profile-chart__line {
  stroke-dashoffset: 0;
}

.artist-profile-chart.is-revealed .artist-profile-chart__area {
  opacity: 1;
}

.artist-profile-chart__months {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  color: rgba(244, 241, 236, 0.32);
  font-size: 7px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.artist-profile-chart__months span {
  text-align: center;
}

/* REVEAL */

html.artist-profile-overview-ready .artist-profile-overview [data-overview-panel] {
  opacity: 0;
  transform: translateY(22px);
}

html.artist-profile-overview-ready .artist-profile-overview [data-overview-panel].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.artist-profile-overview-ready .artist-profile-overview [data-overview-panel] {
  transition:
    opacity 0.82s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

html.artist-profile-overview-ready .artist-profile-overview [data-overview-panel]:nth-child(2) {
  transition-delay: 0.1s;
}

/* RESPONSIVE */

@media (max-width: 1320px) {
  .artist-profile-overview {
    padding-inline: 40px;
  }

  .artist-profile-about__body {
    gap: 28px;
  }
}

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

  .artist-profile-overview .artist-profile-panel {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .artist-profile-overview {
    padding-inline: 18px;
  }

  .artist-profile-about__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .artist-profile-about__copy {
    padding-right: 0;
  }

  .artist-profile-about__copy::after {
    display: none;
  }

  .artist-profile-about__link {
    margin-top: 28px;
  }

  .artist-profile-about__facts {
    padding-top: 24px;
    border-top: 1px solid rgba(244, 241, 236, 0.08);
  }

  .artist-profile-statistics__cards {
    grid-template-columns: 1fr;
  }

  .artist-profile-chart {
    height: 160px;
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .artist-profile-overview .artist-profile-panel__header > a span {
    display: none;
  }

  .artist-profile-about__body,
  .artist-profile-statistics__body {
    padding-inline: 17px;
  }

  .artist-profile-about__facts > div {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .artist-profile-chart {
    grid-template-columns: 31px minmax(0, 1fr);
  }

  .artist-profile-chart__months {
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.artist-profile-overview-ready .artist-profile-overview [data-overview-panel] {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }

  .artist-profile-chart__line {
    stroke-dashoffset: 0;
    transition: none;
  }

  .artist-profile-chart__area {
    opacity: 1;
    transition: none;
  }
}

/* =========================================================
   UPCOMING EVENTS + PHOTO GALLERY
========================================================= */

.artist-profile-events-gallery {
  position: relative;
  z-index: 20;
  padding: 0 clamp(20px, 6.77vw, 130px) clamp(26px, 2.2vw, 42px);
  color: var(--artist-profile-text);
  background: #050606;
}

.artist-profile-events-gallery__shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.37fr) minmax(0, 0.63fr);
  gap: clamp(12px, 1vw, 18px);
}

.artist-profile-events-gallery .artist-profile-panel {
  min-height: 390px;
}

.artist-profile-events-gallery .artist-profile-panel__header h2 {
  color: rgba(244, 241, 236, 0.92);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.artist-profile-events-gallery .artist-profile-panel__header-actions > a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--artist-profile-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.artist-profile-events-gallery .artist-profile-panel__header-actions > a i {
  font-size: 9px;
  transition: transform 0.25s ease;
}

.artist-profile-events-gallery .artist-profile-panel__header-actions > a:hover i {
  transform: translateX(5px);
}

/* EVENTS */

.artist-profile-events__list {
  padding: 0 clamp(18px, 1.45vw, 28px) 18px;
}

.artist-profile-event {
  position: relative;
  min-height: 74px;
  padding: 10px 44px 10px 4px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  border-top: 1px solid rgba(244, 241, 236, 0.075);
}

.artist-profile-event:first-child {
  border-top: 0;
}

.artist-profile-event__date {
  width: 54px;
  display: grid;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.artist-profile-event__date strong {
  width: 100%;
  display: block;
  color: rgba(244, 241, 236, 0.9);
  font-family: var(--font-display);
  font-size: 35px;
  line-height: 0.82;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.artist-profile-event__date span {
  width: 100%;
  margin-top: 6px;
  padding-left: 0.07em;
  color: rgba(244, 241, 236, 0.58);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.artist-profile-event__copy {
  min-width: 0;
}

.artist-profile-event__copy h3 {
  overflow: hidden;
  color: rgba(244, 241, 236, 0.9);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.artist-profile-event__copy p {
  margin-top: 8px;
  overflow: hidden;
  color: rgba(244, 241, 236, 0.43);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.artist-profile-event__toggle {
  position: absolute;
  right: 3px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.58);
  transform: translateY(-50%);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-profile-event__toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.artist-profile-event__toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.28s ease;
}

.artist-profile-event__toggle:hover,
.artist-profile-event.is-open .artist-profile-event__toggle {
  color: var(--artist-profile-accent);
  background: rgba(201, 255, 0, 0.045);
}

.artist-profile-event.is-open .artist-profile-event__toggle {
  transform: translateY(-50%) rotate(180deg);
}

.artist-profile-event.is-open .artist-profile-event__toggle span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.artist-profile-event__details {
  grid-column: 2;
  padding: 3px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(244, 241, 236, 0.48);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.artist-profile-event__details[hidden] {
  display: none;
}

.artist-profile-event__details a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--artist-profile-accent);
  font-size: 11px;
  font-weight: 700;
}

.artist-profile-event.is-open {
  background: linear-gradient(90deg, rgba(201, 255, 0, 0.035), transparent 78%);
}

/* HORIZONTAL CONTROLS */

.artist-profile-panel__header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.artist-profile-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.artist-profile-carousel__controls.is-inactive {
  display: none;
}

.artist-profile-carousel__controls button {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.16);
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.62);
  background: rgba(244, 241, 236, 0.018);
  font-size: 8px;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    opacity 0.24s ease,
    transform 0.24s ease;
}

.artist-profile-carousel__controls button:hover,
.artist-profile-carousel__controls button:focus-visible {
  color: #060706;
  border-color: var(--artist-profile-accent);
  background: var(--artist-profile-accent);
  transform: translateY(-1px);
  outline: none;
}

.artist-profile-carousel__controls button:disabled {
  opacity: 0.24;
  pointer-events: none;
  transform: none;
}

/* GALLERY */

.artist-profile-gallery__grid {
  height: 324px;
  padding: 0 18px 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(178px, 24%, 244px);
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 10px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 18px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  cursor: default;
}

.artist-profile-gallery__grid::-webkit-scrollbar {
  display: none;
}

.artist-profile-gallery__item {
  position: relative;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  border-radius: 4px;
  background: #101111;
}

.artist-profile-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.28)),
    linear-gradient(135deg, rgba(201, 255, 0, 0.025), transparent 45%);
  pointer-events: none;
  transition: background 0.3s ease;
}

.artist-profile-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.82) contrast(1.08) brightness(0.66);
  transform: scale(1.01);
  transition:
    filter 0.45s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-profile-gallery__item--one img {
  object-position: 51% 25%;
}

.artist-profile-gallery__item--two img {
  object-position: 18% 50%;
  filter: grayscale(0.96) contrast(1.15) brightness(0.58);
}

.artist-profile-gallery__item--three img {
  object-position: 57% 18%;
  filter: saturate(0.55) contrast(1.13) brightness(0.72);
}

.artist-profile-gallery__item--four img {
  object-position: 73% 48%;
  filter: saturate(0.62) contrast(1.18) brightness(0.72);
}

.artist-profile-gallery__item--five img {
  object-position: 75% 30%;
  filter: grayscale(0.3) contrast(1.12) brightness(0.64);
}

.artist-profile-gallery__item > span {
  position: absolute;
  right: 11px;
  bottom: 11px;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.32);
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.9);
  background: rgba(5, 6, 6, 0.64);
  font-size: 9px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    color 0.28s ease;
}

.artist-profile-gallery__item:hover img,
.artist-profile-gallery__item:focus-visible img {
  filter: grayscale(0.12) contrast(1.1) brightness(0.84);
  transform: scale(1.055);
}

.artist-profile-gallery__item:hover > span,
.artist-profile-gallery__item:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.artist-profile-gallery__item:hover > span {
  color: var(--artist-profile-accent);
  border-color: rgba(201, 255, 0, 0.55);
}

/* LIGHTBOX */

body.artist-gallery-open {
  overflow: hidden;
}

.artist-profile-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.artist-profile-gallery-lightbox[hidden] {
  display: none;
}

.artist-profile-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 3, 0.88);
  backdrop-filter: blur(12px);
}

.artist-profile-gallery-lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100vw - 64px));
  height: min(760px, calc(100vh - 64px));
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 32px);
  padding: 42px 72px 34px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(244, 241, 236, 0.12);
  border-radius: 10px;
  background: #070808;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
}

.artist-profile-gallery-lightbox__dialog figure {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  overflow: hidden;
  gap: 18px;
}

.artist-profile-gallery-lightbox__dialog figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  object-position: center;
}

.artist-profile-gallery-lightbox__dialog figcaption {
  color: rgba(244, 241, 236, 0.58);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.artist-profile-gallery-lightbox__close,
.artist-profile-gallery-lightbox__nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 236, 0.2);
  border-radius: 50%;
  color: rgba(244, 241, 236, 0.78);
  background: rgba(244, 241, 236, 0.025);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.artist-profile-gallery-lightbox__close:hover,
.artist-profile-gallery-lightbox__nav:hover {
  color: #060706;
  border-color: var(--artist-profile-accent);
  background: var(--artist-profile-accent);
}

.artist-profile-gallery-lightbox__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 36px;
  height: 36px;
}

.artist-profile-gallery-lightbox__nav {
  width: 44px;
  height: 44px;
}

.artist-profile-gallery-lightbox__nav:hover {
  transform: scale(1.05);
}

/* REVEAL */

html.artist-profile-events-gallery-ready .artist-profile-events-gallery [data-events-gallery-panel] {
  opacity: 0;
  transform: translateY(22px);
}

html.artist-profile-events-gallery-ready .artist-profile-events-gallery [data-events-gallery-panel].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.artist-profile-events-gallery-ready .artist-profile-events-gallery [data-events-gallery-panel] {
  transition:
    opacity 0.82s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

html.artist-profile-events-gallery-ready .artist-profile-events-gallery [data-events-gallery-panel]:nth-child(2) {
  transition-delay: 0.1s;
}

/* RESPONSIVE */

@media (max-width: 1320px) {
  .artist-profile-events-gallery {
    padding-inline: 40px;
  }

  .artist-profile-gallery__grid {
    grid-auto-columns: clamp(185px, 29%, 250px);
  }
}

@media (max-width: 1080px) {
  .artist-profile-events-gallery__shell {
    grid-template-columns: 1fr;
  }

  .artist-profile-events-gallery .artist-profile-panel {
    min-height: 0;
  }

  .artist-profile-gallery__grid {
    height: 310px;
    grid-auto-columns: clamp(210px, 38%, 285px);
  }
}

@media (max-width: 720px) {
  .artist-profile-events-gallery {
    padding-inline: 18px;
  }

  .artist-profile-gallery__grid {
    height: 286px;
    grid-auto-columns: clamp(210px, 72vw, 285px);
  }

  .artist-profile-gallery-lightbox__dialog {
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
    padding: 56px 14px 22px;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .artist-profile-gallery-lightbox__nav {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .artist-profile-events-gallery .artist-profile-panel__header-actions > a span {
    display: none;
  }

  .artist-profile-events__list,
  .artist-profile-gallery__grid {
    padding-inline: 14px;
  }

  .artist-profile-event {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 12px;
  }

  .artist-profile-event__date strong {
    font-size: 25px;
  }

  .artist-profile-event__details {
    grid-column: 1 / -1;
    padding-left: 58px;
  }

  .artist-profile-gallery__grid {
    height: 276px;
    grid-auto-columns: clamp(228px, 82vw, 286px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.artist-profile-events-gallery-ready .artist-profile-events-gallery [data-events-gallery-panel] {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }

  .artist-profile-gallery__item img,
  .artist-profile-gallery__item > span {
    transition: none;
  }
}

/* =========================================================
   MERCH
========================================================= */

.artist-profile-merch {
  position: relative;
  z-index: 20;
  padding: 0 clamp(20px, 6.77vw, 130px) clamp(38px, 3vw, 58px);
  color: var(--artist-profile-text);
  background: #050606;
}

.artist-profile-merch__panel {
  min-height: 0;
}

.artist-profile-merch .artist-profile-panel__header h2 {
  color: rgba(244, 241, 236, 0.92);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.artist-profile-merch .artist-profile-panel__header-actions > a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--artist-profile-accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.artist-profile-merch .artist-profile-panel__header-actions > a i {
  font-size: 9px;
  transition: transform 0.25s ease;
}

.artist-profile-merch .artist-profile-panel__header-actions > a:hover i {
  transform: translateX(5px);
}

.artist-profile-merch__grid {
  height: 265px;
  padding: 0 18px 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(190px, 18.4%, 272px);
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 11px;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 18px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  cursor: default;
}

.artist-profile-merch__grid::-webkit-scrollbar {
  display: none;
}

.artist-profile-merch__item {
  position: relative;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 247px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.045);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 36%, rgba(244, 241, 236, 0.055), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.005)),
    #111212;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-profile-merch__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background:
    linear-gradient(180deg, transparent 62%, rgba(201, 255, 0, 0.07)),
    radial-gradient(circle at 50% 72%, rgba(201, 255, 0, 0.08), transparent 42%);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.artist-profile-merch__visual {
  position: absolute;
  inset: 0;
  padding: clamp(18px, 1.45vw, 28px);
  display: block;
  place-items: center;
  overflow: hidden;
}

.artist-profile-merch__visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.34))
    saturate(0.92)
    contrast(1.03);
  transform: scale(0.92);
  transform-origin: center;
  transition:
    filter 0.36s ease,
    opacity 0.25s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-profile-merch__fallback {
  position: absolute;
  inset: 0;
  padding: clamp(36px, 3vw, 58px);
  display: grid;
  place-items: center;
  opacity: 0.22;
}

.artist-profile-merch__fallback img {
  width: min(76%, 132px);
  height: min(76%, 132px);
  object-fit: contain;
  filter:
    grayscale(1)
    brightness(1.65)
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.3));
}

.artist-profile-merch__item.is-image-missing .artist-profile-merch__fallback {
  opacity: 0.58;
}

.artist-profile-merch__item.is-image-missing .artist-profile-merch__fallback img {
  filter:
    brightness(0)
    saturate(100%)
    invert(88%)
    sepia(93%)
    saturate(1697%)
    hue-rotate(27deg)
    brightness(105%)
    contrast(105%)
    drop-shadow(0 0 18px rgba(201, 255, 0, 0.18));
}

.artist-profile-merch__item.is-image-missing .artist-profile-merch__visual > img {
  display: none;
}

.artist-profile-merch__item:hover,
.artist-profile-merch__item:focus-visible {
  border-color: rgba(201, 255, 0, 0.28);
  background:
    radial-gradient(circle at 50% 36%, rgba(201, 255, 0, 0.065), transparent 47%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006)),
    #121313;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    inset 0 0 28px rgba(201, 255, 0, 0.02);
  transform: translateY(-5px);
  outline: none;
}

.artist-profile-merch__item:hover::before,
.artist-profile-merch__item:focus-visible::before {
  opacity: 1;
}

.artist-profile-merch__item:hover .artist-profile-merch__visual > img,
.artist-profile-merch__item:focus-visible .artist-profile-merch__visual > img {
  filter:
    drop-shadow(0 22px 29px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 12px rgba(201, 255, 0, 0.09))
    saturate(1)
    contrast(1.05);
  transform: scale(0.98);
}

/* REVEAL */

html.artist-profile-merch-ready .artist-profile-merch__panel {
  opacity: 0;
  transform: translateY(22px);
}

html.artist-profile-merch-ready .artist-profile-merch__panel.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.artist-profile-merch-ready .artist-profile-merch__panel {
  transition:
    opacity 0.82s ease,
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

html.artist-profile-merch-ready .artist-profile-merch__item {
  opacity: 0;
  transform: translateY(14px);
}

html.artist-profile-merch-ready .artist-profile-merch__panel.is-revealed .artist-profile-merch__item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.58s ease,
    transform 0.82s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  transition-delay: calc(var(--merch-order, 0) * 70ms + 120ms);
}

html.artist-profile-merch-ready .artist-profile-merch__panel.is-revealed .artist-profile-merch__item:hover,
html.artist-profile-merch-ready .artist-profile-merch__panel.is-revealed .artist-profile-merch__item:focus-visible {
  transform: translateY(-5px);
}

@media (max-width: 1320px) {
  .artist-profile-merch {
    padding-inline: 40px;
  }

  .artist-profile-merch__grid {
    height: 278px;
    grid-auto-columns: clamp(220px, 30%, 292px);
  }

  .artist-profile-merch__item {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .artist-profile-merch {
    padding-inline: 18px;
  }

  .artist-profile-merch__grid {
    height: 248px;
    grid-auto-columns: clamp(220px, 72vw, 290px);
  }

  .artist-profile-merch__item {
    min-height: 230px;
  }
}

@media (max-width: 480px) {
  .artist-profile-merch .artist-profile-panel__header-actions > a span {
    display: none;
  }

  .artist-profile-merch__grid {
    height: 298px;
    padding-inline: 14px;
    grid-auto-columns: clamp(244px, 82vw, 304px);
  }

  .artist-profile-merch__item {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.artist-profile-merch-ready .artist-profile-merch__panel,
  html.artist-profile-merch-ready .artist-profile-merch__item {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }

  .artist-profile-merch__item,
  .artist-profile-merch__visual > img {
    transition: none;
  }
}

@media (max-width: 560px) {
  .artist-profile-panel__header-actions {
    gap: 9px;
  }

  .artist-profile-carousel__controls {
    gap: 4px;
  }

  .artist-profile-carousel__controls button {
    width: 25px;
    height: 25px;
  }
}

/* =========================================================
   ARTIST PROFILE — GALLERY / MERCH / STATISTICS ANIMATIONS
========================================================= */

/* STATISTICS OVERVIEW */

html.artist-profile-motion-ready .artist-profile-stat-card {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.965);
  transform-origin: center bottom;
}

html.artist-profile-motion-ready
  .artist-profile-statistics.is-section-animated
  .artist-profile-stat-card.is-stat-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.62s ease var(--stat-delay, 0ms),
    transform 0.92s cubic-bezier(0.16, 1, 0.3, 1) var(--stat-delay, 0ms),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.artist-profile-stat-card {
  position: relative;
  overflow: hidden;
}

.artist-profile-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 38%,
      rgba(201, 255, 0, 0.12) 49%,
      transparent 60%,
      transparent 100%
    );
  transform: translateX(-125%);
  pointer-events: none;
}

.artist-profile-statistics.is-section-animated
  .artist-profile-stat-card.is-stat-visible::before {
  animation: artistProfileStatSweep 1.05s ease-out var(--stat-sweep-delay, 220ms) both;
}

.artist-profile-stat-card.is-stat-visible:hover {
  border-color: rgba(201, 255, 0, 0.25);
  background:
    linear-gradient(145deg, rgba(201, 255, 0, 0.035), transparent 62%),
    rgba(255, 255, 255, 0.009);
  box-shadow:
    inset 0 0 24px rgba(201, 255, 0, 0.02),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.artist-profile-stat-card strong {
  display: inline-block;
  transform-origin: left center;
}

.artist-profile-stat-card strong.is-count-settled {
  animation: artistProfileCounterSettle 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.artist-profile-stat-card small {
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

html.artist-profile-motion-ready .artist-profile-chart__axis span,
html.artist-profile-motion-ready .artist-profile-chart__months span {
  opacity: 0;
  transform: translateY(7px);
}

.artist-profile-statistics.is-section-animated
  .artist-profile-chart.is-revealed
  .artist-profile-chart__axis span,
.artist-profile-statistics.is-section-animated
  .artist-profile-chart.is-revealed
  .artist-profile-chart__months span {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.46s ease var(--chart-label-delay, 0ms),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--chart-label-delay, 0ms);
}

.artist-profile-statistics.is-section-animated
  .artist-profile-chart.is-revealed
  .artist-profile-chart__grid line {
  animation: artistProfileGridLineIn 0.72s ease-out var(--chart-grid-delay, 220ms) both;
}

@keyframes artistProfileStatSweep {
  0% {
    opacity: 0;
    transform: translateX(-125%);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(125%);
  }
}

@keyframes artistProfileCounterSettle {
  0% {
    color: rgba(244, 241, 236, 0.94);
    transform: translateY(0) scale(1);
  }

  46% {
    color: var(--artist-profile-accent);
    transform: translateY(-1px) scale(1.035);
  }

  100% {
    color: rgba(244, 241, 236, 0.94);
    transform: translateY(0) scale(1);
  }
}

@keyframes artistProfileGridLineIn {
  from {
    opacity: 0;
    transform: scaleX(0.1);
    transform-origin: left center;
  }

  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/* PHOTO GALLERY */

html.artist-profile-motion-ready .artist-profile-gallery__item {
  opacity: 0;
  transform: translate3d(28px, 18px, 0) scale(0.955);
}

html.artist-profile-motion-ready
  .artist-profile-gallery.is-section-animated
  .artist-profile-gallery__item.is-card-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.64s ease var(--gallery-delay, 0ms),
    transform 0.98s cubic-bezier(0.16, 1, 0.3, 1) var(--gallery-delay, 0ms),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.artist-profile-gallery__item::before {
  content: "";
  position: absolute;
  left: -34%;
  top: -22%;
  z-index: 3;
  width: 22%;
  height: 145%;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 255, 0, 0.17),
    transparent
  );
  transform: rotate(12deg);
  pointer-events: none;
}

.artist-profile-gallery.is-section-animated
  .artist-profile-gallery__item.is-card-visible::before {
  animation: artistProfileGalleryScan 1.05s ease-out var(--gallery-scan-delay, 260ms) both;
}

.artist-profile-gallery__item.is-card-visible:hover,
.artist-profile-gallery__item.is-card-visible:focus-visible {
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(201, 255, 0, 0.12);
}

@keyframes artistProfileGalleryScan {
  0% {
    left: -34%;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    left: 122%;
    opacity: 0;
  }
}

/* MERCH */

html.artist-profile-motion-ready .artist-profile-merch__item {
  opacity: 0;
  transform: translate3d(32px, 20px, 0) scale(0.95);
}

html.artist-profile-motion-ready
  .artist-profile-merch.is-section-animated
  .artist-profile-merch__item.is-card-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.62s ease var(--merch-motion-delay, 0ms),
    transform 0.98s cubic-bezier(0.16, 1, 0.3, 1) var(--merch-motion-delay, 0ms),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.artist-profile-merch__item::after {
  content: "";
  position: absolute;
  left: -38%;
  top: -22%;
  z-index: 3;
  width: 24%;
  height: 150%;
  opacity: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 255, 0, 0.16),
    transparent
  );
  transform: rotate(12deg);
  pointer-events: none;
}

.artist-profile-merch.is-section-animated
  .artist-profile-merch__item.is-card-visible::after {
  animation: artistProfileMerchSweep 1.1s ease-out var(--merch-sweep-delay, 260ms) both;
}

html.artist-profile-motion-ready
  .artist-profile-merch__item:not(.is-card-visible)
  .artist-profile-merch__visual > img {
  opacity: 0;
  transform: translateY(22px) scale(0.84);
}

html.artist-profile-motion-ready
  .artist-profile-merch__item.is-card-visible
  .artist-profile-merch__visual > img {
  opacity: 1;
  transform: scale(0.92);
  transition:
    opacity 0.6s ease var(--merch-product-delay, 180ms),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) var(--merch-product-delay, 180ms),
    filter 0.36s ease;
}

html.artist-profile-motion-ready
  .artist-profile-merch__item.is-card-visible:hover
  .artist-profile-merch__visual > img,
html.artist-profile-motion-ready
  .artist-profile-merch__item.is-card-visible:focus-visible
  .artist-profile-merch__visual > img {
  transform: scale(0.98);
}

@keyframes artistProfileMerchSweep {
  0% {
    left: -38%;
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  100% {
    left: 124%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.artist-profile-motion-ready .artist-profile-stat-card,
  html.artist-profile-motion-ready .artist-profile-gallery__item,
  html.artist-profile-motion-ready .artist-profile-merch__item,
  html.artist-profile-motion-ready
    .artist-profile-merch__item:not(.is-card-visible)
    .artist-profile-merch__visual > img,
  html.artist-profile-motion-ready
    .artist-profile-chart__axis span,
  html.artist-profile-motion-ready
    .artist-profile-chart__months span {
    opacity: 1;
    transform: none;
  }

  .artist-profile-stat-card::before,
  .artist-profile-gallery__item::before,
  .artist-profile-merch__item::after,
  .artist-profile-stat-card strong.is-count-settled,
  .artist-profile-stat-card.is-stat-visible small,
  .artist-profile-chart__grid line {
    animation: none !important;
  }
}

/* =========================================================
   SCROLL MOTION + STAT NUMBER COUNTING
========================================================= */

/* Green numbers */
.artist-profile-stat-card small,
.artist-profile-stat-card.is-stat-visible small {
  color: var(--artist-profile-accent) !important;
  text-shadow: 0 0 10px rgba(201, 255, 0, 0.18);
}

.artist-profile-stat-card.is-stat-visible small {
  animation: artistProfilePercentGreenPulse 0.72s ease-out
    var(--stat-growth-delay, 1050ms) both;
}

/* numbers */
.artist-profile-stat-card strong[data-profile-stat-value] {
  display: inline-block;
  transform-origin: left bottom;
  will-change: transform, opacity;
}

.artist-profile-stat-card strong[data-profile-stat-value].is-number-rolling {
  animation: artistProfileNumberRolling 1.48s
    cubic-bezier(0.16, 1, 0.3, 1) both;
}

.artist-profile-stat-card strong[data-profile-stat-value].is-number-complete {
  animation: artistProfileNumberComplete 0.42s
    cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes artistProfileNumberRolling {
  0% {
    opacity: 0;
    transform: translateY(13px) scale(0.9);
  }

  28% {
    opacity: 1;
  }

  72% {
    transform: translateY(-1px) scale(1.025);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes artistProfileNumberComplete {
  0% {
    color: rgba(244, 241, 236, 0.94);
    transform: scale(1);
  }

  48% {
    color: var(--artist-profile-accent);
    transform: scale(1.045);
  }

  100% {
    color: rgba(244, 241, 236, 0.94);
    transform: scale(1);
  }
}

@keyframes artistProfilePercentGreenPulse {
  0% {
    opacity: 0;
    color: var(--artist-profile-accent);
    text-shadow: none;
    transform: translateY(5px);
  }

  52% {
    opacity: 1;
    color: #dcff55;
    text-shadow: 0 0 15px rgba(201, 255, 0, 0.38);
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    color: var(--artist-profile-accent);
    text-shadow: 0 0 10px rgba(201, 255, 0, 0.18);
    transform: translateY(0);
  }
}

/* gallery and merch grids */
.artist-profile-gallery__grid,
.artist-profile-merch__grid {
  position: relative;
}

.artist-profile-gallery__grid.is-scroll-animating,
.artist-profile-merch__grid.is-scroll-animating {
  scroll-snap-type: none;
}

.artist-profile-gallery__item {
  --carousel-scale: 0.965;
  --carousel-shift: 0px;
  --carousel-opacity: 0.76;
}

.artist-profile-gallery__item.is-card-visible {
  opacity: var(--carousel-opacity);
}

.artist-profile-gallery__item.is-card-visible img {
  transform:
    translate3d(var(--carousel-shift), 0, 0)
    scale(var(--carousel-scale));
  transition:
    filter 0.34s ease,
    opacity 0.28s ease,
    transform 0.18s linear;
}

.artist-profile-gallery__grid:not(.is-scrolling)
  .artist-profile-gallery__item.is-card-visible img {
  transition:
    filter 0.45s ease,
    opacity 0.28s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-profile-gallery__item.is-carousel-active {
  opacity: 1;
  border-color: rgba(201, 255, 0, 0.18);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(201, 255, 0, 0.06);
}

.artist-profile-gallery__item.is-carousel-active img {
  filter: grayscale(0.12) contrast(1.1) brightness(0.84);
}

/* merch grids */
.artist-profile-merch__item {
  --carousel-scale: 0.88;
  --carousel-shift: 0px;
  --carousel-opacity: 0.72;
}

.artist-profile-merch__item.is-card-visible {
  opacity: var(--carousel-opacity);
}

.artist-profile-merch__item.is-card-visible
  .artist-profile-merch__visual > img {
  transform:
    translate3d(var(--carousel-shift), 0, 0)
    scale(var(--carousel-scale));
  transition:
    filter 0.34s ease,
    opacity 0.28s ease,
    transform 0.18s linear;
}

.artist-profile-merch__grid:not(.is-scrolling)
  .artist-profile-merch__item.is-card-visible
  .artist-profile-merch__visual > img {
  transition:
    filter 0.36s ease,
    opacity 0.28s ease,
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-profile-merch__item.is-carousel-active {
  opacity: 1;
  border-color: rgba(244, 241, 236, 0.045);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.artist-profile-gallery__grid.is-scroll-animating::after,
.artist-profile-merch__grid.is-scroll-animating::after {
  content: "";
  position: sticky;
  right: 0;
  z-index: 10;
  width: 1px;
  height: 72%;
  align-self: center;
  background: var(--artist-profile-accent);
  box-shadow: 0 0 14px rgba(201, 255, 0, 0.52);
  opacity: 0.65;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .artist-profile-stat-card strong[data-profile-stat-value].is-number-rolling,
  .artist-profile-stat-card strong[data-profile-stat-value].is-number-complete,
  .artist-profile-stat-card.is-stat-visible small {
    animation: none !important;
  }

  .artist-profile-gallery__item,
  .artist-profile-gallery__item.is-card-visible,
  .artist-profile-merch__item,
  .artist-profile-merch__item.is-card-visible {
    opacity: 1;
  }

  .artist-profile-gallery__item.is-card-visible img,
  .artist-profile-merch__item.is-card-visible
    .artist-profile-merch__visual > img {
    transform: none;
    transition: none;
  }
}

@media (max-width: 720px) {
  .artist-profile-gallery-lightbox__dialog {
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .artist-profile-gallery-lightbox__dialog figure {
    gap: 12px;
  }
}
