.public-footer {
    width: calc(100% + (var(--page-inline-padding, 0px) * 2));
    margin: 72px 0 0;
    margin-left: calc(var(--page-inline-padding, 0px) * -1);
    padding: 72px 0 32px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background:
        radial-gradient(circle at 12% 0%, rgba(13, 138, 209, 0.18), transparent 20%),
        radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.12), transparent 18%),
        linear-gradient(135deg, rgba(7, 14, 25, 0.98) 0%, rgba(11, 25, 43, 0.98) 100%);
    color: #dbe7f7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.public-footer__inner {
    width: min(1360px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 28px;
    align-items: start;
}

.public-footer__content {
    display: grid;
    gap: 24px;
}

.public-footer__brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.public-footer__logo-wrap {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.public-footer__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.public-footer__eyebrow {
    margin: 0 0 6px;
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
}

.public-footer__title {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.2;
    color: #f8fafc;
}

.public-footer__copy {
    margin: 10px 0 0;
    color: #9fb2cb;
    line-height: 1.7;
}

.public-footer__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.public-footer__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.public-footer__chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: #e2e8f0;
    font-size: 0.84rem;
    font-weight: 600;
}

.public-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.public-footer__group {
    display: grid;
    gap: 10px;
    align-content: start;
}

.public-footer__group span {
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.73rem;
    font-weight: 800;
}

.public-footer__group a {
    color: #e2e8f0;
    text-decoration: none;
    line-height: 1.65;
}

.public-footer__group a:hover {
    color: #7dd3fc;
}

.public-footer__store-button {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(7, 14, 25, 0.18);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.public-footer__store-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(125, 211, 252, 0.28);
}

.public-footer__store-icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.public-footer__store-button--apple {
    background: rgba(255, 255, 255, 0.08);
}

.public-footer__store-button--play {
    background: rgba(13, 138, 209, 0.16);
}

.public-footer__bottom {
    width: min(1360px, calc(100% - 48px));
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: #9fb2cb;
    font-size: 0.88rem;
}

.public-footer__bottom p {
    margin: 0;
}

@media (max-width: 820px) {
    .public-footer__inner {
        grid-template-columns: 1fr;
    }

    .public-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .public-footer {
        margin-top: 56px;
        padding: 60px 0 28px;
    }

    .public-footer__brand {
        grid-template-columns: 1fr;
    }

    .public-footer__inner,
    .public-footer__bottom {
        width: min(100%, calc(100% - 24px));
    }

    .public-footer__links {
        grid-template-columns: 1fr;
    }
}
