:root {
  --vida-purple: #742566;
  --vida-yellow: #f7b92f;
}

.hero--video {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: #210d2b;
  color: #fff;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.hero__sound-button {
  display: flex;
  justify-content: center;
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.5rem);
  bottom: clamp(5.25rem, 9vw, 6.5rem);
  z-index: 1;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 999px;
  background: rgb(20 8 28 / 55%);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(25 6 32 / 88%) 0%, rgb(47 13 58 / 72%) 48%, rgb(30 6 42 / 32%) 100%),
    linear-gradient(180deg, rgb(15 4 25 / 10%) 45%, rgb(15 4 25 / 64%) 100%);
}

.hero--video .container {
  display: flex;
  align-items: center;
  width: min(100%, 1200px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3.5rem, 8vw, 6rem);
}

.hero__content {
  max-width: 680px;
  height: 100%;
}

.hero__content > * {
  opacity: 0;
  animation: hero-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__content > :nth-child(1) {
  animation-delay: 100ms;
}

.hero__content > :nth-child(2) {
  animation-delay: 220ms;
}

.hero__content > :nth-child(3) {
  animation-delay: 340ms;
}

.hero__content > :nth-child(4) {
  animation-delay: 460ms;
}

.hero__content > :nth-child(5) {
  animation-delay: 580ms;
}

.hero__content > :nth-child(6) {
  animation-delay: 700ms;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  color: #fff5d9;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 2.5rem;
  height: 2px;
  background: var(--vida-yellow);
  content: "";
}

.hero__title {
  max-width: 12ch;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.8rem;
  margin: 2rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.hero__features li {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  font-weight: 500;
}

.hero__description {
  max-width: 54ch;
  margin: 0 0 2rem;
  color: rgb(255 255 255 / 86%);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.85rem;
  background: var(--vida-yellow);
  box-shadow: 0 12px 30px rgb(0 0 0 / 24%);
  color: #402037;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero__sound-icon--active {
  display: none;
}

.hero__sound-button[aria-pressed="true"] .hero__sound-icon--muted {
  display: none;
}

.hero__sound-button[aria-pressed="true"] .hero__sound-icon--active {
  display: block;
}

.hero__button:hover {
  background: #fff;
  box-shadow: 0 16px 34px rgb(0 0 0 / 32%);
  color: var(--vida-purple);
  transform: translateY(-3px);
}

.hero__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {

  .hero_buttons_container {
    display: flex;
    width: fit-content;
    flex-direction: column;
    gap: 20px;
  }

  .hero__button {
    width: fit-content;
  }
}