.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 8rem 0 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.gradient-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; animation: floatOrb 20s ease-in-out infinite; }
.orb-1 { width: 600px; height: 600px; background: rgba(139, 92, 246, 0.2); top: -15%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: rgba(34, 211, 238, 0.15); bottom: -10%; right: -10%; animation-delay: -7s; }
@keyframes floatOrb { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-30px) scale(1.05)} 66%{transform:translate(-20px,20px) scale(0.95)} }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(139,92,246,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(139,92,246,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 500;
  color: var(--brand-cyan); background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.2);
  padding: 0.5rem 1.25rem; border-radius: 100px; margin-bottom: 2rem;
}
.badge-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-cyan); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-title { margin-bottom: 1.5rem; }
.title-greeting { display: block; font-size: 1.1rem; font-weight: 400; color: var(--text-secondary); margin-bottom: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; }
.title-name {
  display: block; font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 50%, #f1f5f9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 0.5rem;
}
.title-role-wrapper { display: inline-block; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 500; color: var(--text-secondary); height: 2em; line-height: 2em; }
#typedRole { color: var(--brand-violet); font-weight: 600; }
.cursor-blink { font-weight: 100; color: var(--brand-violet); animation: blink 1s step-end infinite; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }
.hero-subtitle { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-secondary); max-width: 650px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 3rem; }
.stat-item { display: flex; flex-direction: column; align-items: center; position: relative; }
.stat-number { font-size: 2.5rem; font-weight: 800; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-plus { font-size: 2rem; font-weight: 800; color: var(--brand-violet); position: absolute; top: 0; right: -18px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; text-align: center; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.08); }
.hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.15); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 8px; background: var(--brand-violet); border-radius: 2px; animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }

@media (max-width: 768px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 100%; height: 1px; }
  .stat-plus { position: static; display: inline; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
