.we-hero{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;

  overflow: visible;
  padding: clamp(80px, 6vw, 120px) 0 clamp(80px, 6vw, 120px);
  position: relative;
}

.we-hero__inner{
  width: var(--container, min(1200px, 86vw));
  margin: 0 auto;
}

.we-hero__content{
  max-width: 880px;
  color: #fff;
}

.we-hero__kicker{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 18px;
}

.we-hero__title{
  margin: 0 0 20px;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
}

.we-hero__subtitle{
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  max-width: 820px;
}

.we-hero__cta{
  margin-top: 30px;
}

.we-hero__btn{
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;

  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;

  font-weight: 600;
  font-size: 16px;
  text-decoration: none;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: all .2s ease;
}

.we-hero__btn:hover{
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}

.we-hero__anim{
  transform: none;
  filter: none;
}

body.we-loaded .we-hero__anim{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  animation: weHeroIn .78s cubic-bezier(.2,.9,.2,1) forwards;
  will-change: transform, opacity, filter;
}

body.we-loaded .we-hero__anim-1{ animation-delay: .10s; }
body.we-loaded .we-hero__anim-2{ animation-delay: .20s; }
body.we-loaded .we-hero__anim-3{ animation-delay: .30s; }
body.we-loaded .we-hero__anim-4{ animation-delay: .40s; }

@keyframes weHeroIn{
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce){
  body.we-loaded .we-hero__anim{
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 900px){
  .we-hero{
    padding: 70px 0 70px;
  }
  .we-hero__content{
    max-width: 95%;
  }
}
