/* Buttons & cards                                     */
/* -------------------------------------------------- */
.primary,
.secondary,
.ghost {
    min-height: 56px;
    padding: 0 clamp(24px, 5vw, 50px);
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
    background: linear-gradient(
        135deg,
        var(--primary-700, #4c2fff),
        var(--primary, #6a58ff)
    );
    box-shadow: 0 20px 50px rgba(76, 47, 255, 0.3);
}

.secondary {
    background: rgba(8, 18, 38, 0.85);
    border-color: rgba(148, 163, 184, 0.35);
}

.ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.3);
}

.primary:disabled,
.secondary:disabled,
.ghost:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.primary:not(:disabled):hover,
.secondary:not(:disabled):hover,
.ghost:not(:disabled):hover {
    transform: translateY(-2px);
}

.primary:not(:disabled):active,
.secondary:not(:disabled):active,
.ghost:not(:disabled):active {
    transform: scale(0.98);
}

.card {
    background: rgba(8, 15, 32, 0.85);
    border-radius: var(--radius-md);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.25rem;
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.35);
}

/* -------------------------------------------------- */
