/* ===================================
   HERO SECTION STYLES
   =================================== */

.hero {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 159, 255, 0.1) 0%, 
        rgba(155, 127, 237, 0.1) 50%,
        rgba(255, 143, 184, 0.1) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Hero Text */
.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(107, 159, 255, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(107, 159, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #2B3A42 0%, #6B9FFF 50%, #9B7FED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-trust {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-trust span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.3s both;
}

.tv-mockup {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 159, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.tv-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(107, 159, 255, 0.3);
}

.tv-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.tv-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(107, 159, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0.5;
    animation: pulse 4s ease-in-out infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Floating elements for Y2K vibe */
/* Optional: Replace with gradient circles */
.hero::before {
    content: '';
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(107, 159, 255, 0.3), transparent);
    border-radius: 50%;
    /* ... rest of positioning */
}

.hero::after {
    content: '';
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(155, 127, 237, 0.3), transparent);
    border-radius: 50%;
    /* ... rest of positioning */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}


