/* ======================================
   DOPAMINE -- Hero
   css/hero.css
   ====================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--nav-h) 2rem 4rem;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}
.hero-orb-1 {
  width: 380px; height: 380px;
  background: var(--gold-light);
  top: -120px; left: -100px;
  animation: float 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  background: var(--gold);
  bottom: -100px; right: -80px;
  animation: float 11s ease-in-out infinite reverse;
}

.hero-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  z-index: 0;
}
.hero-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.hero-ring:nth-child(1) { inset: 60px; animation: spin-slow 40s linear infinite; }
.hero-ring:nth-child(2) { inset: 120px; animation: spin-slow 30s linear infinite reverse; }
.hero-ring:nth-child(3) { inset: 180px; animation: spin-slow 50s linear infinite; }
.hero-ring:nth-child(4) { inset: 0; opacity: 0.4; }

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.hero-eyebrow {
  position: relative; z-index: 1;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-title {
  position: relative; z-index: 1;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 6rem);
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.hero-subtitle {
  position: relative; z-index: 1;
  margin-top: 1.4rem;
  max-width: 520px;
  font-size: 1rem;
  color: var(--text-3);
  line-height: 1.75;
}
.hero-cta {
  position: relative; z-index: 1;
  display: flex;
  gap: 14px;
  margin-top: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-bar {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (max-width: 600px) {
  .hero-rings { display: none; }
}
