.hero-home {
  background: #0b0c10;
  color: #fff;
}

.hero-home::before {
  opacity: .92;
  filter: saturate(1.12) contrast(1.08) brightness(.82);
}

.hero-home::after {
  background:
    linear-gradient(90deg, rgba(6, 7, 10, .96) 0%, rgba(6, 7, 10, .76) 43%, rgba(6, 7, 10, .18) 100%),
    radial-gradient(circle at 76% 18%, rgba(255, 207, 0, .28), transparent 28%),
    linear-gradient(180deg, rgba(6, 7, 10, .14) 0%, rgba(6, 7, 10, .7) 100%);
}

.hero-home .eyebrow {
  color: var(--brand-yellow);
}

.hero-home h1 {
  color: #fff;
  font-size: clamp(58px, 9vw, 122px);
  letter-spacing: 0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .5);
}

.hero-home .lead {
  max-width: 690px;
  color: rgba(255, 255, 255, .86);
}

.hero-home .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .04);
}

.hero-home .hero-metrics div {
  background: rgba(6, 7, 10, .68);
  border-color: rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
}

.hero-home .hero-metrics dt {
  color: #fff;
}

.hero-home .hero-metrics dd {
  color: rgba(255, 255, 255, .74);
}

.hero-stage {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .045));
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .42);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 34px 26px auto auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 207, 0, .32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 0, .24), transparent 64%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 204, .42), transparent 66%);
}

.hero-stage-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 72px;
}

.hero-stage-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(255, 207, 0, .25));
}

.hero-stage-brand strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-stage-brand span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-stage-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.hero-stage-lines span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 207, 0, .9), rgba(255, 255, 255, .48), transparent);
  box-shadow: 0 0 24px rgba(255, 207, 0, .25);
}

.hero-stage-lines span:nth-child(2) {
  width: 78%;
  margin-left: auto;
  background: linear-gradient(90deg, transparent, rgba(41, 151, 255, .72), rgba(255, 255, 255, .5));
}

.hero-stage-lines span:nth-child(3) {
  width: 58%;
  background: linear-gradient(90deg, rgba(255, 255, 255, .64), rgba(0, 102, 204, .72), transparent);
}

.hero-stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-stage-grid span {
  min-height: 82px;
  display: flex;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .hero-home::after {
    background:
      linear-gradient(180deg, rgba(6, 7, 10, .94) 0%, rgba(6, 7, 10, .56) 100%),
      radial-gradient(circle at 76% 18%, rgba(255, 207, 0, .22), transparent 28%);
  }

  .hero-stage {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .hero-home::before {
    background-size: auto 88%;
    opacity: .62;
  }

  .hero-home h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-stage {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .hero-stage-brand {
    margin-bottom: 42px;
  }

  .hero-stage-brand strong {
    font-size: 28px;
  }

  .hero-stage-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage-grid span {
    min-height: 58px;
  }
}
