.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 8vw;
}
.heading {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.heading .hl-cyan {
  color: var(--accent);
  text-shadow: var(--glow-md);
  font-size: 0.9em;
}
.heading .hl-gold {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 215, 0, 0.45);
  font-size: 0.7em;
}
.right .hero-sub {
  font-size: 13px;
  line-height: 1.85;
  color: var(--dim);
  margin: 26px 0 44px;
  max-width: 440px;
  border-left: 2px solid rgba(0, 229, 255, 0.25);
  padding-left: 18px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-ind {
  position: fixed;
  bottom: 44px;
  right: 8vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-ind span {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--dim);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: pulse 2s ease-in-out infinite;
}
.orbit-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 0.4s forwards;
}
/* responsive for mobile */
@media (max-width: 768px) {
  .hero {
    top: 50%;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 0 6vw;
    gap: 32px;
  }
  /* .space {
    height: 30vh;
  } */
  .right {
    margin-top: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .right .hero-sub {
    border-left: none;
    padding-left: 0;
    max-width: none;
  }
  .scroll-ind {
    right: 6vw;
  }
  .left {
    display: none;
  }
}
/* ─── BACKGROUND ─── */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.15),
    transparent 60%
  );
  pointer-events: none;
}
