/* ════════════════
   HERO
   ════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  /* ── KEY FIX: push content below the fixed nav ── */
  padding-top: var(--nav-h);
}

#hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(34,211,238,0.07) 0%, transparent 70%);
  animation: pulseGlow 5s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  top: 20%; right: 10%;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  animation: pulseGlow 7s 1s ease-in-out infinite;
}

/* social sidebar */
.hero-socials {
  position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.85rem;
  z-index: 2;
}
.hero-soc-link {
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--card);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text2);
  transition: all 0.3s var(--ease);
}
.hero-soc-link:hover { color: var(--cyan); border-color: var(--border2); transform: translateX(-3px); }
.hero-soc-link svg { width: 17px; height: 17px; flex-shrink: 0; }

/* hero content */
.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 0 5rem 2rem;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 1rem; border-radius: 100px;
  border: 1px solid rgba(34,211,238,0.28);
  background: rgba(34,211,238,0.05);
  font-family: var(--font-m); font-size: 0.72rem;
  color: var(--cyan); letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  animation: blink 1.6s ease-in-out infinite;
}

.hero-name {
  font-family: var(--font-d);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 0.3rem;
  animation: fadeInUp 0.8s 0.08s ease both;
}
.hero-name .c { color: var(--cyan); }
.hero-name .p { color: var(--purple); }

.hero-tagline {
  font-family: var(--font-d);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 500; color: var(--text2);
  min-height: 2rem; margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.16s ease both;
}
.type-cursor { animation: blink 0.9s infinite; color: var(--cyan); }

.hero-desc {
  font-size: 1rem; color: var(--text2);
  max-width: 580px; line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.24s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.75rem;
  animation: fadeInUp 0.8s 0.32s ease both;
}

.hero-roles {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-role { display: flex; align-items: center; gap: 0.45rem; color: var(--text3); font-size: 0.85rem; }
.role-dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

/* scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text3); font-size: 0.7rem;
  font-family: var(--font-m); letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeInUp 1s 1s ease both;
  z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--text3);
  border-radius: 12px; position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--cyan); border-radius: 2px;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  animation: scrollWhl 2s ease-in-out infinite;
}
