/* ============================================
   Hero Component
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Background */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 1;
}

.hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Content */
.hero__content {
    text-align: center;
    color: var(--color-text-inverse);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero__badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--spacing-lg);
}

.hero__title-line {
    display: block;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__title-line--highlight {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__description {
    font-size: var(--font-size-xl);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-inverse);
    font-size: var(--font-size-sm);
    opacity: 0.8;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        padding-top: 64px;
    }

    .hero__title {
        font-size: var(--font-size-4xl);
    }

    .hero__description {
        font-size: var(--font-size-lg);
    }

    .hero__cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero__scroll {
        bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: var(--font-size-3xl);
    }

    .hero__description {
        font-size: var(--font-size-base);
    }
}
