/* Homepage-only visual effects */

/* —— Homepage hero: full viewport —— */
.page-home .hero {
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

.page-home .hero-media video,
.page-home .hero-media img {
  transform: none;
  object-fit: cover;
  object-position: center 38%;
  transform-origin: center center;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.page-home .hero-media__inner {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
  transition: transform 0.15s ease-out;
  will-change: transform;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}

.page-home .hero-media__inner video,
.page-home .hero-media__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.28);
  transform-origin: center center;
}

@keyframes heroKenBurns {
  from {
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.02);
  }
  to {
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.06);
  }
}

/* —— Hero FX layers —— */
.hero--fx {
  isolation: isolate;
}

.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: heroOrbFloat 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  left: -8%;
  top: 18%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.55) 0%, transparent 70%);
  animation-duration: 14s;
}

.hero-orb--2 {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  right: -5%;
  top: 35%;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.45) 0%, transparent 70%);
  animation-duration: 11s;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: min(280px, 38vw);
  height: min(280px, 38vw);
  left: 35%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35) 0%, transparent 70%);
  animation-duration: 16s;
  animation-delay: -7s;
}

@keyframes heroOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3%, -4%) scale(1.06);
  }
  66% {
    transform: translate(-4%, 3%) scale(0.96);
  }
}

.hero-grain {
  position: absolute;
  inset: -50%;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: heroGrainShift 0.5s steps(2) infinite;
  pointer-events: none;
}

@keyframes heroGrainShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-2%, -2%);
  }
}

.hero-sweep {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 100%
  );
  animation: heroSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 45%, #000 20%, transparent 75%);
  animation: heroGridDrift 18s linear infinite;
}

@keyframes heroGridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(64px, 64px, 0);
  }
}

@keyframes heroSweep {
  0%,
  100% {
    left: -60%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  45% {
    left: 120%;
    opacity: 1;
  }
  55%,
  100% {
    left: 120%;
    opacity: 0;
  }
}

/* Shimmer title */
.page-home .hero-overlay-title.hero-title-shimmer {
  z-index: 2;
  background-size: 200% auto;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(0, 212, 170, 0.85) 25%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(124, 92, 255, 0.8) 75%,
    rgba(255, 255, 255, 0.95) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    heroTitleShimmer 6s ease-in-out infinite,
    heroTitleEnter 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes heroTitleShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes heroTitleEnter {
  from {
    opacity: 0;
    filter: blur(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Hero entrance */
.hero-enter__item {
  animation: heroEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(0.35s + var(--enter-i, 0) * 0.12s);
}

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

/* CTA shine */
.btn-shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  animation: btnShine 3.5s ease-in-out infinite;
}

@keyframes btnShine {
  0%,
  70%,
  100% {
    left: -120%;
  }
  85% {
    left: 140%;
  }
}

/* Slide progress rail */
.slide-progress {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.slide-progress__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.slide-progress__dot:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: scale(1.2);
}

.slide-progress__dot.is-current {
  background: var(--accent-b);
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.65);
  transform: scale(1.35);
}

/* Active slide extras */
.mk-showcase-item--story.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 60% at 50% 100%,
    rgba(0, 212, 170, 0.08) 0%,
    transparent 55%
  );
  animation: slideGlowPulse 3s ease-in-out infinite;
}

@keyframes slideGlowPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.mk-showcase-item--story.is-revealed .slide-badge__num {
  animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes badgePop {
  from {
    transform: scale(0.6);
  }
  to {
    transform: scale(1);
  }
}

/* Parallax hook (JS sets --hero-shift) — no scale to keep video sharp */

.page-home .hero-overlay-title {
  top: 32%;
}

.page-home .hero-overlay-title.hero-title-shimmer {
  z-index: 2;
}

.page-home .hero-content {
  position: relative;
  z-index: 4;
  max-width: none;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(72px, 10vh, 108px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: left;
}

.page-home .hero-media::after {
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.05) 0%,
      rgba(10, 10, 10, 0.12) 35%,
      rgba(10, 10, 10, 0.65) 72%,
      rgba(10, 10, 10, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.45) 0%,
      rgba(10, 10, 10, 0.12) 42%,
      rgba(10, 10, 10, 0.02) 62%,
      transparent 78%
    );
}

.page-home .hero-content::before {
  display: none;
}

/* —— Hero stage (full-width cinematic) —— */
.hero-stage {
  --hero-accent: #1ed760;
  --hero-accent-rgb: 30, 215, 96;
  --hero-glow: rgba(30, 215, 96, 0.35);
  width: min(100%, 920px);
  margin: 0 auto 0 0;
}

.hero-stage--full {
  width: 100%;
  max-width: min(1240px, 100%);
  margin: 0 auto;
}

.hero-stage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

.hero-stage__main {
  min-width: 0;
  position: relative;
  z-index: 1;
  padding-inline: clamp(0.25rem, 2vw, 1.25rem);
}

@media (min-width: 901px) {
  .hero-stage__main {
    padding-left: clamp(1rem, 4vw, 3rem);
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
  }
}

.hero-stage__aside {
  position: relative;
  z-index: 8;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.hero-stage--artists {
  --hero-accent: #a78bfa;
  --hero-accent-rgb: 167, 139, 250;
  --hero-glow: rgba(124, 92, 255, 0.4);
}

/* Path switcher — sliding pill */
.hero-path-switch {
  position: relative;
  display: inline-flex;
  gap: 0.2rem;
  padding: 0.28rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-path-switch__indicator {
  position: absolute;
  top: 0.28rem;
  left: var(--switch-x, 0.28rem);
  width: var(--switch-w, 50%);
  height: calc(100% - 0.56rem);
  border-radius: 999px;
  background: rgba(var(--hero-accent-rgb), 0.22);
  border: 1px solid rgba(var(--hero-accent-rgb), 0.35);
  box-shadow: 0 4px 20px var(--hero-glow);
  transition: left 0.38s cubic-bezier(0.22, 1, 0.36, 1), width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  animation: heroSwitchGlow 2.8s ease-in-out infinite;
}

@keyframes heroSwitchGlow {
  0%,
  100% {
    box-shadow: 0 4px 20px var(--hero-glow);
  }
  50% {
    box-shadow: 0 4px 32px var(--hero-glow), 0 0 48px rgba(var(--hero-accent-rgb), 0.15);
  }
}

.hero-path-switch__btn {
  position: relative;
  z-index: 1;
  min-height: 38px;
  padding: 0 1.15rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-tight);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease;
}

.hero-path-switch__btn:hover {
  color: rgba(255, 255, 255, 0.9);
}

.hero-path-switch__btn.is-active {
  color: #fff;
}

.hero-path-switch__btn:focus-visible {
  outline: 2px solid rgba(var(--hero-accent-rgb), 0.8);
  outline-offset: 2px;
}

.hero-path-panels {
  position: relative;
  min-height: 280px;
}

.hero-path-panel {
  display: none;
}

.hero-path-panel.is-active {
  display: block;
  animation: heroPathIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-path-panel.is-active .hero-kicker {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.06s;
}

.hero-path-panel.is-active .hero-headline {
  animation: heroItemIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.14s;
}

.hero-path-panel.is-active .hero-lead {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.22s;
}

.hero-path-panel.is-active .hero-pipeline {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.3s;
}

.hero-path-panel.is-active .hero-cta-row {
  animation: heroItemIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.38s;
}

@keyframes heroItemIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-path-panel.is-active {
    animation: none;
  }

  .hero-path-panel.is-active .hero-kicker,
  .hero-path-panel.is-active .hero-headline,
  .hero-path-panel.is-active .hero-lead,
  .hero-path-panel.is-active .hero-pipeline,
  .hero-path-panel.is-active .hero-cta-row {
    animation: none;
  }

  .hero-path-switch__indicator {
    transition: none;
    animation: none;
  }
}

@keyframes heroPathIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font-art);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--hero-accent-rgb), 0.95);
  animation: heroKickerPulse 3s ease-in-out infinite;
}

@keyframes heroKickerPulse {
  0%,
  100% {
    letter-spacing: 0.12em;
    text-shadow: 0 0 0 transparent;
  }
  50% {
    letter-spacing: 0.16em;
    text-shadow: 0 0 18px rgba(var(--hero-accent-rgb), 0.35);
  }
}

.hero-headline {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-art);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  text-transform: none;
}

.hero-headline__line {
  display: block;
}

.hero-headline__accent {
  display: block;
  margin-top: 0.1em;
  font-family: var(--font-serif-display);
  font-size: 0.88em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.05;
  background: linear-gradient(
    105deg,
    #fff 0%,
    var(--hero-accent) 40%,
    rgba(var(--hero-accent-rgb), 0.85) 60%,
    #fff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroAccentShimmer 5s ease-in-out infinite;
}

@keyframes heroAccentShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 44ch;
  font-family: var(--font-serif-display);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-style: italic;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
}

/* Horizontal pipeline */
.hero-pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  margin-bottom: 1.65rem;
}

.hero-pipeline__step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: heroPillIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(0.15s + var(--step-i, 0) * 0.07s);
}

.hero-pipeline__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hero-accent);
  box-shadow: 0 0 10px var(--hero-glow);
  flex-shrink: 0;
  animation: heroDotPulse 2.2s ease-in-out infinite;
  animation-delay: calc(var(--step-i, 0) * 0.4s);
}

@keyframes heroDotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--hero-glow);
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 18px var(--hero-glow), 0 0 28px rgba(var(--hero-accent-rgb), 0.25);
  }
}

.hero-pipeline__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.2;
}

.hero-pipeline__text strong {
  font-family: var(--font-tight);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.hero-pipeline__text span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}

.hero-pipeline__connector {
  width: 0;
  height: 1px;
  margin: 0 0.15rem;
  background: linear-gradient(90deg, rgba(var(--hero-accent-rgb), 0.5), rgba(255, 255, 255, 0.15));
  flex-shrink: 0;
}

.hero-path-panel.is-active .hero-pipeline__connector {
  animation: heroConnectorDraw 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.25s + var(--step-i, 0) * 0.12s);
}

@keyframes heroConnectorDraw {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 22px;
    opacity: 1;
  }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-family: var(--font-tight);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hero-btn--primary {
  color: #0a0a0a;
  background: var(--hero-accent);
  box-shadow: 0 8px 32px var(--hero-glow);
}

.hero-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  text-decoration: none;
}

.hero-btn--secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-btn--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.hero-btn--link {
  min-height: auto;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.hero-btn--link:hover {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

/* —— Hero edge vertical marquees —— */
.hero-edge-marquees {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-edge-marquee {
  position: absolute;
  top: clamp(72px, 12vh, 120px);
  bottom: clamp(16px, 4vh, 32px);
  width: clamp(36px, 4vw, 52px);
  overflow: hidden;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-edge-marquee--left {
  display: none;
}

.hero-edge-marquee--right {
  right: clamp(4px, 1vw, 16px);
  opacity: 0.28;
}

.hero-edge-marquee__track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  will-change: transform;
}

.hero-edge-marquee__item {
  display: block;
  font-family: var(--font-tight);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-edge-marquee--right .hero-edge-marquee__item {
  transform: rotate(180deg);
}

@media (min-width: 901px) {
  .hero-stage--full .hero-pipeline {
    flex-wrap: nowrap;
  }
}

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

  .hero-stage__aside {
    display: none;
  }

  .hero-stage__main {
    padding-inline: clamp(0.5rem, 3vw, 1.25rem);
  }

  .hero-edge-marquee {
    opacity: 0.35;
  }
}

@media (max-width: 720px) {
  .hero-stage {
    margin: 0 auto;
    text-align: center;
  }

  .hero-path-switch {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-headline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-pipeline {
    justify-content: center;
  }

  .hero-cta-row {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .hero-pipeline__connector {
    display: none;
  }

  .hero-pipeline {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .hero-pipeline__step {
    width: 100%;
  }
}

@keyframes heroPillIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* —— Listener reviews marquee —— */
/* —— Homepage platform trust bar —— */
.home-trust {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(29, 185, 84, 0.08) 0%, transparent 55%),
    rgb(10, 10, 10);
  overflow: hidden;
}

.home-trust__head {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
}

.home-trust__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 212, 170, 0.9);
}

.home-trust__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
}

.home-trust__lead {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.home-trust__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(100px, 10vw);
  z-index: 2;
  pointer-events: none;
}

.home-trust__fade--left {
  left: 0;
  background: linear-gradient(90deg, rgb(10, 10, 10), transparent);
}

.home-trust__fade--right {
  right: 0;
  background: linear-gradient(270deg, rgb(10, 10, 10), transparent);
}

.home-trust__viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-trust__track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
}

.home-trust__track:not(.is-marquee-running) {
  animation: homeTrustMarquee 48s linear infinite;
}

.home-trust__track.is-marquee-running {
  animation: none !important;
}

.home-trust__viewport:hover .home-trust__track:not(.is-marquee-running) {
  animation-play-state: paused;
}

@keyframes homeTrustMarquee {
  from {
    transform: translate3d(calc(-100% / 4), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.home-trust__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-right: clamp(0.75rem, 2vw, 1.25rem);
}

.home-trust__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-trust__logo:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 185, 84, 0.35);
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.12);
}

.home-trust__logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.home-trust__name {
  font-family: var(--font-tight);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

/* —— Reviews marquee —— */
.reviews-marquee {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  padding: 1.1rem 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(18, 18, 22, 0.98) 50%,
    rgba(10, 10, 10, 1) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(120px, 12vw);
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, rgb(10, 10, 10), transparent);
}

.reviews-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, rgb(10, 10, 10), transparent);
}

.reviews-marquee__inner {
  overflow: hidden;
}

.reviews-marquee__track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
}

.reviews-marquee__track:not(.is-marquee-running) {
  animation: reviewsMarqueeLtr 72s linear infinite;
}

.reviews-marquee__track.is-marquee-running {
  animation: none !important;
}

.reviews-marquee__inner:hover .reviews-marquee__track:not(.is-marquee-running) {
  animation-play-state: paused;
}

@keyframes reviewsMarqueeLtr {
  from {
    transform: translate3d(calc(-100% / 2), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.reviews-marquee__group {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  gap: 0.85rem;
  padding-right: 0.85rem;
}

.review-chip {
  flex: 0 0 auto;
  width: min(320px, 78vw);
  padding: 0.9rem 1.1rem 1rem;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.review-chip__stars {
  display: flex;
  gap: 0.12rem;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  line-height: 1;
}

.review-star {
  color: rgba(255, 255, 255, 0.18);
}

.review-star--on {
  color: #f5c542;
  text-shadow: 0 0 12px rgba(245, 197, 66, 0.45);
}

.review-chip__text {
  margin: 0 0 0.65rem;
  font-family: var(--font-tight);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.review-chip__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.review-chip__name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.review-chip__badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25em 0.55em;
  border-radius: 999px;
  color: #0a0a0a;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
}

@media (max-width: 809px) {
  .slide-progress {
    display: none;
  }

}

/* —— Homepage artist 4-step flow —— */
.home-artist-flow {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(124, 92, 255, 0.1) 0%, transparent 55%),
    rgb(10, 10, 10);
}

.home-artist-flow__head {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-artist-flow__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--font-tight);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(124, 92, 255, 0.85);
}

.home-artist-flow__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}

.home-artist-flow__lead {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.home-artist-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.home-artist-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.85rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(124, 92, 255, 0.18);
  background: rgba(124, 92, 255, 0.05);
  animation: heroPillIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--step-i, 0) * 0.08s + 0.1s);
}

.home-artist-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.65rem;
  width: 0.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.5), rgba(124, 92, 255, 0.15));
  transform: translateY(-50%);
  pointer-events: none;
}

.home-artist-flow__num {
  position: absolute;
  top: 0.65rem;
  left: 0.75rem;
  font-family: var(--font-tight);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(124, 92, 255, 0.65);
}

.home-artist-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.14);
  color: #b49cff;
}

.home-artist-flow__icon svg {
  width: 20px;
  height: 20px;
}

.home-artist-flow__name {
  font-family: var(--font-tight);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.home-artist-flow__desc {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.home-artist-flow__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

@media (max-width: 860px) {
  .home-artist-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-artist-flow__step:nth-child(2)::after,
  .home-artist-flow__step:nth-child(4)::after {
    display: none;
  }
}

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

  .home-artist-flow__step::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .hero-grain,
  .hero-sweep,
  .hero-grid,
  .btn-shine::after,
  .hero-enter__item,
  .hero-kicker,
  .hero-headline__accent,
  .hero-pipeline__dot,
  .hero-path-switch__indicator,
  .hero-panel__live-dot,
  .hero-panel__wave-bar,
  .hero-panel__progress-dot.is-active::after,
  .page-home .hero-media__inner,
  .home-artist-flow__step,
  .mk-showcase-item--story.is-active::after {
    animation: none !important;
  }

  .hero-enter__item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-path-panel.is-active .hero-kicker,
  .hero-path-panel.is-active .hero-headline,
  .hero-path-panel.is-active .hero-lead,
  .hero-path-panel.is-active .hero-pipeline,
  .hero-path-panel.is-active .hero-cta-row {
    animation: none !important;
  }

  .hero-path-panel.is-active .hero-pipeline__connector {
    width: 22px;
    animation: none !important;
  }

  .reviews-marquee__track,
  .home-trust__track {
    animation: none !important;
    transform: none !important;
  }

  .page-home .hero-media__inner {
    transform: translate3d(0, var(--hero-shift, 0px), 0) !important;
  }
}
