// Site-wide feature flags. Loaded before every component so they can read
// window.LUP_FLAGS at render time.
//
// CUSTOMER_SIGNUP_LIVE — is the customer app open for real sign-ups?
//   false (pre-launch) → the "Join the LÜP" CTAs scroll to the on-page
//                        #join-customer waitlist (email + postcode → Airtable).
//                        Nobody is asked for a card before there are venues.
//   true  (at launch)  → the CTAs link out to app.lupit.com.au/join (card
//                        capture) and the waitlist section is hidden.
//
// Flip this ONE line at launch — Nav, Hero, BowlsSection, Footer and the
// index.html section render all read it.
window.LUP_FLAGS = {
  CUSTOMER_SIGNUP_LIVE: false,
};
