{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/9Eef1HtMW4li54UNCArq/oSggGY2PWCAfu9lp1py3/Event_Tracking.js", "ssg:https://framerusercontent.com/modules/xWp5K05nrXHkYUHxZCTI/ooD1DbIcy7Eei17QdGjh/Scroll.js", "ssg:https://framerusercontent.com/modules/oxvYEbyGCvklfikYeR6f/0UnWasanZVvslBUKqb9Z/LVFMmOYoS.js", "ssg:https://framerusercontent.com/modules/H5EorLetrVKWI2c8bgX8/XUreAnItZPLh4XgmQCDg/J6lGkJS89.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst POSTHOG_NAMESPACE=\"site\";/**\n * Link Click Event Tracking\n */const handleSignupClickEvent=event=>{const link=event.target;const eventCategory=link.getAttribute(\"data-event-category\");const eventAction=link.getAttribute(\"data-event-action\");const eventLabel=link.getAttribute(\"data-event-label\");const eventValue=link.getAttribute(\"data-event-value\");const framerVariantName=link.getAttribute(\"data-kovo-framer-variant-name\");const ga=window.ga;const gtag=window.gtag// GA4\n;const fbq=window.fbq;const ttq=window.ttq;const posthog=window.posthog;if(ga){gtag(\"event\",\"Lead\");ga(\"send\",\"event\",eventCategory,eventAction!=undefined&&eventAction!=\"\"?eventAction:\"click\",eventLabel,eventValue);}if(fbq){/**\n         * Facebook specific event type that calculates Lead conversion numbers. This is separate\n         * from the custom event tracking, but should be triggered by a user interaction.\n         */fbq(\"track\",\"Lead\");fbq(\"trackCustom\",eventCategory,{eventAction,eventLabel,eventValue});}if(ttq){ttq.track(\"ClickButton\");}if(posthog){posthog.capture(`${POSTHOG_NAMESPACE}.signup.clicked`,{variant:framerVariantName,platform:\"web\"});}const oldPath=window.location.pathname;console.log(\"old path\",oldPath);setTimeout(()=>{console.log(window.location);});};export function withLoginTracking(Component){return props=>{const handleClick=()=>{window.posthog.capture(`${POSTHOG_NAMESPACE}.login.clicked`);};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withSignupTracking(Component){return props=>{const[framerVariantName,setFramerVariantName]=useState(null);useEffect(()=>{// The variant name changes (disappears) on mouse hover for some reason\n// Save it in state on mount in order to be able to use it in the onClick\nsetFramerVariantName(props[\"data-framer-name\"]);},[]);/**\n         * We must use the 'data-kovo-event-tracking' attribute here because\n         * Framer needs to use the class attribute for itself.\n         *\n         * Right now this assumes that all of the buttons will have the same\n         * event category and action. This is probably a bad assumption, but\n         * it seems like these code overrides are the only way to set the values\n         * of custom attributes. To add new values for these tracking attributes,\n         * copy this function and create a slightly different version with updated\n         * attributes. Then, create a new component, apply the necessary design\n         * variants, then apply the new override with the updated attributes.\n         */return /*#__PURE__*/_jsx(Component,{...props,onClick:handleSignupClickEvent,\"data-event-category\":\"User\",\"data-event-action\":\"Lead\",\"data-kovo-event-tracking\":true,\"data-kovo-framer-variant-name\":framerVariantName});};}export function withDynamicWebAppHref(Component){return props=>{const prodHost=\"kovocredit.com\";// There is a bug within Framer that makes it so that any links referencing\n// framer.com breaks the editor within Framer. We use \"framer\" to account\n// for different URL patterns (framer.com, framer.app, etc.)\nconst framerHost=\"framer.com\";const hostname=typeof window!==\"undefined\"&&window.location.hostname?window.location.hostname:prodHost;// If hostname includes the production host, or is framer\n// (see bug comment above), go to v1. Else, go to v2\nconst redirectUrl=hostname.includes(prodHost)||hostname.includes(framerHost)?`https://app.${prodHost}/signup`:`https://${hostname}/auth/signup`;const handleClickWithRedirect=event=>{if(props.onClick){props.onClick(event)// Preserve any existing onClick handlers (tracking logic)\n;}// Delay redirection slightly to ensure tracking fires\nsetTimeout(()=>{window.location.assign(redirectUrl);},100)// 100ms delay to ensure tracking is processed\n;};console.log(hostname,redirectUrl);return /*#__PURE__*/_jsx(Component,{...props,href:redirectUrl});// return <Component {...props} onClick={handleClickWithRedirect} />\n};}// DO NOT USE //\nexport function withKovoAppRedirect(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withDynamicWebAppHref\":{\"type\":\"reactHoc\",\"name\":\"withDynamicWebAppHref\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSignupTracking\":{\"type\":\"reactHoc\",\"name\":\"withSignupTracking\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLoginTracking\":{\"type\":\"reactHoc\",\"name\":\"withLoginTracking\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withKovoAppRedirect\":{\"type\":\"reactHoc\",\"name\":\"withKovoAppRedirect\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Event_Tracking.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState}from\"react\";import{useViewportScroll}from\"framer-motion\";export function Scroll(Component){return props=>{// Motion hook\nconst{scrollY}=useViewportScroll();// State\nconst[isBeyondThreshold,setThreshold]=useState(false);// Check if value passes our section in either direction\nscrollY.onChange(value=>{if(value>1){setThreshold(true);}else{setThreshold(false);}});return /*#__PURE__*/ _jsx(Component,{...props,animate:{boxShadow:isBeyondThreshold?\"0px 10px 23px 0px rgba(0, 0, 0, 0.1)\":0},transition:{type:\"spring\",stiffness:300,damping:30}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"Scroll\":{\"type\":\"reactHoc\",\"name\":\"Scroll\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scroll.map", "// Generated by Framer (eea9f0c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withSignupTracking}from\"https://framerusercontent.com/modules/9Eef1HtMW4li54UNCArq/oSggGY2PWCAfu9lp1py3/Event_Tracking.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/H5EorLetrVKWI2c8bgX8/XUreAnItZPLh4XgmQCDg/J6lGkJS89.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/9SBc9k7g2XAEqhheC0L5/501HjrIoQGi7MqzKo64z/U3iMu4rVZ.js\";const MotionAWithSignupTracking2t3dve=withCodeBoundaryForOverrides(motion.a,{nodeId:\"p4S9YwFTf\",override:withSignupTracking,scopeId:\"LVFMmOYoS\"});const enabledGestures={CA6kY3wSc:{hover:true,pressed:true},gex0KHR3x:{hover:true,pressed:true},GxZfM6jYe:{hover:true,pressed:true},hqgU7tF6u:{hover:true,pressed:true},NFtUmKVB3:{hover:true,pressed:true},NJbUrag6u:{hover:true,pressed:true},OhIUOSHCx:{hover:true,pressed:true},p4S9YwFTf:{hover:true,pressed:true},PiFPj667K:{hover:true,pressed:true},pxT8YzMfd:{hover:true,pressed:true},RA53VPGI6:{hover:true,pressed:true},WX5zN6o9_:{hover:true,pressed:true},YBqYgWc_J:{hover:true,pressed:true},Z_SGPejck:{hover:true,pressed:true},z0xLNAbA7:{hover:true,pressed:true}};const cycleOrder=[\"p4S9YwFTf\",\"YBqYgWc_J\",\"pxT8YzMfd\",\"OhIUOSHCx\",\"hqgU7tF6u\",\"GxZfM6jYe\",\"Z_SGPejck\",\"NJbUrag6u\",\"z0xLNAbA7\",\"PiFPj667K\",\"gex0KHR3x\",\"WX5zN6o9_\",\"RA53VPGI6\",\"CA6kY3wSc\",\"NFtUmKVB3\",\"n6nkpghlh\"];const serializationHash=\"framer-wxAoC\";const variantClassNames={CA6kY3wSc:\"framer-v-4it274\",gex0KHR3x:\"framer-v-1t6pll7\",GxZfM6jYe:\"framer-v-192h5b6\",hqgU7tF6u:\"framer-v-pq38yf\",n6nkpghlh:\"framer-v-17vnseg\",NFtUmKVB3:\"framer-v-1t09dp5\",NJbUrag6u:\"framer-v-1i4p2cz\",OhIUOSHCx:\"framer-v-1gb12ny\",p4S9YwFTf:\"framer-v-2t3dve\",PiFPj667K:\"framer-v-1f4sccr\",pxT8YzMfd:\"framer-v-1i62c1j\",RA53VPGI6:\"framer-v-17puak6\",WX5zN6o9_:\"framer-v-aygygx\",YBqYgWc_J:\"framer-v-zeshpg\",Z_SGPejck:\"framer-v-1bk6nuf\",z0xLNAbA7:\"framer-v-o1n1fc\"};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:543,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={\"Feature Cards\":\"hqgU7tF6u\",\"Floating Bar\":\"OhIUOSHCx\",\"Hero Mini\":\"pxT8YzMfd\",\"Sign up - Web app v2 compatible\":\"n6nkpghlh\",\"Variant 12\":\"CA6kY3wSc\",\"Variant 3\":\"NJbUrag6u\",\"Variant 4\":\"z0xLNAbA7\",\"Variant 5 b\":\"gex0KHR3x\",\"Variant 5\":\"PiFPj667K\",\"Variant 6\":\"WX5zN6o9_\",\"Variant 7\":\"RA53VPGI6\",Header:\"p4S9YwFTf\",Hero_test_1_Small:\"NFtUmKVB3\",Hero_test_1:\"Z_SGPejck\",Hero:\"YBqYgWc_J\",Pivot:\"GxZfM6jYe\"};const getProps=({height,id,title,width,...props})=>{return{...props,JHuXMX92E:title??props.JHuXMX92E??\"START NOW\",variant:humanReadableVariantMap[props.variant]??props.variant??\"p4S9YwFTf\"};};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,JHuXMX92E,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p4S9YwFTf\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.kovocredit.com/signup\",motionChild:true,nodeId:\"p4S9YwFTf\",openInNewTab:true,scopeId:\"LVFMmOYoS\",children:/*#__PURE__*/_jsx(MotionAWithSignupTracking2t3dve,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-2t3dve\",className,classNames)} framer-v8m6jc`,\"data-framer-name\":\"Header\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"p4S9YwFTf\",ref:refBinding,style:{backgroundColor:\"rgb(27, 18, 48)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.25)\",...style},variants:{\"CA6kY3wSc-hover\":{backgroundColor:\"rgb(27, 18, 48)\"},\"CA6kY3wSc-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\"},\"gex0KHR3x-hover\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\"},\"gex0KHR3x-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\"},\"GxZfM6jYe-hover\":{backgroundColor:\"rgb(27, 18, 48)\"},\"GxZfM6jYe-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\"},\"hqgU7tF6u-hover\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\"},\"hqgU7tF6u-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\"},\"NFtUmKVB3-hover\":{backgroundColor:\"var(--token-83282971-d8b6-4351-b4dc-043975f6de0f, rgb(181, 236, 255))\"},\"NFtUmKVB3-pressed\":{backgroundColor:\"var(--token-caaf1a45-42df-4462-9c99-346c1ce2d625, rgb(32, 211, 133))\"},\"NJbUrag6u-hover\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},\"NJbUrag6u-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},\"OhIUOSHCx-hover\":{backgroundColor:\"rgb(27, 18, 48)\"},\"OhIUOSHCx-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\"},\"p4S9YwFTf-hover\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\"},\"p4S9YwFTf-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\",boxShadow:\"none\"},\"PiFPj667K-hover\":{backgroundColor:\"var(--token-1fc0b645-75c1-4202-81a2-2497f0a77b5c, rgb(255, 153, 0))\"},\"PiFPj667K-pressed\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\"},\"pxT8YzMfd-hover\":{backgroundColor:\"rgb(128, 223, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},\"pxT8YzMfd-pressed\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},\"RA53VPGI6-hover\":{backgroundColor:\"rgb(27, 18, 48)\"},\"RA53VPGI6-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\"},\"WX5zN6o9_-hover\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\"},\"WX5zN6o9_-pressed\":{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\"},\"YBqYgWc_J-hover\":{backgroundColor:\"var(--token-83282971-d8b6-4351-b4dc-043975f6de0f, rgb(181, 236, 255))\"},\"YBqYgWc_J-pressed\":{backgroundColor:\"rgb(27, 18, 48)\"},\"Z_SGPejck-hover\":{backgroundColor:\"var(--token-83282971-d8b6-4351-b4dc-043975f6de0f, rgb(181, 236, 255))\",boxShadow:\"0px 0px 0px 10px rgba(255, 255, 255, 0.25)\"},\"Z_SGPejck-pressed\":{backgroundColor:\"var(--token-caaf1a45-42df-4462-9c99-346c1ce2d625, rgb(32, 211, 133))\"},\"z0xLNAbA7-hover\":{backgroundColor:\"rgb(27, 18, 48)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},\"z0xLNAbA7-pressed\":{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},CA6kY3wSc:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},gex0KHR3x:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},GxZfM6jYe:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},hqgU7tF6u:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},NFtUmKVB3:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},NJbUrag6u:{boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},OhIUOSHCx:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},PiFPj667K:{backgroundColor:\"var(--token-3a61d236-d983-4c71-8004-659b9084368c, rgb(255, 102, 204))\",boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},pxT8YzMfd:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},RA53VPGI6:{backgroundColor:\"var(--token-14b10484-113e-4aa2-9cda-d168610a53f2, rgb(8, 119, 184))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},WX5zN6o9_:{boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},YBqYgWc_J:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},Z_SGPejck:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"},z0xLNAbA7:{backgroundColor:\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\",boxShadow:\"0px 3px 6px 0px rgba(0, 0, 0, 0.3)\"}},...addPropertyOverrides({\"CA6kY3wSc-hover\":{\"data-framer-name\":undefined},\"CA6kY3wSc-pressed\":{\"data-framer-name\":undefined},\"gex0KHR3x-hover\":{\"data-framer-name\":undefined},\"gex0KHR3x-pressed\":{\"data-framer-name\":undefined},\"GxZfM6jYe-hover\":{\"data-framer-name\":undefined},\"GxZfM6jYe-pressed\":{\"data-framer-name\":undefined},\"hqgU7tF6u-hover\":{\"data-framer-name\":undefined},\"hqgU7tF6u-pressed\":{\"data-framer-name\":undefined},\"NFtUmKVB3-hover\":{\"data-framer-name\":undefined},\"NFtUmKVB3-pressed\":{\"data-framer-name\":undefined},\"NJbUrag6u-hover\":{\"data-framer-name\":undefined},\"NJbUrag6u-pressed\":{\"data-framer-name\":undefined},\"OhIUOSHCx-hover\":{\"data-framer-name\":undefined},\"OhIUOSHCx-pressed\":{\"data-framer-name\":undefined},\"p4S9YwFTf-hover\":{\"data-framer-name\":undefined},\"p4S9YwFTf-pressed\":{\"data-framer-name\":undefined},\"PiFPj667K-hover\":{\"data-framer-name\":undefined},\"PiFPj667K-pressed\":{\"data-framer-name\":undefined},\"pxT8YzMfd-hover\":{\"data-framer-name\":undefined},\"pxT8YzMfd-pressed\":{\"data-framer-name\":undefined},\"RA53VPGI6-hover\":{\"data-framer-name\":undefined},\"RA53VPGI6-pressed\":{\"data-framer-name\":undefined},\"WX5zN6o9_-hover\":{\"data-framer-name\":undefined},\"WX5zN6o9_-pressed\":{\"data-framer-name\":undefined},\"YBqYgWc_J-hover\":{\"data-framer-name\":undefined},\"YBqYgWc_J-pressed\":{\"data-framer-name\":undefined},\"Z_SGPejck-hover\":{\"data-framer-name\":undefined},\"Z_SGPejck-pressed\":{\"data-framer-name\":undefined},\"z0xLNAbA7-hover\":{\"data-framer-name\":undefined},\"z0xLNAbA7-pressed\":{\"data-framer-name\":undefined},CA6kY3wSc:{\"data-framer-name\":\"Variant 12\"},gex0KHR3x:{\"data-framer-name\":\"Variant 5 b\"},GxZfM6jYe:{\"data-framer-name\":\"Pivot\"},hqgU7tF6u:{\"data-framer-name\":\"Feature Cards\"},n6nkpghlh:{\"data-framer-name\":\"Sign up - Web app v2 compatible\"},NFtUmKVB3:{\"data-framer-name\":\"Hero_test_1_Small\"},NJbUrag6u:{\"data-framer-name\":\"Variant 3\"},OhIUOSHCx:{\"data-framer-name\":\"Floating Bar\"},PiFPj667K:{\"data-framer-name\":\"Variant 5\"},pxT8YzMfd:{\"data-framer-name\":\"Hero Mini\"},RA53VPGI6:{\"data-framer-name\":\"Variant 7\"},WX5zN6o9_:{\"data-framer-name\":\"Variant 6\"},YBqYgWc_J:{\"data-framer-name\":\"Hero\"},Z_SGPejck:{\"data-framer-name\":\"Hero_test_1\"},z0xLNAbA7:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"SIGN UP\"})}),className:\"framer-864af1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lqnCAyScp\",variants:{\"CA6kY3wSc-hover\":{\"--extracted-r6o4lv\":\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\"},\"GxZfM6jYe-hover\":{\"--extracted-r6o4lv\":\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\"},\"hqgU7tF6u-pressed\":{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},\"NJbUrag6u-pressed\":{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},\"OhIUOSHCx-hover\":{\"--extracted-r6o4lv\":\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\"},\"p4S9YwFTf-pressed\":{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},\"RA53VPGI6-pressed\":{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},\"WX5zN6o9_-pressed\":{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},\"YBqYgWc_J-pressed\":{\"--extracted-r6o4lv\":\"var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255))\"},CA6kY3wSc:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},gex0KHR3x:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},GxZfM6jYe:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},NFtUmKVB3:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},OhIUOSHCx:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},PiFPj667K:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},pxT8YzMfd:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},YBqYgWc_J:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},Z_SGPejck:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"},z0xLNAbA7:{\"--extracted-r6o4lv\":\"var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"CA6kY3wSc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255)))\"},children:\"START NOW\"})})},\"gex0KHR3x-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"APPLY NOW\"})})},\"GxZfM6jYe-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255)))\"},children:\"START NOW\"})})},\"hqgU7tF6u-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"START NOW\"})})},\"NJbUrag6u-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"START NOW\"})})},\"OhIUOSHCx-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255)))\"},children:\"APPLY NOW\"})})},\"p4S9YwFTf-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-alignment\":\"start\"},children:\"SIGN UP\"})})},\"p4S9YwFTf-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"SIGN UP\"})})},\"PiFPj667K-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"APPLY NOW\"})})},\"pxT8YzMfd-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"APPLY NOW\"})})},\"RA53VPGI6-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"GET STARTED\"})})},\"WX5zN6o9_-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"GET STARTED\"})})},\"YBqYgWc_J-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, rgb(255, 255, 255)))\"},children:\"APPLY NOW\"})})},\"z0xLNAbA7-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"LET'S GO\"})})},\"z0xLNAbA7-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"LET'S GO\"})})},CA6kY3wSc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"START NOW\"})})},gex0KHR3x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"APPLY NOW\"})})},GxZfM6jYe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"START NOW\"})}),text:JHuXMX92E},hqgU7tF6u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",children:\"START NOW\"})})},NFtUmKVB3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUV4dHJhQm9sZA==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"GET STARTED\"})}),fonts:[\"FR;InterDisplay-ExtraBold\"]},NJbUrag6u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"START NOW\"})})},OhIUOSHCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"APPLY NOW\"})})},PiFPj667K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"APPLY NOW\"})})},pxT8YzMfd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"APPLY NOW\"})})},RA53VPGI6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",children:\"GET STARTED\"})})},WX5zN6o9_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",children:\"GET STARTED\"})})},YBqYgWc_J:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"APPLY NOW\"})})},Z_SGPejck:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-a2r671\",\"data-styles-preset\":\"J6lGkJS89\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"GET STARTED\"})})},z0xLNAbA7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-8wdxon\",\"data-styles-preset\":\"U3iMu4rVZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8594d8d4-1b4c-4e47-a964-926463025616, rgb(27, 18, 48)))\"},children:\"LET'S GO\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wxAoC.framer-v8m6jc, .framer-wxAoC .framer-v8m6jc { display: block; }\",\".framer-wxAoC.framer-2t3dve { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; padding: 20px 30px 20px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-wxAoC .framer-864af1 { flex: none; height: auto; overflow: visible; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-wxAoC.framer-v-zeshpg.framer-2t3dve, .framer-wxAoC.framer-v-pq38yf.framer-2t3dve, .framer-wxAoC.framer-v-192h5b6.framer-2t3dve { height: 64px; width: 280px; }\",\".framer-wxAoC.framer-v-1gb12ny.framer-2t3dve { padding: 20px; }\",\".framer-wxAoC.framer-v-1bk6nuf.framer-2t3dve { flex-direction: row; gap: 6px; height: 64px; width: 280px; }\",\".framer-wxAoC.framer-v-1bk6nuf .framer-864af1, .framer-wxAoC.framer-v-1t09dp5 .framer-864af1, .framer-wxAoC.framer-v-17puak6.hover .framer-864af1 { order: 1; }\",\".framer-wxAoC.framer-v-1f4sccr.framer-2t3dve, .framer-wxAoC.framer-v-1t6pll7.framer-2t3dve { height: 47px; }\",\".framer-wxAoC.framer-v-17puak6.framer-2t3dve { flex-direction: row; height: 64px; padding: 20px 15px 20px 15px; width: 272px; }\",\".framer-wxAoC.framer-v-1t09dp5.framer-2t3dve { flex-direction: row; gap: 6px; height: 52px; width: 280px; }\",\".framer-wxAoC.framer-v-17vnseg.framer-2t3dve { cursor: unset; width: 135px; }\",\".framer-wxAoC.framer-v-17puak6.hover.framer-2t3dve, .framer-wxAoC.framer-v-17puak6.pressed.framer-2t3dve { gap: 12px; padding: 20px 18px 20px 18px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 137\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"YBqYgWc_J\":{\"layout\":[\"fixed\",\"fixed\"]},\"pxT8YzMfd\":{\"layout\":[\"auto\",\"fixed\"]},\"OhIUOSHCx\":{\"layout\":[\"auto\",\"fixed\"]},\"hqgU7tF6u\":{\"layout\":[\"fixed\",\"fixed\"]},\"GxZfM6jYe\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z_SGPejck\":{\"layout\":[\"fixed\",\"fixed\"]},\"NJbUrag6u\":{\"layout\":[\"auto\",\"fixed\"]},\"z0xLNAbA7\":{\"layout\":[\"auto\",\"fixed\"]},\"PiFPj667K\":{\"layout\":[\"auto\",\"fixed\"]},\"gex0KHR3x\":{\"layout\":[\"auto\",\"fixed\"]},\"WX5zN6o9_\":{\"layout\":[\"auto\",\"fixed\"]},\"RA53VPGI6\":{\"layout\":[\"fixed\",\"fixed\"]},\"CA6kY3wSc\":{\"layout\":[\"auto\",\"fixed\"]},\"NFtUmKVB3\":{\"layout\":[\"fixed\",\"fixed\"]},\"n6nkpghlh\":{\"layout\":[\"fixed\",\"fixed\"]},\"EBFLXoeLb\":{\"layout\":[\"auto\",\"fixed\"]},\"fUPrheaZk\":{\"layout\":[\"auto\",\"fixed\"]},\"mGNmLPLa_\":{\"layout\":[\"fixed\",\"fixed\"]},\"zaoeZQzzA\":{\"layout\":[\"fixed\",\"fixed\"]},\"U3tStf8Gv\":{\"layout\":[\"auto\",\"fixed\"]},\"Q2d7Lony7\":{\"layout\":[\"auto\",\"fixed\"]},\"tfO5ur7pP\":{\"layout\":[\"auto\",\"fixed\"]},\"dewJI1vvi\":{\"layout\":[\"auto\",\"fixed\"]},\"FBegnLwh3\":{\"layout\":[\"fixed\",\"fixed\"]},\"gr8nfjtlo\":{\"layout\":[\"fixed\",\"fixed\"]},\"kg0Grbi6u\":{\"layout\":[\"fixed\",\"fixed\"]},\"uCqox_d9j\":{\"layout\":[\"fixed\",\"fixed\"]},\"LAOT5dJW7\":{\"layout\":[\"fixed\",\"fixed\"]},\"HKBGBGoJw\":{\"layout\":[\"fixed\",\"fixed\"]},\"ipV5v_y2_\":{\"layout\":[\"auto\",\"fixed\"]},\"Mmjf3betF\":{\"layout\":[\"auto\",\"fixed\"]},\"CWeSafDLl\":{\"layout\":[\"auto\",\"fixed\"]},\"QxJSoeemX\":{\"layout\":[\"auto\",\"fixed\"]},\"n5_H28cuQ\":{\"layout\":[\"auto\",\"fixed\"]},\"ig3KWnt9U\":{\"layout\":[\"auto\",\"fixed\"]},\"jtUObcmI3\":{\"layout\":[\"auto\",\"fixed\"]},\"sFyj3aLEt\":{\"layout\":[\"auto\",\"fixed\"]},\"juV5IEkfX\":{\"layout\":[\"auto\",\"fixed\"]},\"XsMhuWsli\":{\"layout\":[\"auto\",\"fixed\"]},\"pk0IxRVil\":{\"layout\":[\"fixed\",\"fixed\"]},\"sIst6b7F8\":{\"layout\":[\"fixed\",\"fixed\"]},\"lBiXzx8bP\":{\"layout\":[\"auto\",\"fixed\"]},\"HmsWdUBt5\":{\"layout\":[\"auto\",\"fixed\"]},\"DhHYL5lhI\":{\"layout\":[\"fixed\",\"fixed\"]},\"qQEOSNjyQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"JHuXMX92E\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLVFMmOYoS=withCSS(Component,css,\"framer-wxAoC\");export default FramerLVFMmOYoS;FramerLVFMmOYoS.displayName=\"CTA Signup\";FramerLVFMmOYoS.defaultProps={height:48,width:137};addPropertyControls(FramerLVFMmOYoS,{variant:{options:[\"p4S9YwFTf\",\"YBqYgWc_J\",\"pxT8YzMfd\",\"OhIUOSHCx\",\"hqgU7tF6u\",\"GxZfM6jYe\",\"Z_SGPejck\",\"NJbUrag6u\",\"z0xLNAbA7\",\"PiFPj667K\",\"gex0KHR3x\",\"WX5zN6o9_\",\"RA53VPGI6\",\"CA6kY3wSc\",\"NFtUmKVB3\",\"n6nkpghlh\"],optionTitles:[\"Header\",\"Hero\",\"Hero Mini\",\"Floating Bar\",\"Feature Cards\",\"Pivot\",\"Hero_test_1\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 5 b\",\"Variant 6\",\"Variant 7\",\"Variant 12\",\"Hero_test_1_Small\",\"Sign up - Web app v2 compatible\"],title:\"Variant\",type:ControlType.Enum},JHuXMX92E:{defaultValue:\"START NOW\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerLVFMmOYoS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",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/RDJfWXA0aFdpD2OO2AJLBh2Z7E.woff2\",weight:\"800\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/e97VFGU1js4GGgvQCnvIiHpRf0.woff2\",weight:\"800\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/9WZaFuMg9OiQ7an8bugAJkUG04.woff2\",weight:\"800\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/Kc2pkIGjh9K7EmlGx2sorKHcJDw.woff2\",weight:\"800\"},{family:\"Inter Display\",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/pFve2DToKu0uyKsWs4NBTHpK7Vc.woff2\",weight:\"800\"},{family:\"Inter Display\",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/1ZgR8LZSrJTG9VOgP5wgqaL3lQ4.woff2\",weight:\"800\"},{family:\"Inter Display\",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/4hhgqiTCDCCa8WhFmTB7QXODupk.woff2\",weight:\"800\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLVFMmOYoS\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"YBqYgWc_J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pxT8YzMfd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"OhIUOSHCx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"hqgU7tF6u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GxZfM6jYe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z_SGPejck\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NJbUrag6u\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"z0xLNAbA7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PiFPj667K\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gex0KHR3x\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WX5zN6o9_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RA53VPGI6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CA6kY3wSc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"NFtUmKVB3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n6nkpghlh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EBFLXoeLb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fUPrheaZk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mGNmLPLa_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zaoeZQzzA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U3tStf8Gv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Q2d7Lony7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tfO5ur7pP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"dewJI1vvi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"FBegnLwh3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gr8nfjtlo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kg0Grbi6u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uCqox_d9j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LAOT5dJW7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HKBGBGoJw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ipV5v_y2_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Mmjf3betF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"CWeSafDLl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"QxJSoeemX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"n5_H28cuQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ig3KWnt9U\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"jtUObcmI3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sFyj3aLEt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"juV5IEkfX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XsMhuWsli\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"pk0IxRVil\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sIst6b7F8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lBiXzx8bP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HmsWdUBt5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"DhHYL5lhI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qQEOSNjyQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"137\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"JHuXMX92E\\\":\\\"title\\\"}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LVFMmOYoS.map", "// Generated by Framer (c07a8c1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-ExtraBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-ExtraBoldItalic\"]);export const fonts=[{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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/if4nAQEfO1l3iBiurvlUSTaMA.woff2\",weight:\"800\"},{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/GdJ7SQjcmkU1sz7lk5lMpKUlKY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/sOA6LVskcCqlqggyjIZe0Zh39UQ.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/zUCSsMbWBcHOQoATrhsPVigkc.woff2\",weight:\"800\"},{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/6eYp9yIAUvPZY7o0yfI4e2OP6g.woff2\",weight:\"800\"},{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/aKoimhPBfs6C7Am2HTTVjGcpE.woff2\",weight:\"800\"},{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/L9nHaKi7ULzGWchEehsfwttxOwM.woff2\",weight:\"800\"}]}];export const css=['.framer-R1hb5 .framer-styles-preset-a2r671:not(.rich-text-wrapper), .framer-R1hb5 .framer-styles-preset-a2r671.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 800; --framer-letter-spacing: -0.2px; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 809px) and (min-width: 390px) { .framer-R1hb5 .framer-styles-preset-a2r671:not(.rich-text-wrapper), .framer-R1hb5 .framer-styles-preset-a2r671.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 800; --framer-letter-spacing: -0.2px; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 389px) and (min-width: 0px) { .framer-R1hb5 .framer-styles-preset-a2r671:not(.rich-text-wrapper), .framer-R1hb5 .framer-styles-preset-a2r671.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 800; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 800; --framer-letter-spacing: -0.2px; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-eedb2f7f-14a0-4a29-8751-83036be60314, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-R1hb5\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["POSTHOG_NAMESPACE", "handleSignupClickEvent", "event", "link", "eventCategory", "eventAction", "eventLabel", "eventValue", "framerVariantName", "ga", "window", "gtag", "fbq", "ttq", "posthog", "oldPath", "withLoginTracking", "Component", "props", "p", "withSignupTracking", "setFramerVariantName", "ye", "ue", "Scroll", "Component", "props", "scrollY", "useViewportScroll", "isBeyondThreshold", "setThreshold", "ye", "value", "p", "LVFMmOYoS_exports", "__export", "__FramerMetadata__", "LVFMmOYoS_default", "fontStore", "fonts", "css", "className", "MotionAWithSignupTracking2t3dve", "withCodeBoundaryForOverrides", "motion", "withSignupTracking", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "JHuXMX92E", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FramerLVFMmOYoS", "withCSS", "LVFMmOYoS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
