.public-site-footer {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.public-site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 380px at 20% 0%, rgba(245, 158, 11, 0.08), transparent 55%),
        radial-gradient(900px 320px at 90% 10%, rgba(72, 160, 100, 0.12), transparent 60%),
        linear-gradient(180deg, rgba(8, 18, 12, 0.92), rgba(4, 10, 7, 0.96));
    pointer-events: none;
}

.public-site-footer__shell {
    position: relative;
    z-index: 1;
}

.public-site-footer__panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(12, 31, 12, 0.82), rgba(8, 19, 13, 0.92));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.public-site-footer__top {
    display: grid;
    gap: 1.5rem;
    align-items: start;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
}

.public-site-footer__brand,
.public-site-footer__meta,
.public-site-footer__meta-block {
    display: grid;
    gap: 0.875rem;
}

.public-site-footer__brand-link,
.public-site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.public-site-footer__brand-logo,
.public-site-footer__ohm-logo {
    height: auto;
    width: auto;
}

.public-site-footer__brand-logo {
    max-width: 10rem;
}

.public-site-footer__ohm-logo {
    max-width: 7.5rem;
}

.public-site-footer__eyebrow {
    margin: 0;
    color: var(--footer-accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.public-site-footer__title {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.public-site-footer__meta-title {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.public-site-footer__copy {
    margin: 0;
    color: var(--footer-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.public-site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: var(--footer-teal);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(26, 122, 66, 0.24);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.public-site-footer__grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
}

.public-site-footer__services {
    margin-top: 1rem;
}

.public-site-footer__services a,
.public-site-footer__bottom-link,
.public-site-footer__social-link {
    color: var(--footer-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.public-site-footer__newsletter {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.public-site-footer__newsletter-field {
    flex: 1 1 16rem;
}

.public-site-footer__input {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(235, 235, 235, 0.8);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.public-site-footer__subscribe {
    padding: 0.6rem 1rem;
    border: 0;
    border-radius: 0.75rem;
    background: var(--footer-accent);
    color: #1a0e00;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.public-site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.public-site-footer__socials,
.public-site-footer__bottom-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.public-site-footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.public-site-footer__social-link:hover {
    border-color: rgba(245, 158, 11, 0.24);
    background: rgba(245, 158, 11, 0.1);
}

.public-site-footer__legal {
    margin: 0;
    color: rgba(235, 235, 235, 0.5);
    font-size: 0.875rem;
}

@media (max-width: 767px) {
    .public-site-footer__top,
    .public-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .public-site-footer__newsletter,
    .public-site-footer__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .public-site-footer__bottom {
        text-align: center;
    }

    .public-site-footer__bottom > div {
        justify-content: center;
    }
}
