{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lMUpz1vEPQwdidGfW5vv/7Ws8KSSMzbLTYMjj5JrI/AutoFill_Override.js", "ssg:https://framerusercontent.com/modules/Q0r1TBGo50LOAdBnG113/R6yLwzjiCNrI588juCHe/ButtonLoadingState.js", "ssg:https://framerusercontent.com/modules/OuFKh3JoG1dPZzEWgFVp/zdWn2n0uF4XxdUlK9UfK/Darwin_DemoForm_Override.js", "ssg:https://framerusercontent.com/modules/R8NBKaH4gr7eLR6rX7UR/yJBZJR69OkyZmfhBwbgM/Darwin_UpgradeForm_Override.js", "ssg:https://framerusercontent.com/modules/HyULyg9vIVhqsSB5CNx4/YIq2mcITDQbkFopAhObJ/Go_DemoForm_Override.js", "ssg:https://framerusercontent.com/modules/dkqWlX1PF62UxieY3g5h/oVTG6qNXqKO5etoIaAaj/Go_UpgradeForm_Override.js", "ssg:https://framerusercontent.com/modules/C1or85PGRiGVmPVAd5Rm/7aebZNGbCWLKy2ztJQ2u/Joint_DemoForm_Override.js", "ssg:https://framerusercontent.com/modules/P00CFL26IB5RGz0EVT0Z/VlB1vo6E9wI1bWGw9syY/ng8vWsYYj.js", "ssg:https://framerusercontent.com/modules/isbuS8xpsqtABYpSgNVv/m2F96xhKUGNR4RSUM7fJ/AAx_zbdMY.js", "ssg:https://framerusercontent.com/modules/7z6SICgfxgeHscz7x9ba/VauAX30JQS9FyuCj8pqg/kQCdCJw85.js", "ssg:https://framerusercontent.com/modules/jYp0JrcK7KzdFrTcZlIl/Ys4MoDhRKAtwDUJnjgTn/sDEB4lD9c.js", "ssg:https://framerusercontent.com/modules/zCVc0zhNiy57n1dMLAHT/46lzQB1HqnvfqoGUgPHh/x_mZRtpfa.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";export function withInputAutofillOverride(Component){return props=>{useEffect(()=>{const input=document.querySelector('[data-lookup=\"autofill-input\"]');if(!input)return;// Create and append a style tag for autofill-specific rules only\nconst style=document.createElement(\"style\");style.textContent=`\n                [data-lookup=\"autofill-input\"]:-webkit-autofill,\n                [data-lookup=\"autofill-input\"]:-webkit-autofill:hover,\n                [data-lookup=\"autofill-input\"]:-webkit-autofill:focus,\n                [data-lookup=\"autofill-input\"]:-webkit-autofill:active {\n                    background: transparent !important;\n                    -webkit-background-clip: text !important;\n                    -webkit-text-fill-color: inherit !important;\n                    transition: background-color 0s 50000s;\n                }\n\n                /* Firefox */\n                [data-lookup=\"autofill-input\"]:autofill {\n                    background: transparent !important;\n                    -webkit-text-fill-color: inherit !important;\n                }\n            `;document.head.appendChild(style);return()=>{document.head.removeChild(style);};},[]);return /*#__PURE__*/_jsx(Component,{...props,\"data-lookup\":\"autofill-input\"});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withInputAutofillOverride\":{\"type\":\"reactHoc\",\"name\":\"withInputAutofillOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AutoFill_Override.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";// Button override that works with form states\nexport function withSubmitButtonOverride(Component){return props=>{const[isLoading,setIsLoading]=useState(false);// Clean up any lingering loading state if the component unmounts\nuseEffect(()=>{return()=>{setIsLoading(false);};},[]);// Handle case where form state changes externally\nuseEffect(()=>{// If the form already sets a specific variant, respect it\n// and clear our local loading state\nif(props.variant&&props.variant!==\"Default\"&&isLoading){setIsLoading(false);}},[props.variant,isLoading]);const handleClick=e=>{// Only set loading if not already in a special state\nif(props.variant===\"Default\"||!props.variant){setIsLoading(true);}// Call the original onClick handler if it exists\nif(props.onClick){props.onClick(e);}// For demo purposes: reset after timeout if no other state change happens\n// In production, this would ideally be triggered by form submission completion\nif(!e.defaultPrevented){setTimeout(()=>{// Only reset if we're still in loading state\n// (form may have changed our state already)\nsetIsLoading(current=>{// Only reset if we were the ones who set it loading\n// and if the props.variant hasn't changed to something else\nif(current&&(props.variant===\"Default\"||!props.variant)){return false;}return current;});},3e3);}};// Only apply our loading state if the component doesn't already have a special variant\n// This ensures we don't override Error, Success, or other states\nconst computedVariant=// If props already specifies a non-Default variant, use that\nprops.variant&&props.variant!==\"Default\"?props.variant:isLoading?\"Loading\":\"Default\";return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick,variant:computedVariant});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withSubmitButtonOverride\":{\"type\":\"reactHoc\",\"name\":\"withSubmitButtonOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ButtonLoadingState.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";// REMOVED: import Botpoison from \"@botpoison/browser\" // This line is removed for dynamic import\n// Configuration\nconst CONFIG={PORTAL_ID:\"19912923\",FORM_ID:\"b20a4ec3-deca-4698-9f6f-7554db2ba911\",VALIDATION_ENDPOINT:\"https://v7labs.vercel.app/api/validate-email\",VERIFY_ENDPOINT:\"https://v7labs.vercel.app/api/verify\",EVENTS:{FORM_SUBMIT:\"form_submit_demo_darwin\",CHILIPIPER_EVENT_PREFIX:\"darwin_intro_call_\",// NEW: Define the exact ChiliPiper action for a booked call for consistency\nCHILIPIPER_BOOKED_ACTION:\"booking-confirmed\"},CHILIPIPER:{ROUTING_ID:\"darwin-intro-call\"}};// Declare botpoison variable to be assigned dynamically on the client\nlet botpoisonInstance=null;// Client-side cache for email validation results\nconst emailCache=new Map;const EMAIL_CACHE_TTL=5*60*1e3// 5 minutes\n;// Main component override\nexport function withDarwinDemoFormOverride(Component){return props=>{const validationTimeoutRef=useRef();useEffect(()=>{// Dynamically import Botpoison and initialize it ONLY on the client\nif(typeof window!==\"undefined\"&&!botpoisonInstance){import(\"@botpoison/browser\").then(({default:BotpoisonModule})=>{botpoisonInstance=new BotpoisonModule({publicKey:\"pk_de9f204f-d7bc-4740-9721-81fe057ecd42\"});console.log(\"Botpoison initialized on client.\");}).catch(error=>{console.error(\"Failed to load or initialize Botpoison:\",error);});}const form=document.querySelector('[data-lookup=\"demo-form\"]');if(!form)return;const controller=new AbortController;let isSubmitting=false;// Setup country field once\nconst setupCountry=async()=>{let countryInput=form.querySelector('input[name=\"country\"]');if(!countryInput){countryInput=document.createElement(\"input\");countryInput.type=\"hidden\";countryInput.name=\"country\";form.appendChild(countryInput);}const countryName=await getCountryFromIP();countryInput.value=countryName;};setupCountry();// Email validation with caching and debouncing\nconst validateEmailWithCache=async email=>{// Check cache first\nconst cached=emailCache.get(email);if(cached&&Date.now()-cached.timestamp<EMAIL_CACHE_TTL){return cached.isValid;}try{const response=await fetch(CONFIG.VALIDATION_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({email})});if(!response.ok){// Handle rate limiting\nif(response.status===429){throw new Error(\"Too many requests. Please try again later.\");}throw new Error(\"Validation failed\");}const{isValid}=await response.json();// Update cache\nemailCache.set(email,{isValid,timestamp:Date.now()});return isValid;}catch(error){console.error(\"Email validation failed:\",error);// Fallback to basic validation if service fails\nreturn email.includes(\"@\")&&email.includes(\".\");}};// Handle form submission\nconst handleSubmit=async event=>{event.preventDefault();if(isSubmitting)return;const emailInput=form.querySelector('[name=\"email\"]');if(!emailInput)return;try{isSubmitting=true;// Validate email before proceeding\nconst isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();return;}// Process Botpoison challenge\nlet solution;try{if(!botpoisonInstance){// Use the dynamically loaded instance\nthrow new Error(\"Botpoison not initialized on client.\");}const result=await botpoisonInstance.challenge()// Call challenge on the instance\n;solution=result.solution;}catch(error){console.error(\"Botpoison challenge error:\",error);throw new Error(\"Spam verification failed\");}const formData=new FormData(form);const formEmail=formData.get(\"email\")// Get email here\n;// Verify the solution with backend\nconst verifyResponse=await fetch(CONFIG.VERIFY_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({_botpoison:solution})});if(!verifyResponse.ok){throw new Error(\"Spam verification failed\");}// Load ChiliPiper script\nawait loadChiliPiper();const hutk=document.cookie.split(\";\").find(c=>c.trim().startsWith(\"hubspotutk=\"))?.split(\"=\")[1];const response=await fetch(`https://api.hsforms.com/submissions/v3/integration/submit/${CONFIG.PORTAL_ID}/${CONFIG.FORM_ID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({fields:Array.from(formData.entries()).map(([name,value])=>({name,value:value.toString()})),context:{hutk:hutk,pageUri:window.location.href,pageName:document.title,referrer:document.referrer,ipAddress:await fetch(\"https://api.ipify.org?format=json\").then(res=>res.json()).then(data=>data.ip).catch(()=>undefined)}})});if(!response.ok){throw new Error(\"Form submission failed\");}window.dataLayer?.push({event:CONFIG.EVENTS.FORM_SUBMIT});// Trigger ChiliPiper\nif(window.ChiliPiper){window.ChiliPiper.submit(\"v7labs\",CONFIG.CHILIPIPER.ROUTING_ID,{trigger:\"ThirdPartyForm\",lead:{email:formEmail,firstName:formData.get(\"firstName\"),lastName:formData.get(\"lastName\"),company:formData.get(\"company\"),country:formData.get(\"country\"),message:formData.get(\"message\")}});// Track ChiliPiper events, and now Dreamdata on successful booking-confirmed event\nwindow.addEventListener(\"message\",function(event){if(event.origin.match(/^https:\\/\\/[a-z0-9\\.\\-]{2,}?\\.chilipiper\\.com$/)){const action=event.data.action;if(action){window.dataLayer?.push({event:CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+action,chilipiper:{action}});// --- Dreamdata Tracking: Triggered only on specified ChiliPiper booked action ---\nif(action===CONFIG.EVENTS.CHILIPIPER_BOOKED_ACTION&&typeof window.dreamdata!==\"undefined\"&&formEmail// Ensure email is available\n){window.dreamdata.track(CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+CONFIG.EVENTS.CHILIPIPER_BOOKED_ACTION);window.dreamdata.identify(null,{email:formEmail});console.log(\"Dreamdata tracked: \"+(CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+CONFIG.EVENTS.CHILIPIPER_BOOKED_ACTION));}// --- END Dreamdata Tracking ---\n}}},{signal:controller.signal});}}catch(error){console.error(\"Form submission error:\",error);emailInput.setCustomValidity(error instanceof Error?error.message:\"An error occurred. Please try again.\");emailInput.reportValidity();}finally{isSubmitting=false;}};// Add email validation listener with debouncing\nconst emailInput=form.querySelector('[name=\"email\"]');if(emailInput){const validateEmail=async()=>{// Clear any existing validation state\nemailInput.setCustomValidity(\"\");emailInput.reportValidity();if(emailInput.value){try{const isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();}}catch(error){console.error(\"Validation error:\",error);// Don't show validation errors for rate limiting during real-time validation\nif(error.message!==\"Too many requests. Please try again later.\"){emailInput.setCustomValidity(error.message);emailInput.reportValidity();}}}};// Debounced input handler\nconst handleInput=()=>{if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}validationTimeoutRef.current=setTimeout(validateEmail,3e3);};emailInput.addEventListener(\"input\",handleInput,{signal:controller.signal});emailInput.addEventListener(\"blur\",validateEmail,{signal:controller.signal});}form.addEventListener(\"submit\",handleSubmit,{signal:controller.signal});return()=>{controller.abort();if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}};},[]);return /*#__PURE__*/_jsx(Component,{...props,\"data-lookup\":\"demo-form\"});};}const getCountryFromIP=async()=>{try{const response=await fetch(\"https://freeipapi.com/api/json\");const data=await response.json();return(data.countryName||\"\").toLowerCase();}catch(error){console.warn(\"Country detection failed:\",error);return\"\";}};// ChiliPiper script loader\nconst loadChiliPiper=()=>{if(typeof window===\"undefined\"||window.ChiliPiper){// Cast window to any\nreturn Promise.resolve();}return new Promise((resolve,reject)=>{const script=document.createElement(\"script\");script.src=\"https://v7labs.chilipiper.com/concierge-js/cjs/concierge.js\";script.crossOrigin=\"anonymous\";script.type=\"text/javascript\";script.onload=()=>resolve();script.onerror=()=>reject(new Error(\"Failed to load ChiliPiper\"));document.head.appendChild(script);});};\nexport const __FramerMetadata__ = {\"exports\":{\"withDarwinDemoFormOverride\":{\"type\":\"reactHoc\",\"name\":\"withDarwinDemoFormOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Darwin_DemoForm_Override.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";// REMOVED: import Botpoison from \"@botpoison/browser\" // This line is removed for dynamic import\n// Configuration\nconst CONFIG={PORTAL_ID:\"19912923\",FORM_ID:\"b20a4ec3-deca-4698-9f6f-7554db2ba911\",VALIDATION_ENDPOINT:\"https://v7labs.vercel.app/api/validate-email\",VERIFY_ENDPOINT:\"https://v7labs.vercel.app/api/verify\",EVENTS:{FORM_SUBMIT:\"form_submit_demo_darwin\",CHILIPIPER_EVENT_PREFIX:\"darwin_intro_call_\"},CHILIPIPER:{ROUTING_ID:\"darwin-intro-call\"}};// Declare botpoison variable to be assigned dynamically on the client\nlet botpoisonInstance=null;// Client-side cache for email validation results\nconst emailCache=new Map;const EMAIL_CACHE_TTL=5*60*1e3// 5 minutes\n;// Main component override\nexport function withDarwinDemoFormOverride(Component){return props=>{const validationTimeoutRef=useRef();useEffect(()=>{// Dynamically import Botpoison and initialize it ONLY on the client\nif(typeof window!==\"undefined\"&&!botpoisonInstance){import(\"@botpoison/browser\").then(({default:BotpoisonModule})=>{botpoisonInstance=new BotpoisonModule({publicKey:\"pk_de9f204f-d7bc-4740-9721-81fe057ecd42\"});console.log(\"Botpoison initialized on client.\");}).catch(error=>{console.error(\"Failed to load or initialize Botpoison:\",error);});}const form=document.querySelector('[data-lookup=\"demo-form\"]');if(!form)return;const controller=new AbortController;let isSubmitting=false;// Setup country field once\nconst setupCountry=async()=>{let countryInput=form.querySelector('input[name=\"country\"]');if(!countryInput){countryInput=document.createElement(\"input\");countryInput.type=\"hidden\";countryInput.name=\"country\";form.appendChild(countryInput);}const countryName=await getCountryFromIP();countryInput.value=countryName;};setupCountry();// Email validation with caching and debouncing\nconst validateEmailWithCache=async email=>{// Check cache first\nconst cached=emailCache.get(email);if(cached&&Date.now()-cached.timestamp<EMAIL_CACHE_TTL){return cached.isValid;}try{const response=await fetch(CONFIG.VALIDATION_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({email})});if(!response.ok){// Handle rate limiting\nif(response.status===429){throw new Error(\"Too many requests. Please try again later.\");}throw new Error(\"Validation failed\");}const{isValid}=await response.json();// Update cache\nemailCache.set(email,{isValid,timestamp:Date.now()});return isValid;}catch(error){console.error(\"Email validation failed:\",error);// Fallback to basic validation if service fails\nreturn email.includes(\"@\")&&email.includes(\".\");}};// Handle form submission\nconst handleSubmit=async event=>{event.preventDefault();if(isSubmitting)return;const emailInput=form.querySelector('[name=\"email\"]');if(!emailInput)return;try{isSubmitting=true;// Validate email before proceeding\nconst isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();return;}// Process Botpoison challenge\nlet solution;try{if(!botpoisonInstance){// Use the dynamically loaded instance\nthrow new Error(\"Botpoison not initialized on client.\");}const result=await botpoisonInstance.challenge()// Call challenge on the instance\n;solution=result.solution;}catch(error){console.error(\"Botpoison challenge error:\",error);throw new Error(\"Spam verification failed\");}const formData=new FormData(form);// Verify the solution with backend\nconst verifyResponse=await fetch(CONFIG.VERIFY_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({_botpoison:solution})});if(!verifyResponse.ok){throw new Error(\"Spam verification failed\");}// Load ChiliPiper script\nawait loadChiliPiper();const hutk=document.cookie.split(\";\").find(c=>c.trim().startsWith(\"hubspotutk=\"))?.split(\"=\")[1];const response=await fetch(`https://api.hsforms.com/submissions/v3/integration/submit/${CONFIG.PORTAL_ID}/${CONFIG.FORM_ID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({fields:Array.from(formData.entries()).map(([name,value])=>({name,value:value.toString()})),context:{hutk:hutk,pageUri:window.location.href,pageName:document.title,referrer:document.referrer,ipAddress:await fetch(\"https://api.ipify.org?format=json\").then(res=>res.json()).then(data=>data.ip).catch(()=>undefined)}})});if(!response.ok){throw new Error(\"Form submission failed\");}window.dataLayer?.push({event:CONFIG.EVENTS.FORM_SUBMIT})// Cast window to any for dataLayer\n;// Trigger ChiliPiper\nif(window.ChiliPiper){window.ChiliPiper.submit(// Cast window to any\n\"v7labs\",CONFIG.CHILIPIPER.ROUTING_ID,{trigger:\"ThirdPartyForm\",lead:{email:formData.get(\"email\"),firstName:formData.get(\"firstName\"),lastName:formData.get(\"lastName\"),company:formData.get(\"company\"),country:formData.get(\"country\"),message:formData.get(\"message\")}});window.addEventListener(\"message\",function(event){if(event.origin.match(/^https:\\/\\/[a-z0-9\\.\\-]{2,}?\\.chilipiper\\.com$/)){const action=event.data.action;if(action){window.dataLayer?.push({// Cast window to any\nevent:CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+action,chilipiper:{action}});}}},{signal:controller.signal});}}catch(error){console.error(\"Form submission error:\",error);emailInput.setCustomValidity(error instanceof Error?error.message:\"An error occurred. Please try again.\");emailInput.reportValidity();}finally{isSubmitting=false;}};// Add email validation listener with debouncing\nconst emailInput=form.querySelector('[name=\"email\"]');if(emailInput){const validateEmail=async()=>{// Clear any existing validation state\nemailInput.setCustomValidity(\"\");emailInput.reportValidity();if(emailInput.value){try{const isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();}}catch(error){console.error(\"Validation error:\",error);// Don't show validation errors for rate limiting during real-time validation\nif(error.message!==\"Too many requests. Please try again later.\"){emailInput.setCustomValidity(error.message);emailInput.reportValidity();}}}};// Debounced input handler\nconst handleInput=()=>{if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}validationTimeoutRef.current=setTimeout(validateEmail,3e3);};emailInput.addEventListener(\"input\",handleInput,{signal:controller.signal});emailInput.addEventListener(\"blur\",validateEmail,{signal:controller.signal});}form.addEventListener(\"submit\",handleSubmit,{signal:controller.signal});return()=>{controller.abort();if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}};},[]);return /*#__PURE__*/_jsx(Component,{...props,\"data-lookup\":\"demo-form\"});};}const getCountryFromIP=async()=>{try{const response=await fetch(\"https://freeipapi.com/api/json\");const data=await response.json();return(data.countryName||\"\").toLowerCase();}catch(error){console.warn(\"Country detection failed:\",error);return\"\";}};// ChiliPiper script loader\nconst loadChiliPiper=()=>{if(typeof window===\"undefined\"||window.ChiliPiper){// Cast window to any\nreturn Promise.resolve();}return new Promise((resolve,reject)=>{const script=document.createElement(\"script\");script.src=\"https://v7labs.chilipiper.com/concierge-js/cjs/concierge.js\";script.crossOrigin=\"anonymous\";script.type=\"text/javascript\";script.onload=()=>resolve();script.onerror=()=>reject(new Error(\"Failed to load ChiliPiper\"));document.head.appendChild(script);});};\nexport const __FramerMetadata__ = {\"exports\":{\"withDarwinDemoFormOverride\":{\"type\":\"reactHoc\",\"name\":\"withDarwinDemoFormOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Darwin_UpgradeForm_Override.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";// Configuration\nconst CONFIG={PORTAL_ID:\"19912923\",FORM_ID:\"aa8c2fd7-1c88-46fb-ad40-a9a2c3005fb6\",VALIDATION_ENDPOINT:\"https://v7labs.vercel.app/api/validate-email\",VERIFY_ENDPOINT:\"https://v7labs.vercel.app/api/verify\",EVENTS:{FORM_SUBMIT:\"form_submit_demo_go\",CHILIPIPER_EVENT_PREFIX:\"go_intro_call_\",// NEW: Define the exact ChiliPiper action for a booked call for consistency\nCHILIPIPER_BOOKED_ACTION:\"booking-confirmed\"},CHILIPIPER:{ROUTING_ID:\"go-intro-call\"}};// Declare botpoison variable to be assigned dynamically on the client\nlet botpoisonInstance=null;// Client-side cache for email validation results\nconst emailCache=new Map;const EMAIL_CACHE_TTL=5*60*1e3// 5 minutes\n;// Main component override\nexport function withGoDemoFormOverride(Component){return props=>{const validationTimeoutRef=useRef();useEffect(()=>{// Dynamically import Botpoison and initialize it ONLY on the client\nif(typeof window!==\"undefined\"&&!botpoisonInstance){import(\"@botpoison/browser\").then(({default:BotpoisonModule})=>{botpoisonInstance=new BotpoisonModule({publicKey:\"pk_de9f204f-d7bc-4740-9721-81fe057ecd42\"});console.log(\"Botpoison initialized on client.\");}).catch(error=>{console.error(\"Failed to load or initialize Botpoison:\",error);});}const form=document.querySelector('[data-lookup=\"demo-form\"]');if(!form)return;const controller=new AbortController;let isSubmitting=false;// Setup country field once\nconst setupCountry=async()=>{let countryInput=form.querySelector('input[name=\"country\"]');if(!countryInput){countryInput=document.createElement(\"input\");countryInput.type=\"hidden\";countryInput.name=\"country\";form.appendChild(countryInput);}const countryName=await getCountryFromIP();countryInput.value=countryName;};setupCountry();// Email validation with caching and debouncing\nconst validateEmailWithCache=async email=>{// Check cache first\nconst cached=emailCache.get(email);if(cached&&Date.now()-cached.timestamp<EMAIL_CACHE_TTL){return cached.isValid;}try{const response=await fetch(CONFIG.VALIDATION_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({email})});if(!response.ok){// Handle rate limiting\nif(response.status===429){throw new Error(\"Too many requests. Please try again later.\");}throw new Error(\"Validation failed\");}const{isValid}=await response.json();// Update cache\nemailCache.set(email,{isValid,timestamp:Date.now()});return isValid;}catch(error){console.error(\"Email validation failed:\",error);// Fallback to basic validation if service fails\nreturn email.includes(\"@\")&&email.includes(\".\");}};// Handle form submission\nconst handleSubmit=async event=>{event.preventDefault();if(isSubmitting)return;const emailInput=form.querySelector('[name=\"email\"]');if(!emailInput)return;try{isSubmitting=true;// Validate email before proceeding\nconst isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();return;}// Process Botpoison challenge\nlet solution;try{if(!botpoisonInstance){// Use the dynamically loaded instance\nthrow new Error(\"Botpoison not initialized on client.\");}const result=await botpoisonInstance.challenge()// Call challenge on the instance\n;solution=result.solution;}catch(error){console.error(\"Botpoison challenge error:\",error);throw new Error(\"Spam verification failed\");}const formData=new FormData(form);const formEmail=formData.get(\"email\")// Get email here\n;// Verify the solution with backend\nconst verifyResponse=await fetch(CONFIG.VERIFY_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({_botpoison:solution})});if(!verifyResponse.ok){throw new Error(\"Spam verification failed\");}// Load ChiliPiper script\nawait loadChiliPiper();const hutk=document.cookie.split(\";\").find(c=>c.trim().startsWith(\"hubspotutk=\"))?.split(\"=\")[1];const response=await fetch(`https://api.hsforms.com/submissions/v3/integration/submit/${CONFIG.PORTAL_ID}/${CONFIG.FORM_ID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({fields:Array.from(formData.entries()).map(([name,value])=>({name,value:value.toString()})),context:{hutk:hutk,pageUri:window.location.href,pageName:document.title,referrer:document.referrer,ipAddress:await fetch(\"https://api.ipify.org?format=json\").then(res=>res.json()).then(data=>data.ip).catch(()=>undefined)}})});if(!response.ok){throw new Error(\"Form submission failed\");}window.dataLayer?.push({event:CONFIG.EVENTS.FORM_SUBMIT});// Trigger ChiliPiper\nif(window.ChiliPiper){window.ChiliPiper.submit(\"v7labs\",CONFIG.CHILIPIPER.ROUTING_ID,{trigger:\"ThirdPartyForm\",lead:{email:formEmail,firstName:formData.get(\"firstName\"),lastName:formData.get(\"lastName\"),company:formData.get(\"company\"),country:formData.get(\"country\"),message:formData.get(\"message\")}});// Track ChiliPiper events, and now Dreamdata on successful booking-confirmed event\nwindow.addEventListener(\"message\",function(event){if(event.origin.match(/^https:\\/\\/[a-z0-9\\.\\-]{2,}?\\.chilipiper\\.com$/)){const action=event.data.action;if(action){window.dataLayer?.push({event:CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+action,chilipiper:{action}});// --- Dreamdata Tracking: Triggered only on specified ChiliPiper booked action ---\nif(action===CONFIG.EVENTS.CHILIPIPER_BOOKED_ACTION&&typeof window.dreamdata!==\"undefined\"&&formEmail// Ensure email is available\n){window.dreamdata.track(CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+CONFIG.EVENTS.CHILIPIPER_BOOKED_ACTION);window.dreamdata.identify(null,{email:formEmail});console.log(\"Dreamdata tracked: \"+(CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+CONFIG.EVENTS.CHILIPIPER_BOOKED_ACTION));}// --- END Dreamdata Tracking ---\n}}},{signal:controller.signal});}}catch(error){console.error(\"Form submission error:\",error);emailInput.setCustomValidity(error instanceof Error?error.message:\"An error occurred. Please try again.\");emailInput.reportValidity();}finally{isSubmitting=false;}};// Add email validation listener with debouncing\nconst emailInput=form.querySelector('[name=\"email\"]');if(emailInput){const validateEmail=async()=>{// Clear any existing validation state\nemailInput.setCustomValidity(\"\");emailInput.reportValidity();if(emailInput.value){try{const isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();}}catch(error){console.error(\"Validation error:\",error);// Don't show validation errors for rate limiting during real-time validation\nif(error.message!==\"Too many requests. Please try again later.\"){emailInput.setCustomValidity(error.message);emailInput.reportValidity();}}}};// Debounced input handler\nconst handleInput=()=>{if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}validationTimeoutRef.current=setTimeout(validateEmail,3e3);};emailInput.addEventListener(\"input\",handleInput,{signal:controller.signal});emailInput.addEventListener(\"blur\",validateEmail,{signal:controller.signal});}form.addEventListener(\"submit\",handleSubmit,{signal:controller.signal});return()=>{controller.abort();if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}};},[]);return /*#__PURE__*/_jsx(Component,{...props,\"data-lookup\":\"demo-form\"});};}const getCountryFromIP=async()=>{try{const response=await fetch(\"https://freeipapi.com/api/json\");const data=await response.json();return(data.countryName||\"\").toLowerCase();}catch(error){console.warn(\"Country detection failed:\",error);return\"\";}};// ChiliPiper script loader\nconst loadChiliPiper=()=>{if(typeof window===\"undefined\"||window.ChiliPiper){// Cast window to any\nreturn Promise.resolve();}return new Promise((resolve,reject)=>{const script=document.createElement(\"script\");script.src=\"https://v7labs.chilipiper.com/concierge-js/cjs/concierge.js\";script.crossOrigin=\"anonymous\";script.type=\"text/javascript\";script.onload=()=>resolve();script.onerror=()=>reject(new Error(\"Failed to load ChiliPiper\"));document.head.appendChild(script);});};\nexport const __FramerMetadata__ = {\"exports\":{\"withGoDemoFormOverride\":{\"type\":\"reactHoc\",\"name\":\"withGoDemoFormOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Go_DemoForm_Override.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";// REMOVED: import Botpoison from \"@botpoison/browser\" // This line is removed for dynamic import\n// Configuration\nconst CONFIG={PORTAL_ID:\"19912923\",FORM_ID:\"cc5d1cb4-e713-43ae-adc9-d55d54240e54\",VALIDATION_ENDPOINT:\"https://v7labs.vercel.app/api/validate-email\",VERIFY_ENDPOINT:\"https://v7labs.vercel.app/api/verify\",EVENTS:{FORM_SUBMIT:\"form_submit_upgrade_go\",CHILIPIPER_EVENT_PREFIX:\"go_intro_call_\"},CHILIPIPER:{ROUTING_ID:\"go-intro-call\"}};// Declare botpoison variable to be assigned dynamically on the client\nlet botpoisonInstance=null;// Client-side cache for email validation results\nconst emailCache=new Map;const EMAIL_CACHE_TTL=5*60*1e3// 5 minutes\n;// Main component override\nexport function withGoUpgradeFormOverride(Component){return props=>{const validationTimeoutRef=useRef();useEffect(()=>{// Dynamically import Botpoison and initialize it ONLY on the client\nif(typeof window!==\"undefined\"&&!botpoisonInstance){import(\"@botpoison/browser\").then(({default:BotpoisonModule})=>{botpoisonInstance=new BotpoisonModule({publicKey:\"pk_de9f204f-d7bc-4740-9721-81fe057ecd42\"});console.log(\"Botpoison initialized on client.\");}).catch(error=>{console.error(\"Failed to load or initialize Botpoison:\",error);});}const form=document.querySelector('[data-lookup=\"demo-form\"]');if(!form)return;const controller=new AbortController;let isSubmitting=false;// Setup country field once\nconst setupCountry=async()=>{let countryInput=form.querySelector('input[name=\"country\"]');if(!countryInput){countryInput=document.createElement(\"input\");countryInput.type=\"hidden\";countryInput.name=\"country\";form.appendChild(countryInput);}const countryName=await getCountryFromIP();countryInput.value=countryName;};setupCountry();// Email validation with caching and debouncing\nconst validateEmailWithCache=async email=>{// Check cache first\nconst cached=emailCache.get(email);if(cached&&Date.now()-cached.timestamp<EMAIL_CACHE_TTL){return cached.isValid;}try{const response=await fetch(CONFIG.VALIDATION_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({email})});if(!response.ok){// Handle rate limiting\nif(response.status===429){throw new Error(\"Too many requests. Please try again later.\");}throw new Error(\"Validation failed\");}const{isValid}=await response.json();// Update cache\nemailCache.set(email,{isValid,timestamp:Date.now()});return isValid;}catch(error){console.error(\"Email validation failed:\",error);// Fallback to basic validation if service fails\nreturn email.includes(\"@\")&&email.includes(\".\");}};// Handle form submission\nconst handleSubmit=async event=>{event.preventDefault();if(isSubmitting)return;const emailInput=form.querySelector('[name=\"email\"]');if(!emailInput)return;try{isSubmitting=true;// Validate email before proceeding\nconst isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();return;}// Process Botpoison challenge\nlet solution;try{if(!botpoisonInstance){// Use the dynamically loaded instance\nthrow new Error(\"Botpoison not initialized on client.\");}const result=await botpoisonInstance.challenge()// Call challenge on the instance\n;solution=result.solution;}catch(error){console.error(\"Botpoison challenge error:\",error);throw new Error(\"Spam verification failed\");}const formData=new FormData(form);// Verify the solution with backend\nconst verifyResponse=await fetch(CONFIG.VERIFY_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({_botpoison:solution})});if(!verifyResponse.ok){throw new Error(\"Spam verification failed\");}// Load ChiliPiper script\nawait loadChiliPiper();const hutk=document.cookie.split(\";\").find(c=>c.trim().startsWith(\"hubspotutk=\"))?.split(\"=\")[1];const response=await fetch(`https://api.hsforms.com/submissions/v3/integration/submit/${CONFIG.PORTAL_ID}/${CONFIG.FORM_ID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({fields:Array.from(formData.entries()).map(([name,value])=>({name,value:value.toString()})),context:{hutk:hutk,pageUri:window.location.href,pageName:document.title,referrer:document.referrer,ipAddress:await fetch(\"https://api.ipify.org?format=json\").then(res=>res.json()).then(data=>data.ip).catch(()=>undefined)}})});if(!response.ok){throw new Error(\"Form submission failed\");}window.dataLayer?.push({event:CONFIG.EVENTS.FORM_SUBMIT})// Cast window to any for dataLayer\n;// Trigger ChiliPiper\nif(window.ChiliPiper){window.ChiliPiper.submit(// Cast window to any\n\"v7labs\",CONFIG.CHILIPIPER.ROUTING_ID,{trigger:\"ThirdPartyForm\",lead:{email:formData.get(\"email\"),firstName:formData.get(\"firstName\"),lastName:formData.get(\"lastName\"),company:formData.get(\"company\"),country:formData.get(\"country\"),message:formData.get(\"message\")}});window.addEventListener(\"message\",function(event){if(event.origin.match(/^https:\\/\\/[a-z0-9\\.\\-]{2,}?\\.chilipiper\\.com$/)){const action=event.data.action;if(action){window.dataLayer?.push({// Cast window to any\nevent:CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+action,chilipiper:{action}});}}},{signal:controller.signal});}}catch(error){console.error(\"Form submission error:\",error);emailInput.setCustomValidity(error instanceof Error?error.message:\"An error occurred. Please try again.\");emailInput.reportValidity();}finally{isSubmitting=false;}};// Add email validation listener with debouncing\nconst emailInput=form.querySelector('[name=\"email\"]');if(emailInput){const validateEmail=async()=>{// Clear any existing validation state\nemailInput.setCustomValidity(\"\");emailInput.reportValidity();if(emailInput.value){try{const isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();}}catch(error){console.error(\"Validation error:\",error);// Don't show validation errors for rate limiting during real-time validation\nif(error.message!==\"Too many requests. Please try again later.\"){emailInput.setCustomValidity(error.message);emailInput.reportValidity();}}}};// Debounced input handler\nconst handleInput=()=>{if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}validationTimeoutRef.current=setTimeout(validateEmail,3e3);};emailInput.addEventListener(\"input\",handleInput,{signal:controller.signal});emailInput.addEventListener(\"blur\",validateEmail,{signal:controller.signal});}form.addEventListener(\"submit\",handleSubmit,{signal:controller.signal});return()=>{controller.abort();if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}};},[]);return /*#__PURE__*/_jsx(Component,{...props,\"data-lookup\":\"demo-form\"});};}const getCountryFromIP=async()=>{try{const response=await fetch(\"https://freeipapi.com/api/json\");const data=await response.json();return(data.countryName||\"\").toLowerCase();}catch(error){console.warn(\"Country detection failed:\",error);return\"\";}};// ChiliPiper script loader\nconst loadChiliPiper=()=>{if(typeof window===\"undefined\"||window.ChiliPiper){// Cast window to any\nreturn Promise.resolve();}return new Promise((resolve,reject)=>{const script=document.createElement(\"script\");script.src=\"https://v7labs.chilipiper.com/concierge-js/cjs/concierge.js\";script.crossOrigin=\"anonymous\";script.type=\"text/javascript\";script.onload=()=>resolve();script.onerror=()=>reject(new Error(\"Failed to load ChiliPiper\"));document.head.appendChild(script);});};\nexport const __FramerMetadata__ = {\"exports\":{\"withGoUpgradeFormOverride\":{\"type\":\"reactHoc\",\"name\":\"withGoUpgradeFormOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Go_UpgradeForm_Override.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";// REMOVED: import Botpoison from \"@botpoison/browser\" // This line is removed for dynamic import\n// Configuration\nconst CONFIG={PORTAL_ID:\"19912923\",FORM_ID:\"aa8c2fd7-1c88-46fb-ad40-a9a2c3005fb6\",VALIDATION_ENDPOINT:\"https://v7labs.vercel.app/api/validate-email\",VERIFY_ENDPOINT:\"https://v7labs.vercel.app/api/verify\",EVENTS:{FORM_SUBMIT:\"form_submit_demo_go\",CHILIPIPER_EVENT_PREFIX:\"go_intro_call_\"},CHILIPIPER:{ROUTING_ID:\"go-intro-call\"}};// Declare botpoison variable to be assigned dynamically on the client\nlet botpoisonInstance=null;// Client-side cache for email validation results\nconst emailCache=new Map;const EMAIL_CACHE_TTL=5*60*1e3// 5 minutes\n;// Main component override\nexport function withJoinDemoFormOverride(Component){return props=>{const validationTimeoutRef=useRef();useEffect(()=>{// Dynamically import Botpoison and initialize it ONLY on the client\nif(typeof window!==\"undefined\"&&!botpoisonInstance){import(\"@botpoison/browser\").then(({default:BotpoisonModule})=>{botpoisonInstance=new BotpoisonModule({publicKey:\"pk_de9f204f-d7bc-4740-9721-81fe057ecd42\"});console.log(\"Botpoison initialized on client.\");}).catch(error=>{console.error(\"Failed to load or initialize Botpoison:\",error);});}const form=document.querySelector('[data-lookup=\"demo-form\"]');if(!form)return;const controller=new AbortController;let isSubmitting=false;// Setup country field once\nconst setupCountry=async()=>{let countryInput=form.querySelector('input[name=\"country\"]');if(!countryInput){countryInput=document.createElement(\"input\");countryInput.type=\"hidden\";countryInput.name=\"country\";form.appendChild(countryInput);}const countryName=await getCountryFromIP();countryInput.value=countryName;};setupCountry();// Email validation with caching and debouncing\nconst validateEmailWithCache=async email=>{// Check cache first\nconst cached=emailCache.get(email);if(cached&&Date.now()-cached.timestamp<EMAIL_CACHE_TTL){return cached.isValid;}try{const response=await fetch(CONFIG.VALIDATION_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({email})});if(!response.ok){// Handle rate limiting\nif(response.status===429){throw new Error(\"Too many requests. Please try again later.\");}throw new Error(\"Validation failed\");}const{isValid}=await response.json();// Update cache\nemailCache.set(email,{isValid,timestamp:Date.now()});return isValid;}catch(error){console.error(\"Email validation failed:\",error);// Fallback to basic validation if service fails\nreturn email.includes(\"@\")&&email.includes(\".\");}};// Handle form submission\nconst handleSubmit=async event=>{event.preventDefault();if(isSubmitting)return;// Find the submit button\nconst submitButton=form.querySelector('button[type=\"submit\"]');// Change button variant to \"Loading\" on click\nif(submitButton&&submitButton.__framerInstance){submitButton.__framerInstance.setProps({variant:\"Loading\"});}const emailInput=form.querySelector('[name=\"email\"]');if(!emailInput)return;try{isSubmitting=true;// Validate email before proceeding\nconst isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();// Revert button to default\nif(submitButton&&submitButton.__framerInstance){submitButton.__framerInstance.setProps({variant:\"Default\"});}isSubmitting=false;return;}// Process Botpoison challenge\nlet solution;try{if(!botpoisonInstance){// Use the dynamically loaded instance\nthrow new Error(\"Botpoison not initialized on client.\");}const result=await botpoisonInstance.challenge()// Call challenge on the instance\n;solution=result.solution;}catch(error){console.error(\"Botpoison challenge error:\",error);throw new Error(\"Spam verification failed\");}const formData=new FormData(form);// Verify the solution with backend\nconst verifyResponse=await fetch(CONFIG.VERIFY_ENDPOINT,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({_botpoison:solution})});if(!verifyResponse.ok){throw new Error(\"Spam verification failed\");}// Load ChiliPiper script\nawait loadChiliPiper();const hutk=document.cookie.split(\";\").find(c=>c.trim().startsWith(\"hubspotutk=\"))?.split(\"=\")[1];const response=await fetch(`https://api.hsforms.com/submissions/v3/integration/submit/${CONFIG.PORTAL_ID}/${CONFIG.FORM_ID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({fields:Array.from(formData.entries()).map(([name,value])=>({name,value:value.toString()})),context:{hutk:hutk,pageUri:window.location.href,pageName:document.title,referrer:document.referrer,ipAddress:await fetch(\"https://api.ipify.org?format=json\").then(res=>res.json()).then(data=>data.ip).catch(()=>undefined)}})});if(!response.ok){throw new Error(\"Form submission failed\");}// Change button variant to \"Success\" when done\nif(submitButton&&submitButton.__framerInstance){submitButton.__framerInstance.setProps({variant:\"Success\"});}window.dataLayer?.push({event:CONFIG.EVENTS.FORM_SUBMIT})// Cast window to any for dataLayer\n;// Trigger ChiliPiper\nif(window.ChiliPiper){window.ChiliPiper.submit(// Cast window to any\n\"v7labs\",CONFIG.CHILIPIPER.ROUTING_ID,{trigger:\"ThirdPartyForm\",lead:{email:formData.get(\"email\"),firstName:formData.get(\"firstName\"),lastName:formData.get(\"lastName\"),company:formData.get(\"company\"),country:formData.get(\"country\"),message:formData.get(\"message\")}});window.addEventListener(\"message\",function(event){if(event.origin.match(/^https:\\/\\/[a-z0-9\\.\\-]{2,}?\\.chilipiper\\.com$/)){const action=event.data.action;if(action){window.dataLayer?.push({// Cast window to any\nevent:CONFIG.EVENTS.CHILIPIPER_EVENT_PREFIX+action,chilipiper:{action}});}}},{signal:controller.signal});}}catch(error){console.error(\"Form submission error:\",error);// Revert button to default on error\nif(submitButton&&submitButton.__framerInstance){submitButton.__framerInstance.setProps({variant:\"Default\"});}emailInput.setCustomValidity(error instanceof Error?error.message:\"An error occurred. Please try again.\");emailInput.reportValidity();}finally{isSubmitting=false;}};// Add email validation listener with debouncing\nconst emailInput=form.querySelector('[name=\"email\"]');if(emailInput){const validateEmail=async()=>{// Clear any existing validation state\nemailInput.setCustomValidity(\"\");emailInput.reportValidity();if(emailInput.value){try{const isValid=await validateEmailWithCache(emailInput.value);if(!isValid){emailInput.setCustomValidity(\"Please enter a valid business email address\");emailInput.reportValidity();}}catch(error){console.error(\"Validation error:\",error);// Don't show validation errors for rate limiting during real-time validation\nif(error.message!==\"Too many requests. Please try again later.\"){emailInput.setCustomValidity(error.message);emailInput.reportValidity();}}}};// Debounced input handler\nconst handleInput=()=>{if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}validationTimeoutRef.current=setTimeout(validateEmail,1e3)// Note: This form uses 1000ms debounce, others use 3000ms\n;};emailInput.addEventListener(\"input\",handleInput,{signal:controller.signal});emailInput.addEventListener(\"blur\",validateEmail,{signal:controller.signal});}form.addEventListener(\"submit\",handleSubmit,{signal:controller.signal});return()=>{controller.abort();if(validationTimeoutRef.current){clearTimeout(validationTimeoutRef.current);}};},[]);return /*#__PURE__*/_jsx(Component,{...props,\"data-lookup\":\"demo-form\"});};}const getCountryFromIP=async()=>{try{const response=await fetch(\"https://freeipapi.com/api/json\");const data=await response.json();return(data.countryName||\"\").toLowerCase();}catch(error){console.warn(\"Country detection failed:\",error);return\"\";}};// ChiliPiper script loader\nconst loadChiliPiper=()=>{if(window.ChiliPiper)return Promise.resolve();return new Promise((resolve,reject)=>{const script=document.createElement(\"script\");script.src=\"https://v7labs.chilipiper.com/concierge-js/cjs/concierge.js\";script.crossOrigin=\"anonymous\";script.type=\"text/javascript\";script.onload=()=>resolve();script.onerror=()=>reject(new Error(\"Failed to load ChiliPiper\"));document.head.appendChild(script);});};\nexport const __FramerMetadata__ = {\"exports\":{\"withJoinDemoFormOverride\":{\"type\":\"reactHoc\",\"name\":\"withJoinDemoFormOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Joint_DemoForm_Override.map", "// Generated by Framer (9e1dc8e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-Cs64K .framer-styles-preset-9lstlb:not(.rich-text-wrapper), .framer-Cs64K .framer-styles-preset-9lstlb.rich-text-wrapper a { --framer-link-current-text-color: var(--token-bbcbff01-848f-43c9-9596-ee69d19df159, #ff6300) /* {\"name\":\"text-orange\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-274bb291-e3a2-4094-bf26-fef78fb200c7, #292929) /* {\"name\":\"text-default\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-9bf2aa6d-a6c8-43ed-b61a-cddd14f81cb9, #6b6b6a); --framer-link-text-decoration: underline; }'];export const className=\"framer-Cs64K\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2ac8f15)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,FormSelect,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={MN8Dh16kx:{hover:true}};const cycleOrder=[\"XQPXlWyEg\",\"MN8Dh16kx\"];const serializationHash=\"framer-joVlp\";const variantClassNames={MN8Dh16kx:\"framer-v-1eaw6lo\",XQPXlWyEg:\"framer-v-19hyhz8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.2,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Select - Pressed / Active\":\"MN8Dh16kx\",Default:\"XQPXlWyEg\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XQPXlWyEg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XQPXlWyEg\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19hyhz8\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"XQPXlWyEg\",ref:refBinding,style:{...style},...addPropertyOverrides({\"MN8Dh16kx-hover\":{\"data-framer-name\":undefined},MN8Dh16kx:{\"data-framer-name\":\"Select - Pressed / Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(FormSelect,{className:\"framer-zaxk5z\",defaultValue:\"\",inputName:\"timeline-preference\",layoutDependency:layoutDependency,layoutId:\"eag0UGX5C\",required:true,selectOptions:[{disabled:true,title:\"When do you want to implement?\",type:\"option\",value:\"\"},{title:\"Immediately (next 30 days)\",type:\"option\",value:\"immediately\"},{title:\"Within 3 months\",type:\"option\",value:\"within-3-months\"},{title:\"3-6 months\",type:\"option\",value:\"3-to-6-months\"},{title:\"6+ months (future planning)\",type:\"option\",value:\"6-months-or-more\"},{title:\"Just exploring options\",type:\"option\",value:\"just-exploring-options\"}],style:{\"--framer-input-background\":\"var(--token-2a97c1cd-fabf-4875-a86e-deeefa87e727, rgba(255, 255, 255, 0))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-97c3220b-da86-457e-8336-9337233c5b3a, rgb(209, 207, 206))\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"var(--token-274bb291-e3a2-4094-bf26-fef78fb200c7, rgb(41, 41, 41))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-joVlp.framer-vvgyyj, .framer-joVlp .framer-vvgyyj { display: block; }\",\".framer-joVlp.framer-19hyhz8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 8px 0px 0px 0px; position: relative; width: 484px; }\",'.framer-joVlp .framer-zaxk5z { --framer-input-focused-border-color: var(--token-9bf2aa6d-a6c8-43ed-b61a-cddd14f81cb9, rgba(3, 3, 2, 0.59)); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-family: \"STK Bureau STK Bureau\"; --framer-input-font-letter-spacing: -0.01em; --framer-input-font-line-height: 22px; --framer-input-font-size: 18px; --framer-input-font-text-alignment: left; --framer-input-padding: 0px 0px 8px 0px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-joVlp.framer-v-1eaw6lo.framer-19hyhz8 { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 484\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MN8Dh16kx\":{\"layout\":[\"fixed\",\"auto\"]},\"kfB03WVj7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerAAx_zbdMY=withCSS(Component,css,\"framer-joVlp\");export default FramerAAx_zbdMY;FramerAAx_zbdMY.displayName=\"Form_field_Select_Timeline\";FramerAAx_zbdMY.defaultProps={height:38,width:484};addPropertyControls(FramerAAx_zbdMY,{variant:{options:[\"XQPXlWyEg\",\"MN8Dh16kx\"],optionTitles:[\"Default\",\"Select - Pressed / Active\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAAx_zbdMY,[{explicitInter:true,fonts:[{family:\"STK Bureau STK Bureau\",source:\"custom\",url:\"https://framerusercontent.com/assets/7MlZWKV0WgsFnRj68bFFgvl3Pc.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAAx_zbdMY\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MN8Dh16kx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kfB03WVj7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"484\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"38\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AAx_zbdMY.map", "// Generated by Framer (2ac8f15)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,FormPlainTextInput,FormSelect,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/V6ZwQlsEYJjrqMzqidI7/mYFLw7Wic3QgyQUq0cvC/zQX3wbPHz.js\";const enabledGestures={AUFLFej5s:{hover:true},OYhqUK6oP:{hover:true},qJUOh4sTd:{hover:true},s7PZztirQ:{hover:true,pressed:true}};const cycleOrder=[\"s7PZztirQ\",\"qJUOh4sTd\",\"iVeKcGvYS\",\"AUFLFej5s\",\"OYhqUK6oP\"];const serializationHash=\"framer-HitWJ\";const variantClassNames={AUFLFej5s:\"framer-v-1mfp4bw\",iVeKcGvYS:\"framer-v-ks3zso\",OYhqUK6oP:\"framer-v-vg0ofk\",qJUOh4sTd:\"framer-v-11ye6wp\",s7PZztirQ:\"framer-v-qsw92w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.2,type:\"spring\"};const negate=value=>{return!value;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Phone Number\":\"tel\",\"Text Area\":\"textarea\",Date:\"date\",Email:\"email\",Number:\"number\",Text:\"text\",Time:\"time\",URL:\"url\"};const humanReadableVariantMap={\"Pressed / Active\":\"qJUOh4sTd\",\"Select - Pressed / Active\":\"OYhqUK6oP\",Default:\"s7PZztirQ\",Error:\"iVeKcGvYS\",Select:\"AUFLFej5s\"};const getProps=({height,id,label,labelYN,name1,placeholder,required,type,width,...props})=>{return{...props,hkjSWvQja:humanReadableEnumMap[type]??type??props.hkjSWvQja??\"email\",ia_lMafBj:placeholder??props.ia_lMafBj??\"Work email\",jGYAPhQ18:label??props.jGYAPhQ18??\"Work email\",mSnjk3iem:name1??props.mSnjk3iem??\"email\",ozbBizmQe:required??props.ozbBizmQe??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"s7PZztirQ\",VdkcwXldT:labelYN??props.VdkcwXldT??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,hkjSWvQja,mSnjk3iem,ia_lMafBj,ozbBizmQe,jGYAPhQ18,VdkcwXldT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"s7PZztirQ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1299mkw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"qJUOh4sTd\");});const onTapml2q14=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"OYhqUK6oP\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(VdkcwXldT);const isDisplayed=()=>{if([\"AUFLFej5s-hover\",\"OYhqUK6oP-hover\"].includes(gestureVariant))return false;if([\"AUFLFej5s\",\"OYhqUK6oP\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"AUFLFej5s-hover\",\"OYhqUK6oP-hover\"].includes(gestureVariant))return true;if([\"AUFLFej5s\",\"OYhqUK6oP\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.label,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qsw92w\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"s7PZztirQ\",onTap:onTap1299mkw,ref:refBinding,style:{...style},...addPropertyOverrides({\"AUFLFej5s-hover\":{\"data-framer-name\":undefined},\"OYhqUK6oP-hover\":{\"data-framer-name\":undefined},\"qJUOh4sTd-hover\":{\"data-framer-name\":undefined},\"s7PZztirQ-hover\":{\"data-framer-name\":undefined},\"s7PZztirQ-pressed\":{\"data-framer-name\":undefined},AUFLFej5s:{\"data-framer-name\":\"Select\",onTap:onTapml2q14},iVeKcGvYS:{\"data-framer-name\":\"Error\"},OYhqUK6oP:{\"data-framer-name\":\"Select - Pressed / Active\"},qJUOh4sTd:{\"data-framer-name\":\"Pressed / Active\"}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9tf1mj\",\"data-styles-preset\":\"zQX3wbPHz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:\"Work email\"})}),className:\"framer-1puyrs6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wsQtzq5cg\",style:{\"--extracted-r6o4lv\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\",opacity:0},text:jGYAPhQ18,variants:{OYhqUK6oP:{opacity:1},qJUOh4sTd:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1528cc0\",inputName:mSnjk3iem,layoutDependency:layoutDependency,layoutId:\"DKeqMSKnn\",placeholder:ia_lMafBj,required:ozbBizmQe,style:{\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-97c3220b-da86-457e-8336-9337233c5b3a, rgb(209, 207, 206))\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"var(--token-274bb291-e3a2-4094-bf26-fef78fb200c7, rgb(41, 41, 41))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\"},type:hkjSWvQja,variants:{\"qJUOh4sTd-hover\":{\"--framer-input-border-color\":\"var(--token-a9fa07e9-b0d2-4bb3-a5c8-0b6effb514ee, rgb(51, 51, 50))\"},\"s7PZztirQ-hover\":{\"--framer-input-border-color\":\"var(--token-a9fa07e9-b0d2-4bb3-a5c8-0b6effb514ee, rgb(51, 51, 50))\"},iVeKcGvYS:{\"--framer-input-border-color\":\"rgba(232, 2, 2, 0.24)\"},qJUOh4sTd:{\"--framer-input-placeholder-color\":\"var(--token-2a97c1cd-fabf-4875-a86e-deeefa87e727, rgba(255, 255, 255, 0))\"}}}),isDisplayed1()&&/*#__PURE__*/_jsx(FormSelect,{className:\"framer-159ptpe\",defaultValue:\"\",inputName:\"Industry\",layoutDependency:layoutDependency,layoutId:\"bbeV76_4q\",required:true,selectOptions:[{disabled:true,title:\"Industry\",type:\"option\",value:\"\"},{title:\"Finance\",type:\"option\",value:\"finance\"},{title:\"Insurance\",type:\"option\",value:\"insurance\"},{title:\"Real Estate\",type:\"option\",value:\"real estate\"},{title:\"Legal\",type:\"option\",value:\"legal\"},{title:\"Logistics\",type:\"option\",value:\"logistics\"},{title:\"Tax\",type:\"option\",value:\"tax\"},{title:\"Other\",type:\"option\",value:\"other\"}],style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"rgb(153, 153, 153)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"},variants:{\"AUFLFej5s-hover\":{\"--framer-input-border-color\":\"var(--token-a9fa07e9-b0d2-4bb3-a5c8-0b6effb514ee, rgb(51, 51, 50))\"},\"OYhqUK6oP-hover\":{\"--framer-input-border-color\":\"var(--token-a9fa07e9-b0d2-4bb3-a5c8-0b6effb514ee, rgb(51, 51, 50))\"},AUFLFej5s:{\"--framer-input-background\":\"var(--token-2a97c1cd-fabf-4875-a86e-deeefa87e727, rgba(255, 255, 255, 0))\",\"--framer-input-border-color\":\"var(--token-97c3220b-da86-457e-8336-9337233c5b3a, rgb(209, 207, 206))\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"var(--token-274bb291-e3a2-4094-bf26-fef78fb200c7, rgb(41, 41, 41))\"},OYhqUK6oP:{\"--framer-input-background\":\"var(--token-2a97c1cd-fabf-4875-a86e-deeefa87e727, rgba(255, 255, 255, 0))\",\"--framer-input-border-color\":\"var(--token-97c3220b-da86-457e-8336-9337233c5b3a, rgb(209, 207, 206))\",\"--framer-input-border-left-width\":\"0px\",\"--framer-input-border-right-width\":\"0px\",\"--framer-input-border-top-width\":\"0px\",\"--framer-input-font-color\":\"var(--token-274bb291-e3a2-4094-bf26-fef78fb200c7, rgb(41, 41, 41))\",\"--framer-input-invalid-text-color\":\"var(--token-2a97c1cd-fabf-4875-a86e-deeefa87e727, rgba(255, 255, 255, 0))\"}},...addPropertyOverrides({AUFLFej5s:{inputName:jGYAPhQ18}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HitWJ.framer-18u3ak5, .framer-HitWJ .framer-18u3ak5 { display: block; }\",\".framer-HitWJ.framer-qsw92w { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 8px 0px 0px 0px; position: relative; width: 484px; }\",\".framer-HitWJ .framer-1puyrs6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-HitWJ .framer-1528cc0 { --framer-input-focused-border-color: var(--token-9bf2aa6d-a6c8-43ed-b61a-cddd14f81cb9, rgba(3, 3, 2, 0.59)); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-family: \"STK Bureau STK Bureau\"; --framer-input-font-letter-spacing: -0.01em; --framer-input-font-line-height: 22px; --framer-input-font-size: 18px; --framer-input-padding: 0px 0px 8px 0px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }','.framer-HitWJ .framer-159ptpe { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 0px 12px 8px 12px; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-HitWJ.framer-v-11ye6wp.framer-qsw92w { height: 38px; }\",\".framer-HitWJ.framer-v-11ye6wp .framer-1528cc0 { --framer-input-wrapper-height: unset; flex: 1 0 0px; height: 1px; }\",'.framer-HitWJ.framer-v-1mfp4bw .framer-159ptpe, .framer-HitWJ.framer-v-vg0ofk .framer-159ptpe { --framer-input-focused-border-color: var(--token-9bf2aa6d-a6c8-43ed-b61a-cddd14f81cb9, rgba(3, 3, 2, 0.59)); --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-family: \"STK Bureau STK Bureau\"; --framer-input-font-letter-spacing: -0.01em; --framer-input-font-line-height: 25px; --framer-input-font-size: 21px; --framer-input-font-weight: unset; --framer-input-padding: 0px 0px 8px 0px; }',\".framer-HitWJ.framer-v-11ye6wp.hover .framer-1528cc0 { --framer-input-wrapper-height: unset; }\",\".framer-HitWJ.framer-v-1mfp4bw.hover .framer-159ptpe, .framer-HitWJ.framer-v-vg0ofk.hover .framer-159ptpe { --framer-input-font-weight: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 484\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qJUOh4sTd\":{\"layout\":[\"fixed\",\"fixed\"]},\"iVeKcGvYS\":{\"layout\":[\"fixed\",\"auto\"]},\"AUFLFej5s\":{\"layout\":[\"fixed\",\"auto\"]},\"OYhqUK6oP\":{\"layout\":[\"fixed\",\"auto\"]},\"XS2w9d8sJ\":{\"layout\":[\"fixed\",\"auto\"]},\"CsBsHHNFZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"qe6tXQhCz\":{\"layout\":[\"fixed\",\"auto\"]},\"OQifQmoM3\":{\"layout\":[\"fixed\",\"auto\"]},\"moCp1mRal\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hkjSWvQja\":\"type\",\"mSnjk3iem\":\"name1\",\"ia_lMafBj\":\"placeholder\",\"ozbBizmQe\":\"required\",\"jGYAPhQ18\":\"label\",\"VdkcwXldT\":\"labelYN\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkQCdCJw85=withCSS(Component,css,\"framer-HitWJ\");export default FramerkQCdCJw85;FramerkQCdCJw85.displayName=\"Form field\";FramerkQCdCJw85.defaultProps={height:38,width:484};addPropertyControls(FramerkQCdCJw85,{variant:{options:[\"s7PZztirQ\",\"qJUOh4sTd\",\"iVeKcGvYS\",\"AUFLFej5s\",\"OYhqUK6oP\"],optionTitles:[\"Default\",\"Pressed / Active\",\"Error\",\"Select\",\"Select - Pressed / Active\"],title:\"Variant\",type:ControlType.Enum},hkjSWvQja:{defaultValue:\"email\",options:[\"text\",\"textarea\",\"email\",\"number\",\"tel\",\"url\",\"date\",\"time\"],optionTitles:[\"Text\",\"Text Area\",\"Email\",\"Number\",\"Phone Number\",\"URL\",\"Date\",\"Time\"],title:\"Type\",type:ControlType.Enum},mSnjk3iem:{defaultValue:\"email\",title:\"Name\",type:ControlType.String},ia_lMafBj:{defaultValue:\"Work email\",title:\"Placeholder\",type:ControlType.String},ozbBizmQe:{defaultValue:true,title:\"Required\",type:ControlType.Boolean},jGYAPhQ18:{defaultValue:\"Work email\",displayTextArea:false,title:\"Label\",type:ControlType.String},VdkcwXldT:{defaultValue:true,title:\"Label Y/N?\",type:ControlType.Boolean}});addFonts(FramerkQCdCJw85,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"STK Bureau STK Bureau\",source:\"custom\",url:\"https://framerusercontent.com/assets/7MlZWKV0WgsFnRj68bFFgvl3Pc.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkQCdCJw85\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"484\",\"framerIntrinsicHeight\":\"38\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hkjSWvQja\\\":\\\"type\\\",\\\"mSnjk3iem\\\":\\\"name1\\\",\\\"ia_lMafBj\\\":\\\"placeholder\\\",\\\"ozbBizmQe\\\":\\\"required\\\",\\\"jGYAPhQ18\\\":\\\"label\\\",\\\"VdkcwXldT\\\":\\\"labelYN\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qJUOh4sTd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iVeKcGvYS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AUFLFej5s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OYhqUK6oP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XS2w9d8sJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CsBsHHNFZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qe6tXQhCz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OQifQmoM3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"moCp1mRal\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kQCdCJw85.map", "// Generated by Framer (b012016)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/V6ZwQlsEYJjrqMzqidI7/mYFLw7Wic3QgyQUq0cvC/zQX3wbPHz.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={mLcc2r8_S:{hover:true,pressed:true}};const cycleOrder=[\"mLcc2r8_S\",\"WKauwkxvF\",\"TQPsF3_Tt\",\"hZ7E9YRdh\",\"gzHspRVLr\"];const serializationHash=\"framer-fP3tn\";const variantClassNames={gzHspRVLr:\"framer-v-1b32cj\",hZ7E9YRdh:\"framer-v-1g46yta\",mLcc2r8_S:\"framer-v-1nl84cw\",TQPsF3_Tt:\"framer-v-14tpvwb\",WKauwkxvF:\"framer-v-1tt8xi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"mLcc2r8_S\",Disabled:\"TQPsF3_Tt\",Error:\"gzHspRVLr\",Loading:\"WKauwkxvF\",Success:\"hZ7E9YRdh\"};const getProps=({click,height,id,title,width,...props})=>{return{...props,JlQq9DcxG:click??props.JlQq9DcxG,variant:humanReadableVariantMap[props.variant]??props.variant??\"mLcc2r8_S\",w4mnHQFUD:title??props.w4mnHQFUD??\"Submit\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,w4mnHQFUD,JlQq9DcxG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mLcc2r8_S\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaph7sj6k=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(JlQq9DcxG){const res=await JlQq9DcxG(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"mLcc2r8_S-pressed\")return false;if(baseVariant===\"WKauwkxvF\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"mLcc2r8_S-pressed\")return true;if(baseVariant===\"WKauwkxvF\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nl84cw\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"mLcc2r8_S\",onTap:onTaph7sj6k,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-2464ca5b-ea2c-4d41-bc4a-13f96c19a5ed, rgb(28, 28, 28))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},variants:{\"mLcc2r8_S-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(51, 51, 51, 0.85)\"},\"mLcc2r8_S-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(51, 51, 51)\"},gzHspRVLr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 34, 68, 0.15)\"},hZ7E9YRdh:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TQPsF3_Tt:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-97c3220b-da86-457e-8336-9337233c5b3a, rgb(209, 207, 206))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"mLcc2r8_S-hover\":{\"data-framer-name\":undefined},\"mLcc2r8_S-pressed\":{\"data-framer-name\":undefined},gzHspRVLr:{\"data-framer-name\":\"Error\"},hZ7E9YRdh:{\"data-framer-name\":\"Success\"},TQPsF3_Tt:{\"data-border\":true,\"data-framer-name\":\"Disabled\"},WKauwkxvF:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9tf1mj\",\"data-styles-preset\":\"zQX3wbPHz\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0d2c7302-caba-4ef2-a330-4f991b9a81a7, rgb(255, 255, 255)))\"},children:\"Submit\"})}),className:\"framer-10x1zto\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZcUnZfPeR\",style:{\"--extracted-r6o4lv\":\"var(--token-0d2c7302-caba-4ef2-a330-4f991b9a81a7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:w4mnHQFUD,variants:{gzHspRVLr:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"},hZ7E9YRdh:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gzHspRVLr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"],text:undefined},hZ7E9YRdh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})}),fonts:[\"Inter-SemiBold\"],text:undefined},TQPsF3_Tt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9tf1mj\",\"data-styles-preset\":\"zQX3wbPHz\",children:\"Submit\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17iw3jq\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"DQUseVH_L\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1h2txyk\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"ZlKH9yE55\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{\"mLcc2r8_S-pressed\":{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"none\",WebkitMask:\"none\"},WKauwkxvF:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-df7sf4\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"b4JjWoO9D\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fP3tn.framer-etbzrq, .framer-fP3tn .framer-etbzrq { display: block; }\",\".framer-fP3tn.framer-1nl84cw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-fP3tn .framer-10x1zto { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-fP3tn .framer-17iw3jq { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-fP3tn .framer-1h2txyk { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-fP3tn .framer-df7sf4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-fP3tn.framer-v-1tt8xi .framer-1h2txyk { overflow: hidden; }\",...sharedStyle.css,'.framer-fP3tn[data-border=\"true\"]::after, .framer-fP3tn [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WKauwkxvF\":{\"layout\":[\"fixed\",\"fixed\"]},\"TQPsF3_Tt\":{\"layout\":[\"fixed\",\"fixed\"]},\"hZ7E9YRdh\":{\"layout\":[\"fixed\",\"fixed\"]},\"gzHspRVLr\":{\"layout\":[\"fixed\",\"fixed\"]},\"FoXLG6UL5\":{\"layout\":[\"fixed\",\"fixed\"]},\"uyAkAHWAI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"w4mnHQFUD\":\"title\",\"JlQq9DcxG\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersDEB4lD9c=withCSS(Component,css,\"framer-fP3tn\");export default FramersDEB4lD9c;FramersDEB4lD9c.displayName=\"Form Button\";FramersDEB4lD9c.defaultProps={height:40,width:240};addPropertyControls(FramersDEB4lD9c,{variant:{options:[\"mLcc2r8_S\",\"WKauwkxvF\",\"TQPsF3_Tt\",\"hZ7E9YRdh\",\"gzHspRVLr\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},w4mnHQFUD:{defaultValue:\"Submit\",displayTextArea:false,title:\"Title\",type:ControlType.String},JlQq9DcxG:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramersDEB4lD9c,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersDEB4lD9c\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"w4mnHQFUD\\\":\\\"title\\\",\\\"JlQq9DcxG\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WKauwkxvF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TQPsF3_Tt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hZ7E9YRdh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gzHspRVLr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FoXLG6UL5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uyAkAHWAI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"240\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sDEB4lD9c.map", "// Generated by Framer (2ac8f15)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withInputAutofillOverride}from\"https://framerusercontent.com/modules/lMUpz1vEPQwdidGfW5vv/7Ws8KSSMzbLTYMjj5JrI/AutoFill_Override.js\";import{withSubmitButtonOverride}from\"https://framerusercontent.com/modules/Q0r1TBGo50LOAdBnG113/R6yLwzjiCNrI588juCHe/ButtonLoadingState.js\";import{withDarwinDemoFormOverride}from\"https://framerusercontent.com/modules/OuFKh3JoG1dPZzEWgFVp/zdWn2n0uF4XxdUlK9UfK/Darwin_DemoForm_Override.js\";import{withDarwinDemoFormOverride as withDarwinDemoFormOverride1}from\"https://framerusercontent.com/modules/R8NBKaH4gr7eLR6rX7UR/yJBZJR69OkyZmfhBwbgM/Darwin_UpgradeForm_Override.js\";import{withGoDemoFormOverride}from\"https://framerusercontent.com/modules/HyULyg9vIVhqsSB5CNx4/YIq2mcITDQbkFopAhObJ/Go_DemoForm_Override.js\";import{withGoUpgradeFormOverride}from\"https://framerusercontent.com/modules/dkqWlX1PF62UxieY3g5h/oVTG6qNXqKO5etoIaAaj/Go_UpgradeForm_Override.js\";import{withJoinDemoFormOverride}from\"https://framerusercontent.com/modules/C1or85PGRiGVmPVAd5Rm/7aebZNGbCWLKy2ztJQ2u/Joint_DemoForm_Override.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Yr0Qz7sZCW6dDIi8YAtJ/18FzD3TPaMNFPmrlm553/EgPzxaEij.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/P00CFL26IB5RGz0EVT0Z/VlB1vo6E9wI1bWGw9syY/ng8vWsYYj.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/64auF10vcS9xbuuh6hTT/0cLGhKFc9IzIjZfDSEDQ/xKuCyPoET.js\";import Form_field_Select_Timeline from\"https://framerusercontent.com/modules/isbuS8xpsqtABYpSgNVv/m2F96xhKUGNR4RSUM7fJ/AAx_zbdMY.js\";import FormField,*as FormFieldInfo from\"https://framerusercontent.com/modules/7z6SICgfxgeHscz7x9ba/VauAX30JQS9FyuCj8pqg/kQCdCJw85.js\";import FormButton,*as FormButtonInfo from\"https://framerusercontent.com/modules/jYp0JrcK7KzdFrTcZlIl/Ys4MoDhRKAtwDUJnjgTn/sDEB4lD9c.js\";const FormFieldFonts=getFonts(FormField);const Form_field_Select_TimelineFonts=getFonts(Form_field_Select_Timeline);const FormButtonFonts=getFonts(FormButton);const FormButtonWithSubmitButtonOverridejxq5rhWithMappedReactProps8bpugg=withMappedReactProps(withCodeBoundaryForOverrides(FormButton,{nodeId:\"UQdiQJ3J7\",override:withSubmitButtonOverride,scopeId:\"x_mZRtpfa\"}),FormButtonInfo);const FormContainerWithGoDemoFormOverridev7fq0j=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"AhcYP7zkj\",override:withGoDemoFormOverride,scopeId:\"x_mZRtpfa\"});const FormContainerWithGoUpgradeFormOverride1h75pgq=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"EEh3oCVLv\",override:withGoUpgradeFormOverride,scopeId:\"x_mZRtpfa\"});const FormContainerWithJoinDemoFormOverride1svmwl2=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"FrdIRdScd\",override:withJoinDemoFormOverride,scopeId:\"x_mZRtpfa\"});const FormFieldWithInputAutofillOverride1ecs5i3WithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"dvPHjQPYI\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverridessnitkWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"f1O2J7s8r\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverridej3bs6wWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"zBtgGjMcc\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride19paxoeWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"wvCko2PHA\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride13vdne3WithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"ktfJeufv1\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride1ywinhhWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"cqp_TquRY\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormContainerWithDarwinDemoFormOverride1y81zae=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"XNPWZt5Ye\",override:withDarwinDemoFormOverride,scopeId:\"x_mZRtpfa\"});const FormFieldWithInputAutofillOverride14891ttWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"goigFr4zE\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride1gd2h81WithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"j83JX0Dcp\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride5nrb6mWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"R9KJWkjeJ\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride1pf5nbsWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"r7253RlpV\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride1tvanj3WithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"WYMNw3Dar\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormFieldWithInputAutofillOverride9j1ycbWithMappedReactPropslkvi=withMappedReactProps(withCodeBoundaryForOverrides(FormField,{nodeId:\"mmm4uGKWD\",override:withInputAutofillOverride,scopeId:\"x_mZRtpfa\"}),FormFieldInfo);const FormContainerWithDarwinDemoFormOverride11ccg5a4=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"Q6uDEGo90\",override:withDarwinDemoFormOverride1,scopeId:\"x_mZRtpfa\"});const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"cTxx4XltV\",\"WoYGPn5Gw\",\"IAzGkh4OW\",\"r4_XCj8PR\",\"i13wL62S0\"];const serializationHash=\"framer-UjwSp\";const variantClassNames={cTxx4XltV:\"framer-v-sgj9wp\",i13wL62S0:\"framer-v-52ov41\",IAzGkh4OW:\"framer-v-10qun2r\",r4_XCj8PR:\"framer-v-7cgav1\",WoYGPn5Gw:\"framer-v-l20kil\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.2,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Darwin Upgrade\":\"r4_XCj8PR\",\"Go Upgrade\":\"IAzGkh4OW\",\"Joint Demo\":\"i13wL62S0\",Darwin:\"WoYGPn5Gw\",Go:\"cTxx4XltV\"};const getProps=({background,click,headlineYN,height,id,padding,width,...props})=>{return{...props,kaoj3lN1q:click??props.kaoj3lN1q,l8Yi7dFgq:padding??props.l8Yi7dFgq??\"32px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"cTxx4XltV\",XzE1LGIQl:background??props.XzE1LGIQl??\"var(--token-c273635b-cadd-42b8-93b3-a3cdba83495f, rgb(255, 255, 255))\",Y7hwxVdJP:headlineYN??props.Y7hwxVdJP??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,kaoj3lN1q,l8Yi7dFgq,Y7hwxVdJP,XzE1LGIQl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cTxx4XltV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const JlQq9DcxG1m9lgel=activeVariantCallback(async(...args)=>{if(kaoj3lN1q){const res=await kaoj3lN1q(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"WoYGPn5Gw\",\"IAzGkh4OW\",\"r4_XCj8PR\",\"i13wL62S0\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"IAzGkh4OW\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"i13wL62S0\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"WoYGPn5Gw\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"r4_XCj8PR\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-sgj9wp\",className,classNames),\"data-framer-appear-id\":\"sgj9wp\",\"data-framer-name\":\"Go\",layoutDependency:layoutDependency,layoutId:\"cTxx4XltV\",optimized:true,ref:refBinding,style:{\"--ncwu0r\":numberToPixelString(l8Yi7dFgq),backgroundColor:XzE1LGIQl,...style},...addPropertyOverrides({i13wL62S0:{\"data-framer-name\":\"Joint Demo\"},IAzGkh4OW:{\"data-framer-name\":\"Go Upgrade\"},r4_XCj8PR:{\"data-framer-name\":\"Darwin Upgrade\"},WoYGPn5Gw:{\"data-framer-name\":\"Darwin\"}},baseVariant,gestureVariant),children:[Y7hwxVdJP&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-15q6j7\",\"data-styles-preset\":\"EgPzxaEij\",children:[\"Start automating workflows\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:\"faster with V7 Go\"})]})}),className:\"framer-1i7gf8p\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qHCq2780O\",style:{\"--extracted-3sq8v0\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({i13wL62S0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15q6j7\",\"data-styles-preset\":\"EgPzxaEij\",children:\"Book a demo\"})})},r4_XCj8PR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-15q6j7\",\"data-styles-preset\":\"EgPzxaEij\",children:[\"Start labeling data\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:\"faster with V7 Darwin\"})]})})},WoYGPn5Gw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-15q6j7\",\"data-styles-preset\":\"EgPzxaEij\",children:[\"Start labeling data\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:\"faster with V7 Darwin\"})]})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(FormContainerWithGoDemoFormOverridev7fq0j,{className:\"framer-v7fq0j\",\"data-framer-name\":\"Go_Form\",layoutDependency:layoutDependency,layoutId:\"AhcYP7zkj\",nodeId:\"AhcYP7zkj\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4fgcx8\",\"data-framer-name\":\"Fields\",layoutDependency:layoutDependency,layoutId:\"SnuQPuOuw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19le6l3\",\"data-framer-name\":\"Names\",layoutDependency:layoutDependency,layoutId:\"ICvs7j0jJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-147mrqg-container\",layoutDependency:layoutDependency,layoutId:\"VQzTIAAJo-container\",nodeId:\"VQzTIAAJo\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"First name\",id:\"VQzTIAAJo\",jGYAPhQ18:\"First name\",layoutId:\"VQzTIAAJo\",mSnjk3iem:\"firstName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5ughtm-container\",layoutDependency:layoutDependency,layoutId:\"SbXBSotI_-container\",nodeId:\"SbXBSotI_\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Last name\",id:\"SbXBSotI_\",jGYAPhQ18:\"Last name\",layoutId:\"SbXBSotI_\",mSnjk3iem:\"lastName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2s4w3m\",layoutDependency:layoutDependency,layoutId:\"JSnURsF5A\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13hv41-container\",layoutDependency:layoutDependency,layoutId:\"oectpgZzL-container\",nodeId:\"oectpgZzL\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"email\",ia_lMafBj:\"Work email\",id:\"oectpgZzL\",jGYAPhQ18:\"Work email\",layoutId:\"oectpgZzL\",mSnjk3iem:\"email\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19vu89j\",\"data-framer-name\":\"Title and Company\",layoutDependency:layoutDependency,layoutId:\"lbhmfkf4i\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m4dt1h-container\",layoutDependency:layoutDependency,layoutId:\"UFx6ZvScx-container\",nodeId:\"UFx6ZvScx\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Job title\",id:\"UFx6ZvScx\",jGYAPhQ18:\"Job title\",layoutId:\"UFx6ZvScx\",mSnjk3iem:\"jobTitle\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ver6b-container\",layoutDependency:layoutDependency,layoutId:\"NKkyyzVrA-container\",nodeId:\"NKkyyzVrA\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Company\",id:\"NKkyyzVrA\",jGYAPhQ18:\"Company\",layoutId:\"NKkyyzVrA\",mSnjk3iem:\"company\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k5zpre\",\"data-framer-name\":\"Timeline\",layoutDependency:layoutDependency,layoutId:\"TyxCtIgPl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b7jxjp-container\",layoutDependency:layoutDependency,layoutId:\"lgiDQbRpD-container\",nodeId:\"lgiDQbRpD\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(Form_field_Select_Timeline,{height:\"100%\",id:\"lgiDQbRpD\",layoutId:\"lgiDQbRpD\",style:{width:\"100%\"},type:\"submit\",variant:\"XQPXlWyEg\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p5hobf\",\"data-framer-name\":\"Referral\",layoutDependency:layoutDependency,layoutId:\"Vx6iCWdWY\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n0224z-container\",layoutDependency:layoutDependency,layoutId:\"lLjr7iIGF-container\",nodeId:\"lLjr7iIGF\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"How did you hear about us?\",id:\"lLjr7iIGF\",jGYAPhQ18:\"How did you hear about us?\",layoutId:\"lLjr7iIGF\",mSnjk3iem:\"hear_about_us\",ozbBizmQe:false,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zemx07-container\",layoutDependency:layoutDependency,layoutId:\"uahl756e2-container\",nodeId:\"uahl756e2\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"textarea\",ia_lMafBj:\"Please describe your use case\",id:\"uahl756e2\",jGYAPhQ18:\"Please describe your use case\",layoutId:\"uahl756e2\",mSnjk3iem:\"message\",ozbBizmQe:true,style:{height:\"100%\",width:\"100%\"},variant:\"qJUOh4sTd\",VdkcwXldT:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h9jv29\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"pmJlm8GfR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0uyvm\",layoutDependency:layoutDependency,layoutId:\"kyXoUREgZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jxq5rh-container\",layoutDependency:layoutDependency,layoutId:\"UQdiQJ3J7-container\",nodeId:\"UQdiQJ3J7\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormButtonWithSubmitButtonOverridejxq5rhWithMappedReactProps8bpugg,{height:\"100%\",id:\"UQdiQJ3J7\",layoutId:\"UQdiQJ3J7\",style:{height:\"100%\",width:\"100%\"},variant:\"mLcc2r8_S\",w4mnHQFUD:\"Submit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-199vmc3\",\"data-styles-preset\":\"xKuCyPoET\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:[\"By submitting this form I confirm I have read and accepted V7's\\xa0\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kXpevmCJF\"},motionChild:true,nodeId:\"lAnYiw40T\",openInNewTab:true,relValues:[],scopeId:\"x_mZRtpfa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9lstlb\",\"data-styles-preset\":\"ng8vWsYYj\",children:\"Privacy Policy\"})})]})}),className:\"framer-1ihu37g\",\"data-framer-name\":\"Disclaimer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lAnYiw40T\",style:{\"--extracted-r6o4lv\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(FormContainerWithGoUpgradeFormOverride1h75pgq,{className:\"framer-1h75pgq\",\"data-framer-name\":\"Go_Upgrade_Form\",layoutDependency:layoutDependency,layoutId:\"EEh3oCVLv\",nodeId:\"EEh3oCVLv\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pcdiaf\",\"data-framer-name\":\"Fields\",layoutDependency:layoutDependency,layoutId:\"dq_Rn7BFm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qmh7v7\",\"data-framer-name\":\"Names\",layoutDependency:layoutDependency,layoutId:\"QU8FtRSpL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({IAzGkh4OW:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q1y272-container\",layoutDependency:layoutDependency,layoutId:\"GsnZAqbqY-container\",nodeId:\"GsnZAqbqY\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"First name\",id:\"GsnZAqbqY\",jGYAPhQ18:\"First name\",layoutId:\"GsnZAqbqY\",mSnjk3iem:\"firstName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({IAzGkh4OW:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y60xh5-container\",layoutDependency:layoutDependency,layoutId:\"vMJyRj2pS-container\",nodeId:\"vMJyRj2pS\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Last name\",id:\"vMJyRj2pS\",jGYAPhQ18:\"Last name\",layoutId:\"vMJyRj2pS\",mSnjk3iem:\"lastName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-163pyi7\",layoutDependency:layoutDependency,layoutId:\"Ty1aT3wlv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({IAzGkh4OW:{width:`max(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ak07kl-container\",layoutDependency:layoutDependency,layoutId:\"cZQzTUdAt-container\",nodeId:\"cZQzTUdAt\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"email\",ia_lMafBj:\"Work email\",id:\"cZQzTUdAt\",jGYAPhQ18:\"Work email\",layoutId:\"cZQzTUdAt\",mSnjk3iem:\"email\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11x21oq\",\"data-framer-name\":\"Title and Company\",layoutDependency:layoutDependency,layoutId:\"PjlmF8eJG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({IAzGkh4OW:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-165hds5-container\",layoutDependency:layoutDependency,layoutId:\"w4xTfHGFC-container\",nodeId:\"w4xTfHGFC\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Job title\",id:\"w4xTfHGFC\",jGYAPhQ18:\"Job title\",layoutId:\"w4xTfHGFC\",mSnjk3iem:\"jobTitle\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({IAzGkh4OW:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-le5tu3-container\",layoutDependency:layoutDependency,layoutId:\"upZJYGZE_-container\",nodeId:\"upZJYGZE_\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Company\",id:\"upZJYGZE_\",jGYAPhQ18:\"Company\",layoutId:\"upZJYGZE_\",mSnjk3iem:\"company\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({IAzGkh4OW:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xkmhtx-container\",layoutDependency:layoutDependency,layoutId:\"wT1n18QOd-container\",nodeId:\"wT1n18QOd\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"textarea\",ia_lMafBj:\"Please describe your use case\",id:\"wT1n18QOd\",jGYAPhQ18:\"Please describe your use case\",layoutId:\"wT1n18QOd\",mSnjk3iem:\"message\",ozbBizmQe:true,style:{height:\"100%\",width:\"100%\"},variant:\"qJUOh4sTd\",VdkcwXldT:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mo6tlv\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"pNFYwnzfs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a8xvfi\",layoutDependency:layoutDependency,layoutId:\"eXiStpaBI\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({IAzGkh4OW:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ktdade-container\",layoutDependency:layoutDependency,layoutId:\"TnIP1W_Bf-container\",nodeId:\"TnIP1W_Bf\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormButton,{height:\"100%\",id:\"TnIP1W_Bf\",JlQq9DcxG:JlQq9DcxG1m9lgel,layoutId:\"TnIP1W_Bf\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{incomplete:\"TQPsF3_Tt\",pending:\"WKauwkxvF\",success:\"hZ7E9YRdh\"},\"mLcc2r8_S\"),w4mnHQFUD:\"Submit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-199vmc3\",\"data-styles-preset\":\"xKuCyPoET\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:[\"By submitting this form I confirm I have read and accepted V7's\\xa0\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kXpevmCJF\"},motionChild:true,nodeId:\"HYIXzyWUf\",openInNewTab:true,relValues:[],scopeId:\"x_mZRtpfa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9lstlb\",\"data-styles-preset\":\"ng8vWsYYj\",children:\"Privacy Policy\"})})]})}),className:\"framer-11l3foi\",\"data-framer-name\":\"Disclaimer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HYIXzyWUf\",style:{\"--extracted-r6o4lv\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(FormContainerWithJoinDemoFormOverride1svmwl2,{className:\"framer-1svmwl2\",\"data-framer-name\":\"Joint_Form\",layoutDependency:layoutDependency,layoutId:\"FrdIRdScd\",nodeId:\"FrdIRdScd\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18qku97\",\"data-framer-name\":\"Fields\",layoutDependency:layoutDependency,layoutId:\"CEuGA4Pny\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152fybb\",\"data-framer-name\":\"Names\",layoutDependency:layoutDependency,layoutId:\"Y906A_oiJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({i13wL62S0:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-shd44z-container\",layoutDependency:layoutDependency,layoutId:\"nyg4GmQtM-container\",nodeId:\"nyg4GmQtM\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"First name\",id:\"nyg4GmQtM\",jGYAPhQ18:\"First name\",layoutId:\"nyg4GmQtM\",mSnjk3iem:\"firstName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({i13wL62S0:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-to4gxz-container\",layoutDependency:layoutDependency,layoutId:\"ORVNaH9rl-container\",nodeId:\"ORVNaH9rl\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Last name\",id:\"ORVNaH9rl\",jGYAPhQ18:\"Last name\",layoutId:\"ORVNaH9rl\",mSnjk3iem:\"lastName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9rasmy\",layoutDependency:layoutDependency,layoutId:\"TlqgMl0i9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,...addPropertyOverrides({i13wL62S0:{width:`max(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-motfqh-container\",layoutDependency:layoutDependency,layoutId:\"UDvIyuJ8h-container\",nodeId:\"UDvIyuJ8h\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"email\",ia_lMafBj:\"Work email\",id:\"UDvIyuJ8h\",jGYAPhQ18:\"Work email\",layoutId:\"UDvIyuJ8h\",mSnjk3iem:\"email\",ozbBizmQe:true,style:{height:\"100%\",width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7m3tt2\",\"data-framer-name\":\"Title and Company\",layoutDependency:layoutDependency,layoutId:\"wO8dD0HrS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({i13wL62S0:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-txufr2-container\",layoutDependency:layoutDependency,layoutId:\"nLV0D7aFn-container\",nodeId:\"nLV0D7aFn\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Job title\",id:\"nLV0D7aFn\",jGYAPhQ18:\"Job title\",layoutId:\"nLV0D7aFn\",mSnjk3iem:\"jobTitle\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({i13wL62S0:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13yok5b-container\",layoutDependency:layoutDependency,layoutId:\"AFKVVaIkf-container\",nodeId:\"AFKVVaIkf\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Company\",id:\"AFKVVaIkf\",jGYAPhQ18:\"Company\",layoutId:\"AFKVVaIkf\",mSnjk3iem:\"company\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({i13wL62S0:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o7f21e-container\",layoutDependency:layoutDependency,layoutId:\"DPMh6vCZn-container\",nodeId:\"DPMh6vCZn\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"textarea\",ia_lMafBj:\"Please describe your use case\",id:\"DPMh6vCZn\",jGYAPhQ18:\"Please describe your use case\",layoutId:\"DPMh6vCZn\",mSnjk3iem:\"message\",ozbBizmQe:true,style:{height:\"100%\",width:\"100%\"},variant:\"qJUOh4sTd\",VdkcwXldT:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tl8ld0\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"dv2aG9_Y_\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q5oqhb\",layoutDependency:layoutDependency,layoutId:\"cpvX6FC5A\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({i13wL62S0:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cop4p3-container\",layoutDependency:layoutDependency,layoutId:\"xOdI2FY5R-container\",nodeId:\"xOdI2FY5R\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormButton,{height:\"100%\",id:\"xOdI2FY5R\",JlQq9DcxG:JlQq9DcxG1m9lgel,layoutId:\"xOdI2FY5R\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"gzHspRVLr\",incomplete:\"TQPsF3_Tt\",pending:\"WKauwkxvF\",success:\"hZ7E9YRdh\"},\"mLcc2r8_S\"),w4mnHQFUD:\"Submit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-199vmc3\",\"data-styles-preset\":\"xKuCyPoET\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:[\"By submitting this form I confirm I have read and accepted V7's\\xa0\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kXpevmCJF\"},motionChild:true,nodeId:\"G1YMXZJPT\",openInNewTab:true,relValues:[],scopeId:\"x_mZRtpfa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9lstlb\",\"data-styles-preset\":\"ng8vWsYYj\",children:\"Privacy Policy\"})})]})}),className:\"framer-1u4aijf\",\"data-framer-name\":\"Disclaimer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G1YMXZJPT\",style:{\"--extracted-r6o4lv\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(FormContainerWithDarwinDemoFormOverride1y81zae,{className:\"framer-1y81zae\",\"data-framer-name\":\"Darwin_Form\",layoutDependency:layoutDependency,layoutId:\"XNPWZt5Ye\",nodeId:\"XNPWZt5Ye\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dbjflt\",\"data-framer-name\":\"Fields\",layoutDependency:layoutDependency,layoutId:\"KK24BUl0y\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m1x4hq\",\"data-framer-name\":\"Names\",layoutDependency:layoutDependency,layoutId:\"o_Z5299d1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({WoYGPn5Gw:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ecs5i3-container\",layoutDependency:layoutDependency,layoutId:\"dvPHjQPYI-container\",nodeId:\"dvPHjQPYI\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride1ecs5i3WithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"First name\",id:\"dvPHjQPYI\",jGYAPhQ18:\"First name\",layoutId:\"dvPHjQPYI\",mSnjk3iem:\"firstName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({WoYGPn5Gw:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ssnitk-container\",layoutDependency:layoutDependency,layoutId:\"f1O2J7s8r-container\",nodeId:\"f1O2J7s8r\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverridessnitkWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Last name\",id:\"f1O2J7s8r\",jGYAPhQ18:\"Last name\",layoutId:\"f1O2J7s8r\",mSnjk3iem:\"lastName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11emp2v\",layoutDependency:layoutDependency,layoutId:\"Pqocz9r4i\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({WoYGPn5Gw:{width:`max(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j3bs6w-container\",layoutDependency:layoutDependency,layoutId:\"zBtgGjMcc-container\",nodeId:\"zBtgGjMcc\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverridej3bs6wWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"email\",ia_lMafBj:\"Work email\",id:\"zBtgGjMcc\",jGYAPhQ18:\"Work email\",layoutId:\"zBtgGjMcc\",mSnjk3iem:\"email\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11j6g8b\",\"data-framer-name\":\"Title and Company\",layoutDependency:layoutDependency,layoutId:\"llaXvEnHl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({WoYGPn5Gw:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19paxoe-container\",layoutDependency:layoutDependency,layoutId:\"wvCko2PHA-container\",nodeId:\"wvCko2PHA\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride19paxoeWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Job title\",id:\"wvCko2PHA\",jGYAPhQ18:\"Job title\",layoutId:\"wvCko2PHA\",mSnjk3iem:\"jobTitle\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({WoYGPn5Gw:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13vdne3-container\",layoutDependency:layoutDependency,layoutId:\"ktfJeufv1-container\",nodeId:\"ktfJeufv1\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride13vdne3WithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Company\",id:\"ktfJeufv1\",jGYAPhQ18:\"Company\",layoutId:\"ktfJeufv1\",mSnjk3iem:\"company\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({WoYGPn5Gw:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19zqqhr-container\",layoutDependency:layoutDependency,layoutId:\"Ca6q1oG3A-container\",nodeId:\"Ca6q1oG3A\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormField,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"How did you hear about us?\",id:\"Ca6q1oG3A\",jGYAPhQ18:\"How did you hear about us?\",layoutId:\"Ca6q1oG3A\",mSnjk3iem:\"hear_about_us\",ozbBizmQe:false,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({WoYGPn5Gw:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ywinhh-container\",layoutDependency:layoutDependency,layoutId:\"cqp_TquRY-container\",nodeId:\"cqp_TquRY\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride1ywinhhWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"textarea\",ia_lMafBj:\"Please describe your use case\",id:\"cqp_TquRY\",jGYAPhQ18:\"Please describe your use case\",layoutId:\"cqp_TquRY\",mSnjk3iem:\"message\",ozbBizmQe:true,style:{height:\"100%\",width:\"100%\"},variant:\"qJUOh4sTd\",VdkcwXldT:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wsaugd\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"eju643ZhZ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p4da3h\",layoutDependency:layoutDependency,layoutId:\"ysIOC8uFB\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({WoYGPn5Gw:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x8kvvj-container\",layoutDependency:layoutDependency,layoutId:\"KVE6dLLVA-container\",nodeId:\"KVE6dLLVA\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormButton,{height:\"100%\",id:\"KVE6dLLVA\",JlQq9DcxG:JlQq9DcxG1m9lgel,layoutId:\"KVE6dLLVA\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{incomplete:\"TQPsF3_Tt\",pending:\"WKauwkxvF\",success:\"hZ7E9YRdh\"},\"mLcc2r8_S\"),w4mnHQFUD:\"Submit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-199vmc3\",\"data-styles-preset\":\"xKuCyPoET\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:[\"By submitting this form I confirm I have read and accepted V7's\\xa0\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kXpevmCJF\"},motionChild:true,nodeId:\"HMdl1s7XH\",openInNewTab:true,relValues:[],scopeId:\"x_mZRtpfa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9lstlb\",\"data-styles-preset\":\"ng8vWsYYj\",children:\"Privacy Policy\"})})]})}),className:\"framer-s8ulo9\",\"data-framer-name\":\"Disclaimer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HMdl1s7XH\",style:{\"--extracted-r6o4lv\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(FormContainerWithDarwinDemoFormOverride11ccg5a4,{className:\"framer-1ccg5a4\",\"data-framer-name\":\"Darwin_Upgrade_Form\",layoutDependency:layoutDependency,layoutId:\"Q6uDEGo90\",nodeId:\"Q6uDEGo90\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9fwfar\",\"data-framer-name\":\"Fields\",layoutDependency:layoutDependency,layoutId:\"kMeMv0ydv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rdazjv\",\"data-framer-name\":\"Names\",layoutDependency:layoutDependency,layoutId:\"JzsqUjhLg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({r4_XCj8PR:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14891tt-container\",layoutDependency:layoutDependency,layoutId:\"goigFr4zE-container\",nodeId:\"goigFr4zE\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride14891ttWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"First name\",id:\"goigFr4zE\",jGYAPhQ18:\"First name\",layoutId:\"goigFr4zE\",mSnjk3iem:\"firstName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({r4_XCj8PR:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gd2h81-container\",layoutDependency:layoutDependency,layoutId:\"j83JX0Dcp-container\",nodeId:\"j83JX0Dcp\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride1gd2h81WithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Last name\",id:\"j83JX0Dcp\",jGYAPhQ18:\"Last name\",layoutId:\"j83JX0Dcp\",mSnjk3iem:\"lastName\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dfbhet\",layoutDependency:layoutDependency,layoutId:\"cQxM_t3TD\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({r4_XCj8PR:{width:`max(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5nrb6m-container\",layoutDependency:layoutDependency,layoutId:\"R9KJWkjeJ-container\",nodeId:\"R9KJWkjeJ\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride5nrb6mWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"email\",ia_lMafBj:\"Work email\",id:\"R9KJWkjeJ\",jGYAPhQ18:\"Work email\",layoutId:\"R9KJWkjeJ\",mSnjk3iem:\"email\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5m3mh5\",\"data-framer-name\":\"Title and Company\",layoutDependency:layoutDependency,layoutId:\"TpiiUNLQX\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({r4_XCj8PR:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pf5nbs-container\",layoutDependency:layoutDependency,layoutId:\"r7253RlpV-container\",nodeId:\"r7253RlpV\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride1pf5nbsWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Job title\",id:\"r7253RlpV\",jGYAPhQ18:\"Job title\",layoutId:\"r7253RlpV\",mSnjk3iem:\"jobTitle\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({r4_XCj8PR:{width:`max(((${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px) - 8px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tvanj3-container\",layoutDependency:layoutDependency,layoutId:\"WYMNw3Dar-container\",nodeId:\"WYMNw3Dar\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride1tvanj3WithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"text\",ia_lMafBj:\"Company\",id:\"WYMNw3Dar\",jGYAPhQ18:\"Company\",layoutId:\"WYMNw3Dar\",mSnjk3iem:\"company\",ozbBizmQe:true,style:{width:\"100%\"},variant:\"s7PZztirQ\",VdkcwXldT:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({r4_XCj8PR:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9j1ycb-container\",layoutDependency:layoutDependency,layoutId:\"mmm4uGKWD-container\",nodeId:\"mmm4uGKWD\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormFieldWithInputAutofillOverride9j1ycbWithMappedReactPropslkvi,{height:\"100%\",hkjSWvQja:\"textarea\",ia_lMafBj:\"Please describe your use case\",id:\"mmm4uGKWD\",jGYAPhQ18:\"Please describe your use case\",layoutId:\"mmm4uGKWD\",mSnjk3iem:\"message\",ozbBizmQe:true,style:{height:\"100%\",width:\"100%\"},variant:\"qJUOh4sTd\",VdkcwXldT:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vaax6z\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"snTylt_A6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dxiewt\",layoutDependency:layoutDependency,layoutId:\"fGDAGuNzF\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({r4_XCj8PR:{width:`calc(${componentViewport?.width||\"100vw\"} - ${l8Yi7dFgq*2}px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sap26c-container\",layoutDependency:layoutDependency,layoutId:\"kIR2xOUGH-container\",nodeId:\"kIR2xOUGH\",rendersWithMotion:true,scopeId:\"x_mZRtpfa\",children:/*#__PURE__*/_jsx(FormButton,{height:\"100%\",id:\"kIR2xOUGH\",JlQq9DcxG:JlQq9DcxG1m9lgel,layoutId:\"kIR2xOUGH\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{incomplete:\"TQPsF3_Tt\",pending:\"WKauwkxvF\",success:\"hZ7E9YRdh\"},\"mLcc2r8_S\"),w4mnHQFUD:\"Submit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-199vmc3\",\"data-styles-preset\":\"xKuCyPoET\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41)))\"},children:[\"By submitting this form I confirm I have read and accepted V7's\\xa0\",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kXpevmCJF\"},motionChild:true,nodeId:\"RAC1yFH6Z\",openInNewTab:true,relValues:[],scopeId:\"x_mZRtpfa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-9lstlb\",\"data-styles-preset\":\"ng8vWsYYj\",children:\"Privacy Policy\"})})]})}),className:\"framer-km0pmc\",\"data-framer-name\":\"Disclaimer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RAC1yFH6Z\",style:{\"--extracted-r6o4lv\":\"var(--token-622ee684-c13c-4248-a92a-b24a1419f3b6, rgba(4, 3, 1, 0.41))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UjwSp.framer-bzt0a3, .framer-UjwSp .framer-bzt0a3 { display: block; }\",\".framer-UjwSp.framer-sgj9wp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 719px; justify-content: flex-start; overflow: hidden; padding: var(--ncwu0r); position: relative; width: 548px; }\",\".framer-UjwSp .framer-1i7gf8p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UjwSp .framer-v7fq0j, .framer-UjwSp .framer-1y81zae { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-4fgcx8, .framer-UjwSp .framer-1dbjflt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-19le6l3, .framer-UjwSp .framer-2s4w3m, .framer-UjwSp .framer-19vu89j, .framer-UjwSp .framer-1k5zpre, .framer-UjwSp .framer-1p5hobf, .framer-UjwSp .framer-1qmh7v7, .framer-UjwSp .framer-163pyi7, .framer-UjwSp .framer-11x21oq, .framer-UjwSp .framer-152fybb, .framer-UjwSp .framer-7m3tt2, .framer-UjwSp .framer-1m1x4hq, .framer-UjwSp .framer-11emp2v, .framer-UjwSp .framer-11j6g8b, .framer-UjwSp .framer-rdazjv, .framer-UjwSp .framer-dfbhet, .framer-UjwSp .framer-5m3mh5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-147mrqg-container, .framer-UjwSp .framer-5ughtm-container, .framer-UjwSp .framer-13hv41-container, .framer-UjwSp .framer-m4dt1h-container, .framer-UjwSp .framer-8ver6b-container, .framer-UjwSp .framer-1b7jxjp-container, .framer-UjwSp .framer-n0224z-container, .framer-UjwSp .framer-1q1y272-container, .framer-UjwSp .framer-y60xh5-container, .framer-UjwSp .framer-1ak07kl-container, .framer-UjwSp .framer-165hds5-container, .framer-UjwSp .framer-le5tu3-container, .framer-UjwSp .framer-shd44z-container, .framer-UjwSp .framer-to4gxz-container, .framer-UjwSp .framer-txufr2-container, .framer-UjwSp .framer-13yok5b-container, .framer-UjwSp .framer-1ecs5i3-container, .framer-UjwSp .framer-ssnitk-container, .framer-UjwSp .framer-j3bs6w-container, .framer-UjwSp .framer-19paxoe-container, .framer-UjwSp .framer-13vdne3-container, .framer-UjwSp .framer-14891tt-container, .framer-UjwSp .framer-1gd2h81-container, .framer-UjwSp .framer-5nrb6m-container, .framer-UjwSp .framer-1pf5nbs-container, .framer-UjwSp .framer-1tvanj3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-UjwSp .framer-zemx07-container, .framer-UjwSp .framer-xkmhtx-container, .framer-UjwSp .framer-o7f21e-container, .framer-UjwSp .framer-1ywinhh-container, .framer-UjwSp .framer-9j1ycb-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-1h9jv29, .framer-UjwSp .framer-1mo6tlv, .framer-UjwSp .framer-1tl8ld0, .framer-UjwSp .framer-1wsaugd, .framer-UjwSp .framer-vaax6z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-1h0uyvm, .framer-UjwSp .framer-a8xvfi, .framer-UjwSp .framer-1q5oqhb, .framer-UjwSp .framer-p4da3h, .framer-UjwSp .framer-dxiewt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-jxq5rh-container, .framer-UjwSp .framer-1ktdade-container, .framer-UjwSp .framer-1cop4p3-container, .framer-UjwSp .framer-x8kvvj-container, .framer-UjwSp .framer-sap26c-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-1ihu37g, .framer-UjwSp .framer-11l3foi, .framer-UjwSp .framer-1u4aijf, .framer-UjwSp .framer-s8ulo9, .framer-UjwSp .framer-km0pmc { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UjwSp .framer-1h75pgq, .framer-UjwSp .framer-1svmwl2, .framer-UjwSp .framer-1ccg5a4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-pcdiaf, .framer-UjwSp .framer-18qku97, .framer-UjwSp .framer-9fwfar { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-9rasmy { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UjwSp .framer-motfqh-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-UjwSp .framer-19zqqhr-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 719\n * @framerIntrinsicWidth 548\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WoYGPn5Gw\":{\"layout\":[\"fixed\",\"fixed\"]},\"IAzGkh4OW\":{\"layout\":[\"fixed\",\"fixed\"]},\"r4_XCj8PR\":{\"layout\":[\"fixed\",\"fixed\"]},\"i13wL62S0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"kaoj3lN1q\":\"click\",\"l8Yi7dFgq\":\"padding\",\"Y7hwxVdJP\":\"headlineYN\",\"XzE1LGIQl\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerx_mZRtpfa=withCSS(Component,css,\"framer-UjwSp\");export default Framerx_mZRtpfa;Framerx_mZRtpfa.displayName=\"Demo_Form\";Framerx_mZRtpfa.defaultProps={height:719,width:548};addPropertyControls(Framerx_mZRtpfa,{variant:{options:[\"cTxx4XltV\",\"WoYGPn5Gw\",\"IAzGkh4OW\",\"r4_XCj8PR\",\"i13wL62S0\"],optionTitles:[\"Go\",\"Darwin\",\"Go Upgrade\",\"Darwin Upgrade\",\"Joint Demo\"],title:\"Variant\",type:ControlType.Enum},kaoj3lN1q:{title:\"Click\",type:ControlType.EventHandler},l8Yi7dFgq:{defaultValue:\"32px\",title:\"Padding\",type:ControlType.Padding},Y7hwxVdJP:{defaultValue:true,title:\"Headline Y/N?\",type:ControlType.Boolean},XzE1LGIQl:{defaultValue:'var(--token-c273635b-cadd-42b8-93b3-a3cdba83495f, rgb(255, 255, 255)) /* {\"name\":\"surface-white\"} */',title:\"Background\",type:ControlType.Color}});addFonts(Framerx_mZRtpfa,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FormFieldFonts,...Form_field_Select_TimelineFonts,...FormButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx_mZRtpfa\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"719\",\"framerVariables\":\"{\\\"kaoj3lN1q\\\":\\\"click\\\",\\\"l8Yi7dFgq\\\":\\\"padding\\\",\\\"Y7hwxVdJP\\\":\\\"headlineYN\\\",\\\"XzE1LGIQl\\\":\\\"background\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WoYGPn5Gw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IAzGkh4OW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r4_XCj8PR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i13wL62S0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"548\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["withInputAutofillOverride", "Component", "props", "ue", "style", "p", "withSubmitButtonOverride", "Component", "props", "isLoading", "setIsLoading", "ye", "ue", "handleClick", "e", "current", "computedVariant", "p", "CONFIG", "botpoisonInstance", "emailCache", "EMAIL_CACHE_TTL", "withDarwinDemoFormOverride", "Component", "props", "validationTimeoutRef", "pe", "ue", "window", "BotpoisonModule", "error", "form", "controller", "isSubmitting", "countryInput", "countryName", "getCountryFromIP", "validateEmailWithCache", "email", "cached", "response", "isValid", "handleSubmit", "event", "emailInput", "solution", "formData", "formEmail", "loadChiliPiper", "hutk", "c", "name", "value", "res", "data", "action", "validateEmail", "handleInput", "p", "resolve", "reject", "script", "CONFIG", "botpoisonInstance", "emailCache", "EMAIL_CACHE_TTL", "withDarwinDemoFormOverride", "Component", "props", "validationTimeoutRef", "pe", "ue", "window", "BotpoisonModule", "error", "form", "controller", "isSubmitting", "countryInput", "countryName", "getCountryFromIP", "validateEmailWithCache", "email", "cached", "response", "isValid", "handleSubmit", "event", "emailInput", "solution", "formData", "loadChiliPiper", "hutk", "c", "name", "value", "res", "data", "action", "validateEmail", "handleInput", "p", "resolve", "reject", "script", "CONFIG", "botpoisonInstance", "emailCache", "EMAIL_CACHE_TTL", "withGoDemoFormOverride", "Component", "props", "validationTimeoutRef", "pe", "ue", "window", "BotpoisonModule", "error", "form", "controller", "isSubmitting", "countryInput", "countryName", "getCountryFromIP", "validateEmailWithCache", "email", "cached", "response", "isValid", "handleSubmit", "event", "emailInput", "solution", "formData", "formEmail", "loadChiliPiper", "hutk", "c", "name", "value", "res", "data", "action", "validateEmail", "handleInput", "p", "resolve", "reject", "script", "CONFIG", "botpoisonInstance", "emailCache", "EMAIL_CACHE_TTL", "withGoUpgradeFormOverride", "Component", "props", "validationTimeoutRef", "pe", "ue", "window", "BotpoisonModule", "error", "form", "controller", "isSubmitting", "countryInput", "countryName", "getCountryFromIP", "validateEmailWithCache", "email", "cached", "response", "isValid", "handleSubmit", "event", "emailInput", "solution", "formData", "loadChiliPiper", "hutk", "c", "name", "value", "res", "data", "action", "validateEmail", "handleInput", "p", "resolve", "reject", "script", "CONFIG", "botpoisonInstance", "emailCache", "EMAIL_CACHE_TTL", "withJoinDemoFormOverride", "Component", "props", "validationTimeoutRef", "pe", "ue", "window", "BotpoisonModule", "error", "form", "controller", "isSubmitting", "countryInput", "countryName", "getCountryFromIP", "validateEmailWithCache", "email", "cached", "response", "isValid", "handleSubmit", "event", "submitButton", "emailInput", "solution", "formData", "loadChiliPiper", "hutk", "c", "name", "value", "res", "data", "action", "validateEmail", "handleInput", "p", "resolve", "reject", "script", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "FormSelect", "css", "FramerAAx_zbdMY", "withCSS", "AAx_zbdMY_default", "addPropertyControls", "ControlType", "addFonts", "kQCdCJw85_exports", "__export", "__FramerMetadata__", "kQCdCJw85_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "negate", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "label", "labelYN", "name1", "placeholder", "required", "type", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hkjSWvQja", "mSnjk3iem", "ia_lMafBj", "ozbBizmQe", "jGYAPhQ18", "VdkcwXldT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1299mkw", "args", "onTapml2q14", "scopingClassNames", "cx", "visible", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "FormPlainTextInput2", "FormSelect", "css", "FramerkQCdCJw85", "withCSS", "kQCdCJw85_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "sDEB4lD9c_exports", "__export", "__FramerMetadata__", "sDEB4lD9c_default", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "w4mnHQFUD", "JlQq9DcxG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaph7sj6k", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "css", "FramersDEB4lD9c", "withCSS", "sDEB4lD9c_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "FormFieldFonts", "getFonts", "kQCdCJw85_default", "Form_field_Select_TimelineFonts", "AAx_zbdMY_default", "FormButtonFonts", "sDEB4lD9c_default", "FormButtonWithSubmitButtonOverridejxq5rhWithMappedReactProps8bpugg", "withMappedReactProps", "withCodeBoundaryForOverrides", "withSubmitButtonOverride", "sDEB4lD9c_exports", "FormContainerWithGoDemoFormOverridev7fq0j", "FormContainer", "withGoDemoFormOverride", "FormContainerWithGoUpgradeFormOverride1h75pgq", "withGoUpgradeFormOverride", "FormContainerWithJoinDemoFormOverride1svmwl2", "withJoinDemoFormOverride", "FormFieldWithInputAutofillOverride1ecs5i3WithMappedReactPropslkvi", "withInputAutofillOverride", "kQCdCJw85_exports", "FormFieldWithInputAutofillOverridessnitkWithMappedReactPropslkvi", "FormFieldWithInputAutofillOverridej3bs6wWithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride19paxoeWithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride13vdne3WithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride1ywinhhWithMappedReactPropslkvi", "FormContainerWithDarwinDemoFormOverride1y81zae", "withDarwinDemoFormOverride", "FormFieldWithInputAutofillOverride14891ttWithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride1gd2h81WithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride5nrb6mWithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride1pf5nbsWithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride1tvanj3WithMappedReactPropslkvi", "FormFieldWithInputAutofillOverride9j1ycbWithMappedReactPropslkvi", "FormContainerWithDarwinDemoFormOverride11ccg5a4", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "animation", "animation1", "transition2", "formVariants", "form", "currentVariant", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background", "click", "headlineYN", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "kaoj3lN1q", "l8Yi7dFgq", "Y7hwxVdJP", "XzE1LGIQl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "JlQq9DcxG1m9lgel", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "u", "RichText", "formState", "l", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "css", "Framerx_mZRtpfa", "withCSS", "x_mZRtpfa_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
