/* Download page — license checkout + ISO targets. */

.hero-download {
    padding-bottom: 40px;
}

/* ── License card ─────────────────────────────────────────────────── */
.license-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.license-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.license-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 12px;
}

.license-fine {
    text-align: center;
    color: var(--text-faint);
    font-size: 12px;
    line-height: 1.55;
    margin: 14px 0 0;
}

/* ── Targets ─────────────────────────────────────────────────────── */
.section-targets { background: var(--bg-alt); }
.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.target-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
}
.target-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: rgba(88,166,255,0.10);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.target-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.target-meta {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 12px;
    margin: 0 0 14px;
}
.target-card p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 22px;
}
@media (max-width: 700px) { .target-grid { grid-template-columns: 1fr; } }

/* ── Standalone ──────────────────────────────────────────────────── */
.standalone-card {
    max-width: 920px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
}
.standalone-card h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    margin: 0 0 10px;
    font-weight: 700;
}
.standalone-card > p {
    color: var(--text-dim);
    margin: 0 0 22px;
    font-size: 15px;
}
.standalone-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.standalone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-dim);
    font-size: 14px;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.standalone-link:hover {
    color: var(--text);
    border-color: rgba(88,166,255,0.4);
    background: var(--bg-elev);
}
.standalone-link .material-symbols-rounded { font-size: 18px; color: var(--accent); }

.standalone-link-icon {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.standalone-link-icon--logo {
    width: auto;
    max-width: 28px;
    height: 18px;
    object-fit: contain;
}
