/* StarNet Core — launcher download page */

.page-download .site-main { padding-bottom: 80px; }

.dl-hero {
    position: relative;
    padding: 72px 0 48px;
    overflow: hidden;
}

.dl-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 168, 83, 0.18), transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(4, 6, 13, 0.2), transparent);
    pointer-events: none;
}

.dl-hero__inner { position: relative; text-align: center; max-width: 720px; }

.dl-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 12px 0 16px;
    background: linear-gradient(135deg, #fff 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dl-hero__sub {
    color: var(--muted);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.dl-version {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 168, 83, 0.35);
    background: rgba(212, 168, 83, 0.08);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dl-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    margin-top: -20px;
}

.dl-card {
    background: rgba(15, 20, 35, 0.85);
    border: 1px solid var(--line-bright);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.dl-card--main { padding: 32px; }

.dl-status {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.dl-status--ok {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.dl-status--lock {
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.3);
}

.dl-status__icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.dl-status p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

.dl-key-form__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.dl-key-input {
    font-family: ui-monospace, monospace;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dl-download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 24px;
    font-size: 18px;
    margin-top: 8px;
}

.dl-download-btn__icon { font-size: 24px; }

.dl-download-btn small {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.06em;
}

.dl-foot {
    margin-top: 16px;
    font-size: 13px;
    color: var(--dim);
    text-align: center;
}

.dl-card--side h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin: 0 0 16px;
    color: var(--gold-light);
}

.dl-steps {
    margin: 0 0 24px;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.7;
}

.dl-steps li { margin-bottom: 8px; }

.dl-req h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dim);
    margin: 0 0 10px;
}

.dl-req ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.dl-side-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
}

.dl-side-note a { color: var(--gold-light); }

@media (max-width: 900px) {
    .dl-grid { grid-template-columns: 1fr; }
    .dl-hero { padding: 48px 0 32px; }
    .dl-card { padding: 22px 18px; }
}
