footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    }

    .footer-links a {
        font-size: 12px;
        color: var(--text-muted);
        text-decoration: none;
        font-family: var(--font-mono);
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .footer-links a:hover { color: var(--green); }
    .footer-links a svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}