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

.hero {
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 40%, #06b6d4 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -8%;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero__description {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 580px;
    line-height: 1.65;
}

.hero__badges {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: no-preference) {
    .hero__badge {
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 860px) {
    .hero {
        padding: 2rem 1.5rem;
    }

    .hero__title {
        font-size: 1.625rem;
    }
}
