/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
    border-top: 1px solid var(--border);
    background: #070b14;
    padding: var(--sp-10) var(--sp-9);
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.footer-inner {
    max-width: var(--page-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    align-items: center;
}

.footer-links { display: flex; gap: var(--sp-8); }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    transition: color var(--t-normal);
}

.footer-links a:hover { color: var(--text-gray); }

.footer-disclaimer {
    font-size: var(--fs-2xs);
    color: var(--text-muted);
    opacity: .6;
    max-width: 600px;
    line-height: 1.5;
}

footer {
    border-top: 1px solid var(--border);
    background: #070b14;
    padding: 28px;
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}
