/* =========================================================
   DOWNLOAD / PLATFORM SELECTOR 2026
   ========================================================= */

.download2026 {
    width: min(920px, 100%);
    margin: 18px auto 36px;
    font-family: var(--ui-font);
}

.download2026-header {
    max-width: 680px;
    margin: 0 auto 26px;
    text-align: center;
}

.download2026-eyebrow {
    margin-bottom: 7px;
    color: var(--ui-accent-light);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1.6px;
}

.download2026-header h1 {
    margin: 0 0 10px;
    color: var(--ui-text);
    font-size: clamp(25px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.15;
}

.download2026-header p {
    margin: 0;
    color: var(--ui-text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

.download2026-header strong {
    color: var(--ui-text);
    font-weight: 650;
}

.download2026-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.platformCard {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 310px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    color: var(--ui-text);
    background:
        linear-gradient(
            145deg,
            rgba(30, 34, 44, 0.94),
            rgba(17, 20, 27, 0.98)
        );
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.23);
    text-decoration: none;
    transition:
        transform var(--ui-transition),
        border-color var(--ui-transition),
        background var(--ui-transition),
        box-shadow var(--ui-transition);
}

.platformCard::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.35;
    filter: blur(4px);
}

.platformCard-android::before {
    background:
        radial-gradient(
            circle,
            rgba(65, 209, 125, 0.30),
            transparent 68%
        );
}

.platformCard-apple::before {
    background:
        radial-gradient(
            circle,
            rgba(131, 152, 255, 0.30),
            transparent 68%
        );
}

.platformCard-selected {
    border-color: rgba(94, 124, 255, 0.58);
    box-shadow:
        0 0 0 1px rgba(94, 124, 255, 0.15),
        0 18px 42px rgba(0, 0, 0, 0.30);
}

.platformCard-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (hover: hover) and (pointer: fine) {
    a.platformCard:hover {
        transform: translateY(-4px);
        color: var(--ui-text);
        border-color: var(--ui-border-hover);
        background:
            linear-gradient(
                145deg,
                rgba(37, 42, 54, 0.98),
                rgba(19, 22, 30, 0.99)
            );
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
    }
}

.platformRecommended {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 6px 9px;
    border: 1px solid rgba(94, 124, 255, 0.22);
    border-radius: 999px;
    color: var(--ui-accent-light);
    background: rgba(94, 124, 255, 0.10);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.platformIcon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 26px rgba(0, 0, 0, 0.22);
}

.platformIcon-android {
    color: #69db95;
    background:
        linear-gradient(
            145deg,
            rgba(65, 209, 125, 0.13),
            rgba(65, 209, 125, 0.035)
        );
}

.platformIcon-apple {
    color: #f4f6fb;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.10),
            rgba(255, 255, 255, 0.025)
        );
}

.platformBrandIcon {
    font-family: FontAwesome;
    font-size: 46px;
    font-style: normal;
    line-height: 1;
}

.platformCardBody {
    position: relative;
    z-index: 2;
    flex: 1;
}

.platformName {
    margin-bottom: 7px;
    color: var(--ui-text);
    font-size: 21px;
    font-weight: 680;
    letter-spacing: -0.35px;
}

.platformDescription {
    color: var(--ui-text-secondary);
    font-size: 13px;
    line-height: 1.55;
}

.platformAction {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    color: var(--ui-text);
    font-size: 13px;
    font-weight: 650;
}

.platformArrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 9px;
    color: var(--ui-text);
    background: rgba(255, 255, 255, 0.07);
    font-size: 17px;
    transition:
        transform var(--ui-transition),
        background var(--ui-transition);
}

@media (hover: hover) and (pointer: fine) {
    a.platformCard:hover .platformArrow {
        transform: translateX(2px);
        background: rgba(255, 255, 255, 0.12);
    }
}

.download2026-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--ui-text-muted);
    font-size: 12px;
    text-align: center;
}

.download2026-noteIcon {
    color: var(--ui-text-secondary);
    font-family: FontAwesome;
    font-style: normal;
}

@media (max-width: 700px) {
    .download2026 {
        margin-top: 8px;
    }

    .download2026-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .platformCard {
        min-height: 250px;
        padding: 22px;
        border-radius: 19px;
    }

    .platformIcon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .platformBrandIcon {
        font-size: 39px;
    }
}
