.brand-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    border-top: 1px solid rgba(148, 163, 184, 0.13);
    background:
        linear-gradient(
            180deg,
            rgba(5, 13, 27, 0.82),
            rgba(3, 9, 20, 0.96));
    backdrop-filter: blur(18px);
}

.brand-footer__inner {
    width: min(calc(100% - 48px), 1480px);
    min-height: 102px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.brand-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
    color: inherit;
    text-decoration: none;
}

.brand-footer__logo {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 10px rgba(45, 128, 255, 0.28))
        drop-shadow(0 0 12px rgba(123, 57, 255, 0.20));
}

.brand-footer__word {
    display: inline-flex;
    align-items: center;
    color: #f7f9ff;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1;
}

.brand-footer__word span {
    display: inline-block;
    margin-inline: 1px 2px;
    transform: scale(1.08);
    color: #22c9ff;
    text-shadow:
        0 0 16px rgba(34, 201, 255, 0.42);
}

.brand-footer__copyright {
    margin: 0;
    color: #7f8da4;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
}

.brand-footer__links {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #65758d;
    font-size: 12px;
}

.brand-footer__links a {
    color: #7ddfff;
    text-decoration: none;
    transition: color 150ms ease;
}

.brand-footer__links a:hover {
    color: #c7f4ff;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .brand-footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        min-height: 126px;
        padding: 24px 0;
        text-align: center;
    }

    .brand-footer__brand,
    .brand-footer__links {
        justify-self: center;
    }

    .brand-footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .brand-footer__inner {
        width: min(calc(100% - 30px), 1480px);
    }

    .brand-footer__logo {
        width: 32px;
        height: 32px;
    }

    .brand-footer__word {
        font-size: 17px;
        letter-spacing: 3px;
    }

    .brand-footer__copyright,
    .brand-footer__links {
        font-size: 11px;
    }
}
