Two Equal Payments of $2,790

Your payment information will be stored on a secure server for future purchases

300HR - 2 Installments

Break up your investment into 2 equal payments with no additional cost.

What you'll get:

  • Access to all modules & materials
  • Personal transformation leveraging ancient wisdom
  • Brand clarity for Soul-preneurship with your purpose 
  • Guaranteed Spot *Space is Limited*

*If you need to defer once enrollment closes or live calls are already underway, there is a $550 deferment fee to join the next class.

Stripe::Checkout::Session.create({ mode: 'payment', payment_method_types: ['card'], payment_method_types: ['card', 'affirm'], line_items: [{ price_data: { currency: 'usd', product_data: { name: 'T-shirt', }, # Make sure the total amount fits within Affirm's transaction amount limits unit_amount: 5000, }, quantity: 1, }], shipping_address_collection: { # Shipping address is optional but recommended to pass in # Specify which shipping countries Checkout should provide as options for shipping locations allowed_countries: ['US'], }, # If you already have the shipping address, provide it in payment_intent_data: # payment_intent_data: { # shipping: { # name: 'Jenny Rosen', # address: { # line1: '1234 Main Street', # city: 'San Francisco', # state: 'CA', # country: 'US', # postal_code: '94111', # }, # }, # }, success_url: 'https://example.com/success', cancel_url: 'https://example.com/cancel', })