.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; padding-top: var(--nav-height); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.mesh-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 80% -20%, rgba(255, 122, 89, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 70% 90% at 100% 60%, rgba(255, 143, 113, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 80% 80% at 30% -10%, rgba(99, 91, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 50% 120%, rgba(0, 212, 170, 0.1) 0%, transparent 60%);
    animation: meshMove 12s ease-in-out infinite alternate;
    filter: blur(40px);
    opacity: 0.9;
}
@keyframes meshMove {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}
.hero-container { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 50px;
    background: rgba(99,91,255,0.1); border: 1px solid var(--color-border);
    color: var(--color-primary-light); font-size: 0.85rem; font-weight: 500;
    margin-bottom: 32px; animation: fadeInUp 0.8s ease;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800;
    margin-bottom: 24px; letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
    font-size: 1.2rem; color: var(--color-text-muted); max-width: 600px;
    margin: 0 auto 40px; line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-proof {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-top: 48px; animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-proof p { color: var(--color-text-muted); font-size: 0.9rem; }
.hero-avatars { display: flex; }
.avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; color: #fff;
    border: 2px solid var(--color-bg); margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}