@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap");

/* Music Video Production page */

.page--music-video {
  background: #05050a;
  color: #fff;
}

/* Circle-style artist showcase */
.mvp-showcase {
  position: relative;
  width: 100%;
  background: #05050a;
  outline: none;
}

.mvp-showcase__viewport {
  position: relative;
  width: 100%;
  height: min(88vh, 52rem);
  min-height: 22rem;
  overflow: hidden;
  background: #05050a;
}

.mvp-showcase__track {
  position: absolute;
  inset: 0;
}

.mvp-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
  pointer-events: none;
}

.mvp-showcase__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.mvp-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.mvp-showcase__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.18) 0%, transparent 28%, transparent 55%, rgba(5, 5, 10, 0.55) 100%);
}

.mvp-showcase__caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem 4rem;
  pointer-events: none;
}

.mvp-showcase__artist {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 5.5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.mvp-showcase__project {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.7rem, 1.4vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.mvp-showcase__dots {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.mvp-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 5, 10, 0.28);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mvp-showcase__nav:hover,
.mvp-showcase__nav:focus-visible {
  background: rgba(5, 5, 10, 0.5);
  color: #ffde59;
  outline: none;
}

.mvp-showcase__nav--prev {
  left: clamp(0.5rem, 2vw, 1.5rem);
}

.mvp-showcase__nav--next {
  right: clamp(0.5rem, 2vw, 1.5rem);
}

.mvp-showcase__nav svg {
  display: block;
}

.mvp-showcase__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 1.5px solid transparent;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mvp-showcase__dot:hover,
.mvp-showcase__dot:focus-visible {
  background: #fff;
  outline: none;
}

.mvp-showcase__dot.is-active {
  background: transparent;
  border-color: #fff;
  box-shadow: inset 0 0 0 1.5px transparent;
  transform: scale(1.15);
}

.mvp-slogan {
  padding: clamp(2.75rem, 6vw, 4.5rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 222, 89, 0.08), transparent 55%),
    #05050a;
}

.mvp-slogan__title {
  margin: 0 0 0.85rem;
  color: #ffde59;
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.mvp-slogan__tagline {
  margin: 0 auto;
  max-width: 18em;
  color: #fff;
  font-size: clamp(1.55rem, 4.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mvp-slogan__text {
  margin: 1.15rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.55;
}

.mvp-slogan__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.mvp-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: #ffde59;
  color: #05050a;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mvp-hero__button:hover,
.mvp-hero__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 222, 89, 0.28);
  background: #ffe878;
}

.mvp-hero__button--ghost {
  background: transparent;
  color: #ffde59;
  border-color: rgba(255, 222, 89, 0.55);
}

.mvp-hero__button--ghost:hover,
.mvp-hero__button--ghost:focus-visible {
  background: rgba(255, 222, 89, 0.1);
  box-shadow: none;
}

.mvp-intro {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.mvp-intro__container {
  width: 100%;
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.mvp-intro__copy {
  min-width: 0;
  max-width: 100%;
}

.mvp-intro__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: #ffde59;
  line-height: 1.25;
}

.mvp-intro__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.mvp-intro__text p {
  margin: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.mvp-intro__text p + p {
  margin-top: 0.85rem;
}

.mvp-intro__highlight {
  margin: 1.75rem 0 1.15rem !important;
  color: #ffde59;
  font-family: "Syne", "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.mvp-intro__panels {
  display: grid;
  gap: 1rem;
}

.mvp-intro__panel {
  background: #ffde59;
  color: #05050a;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.mvp-intro__panel-title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.mvp-intro__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.mvp-intro__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.mvp-intro__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #05050a;
}

.mvp-offers {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}

.mvp-offers__container {
  width: 100%;
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.mvp-offers__title {
  margin: 0 0 2rem;
  text-align: center;
  font-family: inherit;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffde59;
}

.mvp-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.mvp-offer {
  border: 1px solid rgba(255, 222, 89, 0.22);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 222, 89, 0.06), transparent 55%),
    rgba(255, 255, 255, 0.02);
}

.mvp-offer__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: #ffde59;
  color: #05050a;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.mvp-offer__title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffde59;
}

.mvp-offer__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.page--music-video .video-section {
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.mvp-cta {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.mvp-cta__container {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.mvp-cta__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffde59;
}

.mvp-cta__text {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.mvp-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: 0;
  background: #ffde59;
  color: #05050a;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mvp-cta__button:hover,
.mvp-cta__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 222, 89, 0.28);
  background: #ffe878;
}

.mvp-faq-section {
  padding: 0 1.25rem clamp(4rem, 8vw, 6rem);
}

.mvp-faq {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.mvp-faq__header {
  margin-bottom: 1.35rem;
  text-align: center;
}

.mvp-faq .outro-faq {
  margin-top: 0;
}

.mvp-faq .outro-faq__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 991px) {
  .mvp-intro__container {
    grid-template-columns: 1fr;
  }

  .mvp-offers__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mvp-showcase__viewport {
    height: min(72vh, 34rem);
  }

  .mvp-showcase__caption {
    padding-bottom: 3.5rem;
  }

  .mvp-showcase__nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .mvp-showcase__nav svg {
    width: 22px;
    height: 22px;
  }

  .mvp-slogan__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mvp-slogan__actions .mvp-hero__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mvp-showcase__slide {
    transition: none;
  }
}
