{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/UIXK1WcUX02tYQTouHsC/Input.js", "ssg:https://framerusercontent.com/modules/msnkvaZe74COmvd9kBHb/leFYLwwk7MyXV87CgS9X/os_ho0XG_.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{var _url_replace_match;const[,domain,parameters]=(_url_replace_match=url.replace(\"&amp;\",\"&\").match(mailchimpRegex))!==null&&_url_replace_match!==void 0?_url_replace_match:[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,formsparkID,getwaitlistAPI,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url)window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp\u2019s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";const formBody=hasUserGroup?emailBody+\"&\"+userGroupBody:emailBody;fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Input from\"https://framerusercontent.com/modules/oWVHHLIj4Q7woeIlKzbt/UIXK1WcUX02tYQTouHsC/Input.js\";import ButtonSetSecondary from\"https://framerusercontent.com/modules/gkgOf5cAmYeKFvnmqPMo/7WqAZLm8D1wF18HGNZzR/JeG31CxW9.js\";import ButtonSetPrimary from\"https://framerusercontent.com/modules/63b8IEUXCudAL7diF5Vl/FZRydE8HaPf5IJRiZUFV/yOGpobjf9.js\";const InputFonts=getFonts(Input);const ButtonSetSecondaryFonts=getFonts(ButtonSetSecondary);const ButtonSetPrimaryFonts=getFonts(ButtonSetPrimary);const cycleOrder=[\"I1763:90023;1406:78213\",\"jyetXpY4T\",\"PUhzzRa5S\",\"mqGBjiteV\",\"iEauksXOa\",\"dz38yZAt5\",\"qUFhGKhGz\",\"gfLhyT7vo\",\"ro6WsnKZ3\"];const serializationHash=\"framer-og8Al\";const variantClassNames={\"I1763:90023;1406:78213\":\"framer-v-g2i0qz\",dz38yZAt5:\"framer-v-1kymc1u\",gfLhyT7vo:\"framer-v-3azsch\",iEauksXOa:\"framer-v-1z2exi\",jyetXpY4T:\"framer-v-3nwe8k\",mqGBjiteV:\"framer-v-vfmved\",PUhzzRa5S:\"framer-v-1hscsi1\",qUFhGKhGz:\"framer-v-cx8m1e\",ro6WsnKZ3:\"framer-v-sm9t2v\"};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={\"Newsletter * Desktop\":\"mqGBjiteV\",\"Newsletter * Mobile\":\"dz38yZAt5\",\"Newsletter * Tablet\":\"iEauksXOa\",\"Sign Up Alert  Compact * Desktop\":\"qUFhGKhGz\",\"Sign Up Alert  Compact * Mobile\":\"ro6WsnKZ3\",\"Sign Up Alert  Compact * Tablet\":\"gfLhyT7vo\",\"Sign Up Alert * Desktop\":\"I1763:90023;1406:78213\",\"Sign Up Alert * Mobile\":\"PUhzzRa5S\",\"Sign Up Alert * Tablet \":\"jyetXpY4T\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I1763:90023;1406:78213\"};};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:\"I1763:90023;1406:78213\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"qUFhGKhGz\",\"gfLhyT7vo\",\"ro6WsnKZ3\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"mqGBjiteV\",\"iEauksXOa\",\"dz38yZAt5\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"qUFhGKhGz\")return true;return false;};const isDisplayed3=()=>{if([\"mqGBjiteV\",\"iEauksXOa\",\"dz38yZAt5\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"gfLhyT7vo\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"ro6WsnKZ3\")return true;return false;};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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-g2i0qz\",className,classNames),\"data-framer-name\":\"Sign Up Alert * Desktop\",layoutDependency:layoutDependency,layoutId:\"I1763:90023;1406:78213\",ref:ref??ref1,style:{...style},...addPropertyOverrides({dz38yZAt5:{\"data-framer-name\":\"Newsletter * Mobile\"},gfLhyT7vo:{\"data-framer-name\":\"Sign Up Alert  Compact * Tablet\"},iEauksXOa:{\"data-framer-name\":\"Newsletter * Tablet\"},jyetXpY4T:{\"data-framer-name\":\"Sign Up Alert * Tablet \"},mqGBjiteV:{\"data-framer-name\":\"Newsletter * Desktop\"},PUhzzRa5S:{\"data-framer-name\":\"Sign Up Alert * Mobile\"},qUFhGKhGz:{\"data-framer-name\":\"Sign Up Alert  Compact * Desktop\"},ro6WsnKZ3:{\"data-framer-name\":\"Sign Up Alert  Compact * Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pv08bw\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"I1763:90023;1406:78214\",style:{backgroundColor:\"var(--token-be397c88-d36c-46fc-9690-3a95c5153397, rgb(249, 195, 115))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{gfLhyT7vo:{backgroundColor:\"rgba(0, 0, 0, 0)\"},qUFhGKhGz:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ro6WsnKZ3:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Background pattern\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:3240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||450)-0-450)/2+0+0)+11368683772161603e-29),pixelHeight:1350,pixelWidth:3240,sizes:\"1080px\",src:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png\",srcSet:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png 3240w\"},className:\"framer-848opj\",\"data-framer-name\":\"Call-up Background Pattern\",layoutDependency:layoutDependency,layoutId:\"l2MTokIkP\",...addPropertyOverrides({dz38yZAt5:{background:{alt:\"Background pattern\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:3240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-480)/2+0+0)+11368683772161603e-29),pixelHeight:1350,pixelWidth:3240,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png\",srcSet:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png 3240w\"}},iEauksXOa:{background:{alt:\"Background pattern\",fit:\"fit\",intrinsicHeight:1350,intrinsicWidth:3240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-450)/2+0+0)+11368683772161603e-29),pixelHeight:1350,pixelWidth:3240,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png\",srcSet:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png 3240w\"}},jyetXpY4T:{background:{alt:\"Background pattern\",fit:\"fit\",intrinsicHeight:1350,intrinsicWidth:3240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||450)-0-450)/2+0+0)+11368683772161603e-29),pixelHeight:1350,pixelWidth:3240,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png\",srcSet:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png 3240w\"}},mqGBjiteV:{background:{alt:\"Background pattern\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:3240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-450)/2+0+0)+11368683772161603e-29),pixelHeight:1350,pixelWidth:3240,sizes:\"1080px\",src:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png\",srcSet:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png 3240w\"}},PUhzzRa5S:{background:{alt:\"Background pattern\",fit:\"fill\",intrinsicHeight:1350,intrinsicWidth:3240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-480)/2+0+0)+11368683772161603e-29),pixelHeight:1350,pixelWidth:3240,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png\",srcSet:\"https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yyc4xaP2Mn1yPHLUS83bnuMhhc.png 3240w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-68juq3\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"I1763:90023;1406:78215\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1po9vho\",\"data-framer-name\":\"Heading and supporting text\",layoutDependency:layoutDependency,layoutId:\"I1763:90023;1406:78216\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTWVkaXVt\",\"--framer-font-family\":'\"Inter Display Medium\", \"Inter Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23)))\"},children:\"Meet the Future of Project Execution\"})}),className:\"framer-1myjtiw\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;Inter Display Medium\"],layoutDependency:layoutDependency,layoutId:\"I1763:90023;1406:78217\",style:{\"--extracted-r6o4lv\":\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\"},variants:{gfLhyT7vo:{\"--extracted-r6o4lv\":\"var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249))\"},qUFhGKhGz:{\"--extracted-r6o4lv\":\"var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249))\"},ro6WsnKZ3:{\"--extracted-r6o4lv\":\"var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dz38yZAt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTWVkaXVt\",\"--framer-font-family\":'\"Inter Display Medium\", \"Inter Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23)))\"},children:\"Stay Informed, Stay Secure: Join Our Newsletter\"})})},gfLhyT7vo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTWVkaXVt\",\"--framer-font-family\":'\"Inter Display Medium\", \"Inter Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249)))\"},children:\"Meet the Future of Project Execution\"})})},iEauksXOa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTWVkaXVt\",\"--framer-font-family\":'\"Inter Display Medium\", \"Inter Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23)))\"},children:\"Stay Informed, Stay Secure: Join Our Newsletter\"})})},mqGBjiteV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTWVkaXVt\",\"--framer-font-family\":'\"Inter Display Medium\", \"Inter Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23)))\"},children:\"Stay Informed, Stay Secure: Join Our Newsletter\"})})},qUFhGKhGz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTWVkaXVt\",\"--framer-font-family\":'\"Inter Display Medium\", \"Inter Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249)))\"},children:\"Meet the Future of Project Execution\"})})},ro6WsnKZ3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIERpc3BsYXkgTWVkaXVt\",\"--framer-font-family\":'\"Inter Display Medium\", \"Inter Display Medium Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249)))\"},children:\"Meet the Future of Project Execution\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60)))\"},children:\"Let your team focus on what they do best\u2014while Ambrovia handles planning, tracking, and alignment.\"})}),className:\"framer-ydvdmv\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1763:90023;1406:78218\",style:{\"--extracted-r6o4lv\":\"var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60))\"},variants:{gfLhyT7vo:{\"--extracted-r6o4lv\":\"var(--token-dd096598-e259-46eb-8fa1-5fca67b61c10, rgb(168, 162, 158))\"},qUFhGKhGz:{\"--extracted-r6o4lv\":\"var(--token-dd096598-e259-46eb-8fa1-5fca67b61c10, rgb(168, 162, 158))\"},ro6WsnKZ3:{\"--extracted-r6o4lv\":\"var(--token-dd096598-e259-46eb-8fa1-5fca67b61c10, rgb(168, 162, 158))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dz38yZAt5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60)))\"},children:\"Sign up for our newsletter and stay ahead in the ever-changing landscape of cybersecurity. \"})})},gfLhyT7vo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd096598-e259-46eb-8fa1-5fca67b61c10, rgb(168, 162, 158)))\"},children:\"Let your team focus on what they do best\u2014while Ambrovia handles planning, tracking, and alignment.\"})})},iEauksXOa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60)))\"},children:\"Sign up for our newsletter and stay ahead in the ever-changing landscape of cybersecurity. \"})})},mqGBjiteV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60)))\"},children:\"Sign up for our newsletter and stay ahead in the ever-changing landscape of cybersecurity. \"})})},qUFhGKhGz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd096598-e259-46eb-8fa1-5fca67b61c10, rgb(168, 162, 158)))\"},children:\"Let your team focus on what they do best\u2014while Ambrovia handles planning, tracking, and alignment.\"})})},ro6WsnKZ3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd096598-e259-46eb-8fa1-5fca67b61c10, rgb(168, 162, 158)))\"},children:\"Let your team focus on what they do best\u2014while Ambrovia handles planning, tracking, and alignment.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nkr2j4\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"F0ZLZpwf3\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-izf6j3-container\",layoutDependency:layoutDependency,layoutId:\"pfsnLcJai-container\",children:/*#__PURE__*/_jsx(Input,{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"20px\"},buttonPadding:15,buttonPaddingBottom:8,buttonPaddingLeft:12,buttonPaddingPerSide:true,buttonPaddingRight:12,buttonPaddingTop:8,color:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",fill:\"var(--token-be397c88-d36c-46fc-9690-3a95c5153397, rgb(249, 195, 115))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},font:{},formsparkID:\"\",gap:10,getwaitlistAPI:\"\",height:\"100%\",id:\"pfsnLcJai\",input:{borderObject:{borderColor:\"rgba(249, 195, 113, 0.08)\",borderWidth:1},borderRadius:8,color:\"var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249))\",fill:\"rgb(38, 33, 28)\",fixedHeight:50,focusObject:{focusColor:\"var(--token-be397c88-d36c-46fc-9690-3a95c5153397, rgb(249, 195, 115))\",focusWidthFrom:0,focusWidthTo:1},height:true,padding:15,paddingBottom:8,paddingLeft:12,paddingPerSide:true,paddingRight:12,paddingTop:8,placeholder:\"name@email.com\",placeholderColor:\"var(--token-1cfe16fd-21f1-454e-a4ec-892690eb7a75, rgb(120, 113, 108))\",shadowObject:{shadowBlur:2,shadowColor:\"rgba(0, 0, 0, 0.08)\",shadowX:0,shadowY:1}},layout:\"vertical\",layoutId:\"pfsnLcJai\",loopsID:\"\",loopsUserGroup:\"\",mailchimpURL:\"\",redirectAs:\"link\",service:\"loops\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({dz38yZAt5:{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"20px\"},buttonPadding:15,buttonPaddingBottom:8,buttonPaddingLeft:12,buttonPaddingPerSide:true,buttonPaddingRight:12,buttonPaddingTop:8,buttonShadow:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.2)\",shadowX:0,shadowY:2},color:\"var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249))\",fill:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},input:{borderObject:{borderColor:\"rgba(249, 195, 113, 0.08)\",borderWidth:1},borderRadius:8,color:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",fill:\"rgba(28, 25, 23, 0.24)\",fixedHeight:50,focusObject:{focusColor:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:15,paddingBottom:8,paddingLeft:12,paddingPerSide:true,paddingRight:12,paddingTop:8,placeholder:\"name@email.com\",placeholderColor:\"var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60))\",shadowObject:{shadowBlur:2,shadowColor:\"rgba(0, 0, 0, 0.08)\",shadowX:0,shadowY:1}}},iEauksXOa:{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"20px\"},buttonPadding:15,buttonPaddingBottom:8,buttonPaddingLeft:12,buttonPaddingPerSide:true,buttonPaddingRight:12,buttonPaddingTop:8,buttonShadow:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.2)\",shadowX:0,shadowY:2},color:\"var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249))\",fill:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},input:{borderObject:{borderColor:\"rgba(249, 195, 113, 0.08)\",borderWidth:1},borderRadius:8,color:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",fill:\"rgba(28, 25, 23, 0.24)\",fixedHeight:50,focusObject:{focusColor:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:15,paddingBottom:8,paddingLeft:12,paddingPerSide:true,paddingRight:12,paddingTop:8,placeholder:\"name@email.com\",placeholderColor:\"var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60))\",shadowObject:{shadowBlur:2,shadowColor:\"rgba(0, 0, 0, 0.08)\",shadowX:0,shadowY:1}}},mqGBjiteV:{button:{buttonFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"20px\"},buttonPadding:15,buttonPaddingBottom:8,buttonPaddingLeft:12,buttonPaddingPerSide:true,buttonPaddingRight:12,buttonPaddingTop:8,buttonShadow:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.2)\",shadowX:0,shadowY:2},color:\"var(--token-7315b4f4-453a-43a6-833d-97919736de79, rgb(250, 250, 249))\",fill:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},input:{borderObject:{borderColor:\"rgba(249, 195, 113, 0.08)\",borderWidth:1},borderRadius:8,color:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",fill:\"rgba(28, 25, 23, 0.24)\",fixedHeight:50,focusObject:{focusColor:\"var(--token-368a5359-bed9-4e70-b3bd-9f98d104c36a, rgb(28, 25, 23))\",focusWidthFrom:0,focusWidthTo:2},height:true,padding:15,paddingBottom:8,paddingLeft:12,paddingPerSide:true,paddingRight:12,paddingTop:8,placeholder:\"name@email.com\",placeholderColor:\"var(--token-bb342db1-63ed-4c8b-9511-666445e0b6c2, rgb(68, 64, 60))\",shadowObject:{shadowBlur:2,shadowColor:\"rgba(0, 0, 0, 0.08)\",shadowX:0,shadowY:1}}}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11lyasz-container\",layoutDependency:layoutDependency,layoutId:\"FuHzZVn_1-container\",children:/*#__PURE__*/_jsx(ButtonSetSecondary,{BLGLyVSPc:\"Talk to sales\",height:\"100%\",id:\"FuHzZVn_1\",l9OcawnrV:false,layoutId:\"FuHzZVn_1\",variant:\"G75TOt89g\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+(((componentViewport?.height||450)-0-450)/2+0+0)+0+127+302+0,...addPropertyOverrides({gfLhyT7vo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-488)/2+0+0)+24+36+328+0},PUhzzRa5S:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-480)/2+0+0)+0+66+384+0},qUFhGKhGz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-284)/2+0+0)+0+122+0},ro6WsnKZ3:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-452)/2+0+0)+0+36+340+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dg220x-container\",layoutDependency:layoutDependency,layoutId:\"eYczPrBM0-container\",children:/*#__PURE__*/_jsx(ButtonSetPrimary,{CXk8DqBJ4:true,height:\"100%\",hFe1kuOu0:\"https://app.ambrovia.com\",id:\"eYczPrBM0\",layoutId:\"eYczPrBM0\",Px3hCeZPz:\"Start for free\",variant:\"ilGCTyI44\",width:\"100%\",...addPropertyOverrides({gfLhyT7vo:{variant:\"CTKsO4aM1\"},qUFhGKhGz:{variant:\"CTKsO4aM1\"},ro6WsnKZ3:{variant:\"QS8DmStiO\"}},baseVariant,gestureVariant)})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ge8yh-container\",layoutDependency:layoutDependency,layoutId:\"VnkDacpqx-container\",children:/*#__PURE__*/_jsx(ButtonSetSecondary,{BLGLyVSPc:\"Talk to sales\",height:\"100%\",id:\"VnkDacpqx\",l9OcawnrV:false,layoutId:\"VnkDacpqx\",variant:\"G75TOt89g\",width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y0vk-container\",layoutDependency:layoutDependency,layoutId:\"W_9k0ZOPS-container\",children:/*#__PURE__*/_jsx(ButtonSetSecondary,{BLGLyVSPc:\"Talk to sales\",height:\"100%\",id:\"W_9k0ZOPS\",l9OcawnrV:false,layoutId:\"W_9k0ZOPS\",variant:\"wzeQSzMzT\",width:\"100%\"})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-og8Al.framer-k41fxe, .framer-og8Al .framer-k41fxe { display: block; }\",\".framer-og8Al.framer-g2i0qz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-og8Al .framer-pv08bw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 450px; justify-content: center; overflow: visible; padding: 0px 48px 0px 48px; position: relative; width: 1080px; }\",\".framer-og8Al .framer-848opj { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-og8Al .framer-68juq3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 100%; justify-content: center; overflow: visible; padding: 127px 0px 127px 0px; position: relative; width: 1px; }\",\".framer-og8Al .framer-1po9vho { 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: 550px; }\",\".framer-og8Al .framer-1myjtiw, .framer-og8Al .framer-ydvdmv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-og8Al .framer-nkr2j4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-og8Al .framer-izf6j3-container { flex: none; height: auto; position: relative; width: 300px; }\",\".framer-og8Al .framer-11lyasz-container, .framer-og8Al .framer-1dg220x-container, .framer-og8Al .framer-19ge8yh-container, .framer-og8Al .framer-y0vk-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-og8Al.framer-g2i0qz, .framer-og8Al .framer-pv08bw, .framer-og8Al .framer-68juq3, .framer-og8Al .framer-1po9vho, .framer-og8Al .framer-nkr2j4 { gap: 0px; } .framer-og8Al.framer-g2i0qz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-og8Al.framer-g2i0qz > :first-child, .framer-og8Al .framer-68juq3 > :first-child, .framer-og8Al .framer-1po9vho > :first-child { margin-top: 0px; } .framer-og8Al.framer-g2i0qz > :last-child, .framer-og8Al .framer-68juq3 > :last-child, .framer-og8Al .framer-1po9vho > :last-child { margin-bottom: 0px; } .framer-og8Al .framer-pv08bw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-og8Al .framer-pv08bw > :first-child, .framer-og8Al .framer-nkr2j4 > :first-child { margin-left: 0px; } .framer-og8Al .framer-pv08bw > :last-child, .framer-og8Al .framer-nkr2j4 > :last-child { margin-right: 0px; } .framer-og8Al .framer-68juq3 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-og8Al .framer-1po9vho > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-og8Al .framer-nkr2j4 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-og8Al.framer-v-3nwe8k.framer-g2i0qz, .framer-og8Al.framer-v-1z2exi.framer-g2i0qz, .framer-og8Al.framer-v-3azsch.framer-g2i0qz { width: 810px; }\",\".framer-og8Al.framer-v-3nwe8k .framer-pv08bw, .framer-og8Al.framer-v-1z2exi .framer-pv08bw { padding: 0px 36px 0px 36px; width: 100%; }\",\".framer-og8Al.framer-v-1hscsi1.framer-g2i0qz, .framer-og8Al.framer-v-1kymc1u.framer-g2i0qz, .framer-og8Al.framer-v-sm9t2v.framer-g2i0qz { width: 389px; }\",\".framer-og8Al.framer-v-1hscsi1 .framer-pv08bw { height: 480px; padding: 0px 36px 0px 36px; width: 100%; }\",\".framer-og8Al.framer-v-1hscsi1 .framer-68juq3, .framer-og8Al.framer-v-1kymc1u .framer-68juq3 { gap: 48px; padding: 66px 0px 66px 0px; }\",\".framer-og8Al.framer-v-1hscsi1 .framer-1po9vho, .framer-og8Al.framer-v-1hscsi1 .framer-1myjtiw, .framer-og8Al.framer-v-1hscsi1 .framer-ydvdmv, .framer-og8Al.framer-v-vfmved .framer-1myjtiw, .framer-og8Al.framer-v-vfmved .framer-ydvdmv, .framer-og8Al.framer-v-1z2exi .framer-1myjtiw, .framer-og8Al.framer-v-1z2exi .framer-ydvdmv, .framer-og8Al.framer-v-1kymc1u .framer-1po9vho, .framer-og8Al.framer-v-1kymc1u .framer-1myjtiw, .framer-og8Al.framer-v-1kymc1u .framer-ydvdmv, .framer-og8Al.framer-v-sm9t2v .framer-1po9vho, .framer-og8Al.framer-v-sm9t2v .framer-1myjtiw, .framer-og8Al.framer-v-sm9t2v .framer-ydvdmv { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-og8Al.framer-v-1hscsi1 .framer-68juq3 { gap: 0px; } .framer-og8Al.framer-v-1hscsi1 .framer-68juq3 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-og8Al.framer-v-1hscsi1 .framer-68juq3 > :first-child { margin-top: 0px; } .framer-og8Al.framer-v-1hscsi1 .framer-68juq3 > :last-child { margin-bottom: 0px; } }\",\".framer-og8Al.framer-v-vfmved .framer-68juq3, .framer-og8Al.framer-v-1z2exi .framer-68juq3 { padding: 80px 0px 80px 0px; }\",\".framer-og8Al.framer-v-vfmved .framer-1po9vho { width: 406px; }\",\".framer-og8Al.framer-v-1z2exi .framer-1po9vho { width: 311px; }\",\".framer-og8Al.framer-v-1kymc1u .framer-pv08bw { height: 480px; padding: 0px 24px 0px 24px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-og8Al.framer-v-1kymc1u .framer-68juq3 { gap: 0px; } .framer-og8Al.framer-v-1kymc1u .framer-68juq3 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-og8Al.framer-v-1kymc1u .framer-68juq3 > :first-child { margin-top: 0px; } .framer-og8Al.framer-v-1kymc1u .framer-68juq3 > :last-child { margin-bottom: 0px; } }\",\".framer-og8Al.framer-v-cx8m1e .framer-pv08bw { height: 284px; width: 1280px; }\",\".framer-og8Al.framer-v-cx8m1e .framer-68juq3 { flex-direction: row; gap: unset; justify-content: space-between; padding: 36px 0px 36px 0px; }\",\".framer-og8Al.framer-v-cx8m1e .framer-11lyasz-container { order: 2; }\",\".framer-og8Al.framer-v-cx8m1e .framer-1dg220x-container, .framer-og8Al.framer-v-3azsch .framer-nkr2j4 { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-og8Al.framer-v-cx8m1e .framer-68juq3 { gap: 0px; } .framer-og8Al.framer-v-cx8m1e .framer-68juq3 > *, .framer-og8Al.framer-v-cx8m1e .framer-68juq3 > :first-child, .framer-og8Al.framer-v-cx8m1e .framer-68juq3 > :last-child { margin: 0px; } }\",\".framer-og8Al.framer-v-3azsch .framer-pv08bw { height: min-content; padding: 24px 36px 24px 36px; width: 100%; }\",\".framer-og8Al.framer-v-3azsch .framer-68juq3 { height: min-content; padding: 36px 0px 36px 0px; }\",\".framer-og8Al.framer-v-3azsch .framer-1po9vho { order: 0; }\",\".framer-og8Al.framer-v-sm9t2v .framer-pv08bw { height: min-content; padding: 0px 36px 0px 36px; width: 100%; }\",\".framer-og8Al.framer-v-sm9t2v .framer-68juq3 { gap: 48px; height: min-content; padding: 36px 0px 36px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-og8Al.framer-v-sm9t2v .framer-68juq3 { gap: 0px; } .framer-og8Al.framer-v-sm9t2v .framer-68juq3 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-og8Al.framer-v-sm9t2v .framer-68juq3 > :first-child { margin-top: 0px; } .framer-og8Al.framer-v-sm9t2v .framer-68juq3 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 450\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jyetXpY4T\":{\"layout\":[\"fixed\",\"auto\"]},\"PUhzzRa5S\":{\"layout\":[\"fixed\",\"auto\"]},\"mqGBjiteV\":{\"layout\":[\"fixed\",\"auto\"]},\"iEauksXOa\":{\"layout\":[\"fixed\",\"auto\"]},\"dz38yZAt5\":{\"layout\":[\"fixed\",\"auto\"]},\"qUFhGKhGz\":{\"layout\":[\"fixed\",\"auto\"]},\"gfLhyT7vo\":{\"layout\":[\"fixed\",\"auto\"]},\"ro6WsnKZ3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameros_ho0XG_=withCSS(Component,css,\"framer-og8Al\");export default Frameros_ho0XG_;Frameros_ho0XG_.displayName=\"Call-up Component\";Frameros_ho0XG_.defaultProps={height:450,width:1280};addPropertyControls(Frameros_ho0XG_,{variant:{options:[\"I1763:90023;1406:78213\",\"jyetXpY4T\",\"PUhzzRa5S\",\"mqGBjiteV\",\"iEauksXOa\",\"dz38yZAt5\",\"qUFhGKhGz\",\"gfLhyT7vo\",\"ro6WsnKZ3\"],optionTitles:[\"Sign Up Alert * Desktop\",\"Sign Up Alert * Tablet \",\"Sign Up Alert * Mobile\",\"Newsletter * Desktop\",\"Newsletter * Tablet\",\"Newsletter * Mobile\",\"Sign Up Alert  Compact * Desktop\",\"Sign Up Alert  Compact * Tablet\",\"Sign Up Alert  Compact * Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Frameros_ho0XG_,[{explicitInter:true,fonts:[{family:\"Inter Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/dyI9GRZNPT6RPMtpCuOKQBJ0VW0.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...InputFonts,...ButtonSetSecondaryFonts,...ButtonSetPrimaryFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameros_ho0XG_\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"450\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jyetXpY4T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PUhzzRa5S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mqGBjiteV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iEauksXOa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dz38yZAt5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qUFhGKhGz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gfLhyT7vo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ro6WsnKZ3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "Input_default", "InputFonts", "getFonts", "Input_default", "ButtonSetSecondaryFonts", "JeG31CxW9_default", "ButtonSetPrimaryFonts", "yOGpobjf9_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "Frameros_ho0XG_", "withCSS", "os_ho0XG_default", "addPropertyControls", "ControlType", "addFonts"]
}
