.impact-number {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.orbit {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(215, 223, 35, 0.45);
  border-radius: 50%;
  position: relative;
}
.orbit:after {
  content: "∞";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 8rem;
  font-weight: 300;
  color: #d7df23;
}
.orbit-dot {
  width: 16px;
  height: 16px;
  background: #d7df23;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 50%;
  transform-origin: 0 130px;
  animation: orbit 8s linear infinite;
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-dot {
    animation: none;
  }
}
