.Download_intro {
    width: min(var(--max-width), 100% - 2.5rem);
    display: grid;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: stretch;
}
@media (min-width: 980px) {
    .Download_intro {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

.Download_summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.Download_badge {
    align-self: flex-start;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.Download_summary p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 58ch;
}

.Download_requirements {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(150deg, rgba(12, 14, 22, 0.82), rgba(14, 18, 26, 0.72));
    box-shadow: 0 18px 36px rgba(5, 6, 12, 0.35);
}
.Download_requirements h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #fff;
}
.Download_requirements ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}
.Download_requirements li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--color-text-subtle);
    font-size: 0.98rem;
}
.Download_requirements li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--color-primary-soft);
}

.Download_card__RKE6t {
    position: relative;
    padding: clamp(2.5rem, 6vw, 3rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(150deg, rgba(255, 70, 85, 0.26), rgba(93, 118, 255, 0.18));
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    text-align: center;
}
.Download_card__RKE6t::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 6, 12, 0.25), rgba(5, 6, 12, 0.65));
    pointer-events: none;
}
.Download_card__RKE6t svg {
    position: relative;
    z-index: 1;
    width: 90px;
    height: auto;
    filter: drop-shadow(0 18px 32px rgba(5, 6, 12, 0.45));
}
.Download_cardBody {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.Download_cardBody h3 {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
}
.Download_cardBody p {
    margin: 0;
    color: var(--color-text-muted);
}
.Download_cardBody .Button_button__TyCE7 {
    margin-top: 0.25rem;
    width: max-content;
}
.Download_hint {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
}

.Download_secondary {
    width: min(var(--max-width), 100% - 2.5rem);
    margin-top: min(9vh, 5rem);
    display: grid;
    gap: clamp(2rem, 6vw, 3rem);
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.Download_steps,
.Download_support {
    padding: clamp(2rem, 6vw, 2.6rem);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(150deg, rgba(12, 14, 22, 0.82), rgba(14, 18, 26, 0.72));
    box-shadow: 0 18px 36px rgba(5, 6, 12, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.Download_steps h2,
.Download_support h2 {
    margin: 0;
    color: #fff;
    font-size: 1.8rem;
}
.Download_steps ol {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.9rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    counter-reset: download-steps;
}
.Download_steps ol li {
    position: relative;
    list-style: none;
    padding-left: 2.5rem;
    counter-increment: download-steps;
}
.Download_steps ol li::before {
    content: counter(download-steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(255, 70, 85, 0.2);
    border: 1px solid rgba(255, 70, 85, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.Download_support p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.Download_support .Button_button__TyCE7 {
    align-self: flex-start;
}

@media (max-width: 720px) {
    .Download_intro,
    .Download_secondary {
        width: min(var(--max-width), 100% - 2rem);
    }
    .Download_badge {
        align-self: center;
    }
    .Download_summary {
        text-align: center;
        align-items: center;
    }
    .Download_requirements li {
        padding-left: 0;
    }
    .Download_requirements li::before {
        display: none;
    }
    .Download_steps,
    .Download_support {
        text-align: center;
    }
    .Download_steps ol {
        padding-left: 0;
    }
    .Download_steps ol li {
        padding-left: 0;
    }
    .Download_steps ol li::before {
        position: relative;
        margin: 0 auto 0.75rem;
    }
    .Download_support .Button_button__TyCE7 {
        align-self: center;
    }
}
