Application Received.

Own your asset.
Not your shift.

Move from operator to owner in 90 days with our Systems, Leadership, and Profit framework.

Apply for Membership

Join the Collective.

We take on exactly 4 clients per quarter. Ensure your spot in our next implementation cycle.

Full System Extraction
Leadership Training
Profit Optimization
Application Received.

Own your asset.
Not your shift.

Move from operator to owner in 90 days with our Systems, Leadership, and Profit framework.

Apply for Membership

Join the Collective.

We take on exactly 4 clients per quarter. Ensure your spot in our next implementation cycle.

Full System Extraction
Leadership Training
Profit Optimization
) { showToast("Error: Set your Formspree ID", "fa-exclamation-triangle", true); return; } btn.disabled = true; btn.innerText = "Sending..."; const data = new FormData(event.target); try { const response = await fetch(`https://formspree.io/f/${FORMSPREE_ID}`, { method: 'POST', body: data, headers: { 'Accept': 'application/json' } }); if (response.ok) { showToast("Application Sent! Check your email.", "fa-check-circle", false); form.reset(); } else { showToast("Submission failed. Try again.", "fa-exclamation-triangle", true); } } catch (error) { showToast("Network error. Check connection.", "fa-exclamation-triangle", true); } finally { btn.disabled = false; btn.innerText = "Send Application"; } } function showToast(message, iconClass, isError) { notifMsg.innerText = message; notifIcon.className = `fas ${iconClass} ${isError ? 'text-red-500' : 'text-orange-500'} text-xl`; notif.style.display = 'flex'; setTimeout(() => { notif.style.display = 'none'; }, 5000); } form.addEventListener("submit", handleSubmit);