.dl-desc {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ── Fullscreen hero section ────────────────────────────────── */

.dl-section-hero {
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-size, 80px) + 2rem) 0 3rem;
}

.dl-hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

/* ── Hero mode ──────────────────────────────────────────────── */

.dl-hero {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.dl-hero-info {
    align-items: center;
}

.dl-hero-download {
    justify-content: space-between;
    align-items: center;
}

.dl-hero-content {
    flex: 1;
    min-width: 200px;
}

.dl-hero-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.dl-hero-included {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.3rem;
}

.dl-hero-title {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
    margin-top: 0;
}

.dl-hero-text {
    font-size: 0.88rem;
    opacity: 0.65;
    margin: 0.15rem 0;
    line-height: 1.55;
}

.dl-hero-version {
    font-size: 0.78rem;
    opacity: 0.4;
    margin-top: 0.6rem;
    margin-bottom: 0.3rem;
    font-family: monospace;
}

.dl-hero-version-badge {
    display: inline-block;
    margin-top: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.78rem;
    font-family: monospace;
    opacity: 0.6;
    letter-spacing: 0.04em;
}

.dl-hero-link {
    font-size: 0.82rem;
    opacity: 0.55;
    text-decoration: none;
    transition: opacity 0.2s;
}

.dl-hero-link:hover {
    opacity: 1;
}

.dl-hero-right {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 200px;
    flex-shrink: 0;
}

.dl-btn-primary,
.dl-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
    border: none;
    width: 100%;
}

.dl-btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dl-btn-primary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.dl-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.dl-btn-secondary:hover {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 767px) {
    .dl-hero {
        flex-direction: column;
        padding: 1.5rem;
    }

    .dl-hero-right {
        width: 100%;
    }
}
