/**
 * Hero platform strip — pill links below hero headline (used with HeroSection).
 */
.landing-hero-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 56rem;
    margin: 0.75rem auto 0;
    padding: 0 0.25rem;
}

@media (max-width: 639px) {
    .landing-hero-strip {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.35rem;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }

    .landing-hero-strip::-webkit-scrollbar {
        height: 0;
    }
}

.landing-hero-pill {
    scroll-snap-align: start;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-hero-pill:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.landing-hero-pill--disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.landing-hero-pill__icon {
    font-size: 1rem;
    line-height: 1;
}

.landing-hero-pill__arrow {
    font-size: 0.7rem;
    opacity: 0.75;
}

.landing-hero-value--compact {
    margin-top: 1rem;
}
