
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0a0a1f 0%, #000000 70%);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* 3D Canvas Container */
.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.hero__title {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-regular);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUpFade 1s ease 0.5s forwards;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: slideUpFade 1s ease 0.8s forwards;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 4rem;
}

.scroll-indicator:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
}

/* Animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  40% {
    transform: rotate(-45deg) translateY(-6px);
  }
  60% {
    transform: rotate(-45deg) translateY(-3px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero__content {
    padding: 1rem;
  }
  
  .scroll-indicator {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}