/**
 * High Leverage Humans - Ultra Impact Hero Section
 * Premium domain-worthy hero design for maximum conversion
 */

/* EXCLUSIVE ACCESS BADGE */
.hero-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-charcoal);
    background: linear-gradient(135deg, 
        var(--color-neon-blue) 0%, 
        var(--color-neon-blue-light) 100%);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 230, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--color-neon-blue) 0%, 
        var(--color-electric-red) 50%, 
        var(--color-neon-blue) 100%);
    border-radius: 52px;
    z-index: -1;
    background-size: 400% 400%;
    animation: badgeBorderGlow 4s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes badgeBorderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ENHANCED MAIN HEADLINE - CLEAN VERSION */
.hero .hero-main-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 5rem) !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, 
        var(--color-white) 0%, 
        var(--color-neon-blue) 40%, 
        var(--color-white) 60%, 
        var(--color-electric-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    position: relative;
    opacity: 1 !important;
    animation: heroTextReveal 1.5s ease-out 0.5s both;
    text-shadow: 0 0 60px rgba(0, 230, 255, 0.3);
}

/* ENHANCED HERO DESCRIPTION */
.hero .hero-description {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    color: var(--color-gray-300);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    text-align: center;
    animation: fadeInUp 1s ease 2s both;
}

.hero .hero-description strong {
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero .hero-description .highlight {
    color: var(--color-electric-red);
    font-weight: 500;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: rgba(255, 0, 79, 0.5);
    text-underline-offset: 3px;
}

/* ULTRA PREMIUM CTA BUTTON */
.hero .cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-charcoal);
    background: linear-gradient(135deg, 
        var(--color-neon-blue) 0%, 
        var(--color-neon-blue-light) 50%, 
        var(--color-neon-blue) 100%);
    padding: 2rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 230, 255, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease 2.5s both;
}

.hero .cta-button span {
    font-size: 1.3rem;
    font-weight: 400;
}

.hero .cta-button small {
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0.02em;
}

.hero .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.hero .cta-button:hover::before {
    left: 100%;
}

.hero .cta-button::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--color-neon-blue) 0%, 
        var(--color-electric-red) 25%, 
        var(--color-neon-blue) 50%, 
        var(--color-electric-red) 75%, 
        var(--color-neon-blue) 100%);
    border-radius: 19px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 400% 400%;
    animation: ctaBorderGlow 4s linear infinite;
}

.hero .cta-button:hover::after {
    opacity: 0.8;
}

.hero .cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 230, 255, 0.6),
        0 12px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@keyframes ctaBorderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ENHANCED BACKGROUND EFFECTS */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 230, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 79, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 230, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
        line-height: 1;
        margin-bottom: 1rem;
    }
    
    .hero .tagline {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        margin-bottom: 2rem;
    }
    
    .hero .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero .cta-button {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .hero .cta-button span {
        font-size: 1.1rem;
    }
    
    .hero .cta-button small {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }
    
    .hero .cta-button {
        padding: 1.3rem 2rem;
        font-size: 1rem;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero h1,
    .hero .tagline,
    .hero .hero-description,
    .hero .cta-button {
        animation: none;
    }
    
    .hero .cta-button:hover {
        transform: scale(1.02);
    }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    .hero h1 {
        background: var(--color-white);
        -webkit-background-clip: unset;
        -webkit-text-fill-color: var(--color-white);
        background-clip: unset;
    }
    
    .hero .cta-button {
        border: 3px solid var(--color-neon-blue);
    }
}