.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 0 80px; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 2; }
.hero-slider-controls .slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.hero-slider-controls .slider-dot.active { background: #fff; transform: scale(1.3); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.gradient-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: orbFloat 20s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: var(--color-primary); top: -10%; right: -5%; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--color-accent); bottom: -10%; left: -5%; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: var(--color-secondary); top: 50%; left: 40%; animation-delay: -14s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(40px, -30px) scale(1.1); } 50% { transform: translate(-20px, 40px) scale(0.95); } 75% { transform: translate(30px, 20px) scale(1.05); } }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; border-radius: 40px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--color-success); background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); margin-bottom: 32px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-success); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(16,185,129,0); } }
.hero-title { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.title-line { display: block; font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 500; color: var(--color-text-muted); letter-spacing: 0.02em; }
.title-name { font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 50%, var(--color-secondary) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.title-role { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; color: var(--color-primary-light); min-height: 1.6em; }
.role-cursor { display: inline-block; animation: blink 1s step-end infinite; margin-left: 2px; font-weight: 300; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--color-text-muted); max-width: 620px; margin: 0 auto 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--color-text); }
.stat-plus { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--color-primary-light); }
.stat-label { font-size: 0.8rem; color: var(--color-text-dim); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--color-border); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 1; }
.hero-scroll span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-dim); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--color-primary-light), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.4; transform: scaleY(0.6); } }
