.landing-video-header {
  isolation: isolate;
  min-height: min(920px, 100vh);
  padding-top: clamp(8rem, 13vw, 11rem) !important;
  padding-bottom: clamp(5rem, 11vw, 7rem) !important;
  background: #080a14 !important;
}

.landing-video-header > .relative.z-10 {
  position: relative;
  z-index: 20;
}

.landing-video-header__media,
.landing-video-header__overlay,
.landing-video-header__video {
  position: absolute;
  inset: 0;
}

.landing-video-header__media {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-video-header__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.06) brightness(0.86);
}

.landing-video-header__overlay {
  background:
    linear-gradient(90deg, rgb(5 6 13 / 0.9) 0%, rgb(5 6 13 / 0.64) 42%, rgb(5 6 13 / 0.34) 100%),
    linear-gradient(180deg, rgb(5 6 13 / 0.55) 0%, rgb(5 6 13 / 0.14) 46%, rgb(30 30 36 / 0.96) 100%);
}

.landing-video-header .square {
  z-index: 5;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.landing-video-header h1,
.landing-video-header h2,
.landing-video-header p {
  text-shadow: 0 2px 22px rgb(0 0 0 / 0.38);
}

.landing-video-header__sound {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgb(8 10 20 / 0.62);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.landing-video-header__sound:hover,
.landing-video-header__sound:focus-visible {
  border-color: rgb(225 78 202 / 0.78);
  background: rgb(225 78 202 / 0.22);
  transform: translateY(-1px);
  outline: none;
}

.landing-video-header__sound[hidden] {
  display: none;
}

.landing-video-feature {
  position: relative;
  background:
    linear-gradient(180deg, #1e1e24 0%, #11131f 42%, #1e1e2f 100%);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}

.landing-video-feature__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.landing-video-feature__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 1rem;
  background: #05060d;
  box-shadow: 0 30px 80px rgb(0 0 0 / 0.42);
}

.landing-video-feature__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #05060d;
}

.landing-video-feature__sound {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgb(8 10 20 / 0.68);
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.34);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.landing-video-feature__sound:hover,
.landing-video-feature__sound:focus-visible {
  border-color: rgb(88 183 255 / 0.72);
  background: rgb(88 183 255 / 0.22);
  transform: translateY(-1px);
  outline: none;
}

.landing-video-header--missing-video .landing-video-header__media {
  display: none;
}

@media (max-width: 768px) {
  .landing-video-header {
    min-height: 100svh;
    padding-top: 7.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .landing-video-header__video {
    object-position: center top;
    opacity: 0.62;
  }

  .landing-video-header__overlay {
    background:
      linear-gradient(180deg, rgb(5 6 13 / 0.72) 0%, rgb(5 6 13 / 0.54) 44%, rgb(30 30 36 / 0.96) 100%),
      linear-gradient(90deg, rgb(5 6 13 / 0.74), rgb(5 6 13 / 0.32));
  }

  .landing-video-feature {
    padding: 3rem 1rem;
  }

  .landing-video-feature__frame {
    border-radius: 0.75rem;
  }
}