.footer {
    margin: 56px 0 24px;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02),
            transparent 28%
        ),
        var(--bg-0);
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd6ee;
    justify-self: start;
}

.footer__links {
    display: inline-flex;
    gap: 16px;
    justify-self: center;
}

.footer__links a {
    color: #cbd6ee;
    font-weight: 500;
}

.footer__links a:hover {
    color: #fff;
}

.footer__socials {
    display: inline-flex;
    gap: 10px;
    justify-self: end;
}

.social {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #cbd6ee;
    background: linear-gradient(180deg, #121a2c, #0e1424);
    border: 1px solid var(--border);
    transition: transform 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.social:hover {
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.footer__legal {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #97a3c3;
    margin-top: 6px;
    font-size: 0.95rem;
}
