{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/uAEyIzv8fW1BH9CPYPi8/j7wQZols4ZszAoSrTLhx/Waiting_List_Custom_Form.js", "ssg:https://framerusercontent.com/modules/CpGnz2qVoxutMeEBd7J7/rZr186ZTvmOj1E7OKF9b/sg00DauS6.js", "ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/ZrPKNQfoNa5y1lXPDiQn/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/xxuL8HTqJfv2csVBB9cH/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/iWBnpFYhkPMoncHiHDDw/region.js", "ssg:https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/tkWTloReAPu2itGir1L5/Icons.js", "ssg:https://framer.com/m/Toggle-zGbN.js@phy2eFc7N84QBgE1yepP", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/QwegldpamwGOlDMlq0nE/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/4g4iDkxkaJXTefaMdbq6/Cookies.js", "ssg:https://framerusercontent.com/modules/nfGY5qPynsmaHXEqgEHO/xRcUtMX7xUshbdgj62lX/SignUpFormNewsletter.js", "ssg:https://framerusercontent.com/modules/HAuKLKFRUbGdUlCJoxXA/yXIys7zMxtC8BBsRMxOv/dOc6wFbu8.js", "ssg:https://framerusercontent.com/modules/nv9ebmRfsP7kxoE1Rzhb/UZTkKxYPrXbzoJBTZkbg/xsjxSNwv5.js", "ssg:https://framerusercontent.com/modules/E3xywXz8qrJhj1xvskWn/TFIUaq5UVTRrAOj7LiNF/ckKjSoMrl.js", "ssg:https://framerusercontent.com/modules/y8FjPhAKzgYJ1JEoP3FC/6xrliJM2XJIEa2bg3xCe/tEEUqgrZE.js", "ssg:https://framerusercontent.com/modules/5QaVqqYfg4TbeHfxbTy4/Gs9q2kFUrXaIfC6cr5Q3/mpGOWiYzc.js", "ssg:https://framerusercontent.com/modules/sfTd0MhqqcvZXiEmagu9/qL4zx6PIUo4q0yE5W1DK/uVy2fXrHF.js"],
  "sourcesContent": ["////////////////\n//\n// Using Framer?\n// See https://www.framer.com/learn/code-components/ for more info\n//\n////////////////\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";const INIT=\"INIT\";const SUBMITTING=\"SUBMITTING\";const ERROR=\"ERROR\";const SUCCESS=\"SUCCESS\";const formStates=[INIT,SUBMITTING,ERROR,SUCCESS];const formStyles={id:\"clmewyzzn0003jj0n87jui6td\",name:\"Default\",formStyle:\"buttonBelow\",placeholderText1:\"First Name\",placeholderText2:\"Last Name\",placeholderText3:\"you@email.com\",formFont:\"Inter\",formFontColor:\"#000000\",formFontSizePx:14,buttonText:\"Get Access Now\",buttonFont:\"Inter\",buttonFontColor:\"#FFFFFF\",errorFontColor:\"#FFFFFF\",backFontColor:\"#FFFFFF\",buttonColor:\"#DF1569\",buttonFontSizePx:14,successMessage:\"Congratulations! You\u2019re now officially a part of the Enhance-d App BETA Team! You\u2019re joining an exclusive community of forward-thinkers early adopters. We\u2019ve just sent you an individual link to download the App via Testflight (iOS) or Android via email so check it out and join us over on the app!\",successFont:\"Inter\",successFontColor:\"#FFFFFF\",successFontSizePx:18,userGroup:\"Public Beta\"};const domain=\"app.loops.so\";export default function SignUpFormReact(){const[firstName,setfirstName]=useState(\"\");const[lastName,setlastName]=useState(\"\");const[phone,setPhone]=useState(\"\");const[email,setEmail]=useState(\"\");const[formState,setFormState]=useState(INIT);const[errorMessage,setErrorMessage]=useState(\"\");const phoneOptions=[{value:\"android\",label:\"Android\"},{value:\"ios\",label:\"iOS\"}];const handlePhoneChange=e=>{setPhone(e.target.value);};const resetForm=()=>{setEmail(\"\");setfirstName(\"\");setlastName(\"\");setPhone(\"\");setFormState(INIT);setErrorMessage(\"\");};/**\n     * Rate limit the number of submissions allowed\n     * @returns {boolean} true if the form has been successfully submitted in the past minute\n     */const hasRecentSubmission=()=>{const time=new Date;const timestamp=time.valueOf();const previousTimestamp=localStorage.getItem(\"loops-form-timestamp\");// Indicate if the last sign up was less than a minute ago\nif(previousTimestamp&&Number(previousTimestamp)+60*1e3>timestamp){setFormState(ERROR);setErrorMessage(\"Too many signups, please try again in a little while\");return true;}localStorage.setItem(\"loops-form-timestamp\",timestamp.toString());return false;};const handleSubmit=event=>{// Prevent the default form submission\nevent.preventDefault();if(formState!==INIT)return;if(!isValidEmail(email)){setFormState(ERROR);setErrorMessage(\"Please enter a valid email\");return;}if(!phone){setFormState(ERROR);setErrorMessage(\"Please select whether you're using Android or iOS\");return;}if(hasRecentSubmission())return;setFormState(SUBMITTING);// build body\nconst formBody=`userGroup=${encodeURIComponent(formStyles.userGroup)}&email=${encodeURIComponent(email)}&firstName=${encodeURIComponent(firstName)}&lastName=${encodeURIComponent(lastName)}&phone=${phone}`;// API request to add user to newsletter\nfetch(`https://${domain}/api/newsletter-form/${formStyles.id}`,{method:\"POST\",body:formBody,headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"}}).then(res=>[res.ok,res.json(),res]).then(([ok,dataPromise,res])=>{if(ok){resetForm();setFormState(SUCCESS);}else{dataPromise.then(data=>{setFormState(ERROR);setErrorMessage(data.message||res.statusText);localStorage.setItem(\"loops-form-timestamp\",\"\");});}}).catch(error=>{setFormState(ERROR);// check for cloudflare error\nif(error.message===\"Failed to fetch\"){setErrorMessage(\"Too many signups, please try again in a little while\");}else if(error.message){setErrorMessage(error.message);}localStorage.setItem(\"loops-form-timestamp\",\"\");});};const isInline=formStyles.formStyle===\"inline\";switch(formState){case SUCCESS:return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",textAlign:\"center\",width:\"100%\",padding:\"20px\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontFamily:`'${formStyles.successFont}', sans-serif`,color:formStyles.successFontColor,fontSize:`${formStyles.successFontSizePx}px`,maxWidth:\"600px\"},children:formStyles.successMessage})});case ERROR:return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",gap:\"10px\",width:\"100%\"},children:[/*#__PURE__*/_jsx(SignUpFormError,{}),/*#__PURE__*/_jsx(BackButton,{})]})});default:return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,style:{display:\"flex\",flexDirection:isInline?\"row\":\"column\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:\"firstName\",placeholder:formStyles.placeholderText1,value:firstName,onChange:e=>setfirstName(e.target.value),required:true,style:{color:formStyles.formFontColor,fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"}}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:\"lastName\",placeholder:formStyles.placeholderText2,value:lastName,onChange:e=>setlastName(e.target.value),required:true,style:{color:formStyles.formFontColor,fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"}}),/*#__PURE__*/_jsx(\"input\",{type:\"email\",name:\"email\",placeholder:formStyles.placeholderText3,value:email,onChange:e=>setEmail(e.target.value),required:true,style:{color:formStyles.formFontColor,fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"}}),/*#__PURE__*/_jsxs(\"div\",{style:{margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",display:\"flex\",flexDirection:\"column\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"},children:[/*#__PURE__*/_jsx(\"legend\",{style:{color:\"#8d8d8d\",fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\"},children:\"Are you on Android or iOS?\"}),/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",alignItems:\"center\",justifyContent:\"center\",gap:20},children:phoneOptions.map(option=>/*#__PURE__*/_jsxs(\"label\",{style:{color:\"#8d8d8d\",fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"radio\",value:option.value,checked:phone===option.value,onChange:handlePhoneChange,required:true}),option.label]},option.value))})]}),/*#__PURE__*/_jsx(SignUpFormButton,{})]})});}function SignUpFormError(){return /*#__PURE__*/_jsx(\"div\",{style:{textAlign:\"center\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontFamily:\"Inter, sans-serif\",color:formStyles.errorFontColor,fontSize:\"18px\"},children:errorMessage||\"Oops! Something went wrong, please try again\"})});}function BackButton(){const[isHovered,setIsHovered]=useState(false);return /*#__PURE__*/_jsx(\"button\",{style:{background:formStyles.buttonColor,fontSize:`${formStyles.buttonFontSizePx}px`,color:formStyles.buttonFontColor,fontFamily:`'${formStyles.buttonFont}', sans-serif`,width:isInline?\"min-content\":\"100%\",maxWidth:\"300px\",whiteSpace:isInline?\"nowrap\":\"normal\",height:\"38px\",alignItems:\"center\",justifyContent:\"center\",flexDirection:\"row\",padding:\"9px 17px\",boxShadow:\"0px 1px 2px rgba(0, 0, 0, 0.05)\",borderRadius:\"6px\",textAlign:\"center\",fontStyle:\"normal\",fontWeight:500,lineHeight:\"20px\",border:\"none\",cursor:\"pointer\"},onMouseOut:()=>setIsHovered(false),onMouseOver:()=>setIsHovered(true),onClick:resetForm,children:\"\u2190 Go Back & Try Again\"});}function SignUpFormButton({props}){return /*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:{background:formStyles.buttonColor,fontSize:`${formStyles.buttonFontSizePx}px`,color:formStyles.buttonFontColor,fontFamily:`'${formStyles.buttonFont}', sans-serif`,width:isInline?\"min-content\":\"100%\",maxWidth:\"300px\",whiteSpace:isInline?\"nowrap\":\"normal\",height:\"38px\",alignItems:\"center\",justifyContent:\"center\",flexDirection:\"row\",padding:\"9px 17px\",boxShadow:\"0px 1px 2px rgba(0, 0, 0, 0.05)\",borderRadius:\"6px\",textAlign:\"center\",fontStyle:\"normal\",fontWeight:500,lineHeight:\"20px\",border:\"none\",cursor:\"pointer\"},children:formState===SUBMITTING?\"Please wait...\":formStyles.buttonText});}}function isValidEmail(email){return/.+@.+/.test(email);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SignUpFormReact\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Waiting_List_Custom_Form.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-g6VgG .framer-styles-preset-zja1mv:not(.rich-text-wrapper), .framer-g6VgG .framer-styles-preset-zja1mv.rich-text-wrapper a { --framer-link-current-text-color: #abc2d3; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #abc2d3; --framer-link-text-decoration: none; }\"];export const className=\"framer-g6VgG\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{isBrowser}from\"framer-motion\";export const DEFAULT_DOMAIN=\"https://www.googletagmanager.com\";export const DEFAULT_SCRIPT_NAME=\"gtm.js\";/**\n * Function to get and set dataLayer\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n */const getDataLayerSnippet=(dataLayer,dataLayerName=\"dataLayer\")=>`window.${dataLayerName} = window.${dataLayerName} || [];`+(dataLayer?`window.${dataLayerName}.push(${JSON.stringify(dataLayer)})`:\"\");/**\n * Function to get the Iframe snippet\n * @param environment - The parameters to use a custom environment\n * @param customDomain - Custom domain for gtm\n * @param id - The id of the container\n */const getIframeSnippet=(id,environment,customDomain=DEFAULT_DOMAIN)=>{let params=``;if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`<iframe src=\"${customDomain}/ns.html?id=${id}${params}\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\" id=\"tag-manager\"></iframe>`;};/**\n * Function to get the GTM script\n * @param dataLayerName - The name of the dataLayer\n * @param customDomain - Custom domain for gtm\n * @param customScriptName - Custom script file name for gtm\n * @param environment - The parameters to use a custom environment\n * @param id - The id of the container\n */const getGTMScript=(dataLayerName,id,environment,customDomain=DEFAULT_DOMAIN,customScriptName=DEFAULT_SCRIPT_NAME)=>{let params=``;if(environment){const{gtm_auth,gtm_preview}=environment;params=`+\"&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x\"`;}return`\n    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\n      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\n      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=\n      '${customDomain}/${customScriptName}?id='+i+dl${params};f.parentNode.insertBefore(j,f);\n    })(window,document,'script','${dataLayerName}','${id}');\n  `;};/**\n * Function to setup the Google Tag Manager\n * @param params - The snippets params\n */const setupGTM=params=>{const getDataLayerScript=()=>{const dataLayerScript=document.createElement(\"script\");if(params.nonce){dataLayerScript.setAttribute(\"nonce\",params.nonce);}dataLayerScript.innerHTML=getDataLayerSnippet(params.dataLayer,params.dataLayerName);return dataLayerScript;};const getNoScript=()=>{const noScript=document.createElement(\"noscript\");noScript.innerHTML=getIframeSnippet(params.id,params.environment,params.customDomain);return noScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.innerHTML=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,getNoScript,getScript};};/**\n * Function to init the GTM\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n * @param environment - Specify the custom environment to use\n * @param nonce - Server-generated nonce\n * @param id - The ID of the GTM\n */export const initGTM=({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName})=>{const gtm=setupGTM({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName});const dataLayerScript=gtm.getDataLayerScript();const script=gtm.getScript();const noScript=gtm.getNoScript();document.head.insertBefore(dataLayerScript,document.head.childNodes[0]);document.head.insertBefore(script,document.head.childNodes[1]);document.body.insertBefore(noScript,document.body.childNodes[0]);};/**\n * Function to send the events to the GTM\n * I can't find how to type a function using the \"arguments\" keyword so I've setup\n * a wrapper function that mutes typescript.\n */function gtag(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}export function sendToGTM(...args){// @ts-ignore\ngtag(...args);}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser as e}from\"framer-motion\";export const DEFAULT_FONT_FAMILY='\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"';export function getFlexboxValues(e){let t,o;let r=e.split(\"-\");switch(r[0]){case\"top\":o=\"flex-start\";break;case\"bottom\":o=\"flex-end\";break;case\"center\":o=\"center\";break;default:o=\"initial\";}switch(r[1]){case\"left\":t=\"flex-start\";break;case\"right\":t=\"flex-end\";break;case\"center\":t=\"center\";break;default:t=\"initial\";}return{justifyContent:t,alignItems:o};}export function getMultipleShadows(...e){let t=[];return e.forEach(e=>e&&t.push(e)),t.join(\", \");}export function getShadow(e){return e?`${e.shadowX}px ${e.shadowY}px ${e.shadowBlur}px ${e.shadowColor}`:null;}export function safeJSONParse(e,t){try{return JSON.parse(e);}catch{t&&t();}}export const getCookie=(t,o)=>{var r;o=o||(e?document.cookie:\"\");let[,,a]=null!==(r=o.match(`(^|;) ?${t}=([^;]*)(;|$)`))&&void 0!==r?r:[null,null,null];return a;};\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useEffect,useReducer}from\"react\";import{isBrowser}from\"framer-motion\";import{useIsOnFramerCanvas}from\"framer\";import{sendToGTM,initGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/ZrPKNQfoNa5y1lXPDiQn/send.js\";import{safeJSONParse}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent}){const[state,dispatch]=useReducer(reducer,initialState);const isOnFramerCanvas=useIsOnFramerCanvas();const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){if(!hasInitializedGTM){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));}}}useEffect(()=>{getStateFromLocalStorage();},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{const shouldSync=state.sync&&isBrowser&&!isOnFramerCanvas&&state.modes!==null;if(!shouldSync){return;}syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./consent.map", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\",];const isInEUTimezone=()=>{var ref,ref1,ref2;return(ref1=(ref=Intl===null||Intl===void 0?void 0:Intl.DateTimeFormat())===null||ref===void 0?void 0:ref.resolvedOptions())===null||ref1===void 0?void 0:(ref2=ref1.timeZone)===null||ref2===void 0?void 0:ref2.startsWith(\"Europe\");};const isEULocale=()=>{var ref;var _language;const locale=(_language=navigator.language)!==null&&_language!==void 0?_language:(ref=navigator.languages)===null||ref===void 0?void 0:ref[0];return countries.some(country=>{var ref;return(ref=locale===null||locale===void 0?void 0:locale.toUpperCase())===null||ref===void 0?void 0:ref.includes(country);});};export const inEU=()=>{return isInEUTimezone()||isEULocale();};\nexport const __FramerMetadata__ = {\"exports\":{\"inEU\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./inEU.map", "import{isBrowser}from\"framer-motion\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js\";export function useRegion({content,useRegionFromProps}){const isInEUBasedOnLocation=isBrowser?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./region.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export const IconCookie=props=>/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:props.width,height:props.height,style:{...props.style,color:props.color,fill:props.color},children:/*#__PURE__*/ _jsx(\"path\",{d:\"M164.49,163.51a12,12,0,1,1-17,0A12,12,0,0,1,164.49,163.51Zm-81-8a12,12,0,1,0,17,0A12,12,0,0,0,83.51,155.51Zm9-39a12,12,0,1,0-17,0A12,12,0,0,0,92.49,116.49Zm48-1a12,12,0,1,0,0,17A12,12,0,0,0,140.49,115.51ZM232,128A104,104,0,1,1,128,24a8,8,0,0,1,8,8,40,40,0,0,0,40,40,8,8,0,0,1,8,8,40,40,0,0,0,40,40A8,8,0,0,1,232,128Zm-16.31,7.39A56.13,56.13,0,0,1,168.5,87.5a56.13,56.13,0,0,1-47.89-47.19,88,88,0,1,0,95.08,95.08Z\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"IconCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Icons.map", "// Generated by Framer (1445756)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"zReINw005\",\"n1Lxx4QSl\"];const variantClassNames={n1Lxx4QSl:\"framer-v-ydz03l\",zReINw005:\"framer-v-35610y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Off:\"zReINw005\",On:\"n1Lxx4QSl\"};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"zReINw005\",background:oep5aWG90=\"rgb(0, 153, 255)\",backgroundInactive:wdGQJh0F_=\"rgba(0, 0, 0, 0.1)\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"zReINw005\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-4aJ9g\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-35610y\",className),\"data-framer-name\":\"Off\",layoutDependency:layoutDependency,layoutId:\"zReINw005\",ref:ref,style:{backgroundColor:wdGQJh0F_,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},transition:transition,variants:{n1Lxx4QSl:{backgroundColor:oep5aWG90}},...addPropertyOverrides({n1Lxx4QSl:{\"data-framer-name\":\"On\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-u7n9zz\",layoutDependency:layoutDependency,layoutId:\"O3uKgVodv\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},transition:transition})})})});});const css=['.framer-4aJ9g [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4aJ9g .framer-15sckd1 { display: block; }\",\".framer-4aJ9g .framer-35610y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 14px; justify-content: flex-start; overflow: hidden; padding: 2px 2px 2px 2px; position: relative; width: 24px; will-change: transform; }\",\".framer-4aJ9g .framer-u7n9zz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); overflow: visible; position: relative; width: 10px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4aJ9g .framer-35610y { gap: 0px; } .framer-4aJ9g .framer-35610y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4aJ9g .framer-35610y > :first-child { margin-left: 0px; } .framer-4aJ9g .framer-35610y > :last-child { margin-right: 0px; } }\",\".framer-4aJ9g.framer-v-ydz03l .framer-35610y { justify-content: flex-end; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"n1Lxx4QSl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"oep5aWG90\":\"background\",\"wdGQJh0F_\":\"backgroundInactive\"}\n */ const FramerBlf0sjosZ=withCSS(Component,css,\"framer-4aJ9g\");export default FramerBlf0sjosZ;FramerBlf0sjosZ.displayName=\"Toggle\";FramerBlf0sjosZ.defaultProps={height:14,width:24};addPropertyControls(FramerBlf0sjosZ,{variant:{options:[\"zReINw005\",\"n1Lxx4QSl\"],optionTitles:[\"Off\",\"On\"],title:\"Variant\",type:ControlType.Enum},oep5aWG90:{defaultValue:\"rgb(0, 153, 255)\",title:\"Background\",type:ControlType.Color},wdGQJh0F_:{defaultValue:\"rgba(0, 0, 0, 0.1)\",title:\"Background Inactive\",type:ControlType.Color}});addFonts(FramerBlf0sjosZ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBlf0sjosZ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n1Lxx4QSl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"oep5aWG90\\\":\\\"background\\\",\\\"wdGQJh0F_\\\":\\\"backgroundInactive\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"14\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Blf0sjosZ.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";import Toggle from\"https://framer.com/m/Toggle-zGbN.js@phy2eFc7N84QBgE1yepP\";const SPACING=20;export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){var _banner_style_border;const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=((_banner_style_border=banner.style.border)===null||_banner_style_border===void 0?void 0:_banner_style_border.width)?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,showReject:region.showReject,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`]);function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,showReject=true,linkColor,consent,onAcceptCurrent,onAcceptAll,onRejectAll,onOptionToggle}){const[showOptions,setShowOptions]=useState(false);const optionTheme={...options.style,color:banner.style.colorBody};const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;// const optionNames = consent && Object.keys(consent)\nconst optionNames=[\"necessary\",\"preferences\",\"analytics\",\"marketing\"];const shouldShowOptions=showOptions||previewOptions;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(AnimatePresence,{children:shouldShowOptions&&/*#__PURE__*/_jsx(motion.div,{initial:previewOptions?null:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},style:{display:\"flex\",flexDirection:\"column\",gap:10,marginTop:SPACING,overflow:\"hidden\"},children:optionNames&&optionNames.map(option=>/*#__PURE__*/_jsx(Option,{title:options[option].title,description:options[option].description,titleColor:banner.style.colorTitle,descriptionColor:banner.style.colorBody,showDescription:options.descriptions,enabled:consent[option],onClick:()=>onOptionToggle(option),theme:optionTheme,optional:option===\"necessary\"?options[option].optional:true}))},\"modal\")})]}),/*#__PURE__*/_jsx(Buttons,{direction:button.direction,children:shouldShowOptions?/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptCurrent,id:\"accept\",children:button.labels.save}):/*#__PURE__*/_jsxs(_Fragment,{children:[showReject&&/*#__PURE__*/_jsx(Button,{settings:button,onClick:onRejectAll,id:\"reject\",children:button.labels.rejectAll}),/*#__PURE__*/_jsx(Button,{settings:button,onClick:()=>{setShowOptions(true);},id:\"customize\",children:button.labels.customize}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptAll,id:\"accept\",children:button.labels.acceptAll})]})})]});}function Option({title,titleColor,description,descriptionColor,showDescription,enabled,optional,onClick,theme}){const paddingValue=theme.paddingPerSide?`${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px`:`${theme.padding}px`;const borderShadow=theme.border?`inset 0 0 0 ${theme.border.width}px ${theme.border.color}`:null;return /*#__PURE__*/_jsxs(motion.div,{style:{boxShadow:borderShadow,background:theme.background,borderRadius:theme.border.radius,padding:paddingValue,cursor:\"pointer\",userSelect:\"none\",pointerEvents:\"all\"},onClick:onClick,whileHover:{opacity:.5},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,fontSize:12,color:titleColor,...theme.fontTitle},children:title}),optional?/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive}):/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:12,color:theme.toggleColor,...theme.fontTitle,fontWeight:400},children:\"Always active\"})]}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:10,fontSize:12,lineHeight:1.5,color:descriptionColor,...theme.fontBody},children:description})]});}function Headline({children,style}){return /*#__PURE__*/_jsx(\"h6\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);return shouldShow&&/*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[description,\" \",(policy===null||policy===void 0?void 0:policy.link)&&/*#__PURE__*/_jsxs(\"span\",{children:[policy===null||policy===void 0?void 0:policy.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy===null||policy===void 0?void 0:policy.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy===null||policy===void 0?void 0:policy.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}function Button({id,children,primary,settings,onClick}){const paddingValue=settings.paddingPerSide?`${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px`:`${settings.padding}px`;const theme=primary?settings.primary:settings.secondary;return /*#__PURE__*/_jsx(motion.input,{id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:.6},whileTap:{opacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",outline:\"none\",border:\"none\",padding:paddingValue,borderRadius:settings.borderRadius,boxShadow:getShadow(theme.shadow),background:theme.fill,color:theme.color,fontSize:14,lineHeight:1,cursor:\"pointer\",fontWeight:settings.font?\"unset\":600,...settings.font}});}\nexport const __FramerMetadata__ = {\"exports\":{\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Banner.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createPortal}from\"react-dom\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,useIsOnFramerCanvas}from\"framer\";import{AnimatePresence,motion,isBrowser}from\"framer-motion\";import{useConsent,defaultConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/xxuL8HTqJfv2csVBB9cH/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/iWBnpFYhkPMoncHiHDDw/region.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/NAXduMvdtSB2wFen8sEE/utils.js\";import{IconCookie}from\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/tkWTloReAPu2itGir1L5/Icons.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/QwegldpamwGOlDMlq0nE/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/CCpUsPPKoqHrXP3zvE2C/inEU.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview});const consent=useConsent({gtmId,defaultConsent:region.defaults});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){onShown({isInEU});}},[isOpen]);// Check if user should be prompted\nuseEffect(()=>{const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){onAccept({isInEU});}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed]);useEffect(()=>{if(onConsentChange){onConsentChange({isInEU,consent:consent.modes});}},[consent.modes]);function handleDismiss(){consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){onDismiss({isInEU});}}function handleAcceptAll(){consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){onAccept({isInEU});}}function handleRejectAll(){consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){onReject({isInEU});}}function handleAcceptCurrent(){consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nif(onAccept){onAccept({isInEU});}if(onSavePreferences){onSavePreferences({isInEU});}}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen&&/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode})})]});}function Overlay(props){var _props_banner_style;const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);return /*#__PURE__*/createPortal(/*#__PURE__*/_jsxs(motion.div,{style:{top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:props.region.blocking?\"all\":\"none\"},children:[props.region.blocking&&/*#__PURE__*/_jsx(Backdrop,{color:(_props_banner_style=props.banner.style)===null||_props_banner_style===void 0?void 0:_props_banner_style.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}),document.body);}function Trigger({trigger,style,onClick}){const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",outline:\"inherit\",padding:0,color:trigger.color,fontSize:16,cursor:\"pointer\",...trigger.textFont},onClick:onClick,children:trigger.type===\"icon\"?/*#__PURE__*/_jsx(_Fragment,{children:trigger.iconType===\"custom\"&&trigger.iconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:trigger.iconImage.src,width:trigger.iconSize,height:trigger.iconSize}):/*#__PURE__*/_jsx(IconCookie,{width:trigger.iconSize,height:trigger.iconSize,color:trigger.color})}):/*#__PURE__*/_jsx(\"span\",{style:{whiteSpace:\"nowrap\"},children:trigger.text})});}if(isOnFramerCanvas){return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:8,color:\"#09F\",border:\"1px dashed #09F\",background:\"rgba(0, 153, 255, 0.1)\",padding:20,display:\"flex\",flexDirection:\"column\",gap:5,fontFamily:DEFAULT_FONT_FAMILY,textAlign:\"center\",justifyContent:\"center\",width:164,...style},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,fontWeight:600,lineHeight:1,margin:0},children:\"Cookie Banner\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,lineHeight:1.5,margin:0},children:\"Put on a page to add a Cookie Banner.\"})]});}}function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\",hidden:props=>!props.link},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\",hidden:props=>!props.link}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\",\"framerDisableUnlink\":\"*\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "////////////////\n//\n// Using Framer?\n// See https://www.framer.com/learn/code-components/ for more info\n//\n////////////////\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState}from\"react\";const INIT=\"INIT\";const SUBMITTING=\"SUBMITTING\";const ERROR=\"ERROR\";const SUCCESS=\"SUCCESS\";const formStates=[INIT,SUBMITTING,ERROR,SUCCESS];const formStyles={id:\"clmewyzzn0003jj0n87jui6td\",name:\"Default\",formStyle:\"buttonBelow\",placeholderText1:\"First Name\",placeholderText2:\"Last Name\",placeholderText3:\"you@email.com\",formFont:\"Inter\",formFontColor:\"#000000\",formFontSizePx:14,buttonText:\"Register Now\",buttonFont:\"Inter\",buttonFontColor:\"#EFF4F8\",buttonColor:\"#151D86\",buttonFontSizePx:14,successMessage:\"Congratulations! \uD83C\uDF89 You're now officially a part of the Enhance-d clan! \uD83D\uDE80 Keep an eye on your inbox for exciting updates.!\",successFont:\"Inter\",successFontColor:\"#000000\",successFontSizePx:14,userGroup:\"Newsletter\"};const domain=\"app.loops.so\";export default function SignUpFormReact(){const[firstName,setfirstName]=useState(\"\");const[lastName,setlastName]=useState(\"\");const[email,setEmail]=useState(\"\");const[formState,setFormState]=useState(INIT);const[errorMessage,setErrorMessage]=useState(\"\");const resetForm=()=>{setEmail(\"\");setfirstName(\"\");setlastName(\"\");setFormState(INIT);setErrorMessage(\"\");};/**\n     * Rate limit the number of submissions allowed\n     * @returns {boolean} true if the form has been successfully submitted in the past minute\n     */const hasRecentSubmission=()=>{const time=new Date;const timestamp=time.valueOf();const previousTimestamp=localStorage.getItem(\"loops-form-timestamp\");// Indicate if the last sign up was less than a minute ago\nif(previousTimestamp&&Number(previousTimestamp)+60*1e3>timestamp){setFormState(ERROR);setErrorMessage(\"Too many signups, please try again in a little while\");return true;}localStorage.setItem(\"loops-form-timestamp\",timestamp.toString());return false;};const handleSubmit=event=>{// Prevent the default form submission\nevent.preventDefault();// boundary conditions for submission\nif(formState!==INIT)return;if(!isValidEmail(email)){setFormState(ERROR);setErrorMessage(\"Please enter a valid email\");return;}if(hasRecentSubmission())return;setFormState(SUBMITTING);// build body\nconst formBody=`userGroup=${encodeURIComponent(formStyles.userGroup)}&email=${encodeURIComponent(email)}&firstName=${encodeURIComponent(firstName)}&lastName=${encodeURIComponent(lastName)}`;// API request to add user to newsletter\nfetch(`https://${domain}/api/newsletter-form/${formStyles.id}`,{method:\"POST\",body:formBody,headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"}}).then(res=>[res.ok,res.json(),res]).then(([ok,dataPromise,res])=>{if(ok){resetForm();setFormState(SUCCESS);}else{dataPromise.then(data=>{setFormState(ERROR);setErrorMessage(data.message||res.statusText);localStorage.setItem(\"loops-form-timestamp\",\"\");});}}).catch(error=>{setFormState(ERROR);// check for cloudflare error\nif(error.message===\"Failed to fetch\"){setErrorMessage(\"Too many signups, please try again in a little while\");}else if(error.message){setErrorMessage(error.message);}localStorage.setItem(\"loops-form-timestamp\",\"\");});};const isInline=formStyles.formStyle===\"inline\";switch(formState){case SUCCESS:return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontFamily:`'${formStyles.successFont}', sans-serif`,color:formStyles.successFontColor,fontSize:`${formStyles.successFontSizePx}px`},children:formStyles.successMessage})});case ERROR:return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(SignUpFormError,{}),/*#__PURE__*/_jsx(BackButton,{})]});default:return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,style:{display:\"flex\",flexDirection:isInline?\"row\":\"column\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\"},children:[/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:\"firstName\",placeholder:formStyles.placeholderText1,value:firstName,onChange:e=>setfirstName(e.target.value),required:true,style:{color:formStyles.formFontColor,fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"}}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:\"lastName\",placeholder:formStyles.placeholderText2,value:lastName,onChange:e=>setlastName(e.target.value),required:true,style:{color:formStyles.formFontColor,fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"}}),/*#__PURE__*/_jsx(\"input\",{type:\"email\",name:\"email\",placeholder:formStyles.placeholderText3,value:email,onChange:e=>setEmail(e.target.value),required:true,style:{color:formStyles.formFontColor,fontFamily:`'${formStyles.formFont}', sans-serif`,fontSize:`${formStyles.formFontSizePx}px`,margin:isInline?\"0px 10px 0px 0px\":\"0px 0px 10px\",width:\"100%\",maxWidth:\"300px\",minWidth:\"100px\",background:\"#FFFFFF\",border:\"1px solid #D1D5DB\",boxSizing:\"border-box\",boxShadow:\"rgba(0, 0, 0, 0.05) 0px 1px 2px\",borderRadius:\"6px\",padding:\"8px 12px\"}}),/*#__PURE__*/_jsx(SignUpFormButton,{})]})});}function SignUpFormError(){return /*#__PURE__*/_jsx(\"div\",{style:{alignItems:\"center\",justifyContent:\"center\",width:\"100%\"},children:/*#__PURE__*/_jsx(\"p\",{style:{fontFamily:\"Inter, sans-serif\",color:\"rgb(185, 28, 28)\",fontSize:\"14px\"},children:errorMessage||\"Oops! Something went wrong, please try again\"})});}function BackButton(){const[isHovered,setIsHovered]=useState(false);return /*#__PURE__*/_jsx(\"button\",{style:{color:\"#6b7280\",font:\"14px, Inter, sans-serif\",margin:\"10px auto\",textAlign:\"center\",background:\"transparent\",border:\"none\",cursor:\"pointer\",textDecoration:isHovered?\"underline\":\"none\"},onMouseOut:()=>setIsHovered(false),onMouseOver:()=>setIsHovered(true),onClick:resetForm,children:\"\u2190 Back\"});}function SignUpFormButton({props}){return /*#__PURE__*/_jsx(\"button\",{type:\"submit\",id:\"newslettersignup\",style:{background:formStyles.buttonColor,fontSize:`${formStyles.buttonFontSizePx}px`,color:formStyles.buttonFontColor,fontFamily:`'${formStyles.buttonFont}', sans-serif`,width:isInline?\"min-content\":\"100%\",maxWidth:\"300px\",whiteSpace:isInline?\"nowrap\":\"normal\",height:\"38px\",alignItems:\"center\",justifyContent:\"center\",flexDirection:\"row\",padding:\"9px 17px\",boxShadow:\"0px 1px 2px rgba(0, 0, 0, 0.05)\",borderRadius:\"6px\",textAlign:\"center\",fontStyle:\"normal\",fontWeight:500,lineHeight:\"20px\",border:\"none\",cursor:\"pointer\"},children:formState===SUBMITTING?\"Please wait...\":formStyles.buttonText});}}function isValidEmail(email){return/.+@.+/.test(email);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SignUpFormReact\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SignUpFormNewsletter.map", "// Generated by Framer (f082bd6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-McgkH .framer-styles-preset-k3zb60:not(.rich-text-wrapper), .framer-McgkH .framer-styles-preset-k3zb60.rich-text-wrapper a { --framer-link-current-text-color: rgba(255, 255, 255, 0.7); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: rgba(255, 255, 255, 0.4); --framer-link-text-decoration: none; }\"];export const className=\"framer-McgkH\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f318921)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"fRKIXL0tH\",\"BUZubQ9Bd\",\"QNsWjCJuL\",\"ooXaT4t6U\",\"B7FrwkuKK\",\"Np1E9pahw\",\"wm5lZ122w\",\"xZmdD8AL8\",\"COfIb4zl5\"];const serializationHash=\"framer-qkO3B\";const variantClassNames={B7FrwkuKK:\"framer-v-1sr9dbq\",BUZubQ9Bd:\"framer-v-apg3gp\",COfIb4zl5:\"framer-v-xw76vo\",fRKIXL0tH:\"framer-v-1qq47ku\",Np1E9pahw:\"framer-v-v3vh3b\",ooXaT4t6U:\"framer-v-1tz49wq\",QNsWjCJuL:\"framer-v-1akctfl\",wm5lZ122w:\"framer-v-107mgk4\",xZmdD8AL8:\"framer-v-1ukagfb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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={\"Full 1\":\"B7FrwkuKK\",\"Full 2\":\"Np1E9pahw\",\"Full 3\":\"wm5lZ122w\",\"Full 4\":\"xZmdD8AL8\",\"Icon 1\":\"fRKIXL0tH\",\"Icon 2\":\"BUZubQ9Bd\",\"Icon 3\":\"QNsWjCJuL\",\"Icon 4\":\"ooXaT4t6U\",\"Stacked 1 - Email Footer\":\"COfIb4zl5\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fRKIXL0tH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fRKIXL0tH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:150,pixelWidth:127,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4ixgJTHRtQILgTpdkVczvvE62OM.svg\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qq47ku\",className,classNames),\"data-framer-name\":\"Icon 1\",layoutDependency:layoutDependency,layoutId:\"fRKIXL0tH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({B7FrwkuKK:{\"data-framer-name\":\"Full 1\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:59,pixelWidth:300,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/WzrUP5G6YVHWOo6dJEhfkomnyQM.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WzrUP5G6YVHWOo6dJEhfkomnyQM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/WzrUP5G6YVHWOo6dJEhfkomnyQM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WzrUP5G6YVHWOo6dJEhfkomnyQM.svg 1920w\"}},BUZubQ9Bd:{\"data-framer-name\":\"Icon 2\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:150,pixelWidth:127,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nJdb2wgnx5FHxFdemSwcRgF2DUw.svg\"}},COfIb4zl5:{\"data-framer-name\":\"Stacked 1 - Email Footer\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:2260,pixelWidth:2296,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/BkBeTIQf0e51uffkGlWrMBnUITQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BkBeTIQf0e51uffkGlWrMBnUITQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/BkBeTIQf0e51uffkGlWrMBnUITQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BkBeTIQf0e51uffkGlWrMBnUITQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BkBeTIQf0e51uffkGlWrMBnUITQ.png 2296w\"}},Np1E9pahw:{\"data-framer-name\":\"Full 2\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:59,pixelWidth:300,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/SbylJF4gZDgveFLJHUpDTVZes.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SbylJF4gZDgveFLJHUpDTVZes.svg?scale-down-to=512 512w,https://framerusercontent.com/images/SbylJF4gZDgveFLJHUpDTVZes.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SbylJF4gZDgveFLJHUpDTVZes.svg 1920w\"}},ooXaT4t6U:{\"data-framer-name\":\"Icon 4\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:150,pixelWidth:127,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ni9VgVKbroN3mizNNF4mm3I.svg\"}},QNsWjCJuL:{\"data-framer-name\":\"Icon 3\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:150,pixelWidth:127,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HQynVttWk8PPqEMZOdHiV3mFI8.svg\"}},wm5lZ122w:{\"data-framer-name\":\"Full 3\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:59,pixelWidth:300,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/wPfID9WCd8eVuk9AKSPfPMmTE.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wPfID9WCd8eVuk9AKSPfPMmTE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/wPfID9WCd8eVuk9AKSPfPMmTE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wPfID9WCd8eVuk9AKSPfPMmTE.svg 1920w\"}},xZmdD8AL8:{\"data-framer-name\":\"Full 4\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:59,pixelWidth:300,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/gBjtKSvUKdiDZmef5Sy5Bb5MuM.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gBjtKSvUKdiDZmef5Sy5Bb5MuM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gBjtKSvUKdiDZmef5Sy5Bb5MuM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gBjtKSvUKdiDZmef5Sy5Bb5MuM.svg 1920w\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qkO3B.framer-6n4w48, .framer-qkO3B .framer-6n4w48 { display: block; }\",\".framer-qkO3B.framer-1qq47ku { height: 144px; overflow: visible; position: relative; width: 144px; }\",\".framer-qkO3B.framer-v-apg3gp.framer-1qq47ku, .framer-qkO3B.framer-v-1akctfl.framer-1qq47ku, .framer-qkO3B.framer-v-1tz49wq.framer-1qq47ku { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 144px); }\",\".framer-qkO3B.framer-v-1sr9dbq.framer-1qq47ku, .framer-qkO3B.framer-v-v3vh3b.framer-1qq47ku, .framer-qkO3B.framer-v-107mgk4.framer-1qq47ku, .framer-qkO3B.framer-v-1ukagfb.framer-1qq47ku { width: 732px; }\",\".framer-qkO3B.framer-v-xw76vo.framer-1qq47ku { height: 732px; width: 732px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 144\n * @framerIntrinsicWidth 144\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BUZubQ9Bd\":{\"layout\":[\"fixed\",\"fixed\"]},\"QNsWjCJuL\":{\"layout\":[\"fixed\",\"fixed\"]},\"ooXaT4t6U\":{\"layout\":[\"fixed\",\"fixed\"]},\"B7FrwkuKK\":{\"layout\":[\"fixed\",\"fixed\"]},\"Np1E9pahw\":{\"layout\":[\"fixed\",\"fixed\"]},\"wm5lZ122w\":{\"layout\":[\"fixed\",\"fixed\"]},\"xZmdD8AL8\":{\"layout\":[\"fixed\",\"fixed\"]},\"COfIb4zl5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxsjxSNwv5=withCSS(Component,css,\"framer-qkO3B\");export default FramerxsjxSNwv5;FramerxsjxSNwv5.displayName=\"Logo\";FramerxsjxSNwv5.defaultProps={height:144,width:144};addPropertyControls(FramerxsjxSNwv5,{variant:{options:[\"fRKIXL0tH\",\"BUZubQ9Bd\",\"QNsWjCJuL\",\"ooXaT4t6U\",\"B7FrwkuKK\",\"Np1E9pahw\",\"wm5lZ122w\",\"xZmdD8AL8\",\"COfIb4zl5\"],optionTitles:[\"Icon 1\",\"Icon 2\",\"Icon 3\",\"Icon 4\",\"Full 1\",\"Full 2\",\"Full 3\",\"Full 4\",\"Stacked 1 - Email Footer\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxsjxSNwv5,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxsjxSNwv5\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BUZubQ9Bd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QNsWjCJuL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ooXaT4t6U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B7FrwkuKK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Np1E9pahw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wm5lZ122w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xZmdD8AL8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"COfIb4zl5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"144\",\"framerIntrinsicHeight\":\"144\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xsjxSNwv5.map", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/4g4iDkxkaJXTefaMdbq6/Cookies.js\";import SignUpFormReact1 from\"https://framerusercontent.com/modules/nfGY5qPynsmaHXEqgEHO/xRcUtMX7xUshbdgj62lX/SignUpFormNewsletter.js\";import SignUpFormReact from\"https://framerusercontent.com/modules/uAEyIzv8fW1BH9CPYPi8/j7wQZols4ZszAoSrTLhx/Waiting_List_Custom_Form.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/HAuKLKFRUbGdUlCJoxXA/yXIys7zMxtC8BBsRMxOv/dOc6wFbu8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/CpGnz2qVoxutMeEBd7J7/rZr186ZTvmOj1E7OKF9b/sg00DauS6.js\";import Logo from\"https://framerusercontent.com/modules/nv9ebmRfsP7kxoE1Rzhb/UZTkKxYPrXbzoJBTZkbg/xsjxSNwv5.js\";const SignUpFormReactFonts=getFonts(SignUpFormReact);const SignUpFormReact1Fonts=getFonts(SignUpFormReact1);const MotionDivWithFX=withFX(motion.div);const LogoFonts=getFonts(Logo);const CookieBannerFonts=getFonts(CookieBanner);const cycleOrder=[\"qIexihdKT\",\"i3KKwWl7e\",\"E9KHtBZoH\",\"AK6RUT3OI\",\"jAjS9Vh_X\",\"hIefmGpso\",\"uGqdB5_bd\",\"z2ZVwbhdZ\",\"GGPj1PVJf\",\"Yop9pHvyA\",\"qUMoOglOY\",\"FqotaZLmw\",\"BgZTxA8d9\",\"WSPoC35YH\"];const serializationHash=\"framer-btFoO\";const variantClassNames={AK6RUT3OI:\"framer-v-16oo7m\",BgZTxA8d9:\"framer-v-zd18mn\",E9KHtBZoH:\"framer-v-fustio\",FqotaZLmw:\"framer-v-9j4twy\",GGPj1PVJf:\"framer-v-1i764eb\",hIefmGpso:\"framer-v-1ke5id6\",i3KKwWl7e:\"framer-v-8guqw4\",jAjS9Vh_X:\"framer-v-1l83vp\",qIexihdKT:\"framer-v-1pwmk1w\",qUMoOglOY:\"framer-v-yu6v\",uGqdB5_bd:\"framer-v-1yx00g7\",WSPoC35YH:\"framer-v-ckmh7i\",Yop9pHvyA:\"framer-v-h5rjah\",z2ZVwbhdZ:\"framer-v-37tvo0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition2};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};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={\"2025 - Desktop\":\"BgZTxA8d9\",\"2025 - Mobile\":\"WSPoC35YH\",\"App Download - Desktop\":\"qUMoOglOY\",\"App Download - Mobile\":\"FqotaZLmw\",\"App Mobile\":\"Yop9pHvyA\",\"Dashboard - 1\":\"z2ZVwbhdZ\",\"Dashboard - 2\":\"GGPj1PVJf\",\"Variant 5\":\"jAjS9Vh_X\",\"Variant 6\":\"hIefmGpso\",\"Variant Waiting List\":\"AK6RUT3OI\",Coaching:\"uGqdB5_bd\",Desktop:\"qIexihdKT\",Mobile:\"i3KKwWl7e\",Tablet:\"E9KHtBZoH\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qIexihdKT\"};};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:\"qIexihdKT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaptxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"i3KKwWl7e\",\"BgZTxA8d9\",\"WSPoC35YH\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"z2ZVwbhdZ\",\"GGPj1PVJf\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"jAjS9Vh_X\")return true;return false;};const isDisplayed3=()=>{if([\"AK6RUT3OI\",\"uGqdB5_bd\",\"z2ZVwbhdZ\",\"GGPj1PVJf\",\"Yop9pHvyA\",\"qUMoOglOY\",\"FqotaZLmw\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"jAjS9Vh_X\",\"hIefmGpso\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"hIefmGpso\")return true;return false;};const isDisplayed6=()=>{if([\"AK6RUT3OI\",\"jAjS9Vh_X\",\"hIefmGpso\",\"uGqdB5_bd\",\"z2ZVwbhdZ\",\"GGPj1PVJf\",\"Yop9pHvyA\",\"qUMoOglOY\",\"FqotaZLmw\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"AK6RUT3OI\")return true;return false;};const isDisplayed8=()=>{if([\"uGqdB5_bd\",\"qUMoOglOY\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"uGqdB5_bd\")return false;return true;};const isDisplayed10=()=>{if(baseVariant===\"qUMoOglOY\")return false;return true;};const isDisplayed11=()=>{if(baseVariant===\"z2ZVwbhdZ\")return true;return false;};const isDisplayed12=()=>{if([\"GGPj1PVJf\",\"FqotaZLmw\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"GGPj1PVJf\")return false;return true;};const isDisplayed14=()=>{if(baseVariant===\"FqotaZLmw\")return false;return true;};const isDisplayed15=()=>{if(baseVariant===\"Yop9pHvyA\")return true;return false;};const isDisplayed16=()=>{if([\"BgZTxA8d9\",\"WSPoC35YH\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const router=useRouter();const isDisplayed17=()=>{if([\"BgZTxA8d9\",\"WSPoC35YH\"].includes(baseVariant))return true;return false;};const ref3=React.useRef(null);const ref4=React.useRef(null);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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pwmk1w\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qIexihdKT\",ref:refBinding,style:{backgroundColor:\"var(--token-5c2e60e3-06f8-4760-8465-4ed8d5399ac5, rgb(15, 27, 36))\",...style},variants:{BgZTxA8d9:{backgroundColor:\"rgb(27, 31, 55)\"},WSPoC35YH:{backgroundColor:\"rgb(27, 31, 55)\"}},...addPropertyOverrides({AK6RUT3OI:{\"data-framer-name\":\"Variant Waiting List\"},BgZTxA8d9:{\"data-framer-name\":\"2025 - Desktop\"},E9KHtBZoH:{\"data-framer-name\":\"Tablet\"},FqotaZLmw:{\"data-framer-name\":\"App Download - Mobile\"},GGPj1PVJf:{\"data-framer-name\":\"Dashboard - 2\"},hIefmGpso:{\"data-framer-name\":\"Variant 6\"},i3KKwWl7e:{\"data-framer-name\":\"Mobile\"},jAjS9Vh_X:{\"data-framer-name\":\"Variant 5\"},qUMoOglOY:{\"data-framer-name\":\"App Download - Desktop\"},uGqdB5_bd:{\"data-framer-name\":\"Coaching\"},WSPoC35YH:{\"data-framer-name\":\"2025 - Mobile\"},Yop9pHvyA:{\"data-framer-name\":\"App Mobile\"},z2ZVwbhdZ:{\"data-framer-name\":\"Dashboard - 1\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tpl19u\",\"data-framer-name\":\"Cut\",layoutDependency:layoutDependency,layoutId:\"mm3myfgIp\",style:{backgroundColor:\"rgb(251, 252, 253)\"},variants:{GGPj1PVJf:{backgroundColor:\"rgb(245, 245, 245)\"}}}),isDisplayed()&&/*#__PURE__*/_jsxs(Image,{className:\"framer-piym5x\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"lORqv8jAm\",style:{background:\"linear-gradient(179.99999978971724deg, rgba(118, 133, 247, 1) 0%, rgba(110, 126, 246, 1) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({GGPj1PVJf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||776)-64-880)/2+0+0)),pixelHeight:372,pixelWidth:1309,sizes:`min(${componentViewport?.width||\"100vw\"} - 128px, 1440px)`,src:\"https://framerusercontent.com/images/CBquW3BtCXZc6Q8u1mfp7HlV4.png\",srcSet:\"https://framerusercontent.com/images/CBquW3BtCXZc6Q8u1mfp7HlV4.png?scale-down-to=512 512w,https://framerusercontent.com/images/CBquW3BtCXZc6Q8u1mfp7HlV4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CBquW3BtCXZc6Q8u1mfp7HlV4.png 1309w\"}}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||696)-64-1168)/2+0+0)+0),src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"},className:\"framer-a1sjtu\",\"data-framer-name\":\"Pattern\",layoutDependency:layoutDependency,layoutId:\"vwixfi66y\",...addPropertyOverrides({AK6RUT3OI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-1665)/2+0+0)+0),src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}},E9KHtBZoH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-1722)/2+0+0)+0),src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}},FqotaZLmw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}},hIefmGpso:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}},jAjS9Vh_X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-1059)/2+0+0)+0),src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}},qUMoOglOY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-750)/2+0+0)+0),src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}},uGqdB5_bd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-730)/2+0+0)+0),src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}},Yop9pHvyA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:323,intrinsicWidth:1312,src:\"https://framerusercontent.com/images/d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ggw7ha-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"pAu4xTlr_-container\",nodeId:\"pAu4xTlr_\",rendersWithMotion:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(SignUpFormReact,{height:\"100%\",id:\"pAu4xTlr_\",layoutId:\"pAu4xTlr_\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFMaWdodEl0YWxpYw==\",\"--framer-font-size\":\"12px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\"})}),className:\"framer-v5s57f\",\"data-framer-name\":\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\",fonts:[\"Inter-ExtraLightItalic\"],layoutDependency:layoutDependency,layoutId:\"J6nVTmh0E\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vlxwrw\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"fydXmU_O9\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Sign up now and get FREE access\"})}),className:\"framer-if8xkc\",\"data-framer-name\":\"Access our free 14-days trial\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"j2SEYk6lT\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"GET THE APP NOW!\"})}),className:\"framer-o8u9fj\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"TmvJaGSFj\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"GET THE APP NOW!\"})}),className:\"framer-197pd2s\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"ww9qxKXfC\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Sign up now and receive a download link to the Free App straight to your Inbox. As we\u2019re still in Beta testing, you won\u2019t find our App in the App Store yet, so this the only way to get exclusive early access!\"})}),className:\"framer-1yvbh0a\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"dmz6tsAwD\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Our online dashboard is free to use, as you\u2019re helping us build the best platform for diabetes and weight management!\"})}),className:\"framer-1mlby81\",\"data-framer-name\":\"No commitment or credit card required. Start using our platform today!\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"q4n7_SfX8\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-hi0pf5, rgb(255, 255, 255))\"},children:\"Sign up now and receive a download link to the Free App straight to your Inbox. As we\u2019re still in Beta testing, you won\u2019t find our App in the App Store yet, so this the only way to get exclusive early access!\"})]}),className:\"framer-1l4oakv\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"P2f2WBSCj\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--extracted-hi0pf5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y7kdxv-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"yTA7XEMz8-container\",nodeId:\"yTA7XEMz8\",rendersWithMotion:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(SignUpFormReact,{height:\"100%\",id:\"yTA7XEMz8\",layoutId:\"yTA7XEMz8\",style:{width:\"100%\"},width:\"100%\"})})})]}),isDisplayed6()&&/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.enhance-d.com\",motionChild:true,nodeId:\"UD0cjqQQ0\",openInNewTab:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-uizpci framer-5qyc6q\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"UD0cjqQQ0\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(86, 102, 240))\"},children:\"Get Started ->\"})}),className:\"framer-1leeiz8\",\"data-framer-name\":\"Get Started ->\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"dYss9__gu\",style:{\"--extracted-r6o4lv\":\"rgb(86, 102, 240)\"},verticalAlignment:\"center\",withExternalLayout:true})})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ajwthj\",layoutDependency:layoutDependency,layoutId:\"OTiluLAA6\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v0xd90\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"XJ1gLuRuq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"GET THE APP NOW!\"})}),className:\"framer-oji03l\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"MpUxOhqzk\",style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Sign up now and receive a download link to the Free App straight to your Inbox. As we\u2019re still in Beta testing, you won\u2019t find our App in the App Store yet, so this the only way to get exclusive early access!\"})}),className:\"framer-14bdqzw\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"U4F8MxWT3\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFMaWdodEl0YWxpYw==\",\"--framer-font-size\":\"12px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\"})}),className:\"framer-rviv1y\",\"data-framer-name\":\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\",fonts:[\"Inter-ExtraLightItalic\"],layoutDependency:layoutDependency,layoutId:\"SnFpfQyXu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wx2oe5-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"jYBe2nZj0-container\",nodeId:\"jYBe2nZj0\",rendersWithMotion:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(SignUpFormReact,{height:\"100%\",id:\"jYBe2nZj0\",layoutId:\"jYBe2nZj0\",style:{width:\"100%\"},width:\"100%\"})})})]})}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItRXh0cmFMaWdodEl0YWxpYw==\",\"--framer-font-size\":\"12px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"200\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\"})}),className:\"framer-1hcvs1h\",\"data-framer-name\":\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\",fonts:[\"Inter-ExtraLightItalic\"],layoutDependency:layoutDependency,layoutId:\"f7r8CSQku\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dnn6kt\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"G2X8aNmXr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Start Now.\"})}),className:\"framer-1c8id9s\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"C1ynNeq5d\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qUMoOglOY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Download Now\"})})}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svffl0\",\"data-framer-name\":\"Iphone 14 Pro\",layoutDependency:layoutDependency,layoutId:\"om6i7JZo1\",children:[isDisplayed10()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"49.81px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.28px\",\"--framer-line-height\":\"62.26px\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(348deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 43.1042%)\"},children:\"Enhance-d Mobile App\"})})}),className:\"framer-iolfmv\",\"data-framer-name\":\"Enhance-d Mobile App\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"x2DWbFIko\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oqocvf\",layoutDependency:layoutDependency,layoutId:\"DYj9YO8q7\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/enhance-d/id6497331467\",motionChild:true,nodeId:\"brkQaKrpn\",openInNewTab:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:167,pixelWidth:499,src:\"https://framerusercontent.com/images/KgGyTpYSlZSCMPSX1w0mPs3MqU4.png\"},className:\"framer-88ul7s framer-5qyc6q\",layoutDependency:layoutDependency,layoutId:\"brkQaKrpn\",whileHover:animation,whileTap:animation1,...addPropertyOverrides({qUMoOglOY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-750)/2+0+0)+64+0+0+90+0+0+0),pixelHeight:167,pixelWidth:499,src:\"https://framerusercontent.com/images/KgGyTpYSlZSCMPSX1w0mPs3MqU4.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.sestanteanalyticsag.enhancedv1\",motionChild:true,nodeId:\"ZwlEeoYGd\",openInNewTab:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:80,pixelWidth:270,src:\"https://framerusercontent.com/images/0w8ONb9ouWJ2GDFdyHnwlzOy90.png\"},className:\"framer-1obj2ud framer-5qyc6q\",layoutDependency:layoutDependency,layoutId:\"ZwlEeoYGd\",whileHover:animation,whileTap:animation1,...addPropertyOverrides({qUMoOglOY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-750)/2+0+0)+64+0+0+90+0+0+0),pixelHeight:80,pixelWidth:270,src:\"https://framerusercontent.com/images/0w8ONb9ouWJ2GDFdyHnwlzOy90.png\"}}},baseVariant,gestureVariant)})})]})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wetm7p\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"p9zeAqJF_\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nfBP1OveG\"},motionChild:true,nodeId:\"Y90rMLBLY\",scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1n3iv6e framer-5qyc6q\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Y90rMLBLY\",style:{backgroundColor:\"rgb(242, 242, 242)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17)))\"},children:\"Learn More\"})}),className:\"framer-imcjip\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"ZVzi1sCRp\",style:{\"--extracted-r6o4lv\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/fede_enhance-d/60min\",motionChild:true,nodeId:\"mgUEnqEcm\",scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-u0e3av framer-5qyc6q\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"mgUEnqEcm\",style:{backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.14764), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Book 1:1 \u2014>\"})}),className:\"framer-7z63z1\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"gaFhBew7U\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15z1ged\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"n8R_U24SO\",style:{background:\"linear-gradient(180deg, rgba(118, 133, 247, 1) 0%, rgba(110, 126, 246, 1) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.enhance-d.com/\",motionChild:true,nodeId:\"jhVTaUqhF\",scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1qltj45 framer-5qyc6q\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"jhVTaUqhF\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(86, 102, 240))\"},children:\"Get Started ->\"})}),className:\"framer-1e57i2q\",\"data-framer-name\":\"Get Started ->\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Y1Oy6sjOI\",style:{\"--extracted-r6o4lv\":\"rgb(86, 102, 240)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eeh4ud\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"ax8UHesoO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"43.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"In the meantime, why not try our Dashboard \"})}),className:\"framer-uetpsx\",\"data-framer-name\":\"In the meantime, why not try our Dashboard\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"u8HzhhrUX\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z5sb4l\",\"data-framer-name\":\"Frame 14\",layoutDependency:layoutDependency,layoutId:\"K0etSiy8o\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1symtik\",\"data-framer-name\":\"Group 4\",layoutDependency:layoutDependency,layoutId:\"B18gmoRMx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Free\"})}),className:\"framer-135dhpd\",\"data-framer-name\":\"Free\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ofqAFq8zP\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8cbben\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"hhZ6QcP4Q\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_129_1390)\">\\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_129_1390\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vizec7\",\"data-framer-name\":\"Group 5\",layoutDependency:layoutDependency,layoutId:\"jyAtYueIW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"No credit card required\"})}),className:\"framer-cgzudm\",\"data-framer-name\":\"No credit card required\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"cF5e7o0mk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mqvsvt\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ULe4W9Pf6\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_129_1395)\">\\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_129_1395\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:372,intrinsicWidth:1309,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg\",srcSet:\"https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg 1309w\"},className:\"framer-1399ojz\",\"data-framer-name\":\"d8WD8tPoIIUQebo0N7OjDTf7UkI.svg\",layoutDependency:layoutDependency,layoutId:\"Xn2RmEirF\",...addPropertyOverrides({z2ZVwbhdZ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:372,intrinsicWidth:1309,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-928)/2+0+0)+64+-58.35040431266847+-184),positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 128px, 1440px)`,src:\"https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg\",srcSet:\"https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5DHLJ8JnDJKfeXD9OlKIiw2Myco.svg 1309w\"}}},baseVariant,gestureVariant)})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h8d4do\",\"data-framer-name\":\"Iphone 14 Pro\",layoutDependency:layoutDependency,layoutId:\"M595rM6qT\",children:[isDisplayed13()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.28px\",\"--framer-line-height\":\"62.26px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(348deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 43.1042%)\"},children:[\"Download\",/*#__PURE__*/_jsx(motion.br,{}),\"Now\"]})})}),className:\"framer-1q222kr\",\"data-framer-name\":\"Enhance-d Mobile App\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"XmHj9sZlF\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed13()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xq73cg\",layoutDependency:layoutDependency,layoutId:\"S4LNKUuQ7\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/enhance-d/id6497331467\",motionChild:true,nodeId:\"JX8G9nyrC\",openInNewTab:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:167,pixelWidth:499,src:\"https://framerusercontent.com/images/KgGyTpYSlZSCMPSX1w0mPs3MqU4.png\"},className:\"framer-19gdr6x framer-5qyc6q\",layoutDependency:layoutDependency,layoutId:\"JX8G9nyrC\",whileHover:animation,whileTap:animation1})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.sestanteanalyticsag.enhancedv1\",motionChild:true,nodeId:\"JgnYBWU7M\",openInNewTab:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:80,pixelWidth:270,src:\"https://framerusercontent.com/images/0w8ONb9ouWJ2GDFdyHnwlzOy90.png\"},className:\"framer-1tkr3sj framer-5qyc6q\",layoutDependency:layoutDependency,layoutId:\"JgnYBWU7M\",whileHover:animation,whileTap:animation1})})]}),isDisplayed14()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"43.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(85, 34, 250))\",\"--framer-text-transform\":\"capitalize\"},children:\"In the meantime, why not try our Dashboard \"})}),className:\"framer-3zm9bl\",\"data-framer-name\":\"In the meantime, why not try our Dashboard\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"HKrs7Su9t\",style:{\"--extracted-r6o4lv\":\"rgb(85, 34, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13den0v\",\"data-framer-name\":\"Frame 14\",layoutDependency:layoutDependency,layoutId:\"a_Dam6p9C\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r4hzt8\",\"data-framer-name\":\"Group 4\",layoutDependency:layoutDependency,layoutId:\"QR08VDsQo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(85, 34, 250))\"},children:\"Free\"})}),className:\"framer-1ojy8\",\"data-framer-name\":\"Free\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MDMkaxg4X\",style:{\"--extracted-r6o4lv\":\"rgb(85, 34, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tp8uo1\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"K3SCszLnV\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_681_648)\">\\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"#5522FA\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_681_648\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wpdj5t\",\"data-framer-name\":\"Group 5\",layoutDependency:layoutDependency,layoutId:\"Zz37hKOyb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(85, 34, 250))\"},children:\"No credit card required\"})}),className:\"framer-5oavhl\",\"data-framer-name\":\"No credit card required\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"J8lh2L6Mt\",style:{\"--extracted-r6o4lv\":\"rgb(85, 34, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r3zzss\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"CCDbEdWSA\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_681_653)\">\\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"#5522FA\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_681_653\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed14()&&/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"EyJ5Gvair\",scopeId:\"ckKjSoMrl\",...addPropertyOverrides({GGPj1PVJf:{href:\"https://dashboard.enhance-d.com\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5v98bu framer-5qyc6q\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"EyJ5Gvair\",style:{background:\"linear-gradient(89.99999886831509deg, rgba(86, 102, 240, 1) 0%, rgba(122, 86, 240, 1) 100%)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Started ->\"})}),className:\"framer-15vhgs4\",\"data-framer-name\":\"Get Started ->\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"omGH5_A1_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})})]}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1z6xkz\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"WzK2BeZvg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"43.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"In the meantime, why not try our Dashboard \"})}),className:\"framer-8ze3ou\",\"data-framer-name\":\"In the meantime, why not try our Dashboard\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"HLY8sSnSy\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1067k2q\",\"data-framer-name\":\"Frame 14\",layoutDependency:layoutDependency,layoutId:\"f9kxK_cRU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lnza1l\",\"data-framer-name\":\"Group 4\",layoutDependency:layoutDependency,layoutId:\"ZaVIMBS14\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Free\"})}),className:\"framer-1nu7ee1\",\"data-framer-name\":\"Free\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"p4Ox1rz8b\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fhr1es\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"tx3xbecML\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_129_1390)\">\\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_129_1390\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dl4ar4\",\"data-framer-name\":\"Group 5\",layoutDependency:layoutDependency,layoutId:\"E_cR6_hjl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"No credit card required\"})}),className:\"framer-13760lw\",\"data-framer-name\":\"No credit card required\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"t7gZ4oLf4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q0ahqe\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"jz2ior3SU\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_129_1395)\">\\n<path d=\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM16.2806 10.2806L11.0306 15.5306C10.961 15.6004 10.8783 15.6557 10.7872 15.6934C10.6962 15.7312 10.5986 15.7506 10.5 15.7506C10.4014 15.7506 10.3038 15.7312 10.2128 15.6934C10.1218 15.6557 10.039 15.6004 9.96938 15.5306L7.71938 13.2806C7.57865 13.1399 7.49959 12.949 7.49959 12.75C7.49959 12.551 7.57865 12.3601 7.71938 12.2194C7.86011 12.0786 8.05098 11.9996 8.25 11.9996C8.44903 11.9996 8.6399 12.0786 8.78063 12.2194L10.5 13.9397L15.2194 9.21937C15.2891 9.14969 15.3718 9.09442 15.4628 9.0567C15.5539 9.01899 15.6515 8.99958 15.75 8.99958C15.8486 8.99958 15.9461 9.01899 16.0372 9.0567C16.1282 9.09442 16.2109 9.14969 16.2806 9.21937C16.3503 9.28906 16.4056 9.37178 16.4433 9.46283C16.481 9.55387 16.5004 9.65145 16.5004 9.75C16.5004 9.84855 16.481 9.94613 16.4433 10.0372C16.4056 10.1282 16.3503 10.2109 16.2806 10.2806Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_129_1395\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed15()&&/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.enhance-d.com/\",motionChild:true,nodeId:\"BppUYa1FV\",scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12qrm4j framer-5qyc6q\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"BppUYa1FV\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(86, 102, 240))\"},children:\"Get Started ->\"})}),className:\"framer-f7edyd\",\"data-framer-name\":\"Get Started ->\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"RLT_KAvgy\",style:{\"--extracted-r6o4lv\":\"rgb(86, 102, 240)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})})})]})]}),isDisplayed16()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-akny3a\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"A1Aoxjq4_\",style:{backgroundColor:\"rgb(15, 27, 36)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eloz5k\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"M55KCBfsY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ciiok9\",\"data-framer-name\":\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"o058nqONu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rkmabn\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"nGNlNPS8B\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Stay up to date\"})}),className:\"framer-2vobt3\",\"data-framer-name\":\"Stay up to date\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"iAGwPs_V_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:\"Sign up for our newsletter and get updates, resources, offers and special early access to everything Enhance-d related!\"})}),className:\"framer-7zg3o6\",\"data-framer-name\":\"Sign up for our newsletter and get updates, resources, offers and special early access to everything enhance-d related!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qGQ6YM2ny\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dszm8d\",\"data-framer-name\":\"Newsletter Button\",\"data-highlight\":true,id:`${layoutId}-dszm8d`,layoutDependency:layoutDependency,layoutId:\"SC0aQOAHD\",onTap:onTaptxyyif({overlay}),ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 27, 36))\"},children:\"Subscribe\"})}),className:\"framer-11jg8km\",\"data-framer-name\":\"Subscribe\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VpgO6OrgK\",style:{\"--extracted-r6o4lv\":\"rgb(15, 27, 36)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-dszm8d`,offsetX:10,offsetY:-100,onDismiss:overlay.hide,placement:\"right\",safeArea:false,zIndex:11,...addPropertyOverrides({FqotaZLmw:{offsetX:0,offsetY:10,placement:\"bottom\"},hIefmGpso:{offsetX:0,offsetY:10,placement:\"bottom\"},i3KKwWl7e:{offsetX:0,offsetY:10,placement:\"bottom\"},Yop9pHvyA:{offsetX:0,offsetY:10,placement:\"bottom\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-m7oev0\",exit:animation3,initial:animation5,layoutDependency:layoutDependency,layoutId:\"NDCbOEJ12\",ref:ref2,role:\"dialog\",style:{background:\"linear-gradient(180deg, rgb(118, 133, 247) 0%, rgb(110, 126, 246) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bgvini\",layoutDependency:layoutDependency,layoutId:\"xkwLathWO\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xn0d2k-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"ufmz_uaHT-container\",nodeId:\"ufmz_uaHT\",rendersWithMotion:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(SignUpFormReact1,{height:\"100%\",id:\"ufmz_uaHT\",layoutId:\"ufmz_uaHT\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8b2zjc\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"CztH1si0r\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\"})}),className:\"framer-1xxg1a4\",\"data-framer-name\":\"Sign up for our newsletter and get updates, resources, offers and special early access to everything enhance-d related!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vhbscItEg\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true})})]})})})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t1tami\",\"data-framer-name\":\"Menu Elements\",layoutDependency:layoutDependency,layoutId:\"QORNNV422\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k5wjif\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"H9W_lJrZb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Us\"})}),className:\"framer-1wph8p6\",\"data-framer-name\":\"Contact Us\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"keoFIUaYk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qqurj2\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"H3GpXqIOm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Khj5cfGDa\"},motionChild:true,nodeId:\"UV1btrz8k\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Contact Us\"})})})}),className:\"framer-4d37b9\",\"data-framer-name\":\"Contact Us\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UV1btrz8k\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://usemotion.com/meet/henry-aspden/enhance-d-demo-b423f3y?d=30\",motionChild:true,nodeId:\"a8Ur2Ff2K\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Request a Demo\"})})})}),className:\"framer-6l6p5p\",\"data-framer-name\":\"Request a Demo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a8Ur2Ff2K\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wlv1dy\",\"data-framer-name\":\"Company\",layoutDependency:layoutDependency,layoutId:\"mygyBSgPr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company\"})}),className:\"framer-6s0e1z\",\"data-framer-name\":\"Company\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HnW5NtrIf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-csl9tu\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"wycvj_p6Y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uuATyWmA9\"},motionChild:true,nodeId:\"kMAOkQYo7\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Home\"})})})}),className:\"framer-kgts51\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kMAOkQYo7\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AUCRL_Lpa\"},motionChild:true,nodeId:\"fW4vxUFuL\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"About Us\"})})})}),className:\"framer-i4fbxf\",\"data-framer-name\":\"Team\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fW4vxUFuL\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NkrF_EhXI\"},motionChild:true,nodeId:\"fAVYCwXl_\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Blog\"})})})}),className:\"framer-77j4ec\",\"data-framer-name\":\"Blog\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fAVYCwXl_\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cqvszzmja\"},motionChild:true,nodeId:\"WHGmwkRVl\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"News\"})})})}),className:\"framer-xt03g5\",\"data-framer-name\":\"News\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WHGmwkRVl\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qshlhzUt8\"},motionChild:true,nodeId:\"WSkGbYMez\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Media\"})})})}),className:\"framer-y19xfb\",\"data-framer-name\":\"News\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WSkGbYMez\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14zm26r\",\"data-framer-name\":\"Product\",layoutDependency:layoutDependency,layoutId:\"Rml6bkyCo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Product\"})}),className:\"framer-sri7ou\",\"data-framer-name\":\"Product\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"qg8oOPmQj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15upfbm\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"yQCHOUE5l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.enhance-d.com\",motionChild:true,nodeId:\"DakdR8dEz\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Dashboard Log\"})}),\"in\"]})}),className:\"framer-tadtp3\",\"data-framer-name\":\"Log In\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DakdR8dEz\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HAEwwkhir\"},motionChild:true,nodeId:\"zZCkkAMT1\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"FAQ\"})})})}),className:\"framer-13nwllk\",\"data-framer-name\":\"FAQ\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zZCkkAMT1\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-why194\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"vqpkjEVTh\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-46l1as\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"PnBQ8wHZI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ra2od2\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"A0yaN5YJQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"32px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||696)-64-1168)/2+696+60)+0+212+84+0+0,...addPropertyOverrides({AK6RUT3OI:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-1665)/2+639+48)+0+664+0+0+0+0},E9KHtBZoH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-1722)/2+696+48)+0+664+0+0+0+0},FqotaZLmw:{y:undefined},GGPj1PVJf:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||776)-64-880)/2+408+60)+0+212+84+0+0},hIefmGpso:{y:undefined},i3KKwWl7e:{y:undefined},jAjS9Vh_X:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-1059)/2+587+60)+0+212+84+0+0},qUMoOglOY:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-750)/2+278+60)+0+212+84+0+0},uGqdB5_bd:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-730)/2+258+60)+0+212+84+0+0},Yop9pHvyA:{y:undefined},z2ZVwbhdZ:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-64-928)/2+456+60)+0+212+84+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uczg7-container\",layoutDependency:layoutDependency,layoutId:\"d60wljcWV-container\",nodeId:\"d60wljcWV\",rendersWithMotion:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"d60wljcWV\",layoutId:\"d60wljcWV\",style:{height:\"100%\",width:\"100%\"},variant:\"QNsWjCJuL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nrckn3\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"ExSAa2mLl\",style:{backgroundColor:\"rgba(171, 194, 211, 0.5)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uhxiow\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"eggyMszLa\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/enhance_d\",motionChild:true,nodeId:\"S_d_X34Nx\",scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dbowj9 framer-5qyc6q\",\"data-framer-name\":\"Twitter\",layoutDependency:layoutDependency,layoutId:\"S_d_X34Nx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2ampsl\",\"data-framer-name\":\"Twitter\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"hm1EFiw9I\",svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M17.087 5h2.375l-5.189 5.93L20.377 19h-4.78l-3.743-4.894L7.571 19H5.195l5.55-6.343L4.888 5h4.9l3.384 4.474L17.087 5Zm-.834 12.578h1.316L9.074 6.347H7.662l8.591 11.231Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.889)\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/enhance-d/?viewAsMember=true\",motionChild:true,nodeId:\"Nhme1sMX2\",scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3ek20n framer-5qyc6q\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"Nhme1sMX2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jyybcv\",\"data-framer-name\":\"Linkedin\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"zMzb3hgOM\",svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.094 4H5.584c-.397 0-.695.3-.695.7v14.7c0 .3.298.6.695.6h14.609c.397 0 .696-.3.696-.7V4.7c-.1-.4-.398-.7-.795-.7ZM9.559 17.6H7.274V10h2.385v7.6h-.1ZM8.466 9c-.795 0-1.391-.7-1.391-1.4 0-.8.596-1.4 1.391-1.4s1.392.6 1.392 1.4c-.1.7-.696 1.4-1.392 1.4Zm9.938 8.6H16.02v-3.7c0-.9 0-2-1.192-2-1.193 0-1.392 1-1.392 2v3.8H11.05V10h2.286v1c.298-.6 1.093-1.2 2.186-1.2 2.385 0 2.783 1.6 2.783 3.6v4.2h.1Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/enhance_d_official/\",motionChild:true,nodeId:\"rv5LMvpRt\",scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tzi3sw framer-5qyc6q\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"rv5LMvpRt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-44zr6q\",\"data-framer-name\":\"Instagram\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"qzHxmvMWY\",svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.889 5.44c2.137 0 2.39.01 3.23.047.782.035 1.204.166 1.485.276.372.143.64.318.919.596.281.282.453.547.597.92.11.28.24.705.275 1.483.037.844.047 1.097.047 3.232 0 2.137-.01 2.39-.047 3.231-.035.781-.166 1.203-.275 1.484a2.49 2.49 0 0 1-.597.92 2.459 2.459 0 0 1-.919.596c-.281.11-.706.24-1.484.275-.844.038-1.097.047-3.231.047-2.138 0-2.391-.01-3.232-.047-.78-.034-1.203-.166-1.484-.275a2.474 2.474 0 0 1-.919-.597 2.46 2.46 0 0 1-.597-.919c-.109-.28-.24-.706-.275-1.484-.037-.844-.046-1.097-.046-3.231 0-2.138.009-2.39.046-3.232.035-.78.166-1.203.275-1.484.144-.372.32-.64.597-.919a2.46 2.46 0 0 1 .92-.596c.28-.11.705-.241 1.483-.276.841-.037 1.094-.046 3.232-.046Zm0-1.44c-2.172 0-2.444.01-3.297.047-.85.037-1.435.175-1.94.372a3.905 3.905 0 0 0-1.42.925 3.92 3.92 0 0 0-.925 1.415c-.196.51-.334 1.091-.371 1.941-.038.856-.047 1.128-.047 3.3 0 2.172.009 2.444.047 3.297.037.85.175 1.434.371 1.94.207.529.479.976.925 1.42a3.92 3.92 0 0 0 1.416.921c.51.197 1.09.335 1.94.372.854.038 1.126.047 3.298.047 2.171 0 2.443-.01 3.296-.047.85-.037 1.435-.175 1.941-.372a3.91 3.91 0 0 0 1.416-.922 3.91 3.91 0 0 0 .921-1.415c.197-.51.335-1.091.372-1.941.038-.853.047-1.125.047-3.297s-.01-2.444-.047-3.297c-.037-.85-.175-1.434-.372-1.94a3.746 3.746 0 0 0-.915-1.422 3.91 3.91 0 0 0-1.416-.922c-.51-.197-1.09-.334-1.94-.372-.857-.04-1.129-.05-3.3-.05Z\" fill=\"#fff\"/><path d=\"M12.889 7.89a4.11 4.11 0 0 0 0 8.22 4.11 4.11 0 0 0 0-8.22Zm0 6.776a2.666 2.666 0 1 1 0-5.332 2.666 2.666 0 0 1 0 5.332Zm5.231-6.938a.96.96 0 1 1-1.92 0 .96.96 0 0 1 1.92 0Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m28mo9\",\"data-framer-name\":\"Privacy\",layoutDependency:layoutDependency,layoutId:\"C8vjZL2bT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KjjqAyWQo\"},motionChild:true,nodeId:\"DoY1gxcCN\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Privacy Policy\"})})})}),className:\"framer-xx5y87\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DoY1gxcCN\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined},{href:{webPageId:\"Se3mpTsnr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cqz1pr-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"u4H_NYLmc-container\",nodeId:\"u4H_NYLmc\",rendersWithMotion:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, rgb(223, 21, 105))\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"}},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[0],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-T42W5TN7\",height:\"100%\",id:\"u4H_NYLmc\",layoutId:\"u4H_NYLmc\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, rgb(223, 21, 105))\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(171, 194, 211)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.6em\",textAlign:\"center\"},type:\"text\"},width:\"100%\",...addPropertyOverrides({AK6RUT3OI:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[3],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},E9KHtBZoH:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[2],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},FqotaZLmw:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[11],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},GGPj1PVJf:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[8],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},hIefmGpso:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[5],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},i3KKwWl7e:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[1],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},jAjS9Vh_X:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[4],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},qUMoOglOY:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[10],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},uGqdB5_bd:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[6],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},Yop9pHvyA:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[9],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},z2ZVwbhdZ:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:resolvedLinks[7],prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lIM_zSzwk\"},motionChild:true,nodeId:\"BfPdttEI7\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zja1mv\",\"data-styles-preset\":\"sg00DauS6\",children:\"Terms and Conditions\"})})})}),className:\"framer-16svx9t\",\"data-framer-name\":\"Terms and Conditions\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BfPdttEI7\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:\"\\xa92024 by Sestante Analytics AG\"})}),className:\"framer-c4ndwb\",\"data-framer-name\":\"\\xa92024 by Sestante Analytics AG\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OrW7l42Wc\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fuwgma\",\"data-framer-name\":\"2025 Footer - Body\",layoutDependency:layoutDependency,layoutId:\"GUDkb78HX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-slimde\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"FtSQBESG2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2m6up5\",layoutDependency:layoutDependency,layoutId:\"NZBVXkpgE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:\"Sign up for our newsletter and get updates, resources, offers and special early access to everything Enhance-d related!\"})}),className:\"framer-1nwd6s9\",\"data-framer-name\":\"Sign up for our newsletter and get updates, resources, offers and special early access to everything Enhance-d related!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XKjaY6DD_\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WSPoC35YH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:\"Sign up for our newsletter and get updates, resources, offers and special early access to everything Enhance-d related!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1se65r9\",\"data-framer-name\":\"Group 21\",layoutDependency:layoutDependency,layoutId:\"t4gK3DaHO\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v2en1s\",\"data-framer-name\":\"Rectangle 37\",\"data-highlight\":true,id:`${layoutId}-1v2en1s`,layoutDependency:layoutDependency,layoutId:\"Up0ZzdzSB\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref3,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:44,borderBottomRightRadius:44,borderTopLeftRadius:44,borderTopRightRadius:44},children:[/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref3,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1v2en1s`,offsetX:10,offsetY:-100,onDismiss:overlay1.hide,placement:\"right\",safeArea:false,zIndex:11,...addPropertyOverrides({BgZTxA8d9:{offsetX:-127.50001222360879,offsetY:-174.00780449653757},WSPoC35YH:{offsetX:-179.49997629784048,offsetY:-108.60936714323907}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,className:\"framer-1my4v2n\",exit:animation6,initial:animation5,layoutDependency:layoutDependency,layoutId:\"uYpHRWbND\",ref:ref4,role:\"dialog\",style:{background:\"linear-gradient(180deg, rgb(118, 133, 247) 0%, rgb(110, 126, 246) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},variants:{BgZTxA8d9:{background:\"linear-gradient(180deg, rgb(239, 244, 248) 0%, rgba(239, 244, 248, 0.8) 100%)\"},WSPoC35YH:{background:\"linear-gradient(180deg, rgb(239, 244, 248) 0%, rgba(239, 244, 248, 0.8) 100%)\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2tkqw\",layoutDependency:layoutDependency,layoutId:\"Hnc_7kyqu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ajevix-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"pKcBnpLWz-container\",nodeId:\"pKcBnpLWz\",rendersWithMotion:true,scopeId:\"ckKjSoMrl\",children:/*#__PURE__*/_jsx(SignUpFormReact1,{height:\"100%\",id:\"pKcBnpLWz\",layoutId:\"pKcBnpLWz\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qomxgh\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"iCTem2pIB\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(171, 193, 211))\"},children:\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\"})}),className:\"framer-1xiz5o\",\"data-framer-name\":\"Sign up for our newsletter and get updates, resources, offers and special early access to everything enhance-d related!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LMT9wFV_s\",style:{\"--extracted-r6o4lv\":\"rgb(171, 193, 211)\"},variants:{BgZTxA8d9:{\"--extracted-r6o4lv\":\"rgb(21, 29, 134)\"},WSPoC35YH:{\"--extracted-r6o4lv\":\"rgb(21, 29, 134)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({BgZTxA8d9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(21, 29, 134))\"},children:\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\"})})},WSPoC35YH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(21, 29, 134))\"},children:\"By registering you also consent to receive reminder emails and occasional content of which you can opt out at any time\"})})}},baseVariant,gestureVariant)})})]})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 31, 55))\"},children:\"Subscribe\"})}),className:\"framer-1s8cx7z\",\"data-framer-name\":\"Subscribe\",fonts:[\"GF;Helixa-700\"],layoutDependency:layoutDependency,layoutId:\"lLEsbp7In\",style:{\"--extracted-r6o4lv\":\"rgb(27, 31, 55)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ozyluj\",layoutDependency:layoutDependency,layoutId:\"EeuDgbtAn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Stay up to date\"})}),className:\"framer-1k3p6ga\",\"data-framer-name\":\"Stay up to date\",fonts:[\"GF;Helixa-700\"],layoutDependency:layoutDependency,layoutId:\"OsWVwClqZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({WSPoC35YH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Stay up to date\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a7y6za\",layoutDependency:layoutDependency,layoutId:\"UANExs7vj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:\"Contact Us\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:\"Request a Demo\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:\"Privacy Policy\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:\"Cookie Settings\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgba(255, 255, 255, 0.4))\"},children:\"Terms & Conditions\"})]}),className:\"framer-1domebj\",\"data-framer-name\":\"Contact Us Request a Demo Privacy Policy Cookie Settings Terms & Conditions\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oeJYB5YI9\",style:{\"--extracted-14qxiz\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-1iakedh\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-2gxw0f\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-ydz9fi\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{BgZTxA8d9:{\"--extracted-1yfvjw7\":\"rgba(255, 255, 255, 0.4)\"},WSPoC35YH:{\"--extracted-1yfvjw7\":\"rgba(255, 255, 255, 0.4)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BgZTxA8d9:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Khj5cfGDa\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Contact Us\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://support.enhance-d.com\",motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Support\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://usemotion.com/meet/henry-aspden/enhance-d-demo-b423f3y?d=30\",motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Request a Demo\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KjjqAyWQo\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Privacy Policy\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Se3mpTsnr\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Cookie Settings\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-1yfvjw7, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lIM_zSzwk\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Terms & Conditions\"})})})]})},WSPoC35YH:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Khj5cfGDa\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Contact Us\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://support.enhance-d.com\",motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Support\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://usemotion.com/meet/henry-aspden/enhance-d-demo-b423f3y?d=30\",motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Request a Demo\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KjjqAyWQo\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Privacy Policy\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Se3mpTsnr\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Cookie Settings\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1yfvjw7, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lIM_zSzwk\"},motionChild:true,nodeId:\"oeJYB5YI9\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Terms & Conditions\"})})})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-73nvzc\",layoutDependency:layoutDependency,layoutId:\"pl6WvS7OA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company Details\"})}),className:\"framer-snp23a\",\"data-framer-name\":\"Company Details\",fonts:[\"GF;Helixa-700\"],layoutDependency:layoutDependency,layoutId:\"Ni5o3hiHk\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({WSPoC35YH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Company Details\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nu3d7m\",layoutDependency:layoutDependency,layoutId:\"IWkS7SQ2l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:\"Home\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:\"Blog\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:\"News\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:\"Media\"})]}),className:\"framer-1cy2ov\",\"data-framer-name\":\"Home Blog News Media\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WuF9POBgu\",style:{\"--extracted-14qxiz\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-1iakedh\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-2gxw0f\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BgZTxA8d9:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jP_skmv24\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Home\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NkrF_EhXI\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Blog\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cqvszzmja\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"News\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qshlhzUt8\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Media\"})})})]})},WSPoC35YH:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jP_skmv24\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Home\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NkrF_EhXI\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Blog\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cqvszzmja\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"News\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qshlhzUt8\"},motionChild:true,nodeId:\"WuF9POBgu\",openInNewTab:false,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Media\"})})})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wxfn97\",layoutDependency:layoutDependency,layoutId:\"D0L0tttJD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Product Information\"})}),className:\"framer-q38eni\",\"data-framer-name\":\"Product Information\",fonts:[\"GF;Helixa-700\"],layoutDependency:layoutDependency,layoutId:\"u5O91rWz7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({WSPoC35YH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Product Information\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u0i8qz\",layoutDependency:layoutDependency,layoutId:\"NpNj4maOX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:\"Dashboard Login\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:\"iOS\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:\"Android\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-16g37v5\",\"data-framer-name\":\"Dashboard Login iOS Android\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zAq_cffLA\",style:{\"--extracted-14qxiz\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-1iakedh\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-2gxw0f\":\"rgba(255, 255, 255, 0.4)\",\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BgZTxA8d9:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.enhance-d.com\",motionChild:true,nodeId:\"zAq_cffLA\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Dashboard Login\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:'https://apps.apple.com/us/app/enhance-d/id6497331467\"',motionChild:true,nodeId:\"zAq_cffLA\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"iOS\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.sestanteanalyticsag.enhancedv1\",motionChild:true,nodeId:\"zAq_cffLA\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Android\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})},WSPoC35YH:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://dashboard.enhance-d.com\",motionChild:true,nodeId:\"zAq_cffLA\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Dashboard Login\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:'https://apps.apple.com/us/app/enhance-d/id6497331467\"',motionChild:true,nodeId:\"zAq_cffLA\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"iOS\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.sestanteanalyticsag.enhancedv1\",motionChild:true,nodeId:\"zAq_cffLA\",openInNewTab:true,scopeId:\"ckKjSoMrl\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k3zb60\",\"data-styles-preset\":\"dOc6wFbu8\",children:\"Android\"})})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgba(255, 255, 255, 0.4))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9qppug\",layoutDependency:layoutDependency,layoutId:\"CMtADCrmh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Users\"})}),className:\"framer-dm0dyn\",\"data-framer-name\":\"Users\",fonts:[\"GF;Helixa-700\"],layoutDependency:layoutDependency,layoutId:\"TI5F02L8J\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({WSPoC35YH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsaXhhLTcwMA==\",\"--framer-font-family\":'\"Helixa\", \"Helixa Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Users\"})})}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\"},children:\"\\xa9 2025 by Sestante Analytics AG\"})}),className:\"framer-z6c6gf\",\"data-framer-name\":\"\\xa9 2025 by Sestante Analytics AG\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i_8QCOqtL\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5kpa2u\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"MovX7bubE\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-riroyu\",layoutDependency:layoutDependency,layoutId:\"eUiAtFVoj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vl47gr\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:177,layoutDependency:layoutDependency,layoutId:\"Xsp8rHuR8\",svg:'<svg width=\"177\" height=\"35\" viewBox=\"0 0 177 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2122_1645)\">\\n<path d=\"M36.7911 20.8408C36.8473 15.6248 39.8748 12.2256 44.4216 12.2256C48.9685 12.2256 52.0522 15.6599 52.0522 20.8408V21.7668L39.7397 21.7316C40.0099 24.7206 41.8218 26.6663 44.4104 26.6663C46.605 26.6311 48.2932 25.2949 48.6871 23.2319H51.647C51.1856 26.9593 48.2257 29.5967 44.4104 29.5967C39.8635 29.5967 36.8361 26.1623 36.7798 20.8525L36.7911 20.8408ZM48.8897 18.9654C48.3382 16.5508 46.695 15.1208 44.4329 15.1208C42.1707 15.1208 40.5276 16.5859 39.9761 18.9419L48.8897 18.9771V18.9654Z\" fill=\"white\"/>\\n<path d=\"M53.7966 29.2098V12.5772H56.8241V13.9135C58.0509 12.7999 59.5702 12.2256 61.2246 12.2256C65.4451 12.2256 67.7298 14.6754 67.7298 19.2818V29.2098H64.7361V19.5397C64.7361 16.3867 63.7569 15.1442 61.1909 15.1442C58.411 15.1442 56.7904 17.2072 56.7904 20.6415V29.1981H53.7966V29.2098Z\" fill=\"white\"/>\\n<path d=\"M116.507 20.9697C116.507 15.7186 119.624 12.2256 124.261 12.2256C128.11 12.2256 130.946 14.8043 131.374 18.5903H128.347C128.077 16.5273 126.388 15.1208 124.25 15.1208C121.313 15.1208 119.456 17.4064 119.456 20.9463C119.456 24.4861 121.256 26.6429 124.07 26.6429C126.265 26.6429 128.077 25.248 128.437 23.2437H131.464C130.946 26.9945 127.953 29.6084 124.07 29.6084C119.546 29.6084 116.496 26.1388 116.496 20.9932L116.507 20.9697Z\" fill=\"white\"/>\\n<path d=\"M149.708 21.7545V18.9648H159.724V21.7545H149.708Z\" fill=\"white\"/>\\n<path d=\"M108.426 12.2139C106.772 12.2139 105.252 12.7882 104.026 13.9017V12.5655H100.998V29.1981H103.992V20.6415C103.992 17.2072 105.612 15.1442 108.392 15.1442C110.958 15.1442 111.938 16.3867 111.938 19.528V29.1981H114.931V19.2701C114.931 14.6519 112.635 12.2139 108.426 12.2139Z\" fill=\"white\"/>\\n<path d=\"M95.9111 29.1395H98.781V18.4496C98.781 14.5347 96.395 12.2842 92.3997 12.2842C88.4043 12.2842 85.6245 14.7691 85.8946 18.391H88.6407C88.6069 16.2226 89.8674 15.0856 92.3659 15.0856C94.6618 15.0856 95.7535 16.0702 95.9111 18.2035C95.5735 18.391 94.9995 18.5199 94.2004 18.6137L91.5106 18.9302C87.6053 19.4108 85.3769 21.3448 85.3769 24.4275C85.3769 27.5102 87.639 29.5146 91.0604 29.5146C92.9287 29.5146 94.6393 28.8816 95.9111 27.7681V29.1395ZM91.2292 26.7249C89.2709 26.7249 88.2355 25.8927 88.2355 24.4041C88.2355 22.81 89.4285 21.8605 91.7807 21.5441C93.0074 21.4503 94.6844 21.2862 95.8998 21.0049V21.2627C95.8998 24.6971 94.1329 26.7366 91.2292 26.7366V26.7249Z\" fill=\"white\"/>\\n<path d=\"M132.432 20.8408C132.488 15.6248 135.516 12.2256 140.063 12.2256C144.609 12.2256 147.693 15.6599 147.693 20.8408V21.7668L135.381 21.7316C135.651 24.7206 137.463 26.6663 140.051 26.6663C142.246 26.6311 143.934 25.2949 144.328 23.2319H147.288C146.827 26.9593 143.867 29.5967 140.051 29.5967C135.505 29.5967 132.477 26.1623 132.421 20.8525L132.432 20.8408ZM144.531 18.9654C143.979 16.5508 142.336 15.1208 140.074 15.1208C137.812 15.1208 136.169 16.5859 135.617 18.9419L144.531 18.9771V18.9654Z\" fill=\"white\"/>\\n<path d=\"M174.006 8.53292V14.0654C172.757 12.8229 171.103 12.2252 169.122 12.2252C164.598 12.2252 161.581 15.6947 161.581 20.9107C161.581 26.1267 164.609 29.5962 169.122 29.5962C171.08 29.5962 172.813 28.9281 174.074 27.6505V29.2094H177.011V5.41504L174.018 8.53292H174.006ZM169.268 26.6307C166.364 26.6307 164.598 24.4388 164.598 20.9107C164.598 17.3826 166.398 15.1555 169.268 15.1555C172.138 15.1555 173.973 17.3826 173.973 20.9107C173.973 24.4388 172.206 26.6307 169.268 26.6307Z\" fill=\"white\"/>\\n<path d=\"M77.4649 12.2134C75.6304 12.2134 74.0436 12.7878 72.8843 13.9013V5.40332L69.8906 8.5212V29.1625H72.8843V20.2191C72.8843 17.1364 74.6288 15.1321 77.3749 15.1321C79.8171 15.1321 80.83 16.4331 80.83 19.5158V29.186H83.8237V19.258C83.8237 14.7101 81.5278 12.2017 77.4762 12.2017L77.4649 12.2134Z\" fill=\"white\"/>\\n<path d=\"M11.7948 2.20362L21.6425 12.4598C25.8967 16.8905 25.908 24.1108 21.6425 28.5532C17.3883 32.9839 10.4555 32.9839 6.19006 28.5532C1.92459 24.1108 1.93584 16.9022 6.19006 12.4598L9.69021 8.81447L17.4108 16.8553C19.3353 18.8597 19.3353 22.1299 17.4108 24.1343C15.4863 26.1386 12.3463 26.1386 10.4218 24.1343C8.49723 22.1299 8.49723 18.8597 10.4218 16.8553L11.4347 15.8004L9.31881 13.5968L8.30591 14.6517C5.21091 17.8751 5.21091 23.1263 8.30591 26.3496C11.4009 29.573 16.4429 29.573 19.5379 26.3496C22.6329 23.1263 22.6329 17.8751 19.5379 14.6517L9.69021 4.40723L4.0742 10.2562C-1.35048 15.9059 -1.35048 25.1072 4.0742 30.7569C9.49889 36.4066 18.3337 36.4066 23.7584 30.7569C29.1831 25.1072 29.1943 15.9059 23.7584 10.2562L13.9219 0L11.8061 2.20362H11.7948Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2122_1645\">\\n<rect width=\"177\" height=\"35\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-btFoO.framer-5qyc6q, .framer-btFoO .framer-5qyc6q { display: block; }\",\".framer-btFoO.framer-1pwmk1w { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 64px 64px; position: relative; width: 1440px; }\",\".framer-btFoO .framer-1tpl19u { flex: none; height: 151px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-btFoO .framer-piym5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-btFoO .framer-a1sjtu { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-btFoO .framer-ggw7ha-container, .framer-btFoO .framer-y7kdxv-container, .framer-btFoO .framer-wx2oe5-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-btFoO .framer-v5s57f, .framer-btFoO .framer-rviv1y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 406px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1vlxwrw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 638px; }\",\".framer-btFoO .framer-if8xkc, .framer-btFoO .framer-1mlby81, .framer-btFoO .framer-1leeiz8, .framer-btFoO .framer-8ze3ou, .framer-btFoO .framer-1nwd6s9, .framer-btFoO .framer-snp23a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-o8u9fj, .framer-btFoO .framer-197pd2s, .framer-btFoO .framer-1yvbh0a, .framer-btFoO .framer-1l4oakv, .framer-btFoO .framer-oji03l, .framer-btFoO .framer-1c8id9s { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-uizpci { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 417px; will-change: var(--framer-will-change-override, transform); }\",\".framer-btFoO .framer-ajwthj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 639px; justify-content: center; overflow: hidden; padding: 10px 0px 70px 0px; position: relative; width: 631px; }\",\".framer-btFoO .framer-1v0xd90 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 508px; }\",\".framer-btFoO .framer-14bdqzw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 469px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1hcvs1h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 279px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1dnn6kt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-btFoO .framer-1svffl0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-btFoO .framer-iolfmv { flex: none; height: 116px; position: relative; white-space: pre-wrap; width: 356px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1oqocvf { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-btFoO .framer-88ul7s { aspect-ratio: 2.9880239520958085 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; text-decoration: none; width: 179px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-btFoO .framer-1obj2ud { aspect-ratio: 3.375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; text-decoration: none; width: 203px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-btFoO .framer-1wetm7p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-btFoO .framer-1n3iv6e, .framer-btFoO .framer-u0e3av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-btFoO .framer-imcjip, .framer-btFoO .framer-7z63z1, .framer-btFoO .framer-2vobt3, .framer-btFoO .framer-11jg8km, .framer-btFoO .framer-1wph8p6, .framer-btFoO .framer-4d37b9, .framer-btFoO .framer-6l6p5p, .framer-btFoO .framer-6s0e1z, .framer-btFoO .framer-kgts51, .framer-btFoO .framer-i4fbxf, .framer-btFoO .framer-77j4ec, .framer-btFoO .framer-xt03g5, .framer-btFoO .framer-y19xfb, .framer-btFoO .framer-sri7ou, .framer-btFoO .framer-tadtp3, .framer-btFoO .framer-13nwllk, .framer-btFoO .framer-xx5y87, .framer-btFoO .framer-16svx9t, .framer-btFoO .framer-c4ndwb, .framer-btFoO .framer-q38eni { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-btFoO .framer-15z1ged { flex: none; height: 136%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-btFoO .framer-1qltj45 { bottom: 95px; flex: none; height: 48px; left: calc(50.00000000000002% - 417px / 2); overflow: hidden; position: absolute; text-decoration: none; width: 417px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-btFoO .framer-1e57i2q { flex: none; height: 32px; left: calc(49.880095923261415% - 342px / 2); position: absolute; top: 8px; white-space: pre-wrap; width: 342px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-eeh4ud { flex: none; height: 148px; left: calc(50.00000000000002% - 638px / 2); overflow: hidden; position: absolute; top: 112px; width: 638px; }\",\".framer-btFoO .framer-uetpsx { flex: none; height: 94px; left: calc(50.07836990595611% - 576px / 2); position: absolute; top: 0px; white-space: pre-wrap; width: 576px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-z5sb4l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 112px; width: min-content; }\",\".framer-btFoO .framer-1symtik, .framer-btFoO .framer-r4hzt8, .framer-btFoO .framer-1lnza1l { flex: none; height: 24px; overflow: visible; position: relative; width: 67px; }\",\".framer-btFoO .framer-135dhpd, .framer-btFoO .framer-1ojy8, .framer-btFoO .framer-1nu7ee1 { flex: none; height: 20px; left: 32px; position: absolute; top: 2px; white-space: pre-wrap; width: 35px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-8cbben, .framer-btFoO .framer-1mqvsvt, .framer-btFoO .framer-1tp8uo1, .framer-btFoO .framer-1r3zzss, .framer-btFoO .framer-fhr1es, .framer-btFoO .framer-q0ahqe { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-btFoO .framer-vizec7, .framer-btFoO .framer-1wpdj5t, .framer-btFoO .framer-dl4ar4 { flex: none; height: 24px; overflow: visible; position: relative; width: 187px; }\",\".framer-btFoO .framer-cgzudm, .framer-btFoO .framer-5oavhl, .framer-btFoO .framer-13760lw { flex: none; height: 20px; left: 32px; position: absolute; top: 2px; white-space: pre-wrap; width: 155px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1399ojz { flex: none; height: 141%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: -184px; width: 100%; }\",\".framer-btFoO .framer-1h8d4do { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-1q222kr { flex: none; height: 116px; position: relative; white-space: pre-wrap; width: 281px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1xq73cg, .framer-btFoO .framer-ozyluj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-19gdr6x { aspect-ratio: 2.9880239520958085 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; text-decoration: none; width: 120px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-btFoO .framer-1tkr3sj { aspect-ratio: 3.375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; text-decoration: none; width: 120px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-btFoO .framer-3zm9bl { flex: none; height: 94px; position: relative; white-space: pre-wrap; width: 576px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-13den0v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-btFoO .framer-5v98bu { flex: none; height: 48px; overflow: hidden; position: relative; width: 417px; will-change: var(--framer-will-change-override, transform); }\",\".framer-btFoO .framer-15vhgs4 { flex: none; height: 32px; left: calc(50.220651420757925% - 108.4398422241211px / 2); position: absolute; top: 8px; white-space: pre-wrap; width: 108px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1z6xkz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-1067k2q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-12qrm4j { flex: none; height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-btFoO .framer-f7edyd { flex: none; height: auto; left: 50%; position: absolute; top: 8px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-akny3a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-1eloz5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 212px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-ciiok9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 212px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 304px; }\",\".framer-btFoO .framer-rkmabn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 94px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 304px; }\",\".framer-btFoO .framer-7zg3o6, .framer-btFoO .framer-1xxg1a4, .framer-btFoO .framer-1xiz5o { flex: none; height: 58px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-dszm8d { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: 194px; will-change: var(--framer-will-change-override, transform); }\",\".framer-btFoO .framer-m7oev0, .framer-btFoO .framer-1my4v2n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 290px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 315px; will-change: var(--framer-will-change-override, transform); }\",\".framer-btFoO .framer-1bgvini, .framer-btFoO .framer-1f2tkqw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 80%; }\",\".framer-btFoO .framer-xn0d2k-container, .framer-btFoO .framer-ajevix-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-btFoO .framer-8b2zjc, .framer-btFoO .framer-qomxgh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 58px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-1t1tami { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 212px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-btFoO .framer-1k5wjif, .framer-btFoO .framer-wlv1dy, .framer-btFoO .framer-14zm26r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 288px; }\",\".framer-btFoO .framer-1qqurj2, .framer-btFoO .framer-csl9tu, .framer-btFoO .framer-15upfbm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-btFoO .framer-why194 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-46l1as { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 32px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-btFoO .framer-1ra2od2 { flex: none; height: 32px; overflow: visible; position: relative; width: 25px; }\",\".framer-btFoO .framer-1uczg7-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: -3px; position: absolute; right: -4px; top: 0px; }\",\".framer-btFoO .framer-nrckn3 { flex: none; height: 32px; overflow: visible; position: relative; width: 1px; }\",\".framer-btFoO .framer-1uhxiow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 144px; }\",\".framer-btFoO .framer-dbowj9, .framer-btFoO .framer-3ek20n, .framer-btFoO .framer-tzi3sw { flex: none; height: 24px; overflow: visible; position: relative; text-decoration: none; width: 24px; }\",\".framer-btFoO .framer-2ampsl, .framer-btFoO .framer-1jyybcv, .framer-btFoO .framer-44zr6q { aspect-ratio: 1.0416666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-btFoO .framer-m28mo9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-btFoO .framer-1cqz1pr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-btFoO .framer-1fuwgma { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-btFoO .framer-slimde { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-2m6up5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-btFoO .framer-1se65r9 { flex: none; height: 37px; overflow: visible; position: relative; width: 82px; }\",\".framer-btFoO .framer-1v2en1s { bottom: 0px; flex: none; height: 37px; left: 0px; position: absolute; width: 82px; }\",\".framer-btFoO .framer-1s8cx7z { flex: none; height: 16px; left: 0px; position: absolute; right: 0px; top: calc(51.189149668316624% - 16.13793182373047px / 2); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1k3p6ga { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-1a7y6za, .framer-btFoO .framer-nu3d7m, .framer-btFoO .framer-u0i8qz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-btFoO .framer-1domebj, .framer-btFoO .framer-1cy2ov, .framer-btFoO .framer-16g37v5 { flex: none; height: 172px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-73nvzc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-1wxfn97 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-9qppug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-dm0dyn { flex: none; height: 22px; position: relative; white-space: pre-wrap; width: 219px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-z6c6gf { flex: none; height: 66px; position: relative; white-space: pre-wrap; width: 563px; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO .framer-5kpa2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-btFoO .framer-riroyu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-btFoO .framer-vl47gr { flex: none; height: 35px; position: relative; width: 177px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-1pwmk1w, .framer-btFoO .framer-piym5x, .framer-btFoO .framer-1vlxwrw, .framer-btFoO .framer-uizpci, .framer-btFoO .framer-ajwthj, .framer-btFoO .framer-1v0xd90, .framer-btFoO .framer-1dnn6kt, .framer-btFoO .framer-1svffl0, .framer-btFoO .framer-1oqocvf, .framer-btFoO .framer-1wetm7p, .framer-btFoO .framer-1n3iv6e, .framer-btFoO .framer-u0e3av, .framer-btFoO .framer-z5sb4l, .framer-btFoO .framer-1h8d4do, .framer-btFoO .framer-1xq73cg, .framer-btFoO .framer-13den0v, .framer-btFoO .framer-1z6xkz, .framer-btFoO .framer-1067k2q, .framer-btFoO .framer-akny3a, .framer-btFoO .framer-ciiok9, .framer-btFoO .framer-rkmabn, .framer-btFoO .framer-dszm8d, .framer-btFoO .framer-m7oev0, .framer-btFoO .framer-1bgvini, .framer-btFoO .framer-8b2zjc, .framer-btFoO .framer-1t1tami, .framer-btFoO .framer-1k5wjif, .framer-btFoO .framer-1qqurj2, .framer-btFoO .framer-wlv1dy, .framer-btFoO .framer-csl9tu, .framer-btFoO .framer-14zm26r, .framer-btFoO .framer-15upfbm, .framer-btFoO .framer-46l1as, .framer-btFoO .framer-1uhxiow, .framer-btFoO .framer-m28mo9, .framer-btFoO .framer-1fuwgma, .framer-btFoO .framer-slimde, .framer-btFoO .framer-2m6up5, .framer-btFoO .framer-1my4v2n, .framer-btFoO .framer-1f2tkqw, .framer-btFoO .framer-qomxgh, .framer-btFoO .framer-ozyluj, .framer-btFoO .framer-1a7y6za, .framer-btFoO .framer-73nvzc, .framer-btFoO .framer-nu3d7m, .framer-btFoO .framer-1wxfn97, .framer-btFoO .framer-u0i8qz, .framer-btFoO .framer-9qppug, .framer-btFoO .framer-5kpa2u, .framer-btFoO .framer-riroyu { gap: 0px; } .framer-btFoO.framer-1pwmk1w > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-btFoO.framer-1pwmk1w > :first-child, .framer-btFoO .framer-piym5x > :first-child, .framer-btFoO .framer-1vlxwrw > :first-child, .framer-btFoO .framer-ajwthj > :first-child, .framer-btFoO .framer-1v0xd90 > :first-child, .framer-btFoO .framer-1dnn6kt > :first-child, .framer-btFoO .framer-1svffl0 > :first-child, .framer-btFoO .framer-1h8d4do > :first-child, .framer-btFoO .framer-1z6xkz > :first-child, .framer-btFoO .framer-akny3a > :first-child, .framer-btFoO .framer-ciiok9 > :first-child, .framer-btFoO .framer-rkmabn > :first-child, .framer-btFoO .framer-1bgvini > :first-child, .framer-btFoO .framer-8b2zjc > :first-child, .framer-btFoO .framer-1k5wjif > :first-child, .framer-btFoO .framer-1qqurj2 > :first-child, .framer-btFoO .framer-wlv1dy > :first-child, .framer-btFoO .framer-csl9tu > :first-child, .framer-btFoO .framer-14zm26r > :first-child, .framer-btFoO .framer-15upfbm > :first-child, .framer-btFoO .framer-1fuwgma > :first-child, .framer-btFoO .framer-2m6up5 > :first-child, .framer-btFoO .framer-1f2tkqw > :first-child, .framer-btFoO .framer-qomxgh > :first-child, .framer-btFoO .framer-1a7y6za > :first-child, .framer-btFoO .framer-73nvzc > :first-child, .framer-btFoO .framer-nu3d7m > :first-child, .framer-btFoO .framer-1wxfn97 > :first-child, .framer-btFoO .framer-u0i8qz > :first-child, .framer-btFoO .framer-riroyu > :first-child { margin-top: 0px; } .framer-btFoO.framer-1pwmk1w > :last-child, .framer-btFoO .framer-piym5x > :last-child, .framer-btFoO .framer-1vlxwrw > :last-child, .framer-btFoO .framer-ajwthj > :last-child, .framer-btFoO .framer-1v0xd90 > :last-child, .framer-btFoO .framer-1dnn6kt > :last-child, .framer-btFoO .framer-1svffl0 > :last-child, .framer-btFoO .framer-1h8d4do > :last-child, .framer-btFoO .framer-1z6xkz > :last-child, .framer-btFoO .framer-akny3a > :last-child, .framer-btFoO .framer-ciiok9 > :last-child, .framer-btFoO .framer-rkmabn > :last-child, .framer-btFoO .framer-1bgvini > :last-child, .framer-btFoO .framer-8b2zjc > :last-child, .framer-btFoO .framer-1k5wjif > :last-child, .framer-btFoO .framer-1qqurj2 > :last-child, .framer-btFoO .framer-wlv1dy > :last-child, .framer-btFoO .framer-csl9tu > :last-child, .framer-btFoO .framer-14zm26r > :last-child, .framer-btFoO .framer-15upfbm > :last-child, .framer-btFoO .framer-1fuwgma > :last-child, .framer-btFoO .framer-2m6up5 > :last-child, .framer-btFoO .framer-1f2tkqw > :last-child, .framer-btFoO .framer-qomxgh > :last-child, .framer-btFoO .framer-1a7y6za > :last-child, .framer-btFoO .framer-73nvzc > :last-child, .framer-btFoO .framer-nu3d7m > :last-child, .framer-btFoO .framer-1wxfn97 > :last-child, .framer-btFoO .framer-u0i8qz > :last-child, .framer-btFoO .framer-riroyu > :last-child { margin-bottom: 0px; } .framer-btFoO .framer-piym5x > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO .framer-1vlxwrw > *, .framer-btFoO .framer-1k5wjif > *, .framer-btFoO .framer-wlv1dy > *, .framer-btFoO .framer-14zm26r > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-btFoO .framer-uizpci > *, .framer-btFoO .framer-1oqocvf > *, .framer-btFoO .framer-1n3iv6e > *, .framer-btFoO .framer-u0e3av > *, .framer-btFoO .framer-1xq73cg > *, .framer-btFoO .framer-dszm8d > *, .framer-btFoO .framer-m7oev0 > *, .framer-btFoO .framer-slimde > *, .framer-btFoO .framer-1my4v2n > *, .framer-btFoO .framer-ozyluj > *, .framer-btFoO .framer-9qppug > *, .framer-btFoO .framer-5kpa2u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-btFoO .framer-uizpci > :first-child, .framer-btFoO .framer-1oqocvf > :first-child, .framer-btFoO .framer-1wetm7p > :first-child, .framer-btFoO .framer-1n3iv6e > :first-child, .framer-btFoO .framer-u0e3av > :first-child, .framer-btFoO .framer-z5sb4l > :first-child, .framer-btFoO .framer-1xq73cg > :first-child, .framer-btFoO .framer-13den0v > :first-child, .framer-btFoO .framer-1067k2q > :first-child, .framer-btFoO .framer-dszm8d > :first-child, .framer-btFoO .framer-m7oev0 > :first-child, .framer-btFoO .framer-1t1tami > :first-child, .framer-btFoO .framer-46l1as > :first-child, .framer-btFoO .framer-1uhxiow > :first-child, .framer-btFoO .framer-m28mo9 > :first-child, .framer-btFoO .framer-slimde > :first-child, .framer-btFoO .framer-1my4v2n > :first-child, .framer-btFoO .framer-ozyluj > :first-child, .framer-btFoO .framer-9qppug > :first-child, .framer-btFoO .framer-5kpa2u > :first-child { margin-left: 0px; } .framer-btFoO .framer-uizpci > :last-child, .framer-btFoO .framer-1oqocvf > :last-child, .framer-btFoO .framer-1wetm7p > :last-child, .framer-btFoO .framer-1n3iv6e > :last-child, .framer-btFoO .framer-u0e3av > :last-child, .framer-btFoO .framer-z5sb4l > :last-child, .framer-btFoO .framer-1xq73cg > :last-child, .framer-btFoO .framer-13den0v > :last-child, .framer-btFoO .framer-1067k2q > :last-child, .framer-btFoO .framer-dszm8d > :last-child, .framer-btFoO .framer-m7oev0 > :last-child, .framer-btFoO .framer-1t1tami > :last-child, .framer-btFoO .framer-46l1as > :last-child, .framer-btFoO .framer-1uhxiow > :last-child, .framer-btFoO .framer-m28mo9 > :last-child, .framer-btFoO .framer-slimde > :last-child, .framer-btFoO .framer-1my4v2n > :last-child, .framer-btFoO .framer-ozyluj > :last-child, .framer-btFoO .framer-9qppug > :last-child, .framer-btFoO .framer-5kpa2u > :last-child { margin-right: 0px; } .framer-btFoO .framer-ajwthj > *, .framer-btFoO .framer-1bgvini > *, .framer-btFoO .framer-1fuwgma > *, .framer-btFoO .framer-2m6up5 > *, .framer-btFoO .framer-1f2tkqw > *, .framer-btFoO .framer-1a7y6za > *, .framer-btFoO .framer-73nvzc > *, .framer-btFoO .framer-nu3d7m > *, .framer-btFoO .framer-1wxfn97 > *, .framer-btFoO .framer-u0i8qz > *, .framer-btFoO .framer-riroyu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-btFoO .framer-1v0xd90 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-btFoO .framer-1dnn6kt > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-btFoO .framer-1svffl0 > *, .framer-btFoO .framer-1h8d4do > * { margin: 0px; margin-bottom: calc(17.708738327026367px / 2); margin-top: calc(17.708738327026367px / 2); } .framer-btFoO .framer-1wetm7p > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-btFoO .framer-z5sb4l > *, .framer-btFoO .framer-13den0v > *, .framer-btFoO .framer-1067k2q > *, .framer-btFoO .framer-m28mo9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-btFoO .framer-1z6xkz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-btFoO .framer-akny3a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-btFoO .framer-ciiok9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-btFoO .framer-rkmabn > *, .framer-btFoO .framer-8b2zjc > *, .framer-btFoO .framer-1qqurj2 > *, .framer-btFoO .framer-csl9tu > *, .framer-btFoO .framer-15upfbm > *, .framer-btFoO .framer-qomxgh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-btFoO .framer-1t1tami > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-btFoO .framer-46l1as > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-btFoO .framer-1uhxiow > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-btFoO.framer-v-8guqw4.framer-1pwmk1w { gap: 48px; padding: 0px 16px 94px 16px; width: 320px; }\",\".framer-btFoO.framer-v-8guqw4 .framer-akny3a { gap: 48px; order: 2; padding: 40px 0px 0px 0px; }\",\".framer-btFoO.framer-v-8guqw4 .framer-1eloz5k, .framer-btFoO.framer-v-fustio .framer-1eloz5k, .framer-btFoO.framer-v-16oo7m .framer-1eloz5k, .framer-btFoO.framer-v-1ke5id6 .framer-1eloz5k, .framer-btFoO.framer-v-h5rjah .framer-1eloz5k, .framer-btFoO.framer-v-9j4twy .framer-1eloz5k { flex-direction: column; gap: 36px; height: min-content; justify-content: center; }\",\".framer-btFoO.framer-v-8guqw4 .framer-ciiok9, .framer-btFoO.framer-v-fustio .framer-ciiok9, .framer-btFoO.framer-v-16oo7m .framer-ciiok9, .framer-btFoO.framer-v-1ke5id6 .framer-ciiok9, .framer-btFoO.framer-v-h5rjah .framer-ciiok9, .framer-btFoO.framer-v-9j4twy .framer-ciiok9 { height: min-content; width: 100%; }\",\".framer-btFoO.framer-v-8guqw4 .framer-rkmabn { height: 111px; width: 286px; }\",\".framer-btFoO.framer-v-8guqw4 .framer-2vobt3, .framer-btFoO.framer-v-16oo7m .framer-oji03l, .framer-btFoO.framer-v-1l83vp .framer-a1sjtu, .framer-btFoO.framer-v-1ke5id6 .framer-a1sjtu, .framer-btFoO.framer-v-1i764eb .framer-1tpl19u, .framer-btFoO.framer-v-1i764eb .framer-3zm9bl, .framer-btFoO.framer-v-h5rjah .framer-a1sjtu, .framer-btFoO.framer-v-9j4twy .framer-a1sjtu, .framer-btFoO.framer-v-9j4twy .framer-1q222kr, .framer-btFoO.framer-v-zd18mn .framer-ozyluj, .framer-btFoO.framer-v-zd18mn .framer-73nvzc, .framer-btFoO.framer-v-zd18mn .framer-9qppug, .framer-btFoO.framer-v-zd18mn .framer-5kpa2u, .framer-btFoO.framer-v-ckmh7i .framer-ozyluj, .framer-btFoO.framer-v-ckmh7i .framer-73nvzc, .framer-btFoO.framer-v-ckmh7i .framer-1wxfn97, .framer-btFoO.framer-v-ckmh7i .framer-9qppug, .framer-btFoO.framer-v-ckmh7i .framer-5kpa2u { order: 0; }\",\".framer-btFoO.framer-v-8guqw4 .framer-7zg3o6 { height: 76px; order: 1; }\",\".framer-btFoO.framer-v-8guqw4 .framer-m7oev0 { width: 287px; }\",\".framer-btFoO.framer-v-8guqw4 .framer-1t1tami, .framer-btFoO.framer-v-fustio .framer-1t1tami, .framer-btFoO.framer-v-16oo7m .framer-1t1tami, .framer-btFoO.framer-v-1ke5id6 .framer-1t1tami, .framer-btFoO.framer-v-h5rjah .framer-1t1tami, .framer-btFoO.framer-v-9j4twy .framer-1t1tami { flex-direction: column; gap: 33px; height: min-content; width: 100%; }\",\".framer-btFoO.framer-v-8guqw4 .framer-why194, .framer-btFoO.framer-v-fustio .framer-why194, .framer-btFoO.framer-v-16oo7m .framer-why194 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 31px; justify-content: flex-start; }\",\".framer-btFoO.framer-v-8guqw4 .framer-m28mo9, .framer-btFoO.framer-v-1ke5id6 .framer-m28mo9, .framer-btFoO.framer-v-h5rjah .framer-m28mo9, .framer-btFoO.framer-v-9j4twy .framer-m28mo9 { flex-wrap: wrap; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-8guqw4.framer-1pwmk1w, .framer-btFoO.framer-v-8guqw4 .framer-akny3a, .framer-btFoO.framer-v-8guqw4 .framer-1eloz5k, .framer-btFoO.framer-v-8guqw4 .framer-1t1tami, .framer-btFoO.framer-v-8guqw4 .framer-why194 { gap: 0px; } .framer-btFoO.framer-v-8guqw4.framer-1pwmk1w > *, .framer-btFoO.framer-v-8guqw4 .framer-akny3a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO.framer-v-8guqw4.framer-1pwmk1w > :first-child, .framer-btFoO.framer-v-8guqw4 .framer-akny3a > :first-child, .framer-btFoO.framer-v-8guqw4 .framer-1eloz5k > :first-child, .framer-btFoO.framer-v-8guqw4 .framer-1t1tami > :first-child, .framer-btFoO.framer-v-8guqw4 .framer-why194 > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-8guqw4.framer-1pwmk1w > :last-child, .framer-btFoO.framer-v-8guqw4 .framer-akny3a > :last-child, .framer-btFoO.framer-v-8guqw4 .framer-1eloz5k > :last-child, .framer-btFoO.framer-v-8guqw4 .framer-1t1tami > :last-child, .framer-btFoO.framer-v-8guqw4 .framer-why194 > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-8guqw4 .framer-1eloz5k > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-btFoO.framer-v-8guqw4 .framer-1t1tami > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-btFoO.framer-v-8guqw4 .framer-why194 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",\".framer-btFoO.framer-v-fustio.framer-1pwmk1w, .framer-btFoO.framer-v-16oo7m.framer-1pwmk1w { gap: 48px; padding: 0px 48px 64px 48px; width: 810px; }\",\".framer-btFoO.framer-v-fustio .framer-1tpl19u, .framer-btFoO.framer-v-16oo7m .framer-1tpl19u { height: 150px; }\",\".framer-btFoO.framer-v-fustio .framer-piym5x { padding: 64px; }\",\".framer-btFoO.framer-v-fustio .framer-1vlxwrw, .framer-btFoO.framer-v-fustio .framer-uizpci { width: 100%; }\",\".framer-btFoO.framer-v-fustio .framer-akny3a, .framer-btFoO.framer-v-16oo7m .framer-akny3a, .framer-btFoO.framer-v-1ke5id6 .framer-akny3a, .framer-btFoO.framer-v-h5rjah .framer-akny3a, .framer-btFoO.framer-v-9j4twy .framer-akny3a { gap: 48px; }\",\".framer-btFoO.framer-v-fustio .framer-7zg3o6, .framer-btFoO.framer-v-16oo7m .framer-7zg3o6 { height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-fustio.framer-1pwmk1w, .framer-btFoO.framer-v-fustio .framer-akny3a, .framer-btFoO.framer-v-fustio .framer-1eloz5k, .framer-btFoO.framer-v-fustio .framer-1t1tami, .framer-btFoO.framer-v-fustio .framer-why194 { gap: 0px; } .framer-btFoO.framer-v-fustio.framer-1pwmk1w > *, .framer-btFoO.framer-v-fustio .framer-akny3a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO.framer-v-fustio.framer-1pwmk1w > :first-child, .framer-btFoO.framer-v-fustio .framer-akny3a > :first-child, .framer-btFoO.framer-v-fustio .framer-1eloz5k > :first-child, .framer-btFoO.framer-v-fustio .framer-1t1tami > :first-child, .framer-btFoO.framer-v-fustio .framer-why194 > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-fustio.framer-1pwmk1w > :last-child, .framer-btFoO.framer-v-fustio .framer-akny3a > :last-child, .framer-btFoO.framer-v-fustio .framer-1eloz5k > :last-child, .framer-btFoO.framer-v-fustio .framer-1t1tami > :last-child, .framer-btFoO.framer-v-fustio .framer-why194 > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-fustio .framer-1eloz5k > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-btFoO.framer-v-fustio .framer-1t1tami > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-btFoO.framer-v-fustio .framer-why194 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",\".framer-btFoO.framer-v-16oo7m .framer-piym5x { padding: 0px 64px 0px 64px; }\",\".framer-btFoO.framer-v-16oo7m .framer-14bdqzw, .framer-btFoO.framer-v-1l83vp .framer-1vlxwrw, .framer-btFoO.framer-v-1ke5id6 .framer-o8u9fj, .framer-btFoO.framer-v-zd18mn .framer-1nwd6s9, .framer-btFoO.framer-v-zd18mn .framer-1domebj, .framer-btFoO.framer-v-zd18mn .framer-1cy2ov, .framer-btFoO.framer-v-zd18mn .framer-16g37v5, .framer-btFoO.framer-v-ckmh7i .framer-1nwd6s9 { order: 1; }\",\".framer-btFoO.framer-v-16oo7m .framer-rviv1y, .framer-btFoO.framer-v-1l83vp .framer-ggw7ha-container, .framer-btFoO.framer-v-1i764eb .framer-akny3a, .framer-btFoO.framer-v-yu6v .framer-1oqocvf, .framer-btFoO.framer-v-9j4twy .framer-1xq73cg, .framer-btFoO.framer-v-zd18mn .framer-1se65r9, .framer-btFoO.framer-v-ckmh7i .framer-1se65r9 { order: 2; }\",\".framer-btFoO.framer-v-16oo7m .framer-wx2oe5-container, .framer-btFoO.framer-v-1l83vp .framer-v5s57f, .framer-btFoO.framer-v-1i764eb .framer-13den0v { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-16oo7m.framer-1pwmk1w, .framer-btFoO.framer-v-16oo7m .framer-akny3a, .framer-btFoO.framer-v-16oo7m .framer-1eloz5k, .framer-btFoO.framer-v-16oo7m .framer-1t1tami, .framer-btFoO.framer-v-16oo7m .framer-why194 { gap: 0px; } .framer-btFoO.framer-v-16oo7m.framer-1pwmk1w > *, .framer-btFoO.framer-v-16oo7m .framer-akny3a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO.framer-v-16oo7m.framer-1pwmk1w > :first-child, .framer-btFoO.framer-v-16oo7m .framer-akny3a > :first-child, .framer-btFoO.framer-v-16oo7m .framer-1eloz5k > :first-child, .framer-btFoO.framer-v-16oo7m .framer-1t1tami > :first-child, .framer-btFoO.framer-v-16oo7m .framer-why194 > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-16oo7m.framer-1pwmk1w > :last-child, .framer-btFoO.framer-v-16oo7m .framer-akny3a > :last-child, .framer-btFoO.framer-v-16oo7m .framer-1eloz5k > :last-child, .framer-btFoO.framer-v-16oo7m .framer-1t1tami > :last-child, .framer-btFoO.framer-v-16oo7m .framer-why194 > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-16oo7m .framer-1eloz5k > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-btFoO.framer-v-16oo7m .framer-1t1tami > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-btFoO.framer-v-16oo7m .framer-why194 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",\".framer-btFoO.framer-v-1ke5id6.framer-1pwmk1w, .framer-btFoO.framer-v-h5rjah.framer-1pwmk1w, .framer-btFoO.framer-v-9j4twy.framer-1pwmk1w { gap: 48px; padding: 0px 16px 64px 16px; width: 320px; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-1tpl19u, .framer-btFoO.framer-v-h5rjah .framer-1tpl19u, .framer-btFoO.framer-v-9j4twy .framer-1tpl19u { height: 175px; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-piym5x, .framer-btFoO.framer-v-h5rjah .framer-piym5x, .framer-btFoO.framer-v-9j4twy .framer-piym5x { gap: 14px; padding: 36px; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-1vlxwrw { order: 3; width: 100%; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-1l4oakv { order: 5; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-y7kdxv-container { order: 6; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-1hcvs1h { order: 4; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-m7oev0, .framer-btFoO.framer-v-h5rjah .framer-m7oev0, .framer-btFoO.framer-v-9j4twy .framer-m7oev0 { width: 291px; }\",\".framer-btFoO.framer-v-1ke5id6 .framer-why194, .framer-btFoO.framer-v-h5rjah .framer-why194, .framer-btFoO.framer-v-9j4twy .framer-why194 { align-content: flex-start; align-items: flex-start; flex-direction: column; flex-wrap: wrap; gap: 31px; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-1ke5id6.framer-1pwmk1w, .framer-btFoO.framer-v-1ke5id6 .framer-piym5x, .framer-btFoO.framer-v-1ke5id6 .framer-akny3a, .framer-btFoO.framer-v-1ke5id6 .framer-1eloz5k, .framer-btFoO.framer-v-1ke5id6 .framer-1t1tami, .framer-btFoO.framer-v-1ke5id6 .framer-why194 { gap: 0px; } .framer-btFoO.framer-v-1ke5id6.framer-1pwmk1w > *, .framer-btFoO.framer-v-1ke5id6 .framer-akny3a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO.framer-v-1ke5id6.framer-1pwmk1w > :first-child, .framer-btFoO.framer-v-1ke5id6 .framer-piym5x > :first-child, .framer-btFoO.framer-v-1ke5id6 .framer-akny3a > :first-child, .framer-btFoO.framer-v-1ke5id6 .framer-1eloz5k > :first-child, .framer-btFoO.framer-v-1ke5id6 .framer-1t1tami > :first-child, .framer-btFoO.framer-v-1ke5id6 .framer-why194 > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-1ke5id6.framer-1pwmk1w > :last-child, .framer-btFoO.framer-v-1ke5id6 .framer-piym5x > :last-child, .framer-btFoO.framer-v-1ke5id6 .framer-akny3a > :last-child, .framer-btFoO.framer-v-1ke5id6 .framer-1eloz5k > :last-child, .framer-btFoO.framer-v-1ke5id6 .framer-1t1tami > :last-child, .framer-btFoO.framer-v-1ke5id6 .framer-why194 > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-1ke5id6 .framer-piym5x > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-btFoO.framer-v-1ke5id6 .framer-1eloz5k > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-btFoO.framer-v-1ke5id6 .framer-1t1tami > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-btFoO.framer-v-1ke5id6 .framer-why194 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",\".framer-btFoO.framer-v-37tvo0 .framer-piym5x { height: 456px; }\",\".framer-btFoO.framer-v-1i764eb .framer-piym5x { height: 408px; order: 1; }\",\".framer-btFoO.framer-v-1i764eb .framer-1h8d4do, .framer-btFoO.framer-v-9j4twy .framer-1h8d4do { order: 9; }\",\".framer-btFoO.framer-v-1i764eb .framer-5v98bu { order: 5; text-decoration: none; }\",\".framer-btFoO.framer-v-h5rjah .framer-1z6xkz { order: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-h5rjah.framer-1pwmk1w, .framer-btFoO.framer-v-h5rjah .framer-piym5x, .framer-btFoO.framer-v-h5rjah .framer-akny3a, .framer-btFoO.framer-v-h5rjah .framer-1eloz5k, .framer-btFoO.framer-v-h5rjah .framer-1t1tami, .framer-btFoO.framer-v-h5rjah .framer-why194 { gap: 0px; } .framer-btFoO.framer-v-h5rjah.framer-1pwmk1w > *, .framer-btFoO.framer-v-h5rjah .framer-akny3a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO.framer-v-h5rjah.framer-1pwmk1w > :first-child, .framer-btFoO.framer-v-h5rjah .framer-piym5x > :first-child, .framer-btFoO.framer-v-h5rjah .framer-akny3a > :first-child, .framer-btFoO.framer-v-h5rjah .framer-1eloz5k > :first-child, .framer-btFoO.framer-v-h5rjah .framer-1t1tami > :first-child, .framer-btFoO.framer-v-h5rjah .framer-why194 > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-h5rjah.framer-1pwmk1w > :last-child, .framer-btFoO.framer-v-h5rjah .framer-piym5x > :last-child, .framer-btFoO.framer-v-h5rjah .framer-akny3a > :last-child, .framer-btFoO.framer-v-h5rjah .framer-1eloz5k > :last-child, .framer-btFoO.framer-v-h5rjah .framer-1t1tami > :last-child, .framer-btFoO.framer-v-h5rjah .framer-why194 > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-h5rjah .framer-piym5x > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-btFoO.framer-v-h5rjah .framer-1eloz5k > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-btFoO.framer-v-h5rjah .framer-1t1tami > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-btFoO.framer-v-h5rjah .framer-why194 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-9j4twy.framer-1pwmk1w, .framer-btFoO.framer-v-9j4twy .framer-piym5x, .framer-btFoO.framer-v-9j4twy .framer-akny3a, .framer-btFoO.framer-v-9j4twy .framer-1eloz5k, .framer-btFoO.framer-v-9j4twy .framer-1t1tami, .framer-btFoO.framer-v-9j4twy .framer-why194 { gap: 0px; } .framer-btFoO.framer-v-9j4twy.framer-1pwmk1w > *, .framer-btFoO.framer-v-9j4twy .framer-akny3a > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO.framer-v-9j4twy.framer-1pwmk1w > :first-child, .framer-btFoO.framer-v-9j4twy .framer-piym5x > :first-child, .framer-btFoO.framer-v-9j4twy .framer-akny3a > :first-child, .framer-btFoO.framer-v-9j4twy .framer-1eloz5k > :first-child, .framer-btFoO.framer-v-9j4twy .framer-1t1tami > :first-child, .framer-btFoO.framer-v-9j4twy .framer-why194 > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-9j4twy.framer-1pwmk1w > :last-child, .framer-btFoO.framer-v-9j4twy .framer-piym5x > :last-child, .framer-btFoO.framer-v-9j4twy .framer-akny3a > :last-child, .framer-btFoO.framer-v-9j4twy .framer-1eloz5k > :last-child, .framer-btFoO.framer-v-9j4twy .framer-1t1tami > :last-child, .framer-btFoO.framer-v-9j4twy .framer-why194 > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-9j4twy .framer-piym5x > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-btFoO.framer-v-9j4twy .framer-1eloz5k > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-btFoO.framer-v-9j4twy .framer-1t1tami > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-btFoO.framer-v-9j4twy .framer-why194 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",\".framer-btFoO.framer-v-zd18mn.framer-1pwmk1w { padding: 0px 126px 0px 126px; }\",\".framer-btFoO.framer-v-zd18mn .framer-1fuwgma { order: 3; padding: 0px 0px 20px 0px; width: 100%; }\",\".framer-btFoO.framer-v-zd18mn .framer-slimde { gap: 20px; justify-content: center; order: 1; }\",\".framer-btFoO.framer-v-zd18mn .framer-2m6up5 { gap: 13px; }\",\".framer-btFoO.framer-v-zd18mn .framer-1v2en1s { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px 20px 0px 20px; width: min-content; }\",\".framer-btFoO.framer-v-zd18mn .framer-1s8cx7z { height: 17px; left: unset; position: relative; right: unset; top: unset; white-space: pre; width: auto; }\",\".framer-btFoO.framer-v-zd18mn .framer-1wxfn97 { align-content: center; align-items: center; flex-direction: row; justify-content: flex-start; order: 0; }\",\".framer-btFoO.framer-v-zd18mn .framer-z6c6gf, .framer-btFoO.framer-v-ckmh7i .framer-z6c6gf { height: auto; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-zd18mn .framer-slimde, .framer-btFoO.framer-v-zd18mn .framer-2m6up5, .framer-btFoO.framer-v-zd18mn .framer-1v2en1s, .framer-btFoO.framer-v-zd18mn .framer-1wxfn97 { gap: 0px; } .framer-btFoO.framer-v-zd18mn .framer-slimde > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-btFoO.framer-v-zd18mn .framer-slimde > :first-child, .framer-btFoO.framer-v-zd18mn .framer-1v2en1s > :first-child, .framer-btFoO.framer-v-zd18mn .framer-1wxfn97 > :first-child { margin-left: 0px; } .framer-btFoO.framer-v-zd18mn .framer-slimde > :last-child, .framer-btFoO.framer-v-zd18mn .framer-1v2en1s > :last-child, .framer-btFoO.framer-v-zd18mn .framer-1wxfn97 > :last-child { margin-right: 0px; } .framer-btFoO.framer-v-zd18mn .framer-2m6up5 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-btFoO.framer-v-zd18mn .framer-2m6up5 > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-zd18mn .framer-2m6up5 > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-zd18mn .framer-1v2en1s > *, .framer-btFoO.framer-v-zd18mn .framer-1wxfn97 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-btFoO.framer-v-ckmh7i.framer-1pwmk1w { gap: 48px; padding: 0px 0px 20px 0px; width: 320px; }\",\".framer-btFoO.framer-v-ckmh7i .framer-1fuwgma { flex-wrap: wrap; padding: 0px 0px 20px 0px; }\",\".framer-btFoO.framer-v-ckmh7i .framer-slimde { flex-direction: column; gap: 42px; order: 1; padding: 0px 0px 64px 0px; }\",\".framer-btFoO.framer-v-ckmh7i .framer-2m6up5 { align-content: center; align-items: center; flex: none; gap: 13px; width: 100%; }\",\".framer-btFoO.framer-v-ckmh7i .framer-1v2en1s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px 20px 0px 20px; width: min-content; }\",\".framer-btFoO.framer-v-ckmh7i .framer-1my4v2n { width: 278px; }\",\".framer-btFoO.framer-v-ckmh7i .framer-1s8cx7z { left: unset; position: relative; right: unset; top: unset; white-space: pre; width: auto; }\",\".framer-btFoO.framer-v-ckmh7i .framer-1a7y6za, .framer-btFoO.framer-v-ckmh7i .framer-nu3d7m, .framer-btFoO.framer-v-ckmh7i .framer-u0i8qz { flex: none; width: 100%; }\",\".framer-btFoO.framer-v-ckmh7i .framer-1domebj, .framer-btFoO.framer-v-ckmh7i .framer-1cy2ov, .framer-btFoO.framer-v-ckmh7i .framer-16g37v5 { height: auto; order: 1; }\",\".framer-btFoO.framer-v-ckmh7i .framer-q38eni { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-btFoO.framer-v-ckmh7i .framer-dm0dyn { flex: 1 0 0px; width: 1px; }\",\".framer-btFoO.framer-v-ckmh7i .framer-riroyu { align-content: center; align-items: center; padding: 40px 0px 40px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-btFoO.framer-v-ckmh7i.framer-1pwmk1w, .framer-btFoO.framer-v-ckmh7i .framer-slimde, .framer-btFoO.framer-v-ckmh7i .framer-2m6up5, .framer-btFoO.framer-v-ckmh7i .framer-1v2en1s { gap: 0px; } .framer-btFoO.framer-v-ckmh7i.framer-1pwmk1w > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-btFoO.framer-v-ckmh7i.framer-1pwmk1w > :first-child, .framer-btFoO.framer-v-ckmh7i .framer-slimde > :first-child, .framer-btFoO.framer-v-ckmh7i .framer-2m6up5 > :first-child, .framer-btFoO.framer-v-ckmh7i .framer-1v2en1s > :first-child { margin-top: 0px; } .framer-btFoO.framer-v-ckmh7i.framer-1pwmk1w > :last-child, .framer-btFoO.framer-v-ckmh7i .framer-slimde > :last-child, .framer-btFoO.framer-v-ckmh7i .framer-2m6up5 > :last-child, .framer-btFoO.framer-v-ckmh7i .framer-1v2en1s > :last-child { margin-bottom: 0px; } .framer-btFoO.framer-v-ckmh7i .framer-slimde > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-btFoO.framer-v-ckmh7i .framer-2m6up5 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-btFoO.framer-v-ckmh7i .framer-1v2en1s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 696\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i3KKwWl7e\":{\"layout\":[\"fixed\",\"auto\"]},\"E9KHtBZoH\":{\"layout\":[\"fixed\",\"auto\"]},\"AK6RUT3OI\":{\"layout\":[\"fixed\",\"auto\"]},\"jAjS9Vh_X\":{\"layout\":[\"fixed\",\"auto\"]},\"hIefmGpso\":{\"layout\":[\"fixed\",\"auto\"]},\"uGqdB5_bd\":{\"layout\":[\"fixed\",\"auto\"]},\"z2ZVwbhdZ\":{\"layout\":[\"fixed\",\"auto\"]},\"GGPj1PVJf\":{\"layout\":[\"fixed\",\"auto\"]},\"Yop9pHvyA\":{\"layout\":[\"fixed\",\"auto\"]},\"qUMoOglOY\":{\"layout\":[\"fixed\",\"auto\"]},\"FqotaZLmw\":{\"layout\":[\"fixed\",\"auto\"]},\"BgZTxA8d9\":{\"layout\":[\"fixed\",\"auto\"]},\"WSPoC35YH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerckKjSoMrl=withCSS(Component,css,\"framer-btFoO\");export default FramerckKjSoMrl;FramerckKjSoMrl.displayName=\"Footer\";FramerckKjSoMrl.defaultProps={height:696,width:1440};addPropertyControls(FramerckKjSoMrl,{variant:{options:[\"qIexihdKT\",\"i3KKwWl7e\",\"E9KHtBZoH\",\"AK6RUT3OI\",\"jAjS9Vh_X\",\"hIefmGpso\",\"uGqdB5_bd\",\"z2ZVwbhdZ\",\"GGPj1PVJf\",\"Yop9pHvyA\",\"qUMoOglOY\",\"FqotaZLmw\",\"BgZTxA8d9\",\"WSPoC35YH\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\",\"Variant Waiting List\",\"Variant 5\",\"Variant 6\",\"Coaching\",\"Dashboard - 1\",\"Dashboard - 2\",\"App Mobile\",\"App Download - Desktop\",\"App Download - Mobile\",\"2025 - Desktop\",\"2025 - Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerckKjSoMrl,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vpq17U0WM26sBGHgq9jnrUmUf8.woff2\",weight:\"200\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/bNYh7lNMEpOegeRYAtyGel1WqBE.woff2\",weight:\"200\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/FBzcXZYmdulcZC0z278U6o0cw.woff2\",weight:\"200\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/ua60IRqWK94xCrq0SC639Hbsdjg.woff2\",weight:\"200\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/Pd8gNPn2dSCh4FyjWFw9PJysoQ.woff2\",weight:\"200\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/zpiI5DA3vCb3G2sqEyq9xqogo.woff2\",weight:\"200\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DtVQjTG8OGGKnwKYrMHRZVCyo.woff2\",weight:\"200\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{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\"}]},...SignUpFormReactFonts,...SignUpFormReact1Fonts,...LogoFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerckKjSoMrl\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i3KKwWl7e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E9KHtBZoH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AK6RUT3OI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jAjS9Vh_X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hIefmGpso\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uGqdB5_bd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z2ZVwbhdZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GGPj1PVJf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yop9pHvyA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qUMoOglOY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FqotaZLmw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BgZTxA8d9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WSPoC35YH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"696\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ckKjSoMrl.map", "// Generated by Framer (f082bd6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-ZkV2V .framer-styles-preset-8gmit3:not(.rich-text-wrapper), .framer-ZkV2V .framer-styles-preset-8gmit3.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-b896a1ea-c4e0-4852-a79f-c1ac0386603c, #eb2d7c); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, #df1569); --framer-link-text-decoration: none; }\"];export const className=\"framer-ZkV2V\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={SX50XxzKn:{hover:true,pressed:true}};const cycleOrder=[\"SX50XxzKn\",\"MnH_LyUQp\"];const serializationHash=\"framer-PGxW0\";const variantClassNames={MnH_LyUQp:\"framer-v-jmg17o\",SX50XxzKn:\"framer-v-16pdt6k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={Active:\"MnH_LyUQp\",Default:\"SX50XxzKn\"};const getProps=({click,height,id,link,title,width,...props})=>{return{...props,nycIID2hL:title??props.nycIID2hL??\"App\",QDHMQhwGc:click??props.QDHMQhwGc,uedS3lGX2:link??props.uedS3lGX2,variant:humanReadableVariantMap[props.variant]??props.variant??\"SX50XxzKn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uedS3lGX2,nycIID2hL,QDHMQhwGc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SX50XxzKn\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapi67m4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(QDHMQhwGc){const res=await QDHMQhwGc(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:uedS3lGX2,nodeId:\"SX50XxzKn\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-16pdt6k\",className,classNames)} framer-1z0slu`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SX50XxzKn\",onTap:onTapi67m4,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"SX50XxzKn-hover\":{\"data-framer-name\":undefined},\"SX50XxzKn-pressed\":{\"data-framer-name\":undefined},MnH_LyUQp:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojetxu\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"WpiIttsBl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe1caf79-cd7e-47cf-975c-6e297ac7e2b1, rgb(51, 91, 122)))\"},children:\"Product\"})}),className:\"framer-124t73r\",\"data-framer-name\":\"Product\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"iHdbTesCJ\",style:{\"--extracted-r6o4lv\":\"var(--token-fe1caf79-cd7e-47cf-975c-6e297ac7e2b1, rgb(51, 91, 122))\"},text:nycIID2hL,variants:{\"SX50XxzKn-hover\":{\"--extracted-r6o4lv\":\"var(--token-5c2e60e3-06f8-4760-8465-4ed8d5399ac5, rgb(15, 27, 36))\"},\"SX50XxzKn-pressed\":{\"--extracted-r6o4lv\":\"var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, rgb(223, 21, 105))\"},MnH_LyUQp:{\"--extracted-r6o4lv\":\"var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, rgb(223, 21, 105))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"SX50XxzKn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5c2e60e3-06f8-4760-8465-4ed8d5399ac5, rgb(15, 27, 36)))\"},children:\"Product\"})})},\"SX50XxzKn-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, rgb(223, 21, 105)))\"},children:\"Product\"})})},MnH_LyUQp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, rgb(223, 21, 105)))\"},children:\"Product\"})})}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PGxW0.framer-1z0slu, .framer-PGxW0 .framer-1z0slu { display: block; }\",\".framer-PGxW0.framer-16pdt6k { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 72px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PGxW0 .framer-1ojetxu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PGxW0 .framer-124t73r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PGxW0.framer-16pdt6k, .framer-PGxW0 .framer-1ojetxu { gap: 0px; } .framer-PGxW0.framer-16pdt6k > *, .framer-PGxW0 .framer-1ojetxu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PGxW0.framer-16pdt6k > :first-child, .framer-PGxW0 .framer-1ojetxu > :first-child { margin-top: 0px; } .framer-PGxW0.framer-16pdt6k > :last-child, .framer-PGxW0 .framer-1ojetxu > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 76\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"MnH_LyUQp\":{\"layout\":[\"auto\",\"fixed\"]},\"HZAuZKsj4\":{\"layout\":[\"auto\",\"fixed\"]},\"QgXRAOS_T\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"uedS3lGX2\":\"link\",\"nycIID2hL\":\"title\",\"QDHMQhwGc\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermpGOWiYzc=withCSS(Component,css,\"framer-PGxW0\");export default FramermpGOWiYzc;FramermpGOWiYzc.displayName=\"Menu Element\";FramermpGOWiYzc.defaultProps={height:72,width:76};addPropertyControls(FramermpGOWiYzc,{variant:{options:[\"SX50XxzKn\",\"MnH_LyUQp\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},uedS3lGX2:{title:\"Link\",type:ControlType.Link},nycIID2hL:{defaultValue:\"App\",description:\"\",displayTextArea:false,title:\"Title\",type:ControlType.String},QDHMQhwGc:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramermpGOWiYzc,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermpGOWiYzc\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"76\",\"framerVariables\":\"{\\\"uedS3lGX2\\\":\\\"link\\\",\\\"nycIID2hL\\\":\\\"title\\\",\\\"QDHMQhwGc\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"MnH_LyUQp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HZAuZKsj4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QgXRAOS_T\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"72\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mpGOWiYzc.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={PTjK1oM3_:{hover:true},vAldq2gzh:{hover:true}};const cycleOrder=[\"vAldq2gzh\",\"PTjK1oM3_\"];const serializationHash=\"framer-qVet8\";const variantClassNames={PTjK1oM3_:\"framer-v-rsrvw0\",vAldq2gzh:\"framer-v-1yopyp2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"};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={Large:\"PTjK1oM3_\",Small:\"vAldq2gzh\"};const getProps=({click,height,id,link,title,width,...props})=>{return{...props,GoG9GnIva:title??props.GoG9GnIva??\"Join Beta ->\",na30YkcSZ:link??props.na30YkcSZ,TTJlQaPWG:click??props.TTJlQaPWG,variant:humanReadableVariantMap[props.variant]??props.variant??\"vAldq2gzh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GoG9GnIva,na30YkcSZ,TTJlQaPWG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vAldq2gzh\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8y49an=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(TTJlQaPWG){const res=await TTJlQaPWG(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:na30YkcSZ,nodeId:\"vAldq2gzh\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1yopyp2\",className,classNames)} framer-ofoqf`,\"data-framer-name\":\"Small\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"vAldq2gzh\",onTap:onTap8y49an,ref:ref??ref1,style:{backgroundColor:\"var(--token-0b76b8c4-e4c9-492f-b350-7e852ba6e1da, rgb(223, 21, 105))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},variants:{\"PTjK1oM3_-hover\":{backgroundColor:\"var(--token-b896a1ea-c4e0-4852-a79f-c1ac0386603c, rgb(235, 45, 124))\"},\"vAldq2gzh-hover\":{backgroundColor:\"var(--token-b896a1ea-c4e0-4852-a79f-c1ac0386603c, rgb(235, 45, 124))\"}},...addPropertyOverrides({\"PTjK1oM3_-hover\":{\"data-framer-name\":undefined},\"vAldq2gzh-hover\":{\"data-framer-name\":undefined},PTjK1oM3_:{\"data-framer-name\":\"Large\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Started ->\"})}),className:\"framer-1x09gj8\",\"data-framer-name\":\"Join Beta ->\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mnhQqQrtW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:GoG9GnIva,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({PTjK1oM3_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Started ->\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qVet8.framer-ofoqf, .framer-qVet8 .framer-ofoqf { display: block; }\",\".framer-qVet8.framer-1yopyp2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-qVet8 .framer-1x09gj8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qVet8.framer-1yopyp2 { gap: 0px; } .framer-qVet8.framer-1yopyp2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qVet8.framer-1yopyp2 > :first-child { margin-left: 0px; } .framer-qVet8.framer-1yopyp2 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 145\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"PTjK1oM3_\":{\"layout\":[\"auto\",\"auto\"]},\"HGMI08i5b\":{\"layout\":[\"auto\",\"auto\"]},\"xxi5BlA8f\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"GoG9GnIva\":\"title\",\"na30YkcSZ\":\"link\",\"TTJlQaPWG\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruVy2fXrHF=withCSS(Component,css,\"framer-qVet8\");export default FrameruVy2fXrHF;FrameruVy2fXrHF.displayName=\"Button\";FrameruVy2fXrHF.defaultProps={height:36,width:145};addPropertyControls(FrameruVy2fXrHF,{variant:{options:[\"vAldq2gzh\",\"PTjK1oM3_\"],optionTitles:[\"Small\",\"Large\"],title:\"Variant\",type:ControlType.Enum},GoG9GnIva:{defaultValue:\"Join Beta ->\",displayTextArea:false,title:\"Title\",type:ControlType.String},na30YkcSZ:{title:\"Link\",type:ControlType.Link},TTJlQaPWG:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameruVy2fXrHF,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruVy2fXrHF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"36\",\"framerIntrinsicWidth\":\"145\",\"framerVariables\":\"{\\\"GoG9GnIva\\\":\\\"title\\\",\\\"na30YkcSZ\\\":\\\"link\\\",\\\"TTJlQaPWG\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PTjK1oM3_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HGMI08i5b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xxi5BlA8f\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uVy2fXrHF.map"],
  "mappings": "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",
  "names": ["INIT", "SUBMITTING", "ERROR", "SUCCESS", "formStyles", "domain", "SignUpFormReact", "firstName", "setfirstName", "ye", "lastName", "setlastName", "phone", "setPhone", "email", "setEmail", "formState", "setFormState", "INIT", "errorMessage", "setErrorMessage", "phoneOptions", "handlePhoneChange", "e", "resetForm", "hasRecentSubmission", "timestamp", "previousTimestamp", "ERROR", "handleSubmit", "event", "isValidEmail", "SUBMITTING", "formBody", "res", "ok", "dataPromise", "SUCCESS", "data", "error", "isInline", "p", "l", "u", "SignUpFormError", "BackButton", "option", "SignUpFormButton", "isHovered", "setIsHovered", "props", "fontStore", "fonts", "css", "className", "DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getIframeSnippet", "id", "environment", "customDomain", "params", "gtm_auth", "gtm_preview", "getGTMScript", "customScriptName", "setupGTM", "dataLayerScript", "noScript", "script", "initGTM", "nonce", "gtm", "gtag", "isBrowser", "window", "sendToGTM", "args", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "e", "t", "o", "r", "getMultipleShadows", "getShadow", "safeJSONParse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "ue", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "ref", "ref1", "ref2", "isEULocale", "_language", "locale", "navigator", "country", "inEU", "useRegion", "content", "useRegionFromProps", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "IconCookie", "props", "p", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "oep5aWG90", "wdGQJh0F_", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "css", "FramerBlf0sjosZ", "withCSS", "Toggle_zGbN_default", "addPropertyControls", "ControlType", "addFonts", "SPACING", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "_banner_style_border", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "Toggle_zGbN_default", "children", "style", "direction", "id", "primary", "settings", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "AnimatePresence", "Overlay", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "Ga", "motion", "Backdrop", "onClick", "IconCookie", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "INIT", "SUBMITTING", "ERROR", "SUCCESS", "formStyles", "domain", "SignUpFormReact", "firstName", "setfirstName", "ye", "lastName", "setlastName", "email", "setEmail", "formState", "setFormState", "INIT", "errorMessage", "setErrorMessage", "resetForm", "hasRecentSubmission", "timestamp", "previousTimestamp", "ERROR", "handleSubmit", "event", "isValidEmail", "SUBMITTING", "formBody", "res", "ok", "dataPromise", "SUCCESS", "data", "error", "isInline", "p", "u", "l", "SignUpFormError", "BackButton", "e", "SignUpFormButton", "isHovered", "setIsHovered", "props", "fontStore", "fonts", "css", "className", "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", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "css", "FramerxsjxSNwv5", "withCSS", "xsjxSNwv5_default", "addPropertyControls", "ControlType", "addFonts", "SignUpFormReactFonts", "getFonts", "SignUpFormReact", "SignUpFormReact1Fonts", "MotionDivWithFX", "withFX", "motion", "LogoFonts", "xsjxSNwv5_default", "CookieBannerFonts", "CookieBanner", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "transformTemplate1", "_", "t", "animation3", "animation4", "animation5", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation6", "animation7", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaptxyyif", "overlay", "loadMore", "args", "onMouseEntertxyyif", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "ref1", "ref2", "router", "useRouter", "isDisplayed17", "ref3", "ref4", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "Link", "SVG", "l", "AnimatePresence", "Floating", "ResolveLinks", "resolvedLinks", "overlay1", "css", "FramerckKjSoMrl", "withCSS", "ckKjSoMrl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "click", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uedS3lGX2", "nycIID2hL", "QDHMQhwGc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapi67m4", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FramermpGOWiYzc", "withCSS", "mpGOWiYzc_default", "addPropertyControls", "ControlType", "addFonts", "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", "click", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GoG9GnIva", "na30YkcSZ", "TTJlQaPWG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8y49an", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FrameruVy2fXrHF", "withCSS", "uVy2fXrHF_default", "addPropertyControls", "ControlType", "addFonts"]
}
