.cat-orbit.hero-art {
  isolation: isolate;
  display: grid;
  place-items: center;
  border-color: #404952;
  background:
    radial-gradient(circle at 50% 48%, rgba(216, 255, 82, 0.11), transparent 46%),
    repeating-radial-gradient(circle, transparent 0 53px, rgba(216, 255, 82, 0.065) 54px 55px);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(216, 255, 82, 0.055);
}

.hero-cat {
  position: relative;
  z-index: 3;
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.5));
}

.scan-ring {
  position: absolute;
  z-index: 1;
  inset: 7%;
  border: 1px solid rgba(255, 107, 91, 0.33);
  border-radius: 50%;
}

.ring-one {
  transform: rotate(28deg) scaleY(0.68);
}

.ring-two {
  inset: 15%;
  border-color: rgba(216, 255, 82, 0.28);
  transform: rotate(-37deg) scaleY(0.74);
}

.hero-coordinate {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 7px 13px;
  background: #0b0d12;
  border: 1px solid #3b444d;
  white-space: nowrap;
}

.cat-orbit .hero-coordinate b {
  position: static;
  transform: none;
  color: var(--lime);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero-coordinate span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.18em;
}

@media (max-width: 800px) {
  .cat-orbit.hero-art {
    width: min(88vw, 470px);
    margin-bottom: 18px;
  }

  .hero-cat {
    width: 94%;
    height: 94%;
  }

  .hero-coordinate {
    bottom: 3%;
  }
}
