.site-footer {
    position: relative;
    margin-top: -1px;
    overflow: hidden;
    padding: 58px 0 0;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 0%, rgba(119, 72, 255, 0.17), transparent 29%),
        radial-gradient(circle at 88% 16%, rgba(68, 188, 255, 0.07), transparent 25%),
        #15101f;
}

.site-footer::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(194, 169, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 169, 255, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.65) 52%, transparent 100%);
}

.site-footer::after {
    position: absolute;
    top: 0;
    right: 6%;
    left: 6%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(194, 169, 255, 0.26), transparent);
}

.site-footer__container,
.site-footer__bottom {
    position: relative;
    z-index: 2;
}

.site-footer__container {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(480px, 1.08fr);
    gap: 90px;
    padding-bottom: 48px;
}

.site-footer__logo {
    display: inline-flex;
    width: fit-content;
}

.site-footer__brand img {
    width: 184px;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

.site-footer__brand p {
    max-width: 390px;
    margin: 23px 0 22px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
    line-height: 1.68;
}

.site-footer__status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.site-footer__status i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #19c988;
    box-shadow: 0 0 12px rgba(25, 201, 136, 0.65);
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    justify-self: end;
    width: min(100%, 580px);
}

.site-footer__links h3 {
    margin-bottom: 20px;
    color: #b7a8d8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.site-footer__links a {
    position: relative;
    display: block;
    width: fit-content;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.35;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__links a::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    content: "";
    background: #9a7cff;
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: left;
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer__links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.site-footer__links a:hover::after {
    opacity: 0.8;
    transform: scaleX(1);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.36);
    font-size: 10px;
}

.site-footer__bottom a {
    color: #bca4ff;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__bottom a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 860px) {
    .site-footer {
        padding-top: 52px;
    }

    .site-footer__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .site-footer__links {
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .site-footer {
        padding-top: 46px;
    }

    .site-footer__links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}
