.hero{
  height: 90vh;
  max-height: 800px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  
  background-color: rgba(0, 0, 0, .1);
  background-attachment: scroll;
  background-size: 200% 200%;
  background-position: left center;

  box-shadow: inset 0 64px 128px rgba(0, 0, 0, 1);

}
.hero::before{
  content: " ";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 110%;
  height: 120%;

  
  background-image:
    url("/assets/img/grid-e825227498.svg");
  background-size: auto, cover;
  background-position: center, center bottom;
  background-repeat: repeat, no-repeat;

  
  -webkit-mask-image: url('/assets/img/mask-hero-1a8aa80c3e.svg');
  mask-image: url('/assets/img/mask-hero-1a8aa80c3e.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: left top;
  mask-position: left top;

  z-index: 2;
  will-change: transform;
  transform: translateY(var(--parallax-offset, 0px));
  pointer-events: none;
  display: none;
}
.hero::after{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle, rgba(3, 3, 6, 0.4) 0%, rgba(3, 3, 6, .7) 100%),
    radial-gradient(circle at bottom left, #1a808d -100%, transparent 80%);
  content: " ";
  z-index: 1;
}
.hero .container{
  z-index: 2 !important;
  display: flex;
  flex-direction: column;
  height: 100%;

  padding-bottom: var(--space-2xl);
}
.story-hero{
  padding-top: var(--space-6xl);
  padding-bottom: var(--space-3xl);
  text-align: center;
}
.story-hero .hero-title{
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-lg);
  text-wrap: balance;
}
.story-hero .hero-title .thin{
  font-weight: 300;
  color: var(--color-text-secondary);
  display: block;
  margin-bottom: var(--space-xs);
}
.story-hero .lead{
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}