.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb1, .orb2, .orb3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--aura-blue) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--aura-electric) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-silver) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  animation: pulse-glow 6s ease-in-out infinite;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fade-in 1s ease-out;
}

.tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 6px;
  color: var(--accent-silver);
  margin-bottom: 24px;
  opacity: 0.85;
}

.title {
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 20px;
  line-height: 1.6;
  font-weight: 300;
}

.micro {
  font-size: 13px;
  color: var(--aura-electric);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0.9;
}

.fire {
  color: #d4a574;
  text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scrollIndicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--accent-silver);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

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

@keyframes pulse-glow {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(6px); }
}

@media (max-width: 768px) {
  .title {
    letter-spacing: -2px;
  }

  .subtitle {
    font-size: 16px;
  }

  .actions {
    flex-direction: column;
    align-items: center;
  }
}
