/* ─── Kicker label ───────────────────────────────────────────── */
.kicker {
    color: var(--cyan-soft);
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

/* ─── Heading scale ──────────────────────────────────────────── */
h1,
h2,
h3 {
    font-family: "Orbitron", sans-serif;
    margin-top: 0;
}

h1 {
    font-size: clamp(1.8rem, 4.2vw, 3.3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* ─── Body copy utilities ────────────────────────────────────── */
.lead {
    color: var(--muted);
    max-width: 60ch;
}

/* ─── Hero image ─────────────────────────────────────────────── */
.hero-visual img {
    width: 100%;
    max-width: 430px;
    justify-self: center;
    filter: drop-shadow(0 0 30px rgba(59, 232, 255, 0.35));
}

/* ─── Hero action row ────────────────────────────────────────── */
.hero-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    padding: 0.72rem 1.05rem;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(100deg, var(--cyan), #2f7dff);
    color: #02101f;
    box-shadow: 0 8px 26px rgba(52, 156, 255, 0.28);
}

.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: rgba(2, 14, 32, 0.45);
}
