.hero {
    min-height: 100vh;
    background: var(--gradient-light);
    padding: var(--spacing-4xl) 0 var(--spacing-lg) 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    width: 100%;
}

.hero-logo span.ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}


.hero-tech-stack {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.tech-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}


@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .cta-container {
        flex-direction: column;
    }

    .tech-stack {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero{
        padding: var(--spacing-2xl) 0 var(--spacing-lg) 0;
    }
    .hero-title {
        font-size: var(--text-2xl);;
    }

    .hero-logo {
        padding: var(--spacing-xl) var(--spacing-md);
        font-size: var(--text-5xl);
        width: 100%;
    }

}
