/* Footer + bottom CTA — landing skeleton */

.landing-footer {
    background: color-mix(in srgb, var(--rtp-bg-app) 92%, #000 8%);
}

.landing-footer__cta {
    padding: 64px 24px;
    text-align: center;
}

.landing-footer__cta-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.landing-footer__cta-title {
    margin: 0;
    font-family: var(--rtp-font-brand);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--rtp-brand-text);
}

.landing-footer__divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: color-mix(in srgb, var(--rtp-border) 65%, transparent);
}

.landing-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 24px 40px;
    align-items: start;
}

.landing-footer__brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    grid-column: 1;
    grid-row: 1;
}

.landing-footer__brand {
    text-decoration: none;
    line-height: 0;
}

.landing-footer__brand .rtp-logo-horizontal {
    width: min(220px, 40vw);
    max-width: 220px;
    height: auto;
}

.landing-footer__tagline {
    margin: 0;
    max-width: 320px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.landing-footer__links-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.landing-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    justify-content: flex-end;
}

.landing-footer__pwa-note {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--rtp-brand-muted);
    text-align: right;
}

.landing-footer__link {
    font-family: var(--rtp-font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rtp-brand-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing-footer__link:hover,
.landing-footer__link:focus-visible {
    color: var(--rtp-brand-text);
}

.landing-footer__legal {
    margin: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--rtp-brand-muted) 70%, transparent);
}

@media (max-width: 768px) {
    .landing-footer__cta {
        padding: 48px 16px;
    }

    .landing-footer__bottom {
        grid-template-columns: 1fr;
        padding: 28px 16px 36px;
    }

    .landing-footer__brand-col,
    .landing-footer__links-col {
        grid-column: 1;
        grid-row: auto;
    }

    .landing-footer__links-col {
        align-items: flex-start;
    }

    .landing-footer__links {
        justify-content: flex-start;
    }

    .landing-footer__pwa-note {
        text-align: left;
    }
}
