/* ─────────────────────────────────────────
   HERO — Full-viewport intro section
───────────────────────────────────────── */

#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  text-align: center;
}

/* ── Background Orb ── */
.orb-shell {
  position: absolute;
  top: 50%; left: 50%;
  width: min(800px, 110vw);
  height: min(800px, 110vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orb {
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.06) 0%, transparent 32%),
    radial-gradient(circle at 66% 74%, rgba(255,255,255,0.02) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, #1b1b1b 0%, #0e0e0e 40%, #080808 68%, #040404 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.035),
    0 0 100px 30px rgba(0,0,0,0.95),
    inset 0 2px 40px rgba(255,255,255,0.035),
    inset 0 -10px 60px rgba(0,0,0,0.7);
  animation: orb-breathe 9s ease-in-out infinite;
}

.orb::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    transparent 0%,    rgba(232,69,106,0.07) 18%,  transparent 36%,
    rgba(0,212,255,0.07) 55%, transparent 72%,
    rgba(245,166,35,0.06) 88%, transparent 100%);
  animation: orb-spin 22s linear infinite;
  filter: blur(10px);
}

.orb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 37% 28%, rgba(255,255,255,0.07) 0%, transparent 22%);
}

/* ── Particles ── */
.pts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.pt {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: pt-rise linear infinite;
}

/* ── Hero Image ── */
.hero-img-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
  animation: hero-float 7s ease-in-out infinite;
}

.hero-img {
  width: min(700px, 88vw);
  filter: drop-shadow(0 24px 70px rgba(0,0,0,0.98)) drop-shadow(0 4px 30px rgba(0,0,0,0.8));
}

/* ── Hero Text ── */
.hero-text { position: relative; z-index: 2; }

h1.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.6rem, 9.5vw, 7.2rem);
  letter-spacing: 0.05em;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 18px;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-sub-item { padding: 0 16px; }
.hero-sub-item + .hero-sub-item { border-left: 1px solid rgba(255,255,255,0.12); }

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Scroll Cue ── */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  animation: sc-float 2.6s ease-in-out infinite;
}

.scroll-cue span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  #hero { padding: 0 16px; }
  .orb-shell { width: 280px; height: 280px; }
  .hero-img { width: 94vw; }
}

@media (max-width: 420px) {
  .hero-sub { flex-direction: column; gap: 4px; }
  .hero-sub-item + .hero-sub-item {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 8px;
  }
}
