/* 🪐 Full-height landing */
.landing-hero {
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: transparent;
}

/* 👤 Hero Name */
/* 👤 Hero Name */
.hero-name {
  font-family: 'Orbitron', monospace;
  font-size: 5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  /* text color fallback */

  /* Holo Shine Gradient */
  background: linear-gradient(135deg,
      #00fff7 10%,
      #ffffff 25%,
      #00fff7 40%,
      #0099ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;

  letter-spacing: 3px;
  position: relative;
  opacity: 0;
  animation:
    scanIn 1.5s ease-out forwards,
    shine 3s linear infinite,
    holoFloat 6s ease-in-out infinite;

  text-shadow:
    0 0 10px rgba(0, 255, 247, 0.4),
    0 0 20px rgba(0, 255, 247, 0.2);
}

.hero-name::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  /* Sliding Gradient Glow */
  background: linear-gradient(135deg,
      #00fff7 10%,
      rgba(255, 255, 255, 0.8) 25%,
      #00fff7 40%,
      #0099ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  filter: blur(8px);
  opacity: 0.6;

  /* Synced shine with main text plus pulse */
  animation:
    shine 3s linear infinite,
    pulseGlow 2s infinite alternate;
}

@keyframes holoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    filter: blur(5px);
  }

  100% {
    opacity: 0.7;
    filter: blur(12px);
  }
}

/* 💬 Subtagline */
.subtagline {
  font-size: 1.3rem;
  font-family: 'Share Tech Mono', monospace;
  color: #aaa;
  opacity: 0;
  animation: fadeUp 1.5s ease-out forwards 0.5s;
}

/* 🎯 CTA Buttons */
.cta-buttons a.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards 0.8s;
}

.cta-buttons a.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
}

/* ⬇️ Scroll Down Indicator */
.scroll-down-indicator {
  font-size: 2rem;
  color: #00fff7;
  animation: bounceDown 1.5s infinite 2s;
}

/* 📽️ Scan In Animation */
@keyframes scanIn {
  0% {
    transform: scaleY(0.2) skewY(10deg);
    opacity: 0;
    filter: blur(10px);
  }

  60% {
    transform: scaleY(1.1);
    opacity: 0.7;
    filter: blur(3px);
  }

  100% {
    transform: scaleY(1) skewY(0deg);
    opacity: 1;
    filter: blur(0);
  }
}

/* 🎞️ Fade Up Animation */
@keyframes fadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 📡 Bouncing Scroll Arrow */
@keyframes bounceDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* 💫 Responsive Tweaks */
@media (max-width: 768px) {
  .hero-name {
    font-size: 2.8rem;
  }

  .subtagline {
    font-size: 1.1rem;
  }

  .cta-buttons a.btn {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}