.download-page {
    min-height: 100vh;
    background: var(--bg-primary);
}

.download-header {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 26px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.download-logo,
.download-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.download-logo {
    font-size: 18px;
}

.download-logo-mark {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--gradient-primary);
    box-shadow: 0 8px 24px rgba(128, 120, 253, 0.3);
}

.download-back {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-back:hover {
    color: var(--text-primary);
}

.download-hero {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    padding: 58px 24px 86px;
    overflow: hidden;
    text-align: center;
}

.download-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.download-hero-glow {
    position: absolute;
    width: 480px;
    height: 260px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.22;
}

.download-hero-glow-purple {
    top: 0;
    left: 12%;
    background: var(--accent-purple);
}

.download-hero-glow-blue {
    right: 12%;
    bottom: 0;
    background: var(--accent-blue);
}

.download-eyebrow,
.download-card-label {
    color: var(--accent-purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.download-hero h1 {
    margin: 20px 0 22px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.08;
    font-weight: 900;
}

.download-hero p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 18px;
}

.download-list {
    max-width: 1180px;
    margin: -20px auto 0;
    padding: 0 40px 70px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.download-card {
    position: relative;
    padding: 34px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.download-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 2px;
    background: var(--gradient-primary);
}

.download-card-blue::before {
    background: var(--gradient-blue);
}

.download-card-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.download-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-size: 24px;
    background: var(--gradient-primary);
}

.download-card-blue .download-icon {
    background: var(--gradient-blue);
}

.download-card h2 {
    margin-top: 6px;
    font-size: 27px;
}

.download-version {
    display: inline-block;
    margin-left: 8px;
    color: var(--accent-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: middle;
}

.download-card-summary {
    min-height: 58px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.download-features {
    display: grid;
    gap: 14px;
    min-height: 430px;
    margin-bottom: 28px;
}

.download-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
}

.download-features li i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--accent-green);
}

.download-numbered li i {
    width: 25px;
    flex: 0 0 25px;
    color: var(--accent-blue);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 9px;
    color: #fff;
    font-weight: 700;
    background: var(--gradient-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card-blue .download-button {
    background: var(--gradient-blue);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74, 158, 255, 0.25);
}

.download-file-note {
    margin-top: 12px;
    color: var(--text-tertiary);
    font-size: 12px;
    text-align: center;
}

.download-file-note code,
.download-note code {
    color: var(--text-secondary);
    font-family: Consolas, monospace;
}

.download-note {
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
}

.download-note i {
    color: var(--accent-purple);
}

.download-footer {
    padding: 30px 20px;
    color: var(--text-tertiary);
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 900px) {
    .download-list {
        grid-template-columns: 1fr;
    }

    .download-features {
        min-height: 0;
    }
}

@media (max-width: 600px) {
    .download-header {
        padding: 20px;
    }

    .download-logo {
        font-size: 16px;
    }

    .download-back span {
        display: none;
    }

    .download-hero {
        min-height: 330px;
        padding: 32px 20px 70px;
    }

    .download-hero p {
        font-size: 16px;
    }

    .download-list {
        padding: 0 20px 48px;
    }

    .download-card {
        padding: 26px 20px;
    }

    .download-card::before {
        left: 20px;
        right: 20px;
    }

    .download-card h2 {
        font-size: 22px;
    }

    .download-version {
        margin-left: 5px;
        font-size: 11px;
    }

    .download-note {
        margin: 0 20px 48px;
        align-items: flex-start;
        font-size: 13px;
    }
}
