/* A cinematic, full-width home hero that keeps the supplied motion unmistakably visible. */
.hero-prominent {
  --hero-gutter: max(32px, calc((100vw - 1240px) / 2));
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 650px;
  margin: 0;
  padding: 92px var(--hero-gutter) 98px;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  gap: 28px;
  background: #020807;
  overflow: hidden;
}

.hero-prominent .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-prominent .eyebrow {
  color: #a8e486;
}

.hero-prominent h1 {
  max-width: 650px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-prominent h1 em {
  color: #b2ee8e;
}

.hero-prominent .hero-summary {
  max-width: 555px;
  color: #d0ddd7;
}

.hero-prominent .button-dark {
  background: #a5e37f;
  color: #09221b;
}

.hero-prominent .button-dark:hover,
.hero-prominent .button-dark:focus-visible {
  background: #c3f3a8;
}

.hero-prominent .text-link {
  color: #fff;
  border-color: rgba(194, 232, 207, 0.68);
}

.hero-prominent .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #020807;
}

.hero-prominent .hero-video {
  opacity: 0.98;
  object-position: 68% center;
  filter: saturate(0.78) contrast(1.2) brightness(1.13);
}

.hero-prominent .hero-visual::after {
  background: linear-gradient(
    90deg,
    #020807 0%,
    rgba(2, 8, 7, 0.94) 21%,
    rgba(2, 8, 7, 0.67) 40%,
    rgba(2, 8, 7, 0.13) 68%,
    rgba(2, 8, 7, 0.12) 100%
  );
}

@media (max-width: 780px) {
  .hero-prominent {
    --hero-gutter: 24px;
    min-height: 650px;
    padding-top: 82px;
    padding-bottom: 76px;
    display: flex;
    align-items: center;
  }

  .hero-prominent .hero-copy {
    max-width: 100%;
  }

  .hero-prominent .hero-video {
    object-position: 62% center;
    filter: saturate(0.7) contrast(1.17) brightness(1.02);
  }

  .hero-prominent .hero-visual::after {
    background: linear-gradient(90deg, rgba(2, 8, 7, 0.93), rgba(2, 8, 7, 0.62) 72%, rgba(2, 8, 7, 0.34));
  }
}
