.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse at top, rgba(249,115,22,0.10), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(249,115,22,0.05), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin-bottom: 0.75rem;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(255, 107, 74, 0.35));
  opacity: 0;
  animation: fadeIn 0.8s 0.2s forwards ease;
}

.hero-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
  animation: logoFloat 5s 1s ease-in-out infinite;
}

.hero-badge {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.6s forwards cubic-bezier(0.4,0,0.2,1), float 6s 1.4s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0.5rem 0;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title .line-1 { animation: fadeUp 0.9s 0.9s forwards cubic-bezier(0.4,0,0.2,1); }
.hero-title .line-2 { animation: fadeUp 0.9s 1.1s forwards cubic-bezier(0.4,0,0.2,1); }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 1.3s forwards cubic-bezier(0.4,0,0.2,1);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 1.5s forwards cubic-bezier(0.4,0,0.2,1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--orange);
  opacity: 0.7;
  animation: blink 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--orange-border);
}

@media (max-width: 640px) {
  .hero { padding: 5rem 1rem 3rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
}
