/* Hero refresh: stronger visual balance without changing the page structure. */
.hero {
  background:
    radial-gradient(circle at 76% 46%, rgba(123, 201, 255, .16), transparent 21%),
    radial-gradient(circle at 32% 80%, rgba(127, 190, 244, .12), transparent 28%),
    linear-gradient(118deg, #fbfdff 0%, #edf6fd 52%, #e6f1fa 100%);
}

.hero::before {
  display: none;
}

.hero-glow {
  opacity: .28;
  filter: none;
}

.hero-glow-a {
  width: 34vw;
  height: 34vw;
  right: 3vw;
  top: 7vw;
  background: radial-gradient(circle, rgba(122, 203, 255, .34), rgba(122, 203, 255, 0) 70%);
}

.hero-glow-b {
  width: 28vw;
  height: 28vw;
  bottom: -11vw;
  left: 27%;
  background: radial-gradient(circle, rgba(172, 220, 255, .3), rgba(172, 220, 255, 0) 70%);
}

.hero .eyebrow {
  color: #315f8b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-copy {
  max-width: 570px;
  margin: 30px 0 38px;
  color: #405d78;
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 500;
  line-height: 1.8;
}

.hero-orbit {
  right: max(6vw, 58px);
  width: clamp(320px, 32vw, 470px);
  border-color: rgba(35, 119, 186, .54);
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .12);
}

.hero-orbit::before {
  border-color: rgba(45, 132, 198, .45);
}

.hero-orbit::after {
  border-color: rgba(23, 124, 245, .58);
}

.hero-orbit .orbit-label {
  z-index: 2;
  color: #1c629d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.25px;
  cursor: default;
  outline: 0;
}

.hero-orbit .orbit-brand { top: 4%; left: 39%; }
.hero-orbit .orbit-content { right: -8%; bottom: 19%; }
.hero-orbit .orbit-growth { top: 48%; left: -12%; }

.hero-orbit .orbit-label small {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: max-content;
  max-width: 150px;
  padding: 7px 10px;
  border: 1px solid rgba(87, 151, 202, .34);
  border-radius: 7px;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 8px 24px rgba(30, 88, 134, .12);
  color: #345a7b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity .2s ease, transform .2s ease;
}

.hero-orbit .orbit-label:hover small,
.hero-orbit .orbit-label:focus small {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-orbit .orbit-plus {
  color: #0d74d8;
  font-weight: 400;
  text-shadow: 0 4px 18px rgba(29, 124, 234, .18);
}

.hero-orbit > p {
  position: absolute;
  bottom: -43px;
  left: 50%;
  width: max-content;
  margin: 0;
  color: #477293;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  transform: translateX(-50%);
}

@media (max-width: 800px) {
  .hero-glow {
    display: none;
  }

  .hero-copy {
    max-width: 410px;
    font-size: 17px;
    line-height: 1.75;
  }

  .hero-orbit {
    right: -45px;
    bottom: 45px;
    width: 240px;
    box-shadow: none;
  }

  .hero-orbit > p,
  .hero-orbit .orbit-label small {
    display: none;
  }
}
