/* Download page styles */

.download-hero {
    text-align: center;
    padding: 60px 24px 40px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.download-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.download-hero p {
    font-size: 16px;
    color: var(--text-muted);
}

.download-section {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.download-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    background: var(--bg);
    box-shadow: var(--shadow-lg);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.download-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    border-radius: 12px;
    flex-shrink: 0;
}

.download-card-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.download-version {
    font-size: 13px;
    color: var(--text-muted);
}

.download-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    margin-bottom: 24px;
}

.download-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-item strong {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-item span {
    font-size: 13px;
    color: var(--text);
}

/* What's Included */
.whats-included {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 24px;
}

.whats-included h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.included-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Release Notes */
.release-notes {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 24px;
    border-top: 1px solid var(--border);
}

.release-notes h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    text-align: center;
}

.release {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
}

.release-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.release-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.release-date {
    font-size: 13px;
    color: var(--text-muted);
}

.release-tag {
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.release-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.release ul {
    list-style: none;
    padding: 0;
}

.release li {
    font-size: 13px;
    color: var(--text);
    padding: 5px 0;
    border-bottom: 1px solid var(--bg-muted);
    line-height: 1.5;
}

.release li:last-child {
    border-bottom: none;
}

.release li::before {
    content: "\2022";
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

/* Requirements */
.requirements {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 60px 24px;
    border-top: 1px solid var(--border);
}

.requirements h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
    text-align: center;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.req-item {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.req-item h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.req-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Installation steps */
.install-steps {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 24px;
}

.install-steps h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.install-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.install-step h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.install-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.install-step code {
    background: var(--bg-muted);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--navy);
}

.download-free-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .req-grid { grid-template-columns: 1fr; }
    .download-meta { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
}
