.hero {
  position: relative;
  overflow: hidden;
}

.orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orbs i {
  position: absolute;
  border-radius: 50%;
  opacity: 0.28;
  animation: drift 22s ease-in-out infinite;
}

.orbs i:nth-child(1) {
  width: 200px;
  height: 200px;
  left: -50px;
  top: 12%;
  background: #9fe1d8;
}

.orbs i:nth-child(2) {
  width: 140px;
  height: 140px;
  right: 8%;
  top: 20%;
  background: #c7d2fe;
  animation-duration: 26s;
}

.orbs i:nth-child(3) {
  width: 110px;
  height: 110px;
  left: 42%;
  bottom: 8%;
  background: #bbf7d0;
  animation-duration: 30s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, -18px);
  }
}

.hero .chips,
.hero h1,
.hero .lede,
.hero-ctas,
.hero .brands,
.hero-media,
.hero-badge {
  animation: hero-in 1.6s ease both;
}

.hero .chips {
  animation-delay: 0.1s;
}

.hero h1 {
  animation-delay: 0.28s;
}

.hero .lede {
  animation-delay: 0.48s;
}

.hero-ctas {
  animation-delay: 0.68s;
}

.hero .brands {
  animation-delay: 0.86s;
}

.hero-media {
  animation-delay: 0.35s;
}

.hero-badge {
  animation-delay: 1.1s;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-media img {
  animation: ken 36s ease-in-out infinite alternate;
}

@keyframes ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}
