.appstore {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
    background: #030303;
}

.appstore__inner {
    padding: 5rem 3rem;
}

/* ── Image ───────────────────────────────────────── */
.appstore__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: none;
}

/* ── Typography ──────────────────────────────────── */
.appstore__label {
    font-family: 'League Spartan', sans-serif;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #119199;
    display: block;
    margin-bottom: 1rem;
    font-weight: 400;
}

.appstore__title {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -.01em;
    margin: 0 0 1.25rem 0;
    padding: 0;
}

.appstore__title em {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: .93em;
    letter-spacing: 0;
}

.appstore__desc {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .55);
    font-weight: 300;
    margin: 0 0 2.5rem 0;
}

.appstore__desc p { margin-bottom: .5rem; }
.appstore__desc p:last-child { margin-bottom: 0; }

/* ── Store buttons ───────────────────────────────── */
.appstore__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.appstore__btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 4px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}

.appstore__btn:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    text-decoration: none;
}

.appstore__btn-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    flex-shrink: 0;
}

.appstore__btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.appstore__btn-sub {
    font-family: 'Lato', sans-serif;
    font-size: .7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1;
    margin-bottom: 2px;
}

.appstore__btn-label {
    font-family: 'League Spartan', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: .02em;
}

/* ── Mobile ──────────────────────────────────────── */
@media (max-width: 767.98px) {
    .appstore__inner {
        padding: 2.5rem 1.25rem;
    }

    .appstore__btns {
        flex-direction: column;
    }

    .appstore__btn {
        width: 100%;
        justify-content: center;
    }
}
