/* Pricing bento cards — landing (public) */

.landing-packs {
    padding: 56px 24px 72px;
}

.landing-packs__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-packs__header {
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: center;
}

.landing-packs__eyebrow {
    margin: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rtp-brand-primary);
}

.landing-packs__title {
    margin: 0 0 12px;
    font-family: var(--rtp-font-brand);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--rtp-brand-text);
}

.landing-packs__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--rtp-brand-muted);
}

.landing-packs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.landing-packs__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
    border-radius: 12px;
    background: var(--rtp-bg-panel);
    border: 1px solid color-mix(in srgb, var(--rtp-border) 90%, transparent);
}

.landing-packs__card--featured {
    position: relative;
    border: 2px solid var(--rtp-brand-primary);
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--rtp-brand-primary) 35%, transparent),
        0 12px 40px color-mix(in srgb, var(--rtp-brand-primary) 18%, transparent);
    z-index: 1;
}

.landing-packs__badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rtp-on-primary);
    background: var(--rtp-brand-primary);
    white-space: nowrap;
}

.landing-packs__tier {
    margin: 8px 0 0;
    font-family: var(--rtp-font-brand);
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--rtp-brand-text);
}

.landing-packs__focus {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--rtp-brand-muted);
}

.landing-packs__price {
    margin: 0;
    font-family: var(--rtp-font-brand);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--rtp-brand-text);
}

.landing-packs__price--free {
    color: var(--rtp-brand-primary);
}

.landing-packs__price--custom {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--rtp-brand-muted);
}

.landing-packs__price-unit {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rtp-brand-muted);
}

.landing-packs__features {
    margin: 0;
    padding: 0 0 0 1.1em;
    flex: 1;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--rtp-brand-muted);
}

.landing-packs__features li + li {
    margin-top: 11px;
}

.landing-packs__feature--blocked {
    color: #64748b;
    opacity: 0.72;
    text-decoration: line-through;
}

.landing-packs__card .landing-btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

@media (max-width: 960px) {
    .landing-packs__grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .landing-packs__card--featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .landing-packs {
        padding: 40px 16px 56px;
    }
}
