/*==============================================================
#
# Hero
#
==============================================================*/

.nc-hero {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(59, 130, 246, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 25%,
            rgba(139, 92, 246, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #eef5ff 0%,
            #f7f5ff 55%,
            #eefbfd 100%
        );
}
.nc-hero .nc-container {

    position: relative;

    z-index: 2;

}


/*==============================================================
# Hero Background
==============================================================*/

.nc-hero__background {

    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;

}

.nc-hero__shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .45;

    animation:
        ncHeroFloat
        16s
        ease-in-out
        infinite;

}

.nc-hero__shape--1 {

    width: 420px;

    height: 420px;

    top: -120px;

    left: -120px;

    background: #4f8cff;

}

.nc-hero__shape--2 {

    width: 320px;

    height: 320px;

    top: 140px;

    right: -80px;

    background: #93c5fd;

    animation-delay: 4s;

}

.nc-hero__shape--3 {

    width: 260px;

    height: 260px;

    bottom: -100px;

    left: 50%;

    background: #dbeafe;

    transform: translateX(-50%);

    animation-delay: 8s;

}

@keyframes ncHeroFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-30px);

    }

    100% {

        transform: translateY(0);

    }

}


/*==============================================================
# Hero Grid
==============================================================*/

.nc-hero__grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(360px, .8fr);

    gap: 64px;

    align-items: center;

}


/*==============================================================
# Hero Content
==============================================================*/

.nc-hero__content {

    max-width: 900px;

}

.nc-hero__eyebrow {

    display: inline-flex;

    align-items: center;

    padding:
        var(--nc-space-2)
        var(--nc-space-4);

    margin-bottom: var(--nc-space-5);

    border-radius: var(--nc-radius-pill);

    background: var(--nc-primary-soft);

    color: var(--nc-primary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

}

.nc-hero__title {

    margin: 0;

    color: var(--nc-text);

    font-size: clamp(
        3rem,
        5vw,
        4.8rem
    );

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -.03em;

}

.nc-hero__subtitle {

    max-width: 640px;

    margin-block: var(--nc-space-5);

    color: var(--nc-muted);

    font-size: 1.2rem;

    line-height: 1.8;

}


/*==============================================================
# Trust Items
==============================================================*/

.nc-hero__trust {

    display: flex;

    flex-wrap: wrap;

    gap: var(--nc-space-4);

    margin-block: var(--nc-space-6);

    padding: 0;

    list-style: none;

}

.nc-hero__trust li {

    display: flex;

    align-items: center;

    gap: var(--nc-space-2);

    color: var(--nc-text);

    font-weight: 600;

}


/*==============================================================
# Platform Badges
==============================================================*/

.nc-hero__platforms {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: var(--nc-space-3);

    margin-top: var(--nc-space-5);

}

.nc-badge--platform {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: var(--nc-space-3);

    min-width: 180px;

    height: 60px;

    padding-inline: var(--nc-space-4);

    background: var(--nc-surface);

    border: 1px solid var(--nc-border);

    border-radius: var(--nc-radius-md);

    box-shadow: var(--nc-shadow-sm);

    transition:
        transform var(--nc-transition),
        border-color var(--nc-transition),
        box-shadow var(--nc-transition);

}

.nc-badge--platform:hover {

    transform: translateY(-4px);

    border-color: var(--nc-primary);

    box-shadow: var(--nc-shadow-md);

}

.nc-badge--platform .nc-badge__icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: var(--nc-icon-md);

    height: var(--nc-icon-md);

    line-height: 1;

}

.nc-badge--platform .nc-badge__icon svg {

    display: block;

    width: 100%;

    height: 100%;

}

.nc-badge--platform .nc-badge__text {

    color: var(--nc-text);

    font-size: 1rem;

    font-weight: 700;

}


/*==============================================================
# Hero Search Wrapper
==============================================================*/

.nc-hero__search-panel {

    width: 100%;

    max-width: 480px;

    margin-inline: auto;

}

/* ==========================================================================
   Hero CTA
   ========================================================================== */

.nc-hero__actions {
    display: flex;
    align-items: center;
    margin-top: 28px;
}

.nc-hero__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 22px 0 26px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #4f46e5 100%
    );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.25),
        0 4px 10px rgba(0, 0, 0, 0.08);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.nc-hero__button::before {
    content: "";
    position: absolute;
    inset: 1px;

    border-radius: 13px;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12),
        transparent 55%
    );

    pointer-events: none;
}

.nc-hero__button:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #1d4ed8 0%,
        #4338ca 100%
    );

    color: #ffffff;

    box-shadow:
        0 14px 32px rgba(37, 99, 235, 0.32),
        0 6px 14px rgba(0, 0, 0, 0.10);
}

.nc-hero__button:active {
    transform: translateY(0);

    box-shadow:
        0 7px 16px rgba(37, 99, 235, 0.22);
}

.nc-hero__button:focus-visible {
    outline: 3px solid rgba(96, 165, 250, 0.45);
    outline-offset: 3px;
}

.nc-hero__button span {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.14);

    font-size: 17px;

    transition:
        transform 180ms ease,
        background 180ms ease;
}

.nc-hero__button:hover span {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.22);
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px) {

    .nc-hero__actions {
        margin-top: 24px;
    }

    .nc-hero__button {
        min-height: 50px;
        padding-right: 18px;
        padding-left: 22px;
        font-size: 14px;
    }

}
/*==============================================================
# Responsive
==============================================================*/

@media (max-width: 1024px) {

    .nc-hero {

        padding-block: 64px;

    }

    .nc-hero__grid {

        grid-template-columns: 1fr;

        gap: 48px;

        text-align: center;

    }

    .nc-hero__content {

        max-width: 760px;

        margin-inline: auto;

    }

    .nc-hero__subtitle {

        margin-inline: auto;

    }

    .nc-hero__trust {

        justify-content: center;

    }

    .nc-hero__search-panel {

        max-width: 480px;

    }

}


@media (max-width: 768px) {

    .nc-hero {

        padding-block: 56px;

    }

    .nc-hero__title {

        font-size: clamp(
            2.5rem,
            8vw,
            3.5rem
        );

    }

    .nc-hero__subtitle {

        font-size: 1rem;

        line-height: 1.7;

    }

    .nc-hero__platforms {

        gap: var(--nc-space-2);

    }

    .nc-badge--platform {

        min-width: 150px;

        height: 56px;

    }

}