/* =========================================================
   BOOSTPME — FOOTER
========================================================= */

.boost-footer {
    position: relative;
    overflow: hidden;

    padding: 95px 0 28px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(80, 108, 255, .15),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(255, 79, 154, .12),
            transparent 30%
        ),
        #0c0d12;

    color: #ffffff;
}


/* ORBS */

.boost-footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
}

.boost-footer-orb-one {
    width: 360px;
    height: 360px;
    left: -180px;
    top: -150px;
    background: rgba(80, 108, 255, .18);
}

.boost-footer-orb-two {
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -220px;
    background: rgba(255, 79, 154, .14);
}


/* CONTAINER */

.boost-footer-container {
    position: relative;
    z-index: 2;
}


/* TOP */

.boost-footer-top {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;

    padding-bottom: 65px;
}


/* BRAND */

.boost-footer-brand {
    max-width: 620px;
}

.boost-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 40px;

    color: #ffffff;
    text-decoration: none;
}

.boost-footer-symbol {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #506cff,
            #9358ff,
            #ff5799
        );

    font-size: 17px;
    font-weight: 800;

    box-shadow:
        0 12px 30px
        rgba(100, 80, 255, .25);
}

.boost-footer-brand-text {
    display: flex;
    flex-direction: column;
}

.boost-footer-brand-text strong {
    font-size: 17px;
    line-height: 1;
}

.boost-footer-brand-text small {
    margin-top: 4px;

    color: rgba(255,255,255,.38);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.boost-footer-brand h2 {
    max-width: 600px;

    margin: 0;

    font-size:
        clamp(
            43px,
            5vw,
            72px
        );

    line-height: .95;

    letter-spacing: -3px;

    font-weight: 500;
}

.boost-footer-brand h2 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #627bff,
            #9c60ff,
            #ff5d9e,
            #ff9950
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.boost-footer-brand > p {
    max-width: 480px;

    margin: 25px 0 0;

    color: rgba(255,255,255,.45);

    font-size: 13px;
    line-height: 1.7;
}

.boost-footer-demo {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    min-height: 48px;

    margin-top: 28px;
    padding: 0 17px;

    border-radius: 11px;

    background: #ffffff;
    color: #17151c;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.boost-footer-demo:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.22);
}


/* NAVIGATION */

.boost-footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;

    padding-top: 10px;
}

.boost-footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.boost-footer-label {
    display: block;

    margin-bottom: 9px;

    color: rgba(255,255,255,.30);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.boost-footer-column a,
.boost-footer-text-link {
    color: rgba(255,255,255,.57);

    font-size: 10px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.boost-footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* TECH */

.boost-footer-tech {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    padding: 22px 0;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}

.boost-footer-tech span {
    color: rgba(255,255,255,.22);

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.boost-footer-tech i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #6d7dff,
            #ff589b
        );
}


/* BOTTOM */

.boost-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 27px;

    color: rgba(255,255,255,.25);

    font-size: 8px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .boost-footer-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}

@media (max-width: 650px) {

    .boost-footer {
        padding-top: 75px;
    }

    .boost-footer-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .boost-footer-brand h2 {
        letter-spacing: -2px;
    }

    .boost-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 440px) {

    .boost-footer-navigation {
        grid-template-columns: 1fr;
    }

}