﻿:root {
    --bg: #0f1012;
    --card: #15161a;
    --card-2: #1a1b20;
    --text: #e9eaee;
    --muted: #b6b9c5;
    --accent: #ffcc56;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    background: radial-gradient(90% 120% at 10% 10%, #1a1b20 0%, #0f1012 50%, #0b0c0e 100%) fixed;
    color: var(--text);
}

.wrap {
    max-width: 1260px;
    margin: 4.5rem auto;
    padding: 0 24px;
}

.download-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    padding: 48px;
    border-radius: 28px;
    background: radial-gradient(120% 100% at 0% 0%, var(--card-2), var(--card));
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    border: 1px solid rgba(255,255,255,.08);
}

.phones {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    position: absolute;
    width: clamp(180px, 26vw, 280px);
    aspect-ratio: 9/19.5;
    border-radius: 36px;
    background: #0a0b0d;
    border: 10px solid #22252c;
    box-shadow: 0 20px 50px rgba(0,0,0,.65);
    overflow: hidden;
}

    .phone img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 26px;
    }

    .phone.primary {
        transform: rotate(-10deg) translate(-8%, 0);
        z-index: 2
    }

    .phone.secondary {
        transform: rotate(-18deg) translate(-110%, 3%);
        z-index: 1;
        scale: .92
    }

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 8px 4px
}

.eyebrow {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .9rem
}

.title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    font-weight: 800;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6
}

.stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.badgee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

    .badgee svg {
        width: 28px;
        height: 28px
    }

    .badgee .small {
        font-size: .75rem;
        opacity: .8
    }

    .badgee .big {
        font-weight: 700;
        font-size: 1.05rem
    }
/* RTL support for images */
html[dir="rtl"] .phones {
    justify-content: center;
}

html[dir="rtl"] .phone.primary {
    transform: rotate(10deg) translate(8%, 0); /* flip opposite of LTR */
}

html[dir="rtl"] .phone.secondary {
    transform: rotate(18deg) translate(110%, 3%) scale(.92); /* flip opposite of LTR */
}

@@media (max-width: 900px) {
    .download-card {
        grid-template-columns: 1fr;
    }

    .phones {
        justify-content: center;
    }

    .phone.primary {
        transform: rotate(-5deg) translate(0, 0);
    }

    .phone.secondary {
        transform: rotate(-8deg) translate(-40%, 5%);
    }

    html[dir="rtl"] .phone.primary {
        transform: rotate(5deg) translate(0, 0);
    }

    html[dir="rtl"] .phone.secondary {
        transform: rotate(8deg) translate(40%, 5%) scale(.92);
    }
}
