/* Root container */
.landing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  /* background: radial-gradient(circle at center, #001f3f 0%, #000814 100%); */
  overflow: hidden;
  position: relative;
}

/* Globe centered */
.globe-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
}

.globe {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
}

/* Lens moves inside the globe */
.lens {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 3;
  transition: transform 1.5s ease-in-out;
}

/* Orbit layer: where all orbits happen */
.orbit-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* Orbiting items */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0;
  transform-origin: -160px center; /* sets orbit radius */
  animation: orbit-spin 18s linear infinite;
  transition: opacity 1s ease;
}

/* Each orbit item starts at a different angle */
.orbit-item:nth-child(1) {
  animation-delay: 0s;
}

.orbit-item:nth-child(2) {
  animation-delay: -6s;
}

.orbit-item:nth-child(3) {
  animation-delay: -12s;
}

/* Orbit motion */
@keyframes orbit-spin {
  from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

/* Globe glow effect */
.globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(0, 174, 255, 0.4);
  pointer-events: none;
}
