.home-hero {
  display: flex;
  align-items: center;
  min-height: 750px;
  padding: 48px 0 64px;
}

.home-hero--au .home-hero-video {
  width: 100%;
  max-width: 720px;
  margin: 32px auto 40px;
}

.home-hero--au .home-hero-au-summary > .description {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
}

.home-hero--au #home-list {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.home-hero--au #home-list li {
  text-align: left;
}

@media only screen and (min-width: 1200px) {
  .home-hero--au {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .home-hero--au .home-hero-copy--au {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .home-hero--au .home-hero-au-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    column-gap: clamp(48px, 5vw, 72px);
    row-gap: 20px;
    align-items: start;
  }

  .home-hero--au .home-hero-au-heading,
  .home-hero--au .home-hero-au-summary {
    min-width: 0;
  }

  .home-hero--au .home-hero-au-heading {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .home-hero--au .home-hero-video {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    margin: 0;
  }

  .home-hero--au .home-hero-au-heading > .title {
    display: block;
    width: 100%;
    margin-bottom: 0;
    font-size: clamp(52px, 4.2vw, 64px);
    line-height: 1.08;
  }

  .home-hero--au .home-hero-au-summary {
    grid-column: 1;
    grid-row: 2 / span 3;
    align-self: center;
    text-align: left;
  }

  .home-hero--au .home-hero-au-summary > .description {
    max-width: none;
    margin: 0 0 12px !important;
    font-size: 20px;
    line-height: 1.55;
    text-align: left;
  }

  .home-hero--au #home-list {
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .home-hero--au #home-list li {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .home-hero--au .home-hero-platforms {
    grid-column: 2;
    grid-row: 2;
  }

  .home-hero--au .home-hero-platforms .my-4 {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
  }

  .home-hero--au .platform-grid {
    margin-bottom: 20px !important;
  }

  .home-hero--au .button-group {
    grid-column: 2;
    grid-row: 3;
  }

  .home-hero--au .home-hero-disclaimer {
    grid-column: 2;
    grid-row: 4;
    margin: 16px 12px 0 !important;
    text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .home-hero {
    min-height: 0;
    padding: 40px 0 72px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .home-hero--au .home-hero-copy--au {
    margin-top: 0 !important;
  }

  .home-hero--au .home-hero-au-heading > .title {
    display: block;
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(48px, 6vw, 64px);
    line-height: 1.1;
  }

  .home-hero--au .home-hero-video {
    max-width: 640px;
  }
}

@media only screen and (max-width: 767px) {
  .home-hero {
    padding: 24px 0 56px;
  }

  .home-hero--au .home-hero-copy--au {
    margin-top: 0 !important;
  }

  .home-hero--au .home-hero-video {
    margin-bottom: 32px;
  }
}

/*--------------------------------------------------
    Hero video teaser: real YouTube thumbnail behind
    a pulsing-ring play button (replaces the old
    demo-screenshot + rounded-player combo).
----------------------------------------------------*/
.lp-hero-teaser__link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background-color: #0f0f11;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 20px 44px -16px rgba(0, 30, 60, 0.55),
    0 0 0 1px rgba(5, 157, 255, 0.22);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.lp-hero-teaser__link:hover,
.lp-hero-teaser__link:focus-visible {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 30px 60px -16px rgba(0, 30, 60, 0.65),
    0 0 0 1px rgba(5, 157, 255, 0.4),
    0 0 46px 4px rgba(5, 157, 255, 0.28);
}

.lp-hero-teaser__link:focus {
  outline: none;
}

.lp-hero-teaser__link:focus-visible {
  outline: 3px solid var(--color-primary-alt, #059dff);
  outline-offset: 4px;
}

.lp-hero-teaser__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 46%,
    rgba(6, 8, 14, 0.6) 0%,
    rgba(6, 8, 14, 0.18) 34%,
    transparent 58%
  );
}

.lp-hero-teaser__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 14, 0.05) 0%,
    rgba(6, 8, 14, 0.1) 45%,
    rgba(6, 8, 14, 0.82) 100%
  );
}

.lp-hero-teaser__play {
  position: absolute;
  z-index: 3;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-teaser__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transform: scale(0.9);
  opacity: 0;
  animation: lpHeroPulse 3s cubic-bezier(0.22, 0.72, 0.36, 1) infinite;
  pointer-events: none;
}

.lp-hero-teaser__ring--2 {
  animation-delay: 1s;
}

.lp-hero-teaser__ring--3 {
  animation-delay: 2s;
}

@keyframes lpHeroPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.65;
  }
  70% {
    opacity: 0.12;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

.lp-hero-teaser__link:hover .lp-hero-teaser__ring,
.lp-hero-teaser__link:focus-visible .lp-hero-teaser__ring {
  animation-duration: 1.5s;
}

.lp-hero-teaser__btn {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    150deg,
    var(--color-primary-alt, #059dff) 0%,
    var(--color-primary, #005397) 100%
  );
  box-shadow:
    0 10px 26px -6px rgba(0, 10, 30, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 30px 2px rgba(5, 157, 255, 0.45);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  font-size: 30px;
  color: #ffffff;
}

.lp-hero-teaser__btn i {
  position: relative;
  top: 1px;
  left: 2px;
}

.lp-hero-teaser__link:hover .lp-hero-teaser__btn,
.lp-hero-teaser__link:focus-visible .lp-hero-teaser__btn {
  transform: scale(1.08);
  box-shadow:
    0 14px 32px -6px rgba(0, 10, 30, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 0 42px 6px rgba(5, 157, 255, 0.65);
}

.lp-hero-teaser__pill {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.45);
}

.lp-hero-teaser__pill i {
  flex: none;
  font-size: 11px;
  color: #1a1a2e;
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-teaser__ring {
    animation: none !important;
  }
}

body.active-light-mode .lp-hero-teaser__link {
  box-shadow:
    0 18px 40px -14px rgba(6, 6, 6, 0.28),
    0 0 0 1px rgba(6, 6, 6, 0.08);
}
