.download > .container {
    position: relative;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 0.5fr;
    background-color: var(--color-light);
    border-radius: 24px;
}
.download__content {
    padding: clamp(22px, 2.222vw, 32px);
}
.download .download__content > h2 {
    max-width: 500px;
    font-size: 40px;
    line-height: 120%;
    font-weight: 700;
}
.download__items {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}
.download__item {
    display: grid;
    gap: 8px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    background: var(--color-light);
    overflow: hidden;
}
@media (hover: hover) {
    .download__item:hover {
        background-color: #ffffff1a;
    }
}
.download__item .arrow {
    transform: rotate(-90deg);
}
.download__image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.download__image-wrapper {
    position: relative;
}
.download__image .app {
    width: clamp(200px, 19.444vw, 280px);
    height: clamp(200px, 19.444vw, 280px);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    animation: softRGB 20s infinite linear;
    will-change: background,filter;
    transform: rotate(10deg);
    border-radius: 48px;
    overflow: hidden;
}
.download__image .app svg {
    width: 100%;
    height: auto;
}
@keyframes softRGB {
    0% {
        background-color: red;
    }
    10% {
        background-color: #ff6400;
    }
    20% {
        background-color: #ffc800;
    }
    30% {
        background-color: #64ff00;
    }
    40% {
        background-color: #00ff64;
    }
    50% {
        background-color: #0064ff;
    }
    60% {
        background-color: blue;
    }
    70% {
        background-color: #6400ff;
    }
    80% {
        background-color: #f0f;
    }
    90% {
        background-color: #ff00c8;
    }
    100% {
        background-color: red;
    }
}

.download__image .icon {
    position: absolute;
    bottom: -14px;
    left: -50px;
    width: clamp(120px, 10.417vw, 150px);
    height: clamp(120px, 10.417vw, 150px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 40px;
    border: 2px solid rgb(255 255 255 / .24);
    background: rgb(255 255 255 / .05);
    transform: rotate(-20deg);
    overflow: hidden;
    backdrop-filter: blur(24px);
    z-index: 3;
}

@media screen and (max-width: 1200px) {
    .download__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .download__item:last-child {
        grid-column: 1 / span 2;
    }
}

@media screen and (max-width: 768px) {
    .download > .container {
        display: flex;
        gap: 0;
        flex-flow: column-reverse;
    }
    .download .download__content > h2 {
        max-width: 100%;
    }
    .download__items {
        grid-template-columns: 1fr;
    }
    .download__item:last-child {
        grid-column: 1;
    }
}