/* Header */
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--fi-dark-2) 0%, var(--fi-dark) 100%);
    color: #fff;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header::before,
.page-header::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.12;
    pointer-events: none;
}

.page-header::before {
    width: 220px;
    height: 220px;
    background: #9dd6ff;
    top: -100px;
    right: -80px;
}

.page-header::after {
    width: 180px;
    height: 180px;
    background: #86efac;
    bottom: -100px;
    left: -80px;
}

.page-header h1 {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Cards */
.info-card,
.changelog-card {
    background: #fff;
    border: 1px solid var(--fi-border);
    border-radius: 1.25rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.info-card,
.changelog-card {
    padding: 1.25rem;
}

.changelog-card {
    background: #fcfcfd;
    border-color: #eef2f7;
    box-shadow: none;
    opacity: 0.88;
}

/* Lists */
.info-list li {
    font-size: 0.94rem;
}

.check-list.compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list.compact li {
    display: block;
    position: relative;
    padding: 0.2rem 0 0.2rem 1rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #6b7280;
}

.check-list.compact li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1;
}

/* Changelog */
.version-block {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--fi-border);
}

.version-block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.section-heading p {
    color: var(--fi-muted);
    margin-bottom: 0;
}

/* Download hero */
.download-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.download-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--fi-accent);
}

.download-title {
    font-weight: 800;
}

.download-subtitle {
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.05rem;
}

.download-actions-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.download-col {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 360px;
}

.download-col .btn {
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.download-col .btn:hover {
    transform: translateY(-2px);
}

.download-meta-line {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    color: var(--fi-muted);
}

.download-note {
    margin-top: 0.5rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #374151;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.download-note i {
    opacity: 0.7;
}

/* Benefits */
.download-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    max-width: 720px;
    margin: 0 auto;
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--fi-border);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-size: 0.92rem;
    color: #374151;
}

.benefit-item i {
    color: var(--fi-accent);
}

.download-benefits-section {
    margin-top: -1.5rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .page-header {
        text-align: center;
    }

    .page-header p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .download-hero {
        padding: 1.5rem 1rem;
    }

    .download-actions-row {
        flex-direction: column;
        align-items: stretch;
    }

    .download-col {
        max-width: none;
        min-width: 0;
    }
}