.intro-animated-gradient__root {
    padding-top: clamp(4rem, 12vw, 10rem);
    padding-bottom: clamp(4rem, 12vw, 10rem);
    min-height: min(32rem, 85vh);
}

@keyframes intro-animated-gradient-spin {
    to {
        transform: rotate(360deg);
    }
}

.intro-animated-gradient__spin--left,
.intro-animated-gradient__spin--right {
    width: 85%;
    height: 85%;
    top: 7.5%;
    animation-name: intro-animated-gradient-spin;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
}

.intro-animated-gradient__spin--left {
    left: -18%;
    animation-duration: 48s;
}

.intro-animated-gradient__spin--right {
    right: -18%;
    animation-duration: 60s;
    animation-direction: reverse;
}

.intro-animated-gradient__area {
    max-width: 48rem;
}

/* faq v24 — luxe slide stage (click nav) */
.luxe-slides__stage {
  min-height: 100vh;
  min-height: 100dvh;
}

.luxe-slides__bg-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.luxe-slides__slide.is-active {
  animation: luxe-slide-fade-in 400ms ease;
}

.luxe-slides__slide.hidden {
  display: none !important;
}

@keyframes luxe-slide-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.luxe-slides__rule {
  width: 1px;
}

.luxe-slides__rule--tall {
  height: 3rem;
}

@media (min-width: 768px) {
  .luxe-slides__rule--tall {
    height: 4rem;
  }
}

.luxe-slides__eyebrow {
  letter-spacing: 0.35em;
}

.luxe-slides__headline {
  max-width: 56rem;
}

.luxe-slides__lead {
  max-width: 42rem;
}

.luxe-slides__section-title {
  width: 100%;
}

/* Sidebar: round only the inner (right) edge */
.luxe-slides__nav-panel {
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.luxe-slides__step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  outline-offset: 2px;
}

.luxe-slides__step-num {
  opacity: 0.7;
  font-size: 1.125rem;
  font-weight: 400;
  transition: opacity 250ms ease, font-size 250ms ease, font-weight 250ms ease;
}

.luxe-slides__step.is-active .luxe-slides__step-num {
  opacity: 1;
  font-size: 1.5rem;
  font-weight: 700;
}

.luxe-slides__step-mark {
  width: 2px;
  height: 2.5rem;
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 250ms ease;
}

@media (min-width: 768px) {
  .luxe-slides__step-mark {
    height: 3rem;
  }
}

.luxe-slides__step.is-active .luxe-slides__step-mark {
  opacity: 1;
}

