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

/* ─── Heading scale ──────────────────────────────────────────── */
h1 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    margin-top: 0;
    font-size: clamp(1.8rem, 4.2vw, 3.3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    margin-top: 0;
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    line-height: 1.25;
}

h3 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    margin-top: 0;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.3;
}

/* ─── Body copy utilities ────────────────────────────────────── */
p {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 65ch;
}

.lead {
    color: var(--muted);
    max-width: 60ch;
}

/* ─── Hero image ─────────────────────────────────────────────── */
.hero-visual img {
    width: 100%;
    max-width: 430px;
    justify-self: center;

}

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

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    padding: 0.72rem 1.2rem;
    border-radius: 6px;
    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: var(--cyan);
    color: #02101f;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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