/* ========== HERO ========== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(10, 132, 255, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom, rgba(191, 90, 242, 0.1) 0%, transparent 50%),
              var(--bg);
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 980px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-tag .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-3);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.7); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(48, 209, 88, 0); }
}

.hero h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, #0a84ff 0%, #bf5af2 50%, #ff375f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 10%;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-2);
  bottom: 5%;
  right: -150px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}
