html[data-theme="dark"] .keplerworks-footer {
    margin-top: 3rem;
    padding: 0 !important;
    text-align: left !important;
    font-size: inherit !important;
    color: inherit !important;
    border-top: 1px solid rgba(226, 232, 240, 0.14) !important;
    background: rgba(5, 6, 12, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.keplerworks-footer {
    margin-top: 3rem;
    padding: 0 !important;
    text-align: left !important;
    font-size: inherit !important;
    color: inherit !important;
}

.keplerworks-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.25rem 1.5rem 1.25rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.25rem 2rem;
}

.keplerworks-footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

html[data-theme="dark"] .keplerworks-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.keplerworks-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink, #000000);
}

.keplerworks-footer .footer-logo-mark {
    height: 24px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

html[data-theme="dark"] .keplerworks-footer .footer-tagline {
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 300px;
}

.keplerworks-footer .footer-tagline {
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 300px;
    color: var(--slate, #1e1e1e);
}

html[data-theme="dark"] .keplerworks-footer .footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.keplerworks-footer .footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: var(--ink, #000000);
}

.keplerworks-footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

html[data-theme="dark"] .keplerworks-footer .footer-links a,
html[data-theme="dark"] .keplerworks-footer .footer-links span {
    font-size: 0.86rem;
    color: rgba(226, 232, 240, 0.75);
    text-decoration: none;
}

.keplerworks-footer .footer-links a,
.keplerworks-footer .footer-links span {
    font-size: 0.86rem;
    color: var(--slate, #1e1e1e);
    text-decoration: none;
}

.keplerworks-footer .footer-links a:hover {
    color: var(--accent);
}

.keplerworks-footer .footer-links span {
    opacity: 0.76;
}

.keplerworks-footer .footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.keplerworks-footer .footer-bottom small {
    color: rgba(226, 232, 240, 0.56);
    font-size: 0.8rem;
}

.keplerworks-footer .footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.keplerworks-footer .social-link {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.14);
    color: rgba(226, 232, 240, 0.8);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.keplerworks-footer .social-link svg {
    width: 14px;
    height: 14px;
}

.keplerworks-footer .social-link:hover {
    border-color: var(--accent-border);
    color: var(--accent);
    background: var(--accent-muted);
}

@media (max-width: 900px) {
    .keplerworks-footer .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .keplerworks-footer .footer-inner {
        grid-template-columns: 1fr;
    }
    .keplerworks-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .keplerworks-footer .social-link {
        width: 44px;
        height: 44px;
    }

    .keplerworks-footer .social-link svg {
        width: 16px;
        height: 16px;
    }
}

