/* ---------- BUTTONS ---------- */
.omni-btn {
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    user-select: none;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.08s ease, box-shadow 0.18s ease, color 0.18s ease;
}

    .omni-btn:focus-visible,
    .site-nav-link:focus-visible,
    .omni-icon-btn:focus-visible {
        outline: 2px solid rgba(140, 93, 242, 0.9);
        outline-offset: 2px;
    }

.omni-btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-soft));
    color: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
}

    .omni-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
    }

.omni-btn-outline-purple {
    background: transparent;
    color: var(--accent-purple-soft);
    border-color: rgba(140, 93, 242, 0.9);
}

    .omni-btn-outline-purple:hover {
        background: rgba(140, 93, 242, 0.12);
        color: #fff;
    }

.omni-cta-large-btn {
    padding: 14px 36px;
    font-size: 1.05rem;
}
