/* ═══════════════════════════════════════
   hero.css — Hero section
═══════════════════════════════════════ */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--side-pad) 80px;
  overflow: hidden;
}

/* ── Floating orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(0, 200, 255, 0.07);
  top: -100px; right: -150px;
  animation: float1 12s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: rgba(123, 79, 255, 0.08);
  bottom: -50px; left: -100px;
  animation: float2 14s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: rgba(0, 255, 200, 0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float1 10s ease-in-out infinite reverse;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 2.2rem;
  background: rgba(0, 200, 255, 0.05);
  animation: fadeUp 0.7s 0.2s both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent3);
  animation: pulse-dot 1.5s infinite;
}

/* ── Title ── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  animation: fadeUp 0.8s 0.35s both;
}

/* ── Glitch effect ── */
.glitch { position: relative; display: inline-block; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  overflow: hidden;
}
.glitch::before {
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-top 0.6s steps(2, end) infinite alternate;
  color: var(--accent);
  left: 2px;
}
.glitch::after {
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch-bot 0.7s steps(2, end) infinite alternate;
  color: var(--accent2);
  left: -2px;
}

/* ── Subtitle ── */
.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
  animation: fadeUp 0.8s 0.5s both;
}

/* ── CTA buttons ── */
.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.8rem;
  animation: fadeUp 0.8s 0.65s both;
}

/* ── Stats ── */
.hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4.5rem;
  animation: fadeUp 0.8s 0.8s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ── Marquee ticker ── */
.marquee-wrap {
  padding: 1.8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.marquee-item span { font-size: 1.2rem; }
