.landing-hero {
    position: relative;
    padding: clamp(40px, 5vw, 64px) 0 24px;
    overflow: hidden;
}

.landing-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr) minmax(280px, .92fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.landing-hero__content {
    position: relative;
    z-index: 2;
}

.landing-hero__title {
    max-width: 680px;
    margin-bottom: 10px;
    font-size: clamp(40px, 4.4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.landing-hero__description {
    max-width: 560px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
}

.landing-hero__title span {
    color: var(--blue);
}

.landing-hero__downloads {
    display: grid;
    justify-items: start;
    gap: 10px;
}

.landing-hero__downloads-label {
    margin: 0;
    color: var(--pink);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.landing-hero__store-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.landing-hero__store-link {
    display: inline-flex;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.landing-hero__store-link img {
    display: block;
    width: auto;
    height: 42px;
}

@media (hover: hover) {
    .landing-hero__store-link:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }
}

.landing-hero__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.landing-hero__media img {
    position: relative;
    z-index: 2;
    display: block;
    width: min(100%, 340px);
    height: auto;
}

.landing-hero__glow {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -30px;
    width: min(436vw, 440px);
    height: 290px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center,
            rgba(228, 45, 150, 0.22) 0%,
            rgba(228, 45, 150, 0.1) 45%,
            rgba(228, 45, 150, 0) 75%);
    filter: blur(40px);
    transform: translateY(-50%);
    pointer-events: none;
}

/* Partners */

.partner-strip {
    padding: 8px 0 16px;
    background: transparent;
    overflow: hidden;
}

.partner-strip__viewport {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 78px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0,
            #000 7%,
            #000 93%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0,
            #000 7%,
            #000 93%,
            transparent 100%);
}

.partner-strip__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: partnerStripScroll 25s linear infinite;
}

.partner-strip__viewport:hover .partner-strip__track {
    animation-play-state: paused;
}

.partner-strip__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(28px, 4vw, 28px);
    padding-right: clamp(28px, 4vw, 28px);
}

.partner-strip__logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
}

.partner-strip__logo img {
    display: block;
    width: auto;
    height: 34px;
    object-fit: contain;
}

@keyframes partnerStripScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 900px) {
    .landing-hero__grid {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .landing-hero__content {
        order: 2;
    }

    .landing-hero__media {
        order: 1;
    }

    .landing-hero__media img {
        width: min(100%, 260px);
    }

    .landing-hero__glow {
        top: 50%;
        right: 50%;
        width: 300px;
        height: 220px;
        filter: blur(34px);
        transform: translate(50%, -50%);
    }

    .landing-hero__description {
        margin-inline: auto;
    }

    .landing-hero__downloads {
        justify-items: center;
    }

    .landing-hero__store-links {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .landing-hero {
        padding: 22px 0 28px;
    }

    .landing-hero__grid {
        gap: 16px;
    }

    .landing-hero__title {
        font-size: clamp(34px, 10vw, 44px);
    }

    .landing-hero__description {
        max-width: 430px;
        font-size: 13px;
    }

    .landing-hero__media img {
        width: min(100%, 180px);
    }

    .landing-hero__glow {
        width: 260px;
        height: 190px;
    }

    .landing-hero__store-links {
        gap: 8px;
    }

    .landing-hero__store-link img {
        height: 38px;
    }


    .partner-strip__logo img {
        height: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .partner-strip__track {
        width: 100%;
        justify-content: center;
        animation: none;
        transform: none;
    }

    .partner-strip__group[aria-hidden="true"] {
        display: none;
    }
}