{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/J3733LYVpalH2oIs0oMe/3aqoAw5ZGrcv2SZmgDe7/cmmoACdV3.js", "ssg:https://framerusercontent.com/modules/0HAlAdvFKvyrTx0DpO7d/eHBr2MhgaKkJdnOikyAc/JV0O8OfUg.js", "ssg:https://framerusercontent.com/modules/tBinjPDb3dmUFQdn48fA/ry6Ph550i49UrXQF7MeH/CountdownTimerVisualComponent.js", "ssg:https://framerusercontent.com/modules/lMIRtTnU78OYN6DqnbKR/Mpc9hkbr1r2b5Jk63lA9/CountdownToDate.js", "ssg:https://framerusercontent.com/modules/TGDowjSpXpGnsH0nnobK/TdwDkeQX0PUmKfOMoHg3/IRB73kyKg.js", "ssg:https://framerusercontent.com/modules/1xlPxyWf1g6xwIaWPx8W/nyWitoJ9MJyhdHLARI6M/K7HmyT9Ti.js", "ssg:https://framerusercontent.com/modules/9z8tOvLSb6qTmUcr46h4/gJ1G9TYDE3S4OxnsOf9H/mcW0js4c8.js", "ssg:https://framerusercontent.com/modules/bA4I5xEY8lKx42MMPK1w/G6cqZQEcDWuPc96MoPht/NtzbDIqe4.js", "ssg:https://framerusercontent.com/modules/Qsz8ie5xlT7KdJYvAs19/8yWy2z8tRNOSUr5GvcIp/UBeEt1ZCu.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/Nw8Y9ZN4GMYdKKVaMgcb/xBp1QsNEwiBHQr6fuKR9/whajoFi5f.js", "ssg:https://framerusercontent.com/modules/YLSgYN2o7FjFwBBaSeTC/1hwCs0frcvJrjUW0AX0L/lTew3jQp6.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Topic from\"https://framerusercontent.com/modules/mND34kxpBXdGDetewvvt/r8PQRoP9L7Jc9Fqv8uHj/iUg1G4Hr_.js\";import HeaderStroke from\"https://framerusercontent.com/modules/TPYgKEzShEIgGN3fT4K1/EnrraMTrV4XNmXUcGv5U/JFMTCCS5E.js\";const HeaderStrokeFonts=getFonts(HeaderStroke);const ImageWithFX=withFX(Image);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const TopicFonts=getFonts(Topic);const cycleOrder=[\"oB4HDStz6\",\"m2bdtDOhF\",\"w3D8hKPDp\",\"FvjEDPZi2\",\"ajuY3LEqm\",\"eQwXAlFWv\"];const serializationHash=\"framer-akcaj\";const variantClassNames={ajuY3LEqm:\"framer-v-1u66qiv\",eQwXAlFWv:\"framer-v-6or8ub\",FvjEDPZi2:\"framer-v-1l0w81v\",m2bdtDOhF:\"framer-v-n9hck1\",oB4HDStz6:\"framer-v-pgfvfs\",w3D8hKPDp:\"framer-v-1k3mys5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation1={opacity:1,rotate:-50,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:-180,scale:1,skewX:0,skewY:0,x:0,y:0};const animation4={opacity:1,rotate:-14,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile Calm\":\"eQwXAlFWv\",\"Mobile Chaos\":\"ajuY3LEqm\",\"Tablet Calm\":\"FvjEDPZi2\",\"Tablet Chaos\":\"w3D8hKPDp\",Calm:\"m2bdtDOhF\",Desktop:\"oB4HDStz6\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oB4HDStz6\"};};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:\"oB4HDStz6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"m2bdtDOhF\",\"FvjEDPZi2\",\"eQwXAlFWv\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"m2bdtDOhF\",\"FvjEDPZi2\",\"eQwXAlFWv\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"w3D8hKPDp\",\"FvjEDPZi2\",\"ajuY3LEqm\",\"eQwXAlFWv\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"w3D8hKPDp\",\"FvjEDPZi2\",\"ajuY3LEqm\",\"eQwXAlFWv\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-pgfvfs\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"oB4HDStz6\",ref:ref??ref1,style:{...style},...addPropertyOverrides({ajuY3LEqm:{\"data-framer-name\":\"Mobile Chaos\"},eQwXAlFWv:{\"data-framer-name\":\"Mobile Calm\"},FvjEDPZi2:{\"data-framer-name\":\"Tablet Calm\"},m2bdtDOhF:{\"data-framer-name\":\"Calm\"},w3D8hKPDp:{\"data-framer-name\":\"Tablet Chaos\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16s230p\",layoutDependency:layoutDependency,layoutId:\"uipCW85Ak\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Komika Display Regular\", \"Komika Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Join WANDERING AIMFULLY\"})}),className:\"framer-1t27let\",\"data-framer-name\":\"Text Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"CUSTOM;Komika Display Regular\"],layoutDependency:layoutDependency,layoutId:\"NPU7aUOt0\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3pifwi\",layoutDependency:layoutDependency,layoutId:\"pG_RenJzz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Komika Display Regular\", \"Komika Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"UNLIMITED\"})}),className:\"framer-11h0sks\",\"data-framer-name\":\"Text Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"CUSTOM;Komika Display Regular\"],layoutDependency:layoutDependency,layoutId:\"r4MBd1u5N\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:39.5,intrinsicWidth:626,pixelHeight:79,pixelWidth:1252,src:\"https://framerusercontent.com/images/zBkITEbb3zvhBF4hM1gSBiKaIc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zBkITEbb3zvhBF4hM1gSBiKaIc.png?scale-down-to=512 512w,https://framerusercontent.com/images/zBkITEbb3zvhBF4hM1gSBiKaIc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zBkITEbb3zvhBF4hM1gSBiKaIc.png 1252w\"},className:\"framer-so3tgy\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"eRueQbYC2\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z1e8vj\",layoutDependency:layoutDependency,layoutId:\"eYlD9yhzA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"724px\",...addPropertyOverrides({ajuY3LEqm:{width:\"360px\"},eQwXAlFWv:{width:\"360px\"},FvjEDPZi2:{width:\"641px\"},w3D8hKPDp:{width:\"616px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zklg3k-container\",layoutDependency:layoutDependency,layoutId:\"HnN5G4dK6-container\",children:/*#__PURE__*/_jsx(HeaderStroke,{Ep1gllbly:\"rgb(255, 255, 255)\",Gjzgp62Nb:\"Say goodbye to chaos and hello to CALM\",height:\"100%\",i2KVzwvKl:84,id:\"HnN5G4dK6\",layoutId:\"HnN5G4dK6\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},uHp68XvXh:0,variant:\"SsQ2pVZkj\",width:\"100%\",...addPropertyOverrides({ajuY3LEqm:{i2KVzwvKl:56,uHp68XvXh:20,variant:\"HUNEFLq7G\"},eQwXAlFWv:{i2KVzwvKl:56,uHp68XvXh:20,variant:\"HUNEFLq7G\"},FvjEDPZi2:{i2KVzwvKl:70,uHp68XvXh:12,variant:\"W2lucwaJ4\"},w3D8hKPDp:{i2KVzwvKl:70,uHp68XvXh:12,variant:\"W2lucwaJ4\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:734,pixelWidth:487,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/fC2lN2vQ5uobH9fzwJG8blT4.png\",srcSet:\"https://framerusercontent.com/images/fC2lN2vQ5uobH9fzwJG8blT4.png 487w\"},className:\"framer-15z22bp\",\"data-framer-name\":\"Chaos Arrow\",layoutDependency:layoutDependency,layoutId:\"YCU5Bkqz8\",style:{rotate:33},...addPropertyOverrides({ajuY3LEqm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:734,pixelWidth:487,positionX:\"center\",positionY:\"center\",sizes:\"153px\",src:\"https://framerusercontent.com/images/fC2lN2vQ5uobH9fzwJG8blT4.png\",srcSet:\"https://framerusercontent.com/images/fC2lN2vQ5uobH9fzwJG8blT4.png 487w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:777,pixelWidth:526,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png\",srcSet:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png 526w\"},className:\"framer-7z2xz\",\"data-framer-appear-id\":\"7z2xz\",\"data-framer-name\":\"Calm Arrow\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"H8J97AEFL\",optimized:true,style:{rotate:-50},...addPropertyOverrides({eQwXAlFWv:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:777,pixelWidth:526,positionX:\"center\",positionY:\"center\",sizes:\"153px\",src:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png\",srcSet:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png 526w\"}},FvjEDPZi2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:777,pixelWidth:526,positionX:\"center\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png\",srcSet:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png 526w\"}},m2bdtDOhF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:960,pixelHeight:777,pixelWidth:526,positionX:\"center\",positionY:\"center\",sizes:\"240px\",src:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png\",srcSet:\"https://framerusercontent.com/images/QLquFrY6AdbuCD1uAKaA6Nu0NHk.png 526w\"}}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"up\",target:animation3},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-kzn672\",\"data-framer-name\":\"Memojis 1\",layoutDependency:layoutDependency,layoutId:\"eUFBXPiWu\",style:{rotate:-14},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png\",srcSet:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png 590w\"},className:\"framer-10kg0b0\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"xrbXiFB3c\",style:{rotate:3}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png\",srcSet:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png?scale-down-to=512 512w,https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png 590w\"},className:\"framer-1qagull\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"NmhlbGfzd\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1rr8oo3\",\"data-framer-appear-id\":\"1rr8oo3\",\"data-framer-name\":\"Memojis 2\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"cibQrxqoZ\",optimized:true,style:{rotate:-14},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png\",srcSet:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png 590w\"},className:\"framer-1vuurmd\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"d0OmQ4lmT\",style:{rotate:27},...addPropertyOverrides({eQwXAlFWv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png\",srcSet:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png 590w\"}},FvjEDPZi2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png\",srcSet:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png 590w\"}},m2bdtDOhF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png\",srcSet:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png 590w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png\",srcSet:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png?scale-down-to=512 512w,https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png 590w\"},className:\"framer-1ymjavh\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"UcpDUfBr_\",...addPropertyOverrides({eQwXAlFWv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png\",srcSet:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png 590w\"}},FvjEDPZi2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png\",srcSet:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png 590w\"}},m2bdtDOhF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png\",srcSet:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png 590w\"}}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w0hsx2-container\",layoutDependency:layoutDependency,layoutId:\"rymChP3mY-container\",style:{rotate:-13},variants:{m2bdtDOhF:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"rymChP3mY\",layoutId:\"rymChP3mY\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"pa5H207x5\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4h4nx4-container\",layoutDependency:layoutDependency,layoutId:\"nme1MrmqB-container\",style:{rotate:-6},transformTemplate:transformTemplate1,variants:{m2bdtDOhF:{rotate:0}},...addPropertyOverrides({m2bdtDOhF:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"nme1MrmqB\",layoutId:\"nme1MrmqB\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"oJIIjqq5T\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r7aekl-container\",layoutDependency:layoutDependency,layoutId:\"JUKe1SR2n-container\",style:{rotate:-8},variants:{m2bdtDOhF:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:42,dwL8RAz8W:30,height:\"100%\",id:\"JUKe1SR2n\",layoutId:\"JUKe1SR2n\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"aDPRAX1OE\",width:\"100%\",...addPropertyOverrides({m2bdtDOhF:{CjJmCbPWK:26}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-115geww-container\",layoutDependency:layoutDependency,layoutId:\"Z11avGuvy-container\",style:{rotate:18},variants:{m2bdtDOhF:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"Z11avGuvy\",layoutId:\"Z11avGuvy\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"Qop9Kmzp_\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ol6iy-container\",layoutDependency:layoutDependency,layoutId:\"ldcRLRO7m-container\",style:{rotate:7},variants:{m2bdtDOhF:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"ldcRLRO7m\",layoutId:\"ldcRLRO7m\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"P7Ovz5azV\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6z423d-container\",layoutDependency:layoutDependency,layoutId:\"IXw1bWGor-container\",style:{rotate:9},variants:{m2bdtDOhF:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"IXw1bWGor\",layoutId:\"IXw1bWGor\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"bI0fr79aC\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12fq0hq\",\"data-framer-name\":\"Tablet Stack\",layoutDependency:layoutDependency,layoutId:\"x0XX0PCsq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ty29lk-container\",layoutDependency:layoutDependency,layoutId:\"fM_MXR9BL-container\",style:{rotate:-13},variants:{eQwXAlFWv:{rotate:0},FvjEDPZi2:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"fM_MXR9BL\",layoutId:\"fM_MXR9BL\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"pa5H207x5\",width:\"100%\",...addPropertyOverrides({ajuY3LEqm:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},eQwXAlFWv:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},FvjEDPZi2:{CjJmCbPWK:16},w3D8hKPDp:{CjJmCbPWK:16}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gvc365-container\",layoutDependency:layoutDependency,layoutId:\"YwPFUniQK-container\",style:{rotate:9},variants:{ajuY3LEqm:{rotate:29},eQwXAlFWv:{rotate:0},FvjEDPZi2:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"YwPFUniQK\",layoutId:\"YwPFUniQK\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"bI0fr79aC\",width:\"100%\",...addPropertyOverrides({ajuY3LEqm:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},eQwXAlFWv:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},FvjEDPZi2:{CjJmCbPWK:16},w3D8hKPDp:{CjJmCbPWK:16}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v0d8vt-container\",layoutDependency:layoutDependency,layoutId:\"mW1zjsAWB-container\",style:{rotate:-6},variants:{eQwXAlFWv:{rotate:0},FvjEDPZi2:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"mW1zjsAWB\",layoutId:\"mW1zjsAWB\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"oJIIjqq5T\",width:\"100%\",...addPropertyOverrides({ajuY3LEqm:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},eQwXAlFWv:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},FvjEDPZi2:{CjJmCbPWK:16},w3D8hKPDp:{CjJmCbPWK:16}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8m1gcv-container\",layoutDependency:layoutDependency,layoutId:\"B78PGeQxO-container\",style:{rotate:-8},variants:{ajuY3LEqm:{rotate:-18},eQwXAlFWv:{rotate:0},FvjEDPZi2:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:42,dwL8RAz8W:30,height:\"100%\",id:\"B78PGeQxO\",layoutId:\"B78PGeQxO\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"aDPRAX1OE\",width:\"100%\",...addPropertyOverrides({ajuY3LEqm:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},eQwXAlFWv:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},FvjEDPZi2:{CjJmCbPWK:16},w3D8hKPDp:{CjJmCbPWK:16}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d32uzs-container\",layoutDependency:layoutDependency,layoutId:\"pqPv6EeCY-container\",style:{rotate:18},variants:{eQwXAlFWv:{rotate:0},FvjEDPZi2:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"pqPv6EeCY\",layoutId:\"pqPv6EeCY\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"Qop9Kmzp_\",width:\"100%\",...addPropertyOverrides({ajuY3LEqm:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},eQwXAlFWv:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},FvjEDPZi2:{CjJmCbPWK:16},w3D8hKPDp:{CjJmCbPWK:16}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rpr39x-container\",layoutDependency:layoutDependency,layoutId:\"ZxV6YpAs_-container\",style:{rotate:7},variants:{ajuY3LEqm:{rotate:-13},eQwXAlFWv:{rotate:0},FvjEDPZi2:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:26,dwL8RAz8W:30,height:\"100%\",id:\"ZxV6YpAs_\",layoutId:\"ZxV6YpAs_\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"P7Ovz5azV\",width:\"100%\",...addPropertyOverrides({ajuY3LEqm:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},eQwXAlFWv:{CjJmCbPWK:16,QjVULbma1:\"8px\",tNVx49PLn:\"8px\"},FvjEDPZi2:{CjJmCbPWK:16},w3D8hKPDp:{CjJmCbPWK:16}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-akcaj.framer-7e5xdl, .framer-akcaj .framer-7e5xdl { display: block; }\",\".framer-akcaj.framer-pgfvfs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 112px 0px 112px 0px; position: relative; width: 1280px; }\",\".framer-akcaj .framer-16s230p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-akcaj .framer-1t27let, .framer-akcaj .framer-11h0sks { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-akcaj .framer-3pifwi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-akcaj .framer-so3tgy { aspect-ratio: 15.848101265822784 / 1; bottom: -3px; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 0px; overflow: visible; position: absolute; right: 1px; z-index: 1; }\",\".framer-akcaj .framer-z1e8vj { flex: none; height: 326px; overflow: visible; position: relative; width: 724px; }\",\".framer-akcaj .framer-zklg3k-container { bottom: 0px; flex: none; left: 0px; max-width: 724px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-akcaj .framer-15z22bp { aspect-ratio: 1.7777777777777777 / 1; bottom: 38px; flex: none; height: var(--framer-aspect-ratio-supported, 134px); left: -93px; overflow: visible; position: absolute; width: 238px; z-index: 4; }\",\".framer-akcaj .framer-7z2xz { aspect-ratio: 1.7777777777777777 / 1; bottom: 28px; flex: none; height: var(--framer-aspect-ratio-supported, 135px); overflow: visible; position: absolute; right: 7px; width: 240px; z-index: 4; }\",\".framer-akcaj .framer-kzn672, .framer-akcaj .framer-1rr8oo3 { bottom: 38px; flex: none; height: 84px; left: calc(51.40625000000002% - 159px / 2); overflow: hidden; position: absolute; width: 159px; z-index: 2; }\",\".framer-akcaj .framer-10kg0b0 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 84px); }\",\".framer-akcaj .framer-1qagull { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 84px); }\",\".framer-akcaj .framer-1vuurmd { aspect-ratio: 1 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 86px); }\",\".framer-akcaj .framer-1ymjavh { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 86px); }\",\".framer-akcaj .framer-1w0hsx2-container { flex: none; height: auto; left: -15px; position: absolute; top: 75px; width: auto; z-index: 1; }\",\".framer-akcaj .framer-4h4nx4-container { flex: none; height: auto; left: 111px; position: absolute; top: 45%; width: auto; z-index: 1; }\",\".framer-akcaj .framer-r7aekl-container { flex: none; height: auto; position: absolute; right: 101px; top: 185px; width: auto; z-index: 1; }\",\".framer-akcaj .framer-115geww-container { bottom: 148px; flex: none; height: auto; position: absolute; right: -15px; width: auto; z-index: 1; }\",\".framer-akcaj .framer-1ol6iy-container { flex: none; height: auto; position: absolute; right: -30px; top: 52px; width: auto; z-index: 1; }\",\".framer-akcaj .framer-6z423d-container { bottom: 36px; flex: none; height: auto; left: 53px; position: absolute; width: auto; z-index: 1; }\",\".framer-akcaj .framer-12fq0hq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-akcaj .framer-1ty29lk-container, .framer-akcaj .framer-1gvc365-container, .framer-akcaj .framer-v0d8vt-container, .framer-akcaj .framer-8m1gcv-container, .framer-akcaj .framer-1d32uzs-container, .framer-akcaj .framer-1rpr39x-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-akcaj.framer-pgfvfs, .framer-akcaj .framer-16s230p, .framer-akcaj .framer-3pifwi, .framer-akcaj .framer-12fq0hq { gap: 0px; } .framer-akcaj.framer-pgfvfs > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-akcaj.framer-pgfvfs > :first-child { margin-top: 0px; } .framer-akcaj.framer-pgfvfs > :last-child { margin-bottom: 0px; } .framer-akcaj .framer-16s230p > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-akcaj .framer-16s230p > :first-child, .framer-akcaj .framer-3pifwi > :first-child, .framer-akcaj .framer-12fq0hq > :first-child { margin-left: 0px; } .framer-akcaj .framer-16s230p > :last-child, .framer-akcaj .framer-3pifwi > :last-child, .framer-akcaj .framer-12fq0hq > :last-child { margin-right: 0px; } .framer-akcaj .framer-3pifwi > *, .framer-akcaj .framer-12fq0hq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-akcaj.framer-v-n9hck1 .framer-1vuurmd, .framer-akcaj.framer-v-n9hck1 .framer-1ymjavh, .framer-akcaj.framer-v-1l0w81v .framer-1vuurmd, .framer-akcaj.framer-v-1l0w81v .framer-1ymjavh, .framer-akcaj.framer-v-6or8ub .framer-1vuurmd, .framer-akcaj.framer-v-6or8ub .framer-1ymjavh { width: var(--framer-aspect-ratio-supported, 84px); }\",\".framer-akcaj.framer-v-n9hck1 .framer-1w0hsx2-container { bottom: 26px; left: 411px; top: unset; }\",\".framer-akcaj.framer-v-n9hck1 .framer-4h4nx4-container { bottom: 27px; left: 180px; top: unset; }\",\".framer-akcaj.framer-v-n9hck1 .framer-r7aekl-container { bottom: 26px; right: -65px; top: unset; }\",\".framer-akcaj.framer-v-n9hck1 .framer-115geww-container { bottom: 26px; right: 104px; }\",\".framer-akcaj.framer-v-n9hck1 .framer-1ol6iy-container { bottom: 26px; right: 342px; top: unset; }\",\".framer-akcaj.framer-v-n9hck1 .framer-6z423d-container { bottom: 26px; left: -26px; }\",\".framer-akcaj.framer-v-1k3mys5.framer-pgfvfs { padding: 96px 0px 112px 0px; width: 890px; }\",\".framer-akcaj.framer-v-1k3mys5 .framer-z1e8vj { width: 616px; }\",\".framer-akcaj.framer-v-1k3mys5 .framer-zklg3k-container { bottom: unset; height: 326px; left: unset; width: 616px; }\",\".framer-akcaj.framer-v-1k3mys5 .framer-15z22bp { bottom: 58px; left: -83px; }\",\".framer-akcaj.framer-v-1k3mys5 .framer-kzn672 { bottom: 178px; left: calc(51.348314606741596% - 159px / 2); }\",\".framer-akcaj.framer-v-1l0w81v.framer-pgfvfs { gap: 42px; padding: 96px 0px 96px 0px; width: 890px; }\",\".framer-akcaj.framer-v-1l0w81v .framer-zklg3k-container { bottom: unset; height: 326px; left: 83px; }\",\".framer-akcaj.framer-v-1l0w81v .framer-7z2xz { bottom: 38px; right: 27px; }\",\".framer-akcaj.framer-v-1l0w81v .framer-1rr8oo3 { bottom: 178px; left: calc(49.88764044943822% - 159px / 2); }\",\".framer-akcaj.framer-v-1l0w81v .framer-12fq0hq { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-akcaj.framer-v-1l0w81v.framer-pgfvfs, .framer-akcaj.framer-v-1l0w81v .framer-12fq0hq { gap: 0px; } .framer-akcaj.framer-v-1l0w81v.framer-pgfvfs > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-akcaj.framer-v-1l0w81v.framer-pgfvfs > :first-child { margin-top: 0px; } .framer-akcaj.framer-v-1l0w81v.framer-pgfvfs > :last-child { margin-bottom: 0px; } .framer-akcaj.framer-v-1l0w81v .framer-12fq0hq > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-akcaj.framer-v-1l0w81v .framer-12fq0hq > :first-child { margin-left: 0px; } .framer-akcaj.framer-v-1l0w81v .framer-12fq0hq > :last-child { margin-right: 0px; } }\",\".framer-akcaj.framer-v-1u66qiv.framer-pgfvfs, .framer-akcaj.framer-v-6or8ub.framer-pgfvfs { padding: 96px 24px 142px 24px; width: 480px; }\",\".framer-akcaj.framer-v-1u66qiv .framer-z1e8vj { width: 370px; }\",\".framer-akcaj.framer-v-1u66qiv .framer-zklg3k-container, .framer-akcaj.framer-v-6or8ub .framer-zklg3k-container { bottom: unset; height: 299px; left: 5px; right: 5px; }\",\".framer-akcaj.framer-v-1u66qiv .framer-15z22bp { aspect-ratio: unset; bottom: 77px; height: 86px; left: -37px; width: 153px; }\",\".framer-akcaj.framer-v-1u66qiv .framer-kzn672 { bottom: 28px; left: calc(51.250000000000014% - 159px / 2); }\",\".framer-akcaj.framer-v-6or8ub .framer-16s230p { order: 0; }\",\".framer-akcaj.framer-v-6or8ub .framer-z1e8vj { order: 1; width: 370px; }\",\".framer-akcaj.framer-v-6or8ub .framer-7z2xz { bottom: -3px; height: var(--framer-aspect-ratio-supported, 86px); right: -23px; width: 153px; }\",\".framer-akcaj.framer-v-6or8ub .framer-1rr8oo3 { order: 4; }\",\".framer-akcaj.framer-v-6or8ub .framer-12fq0hq { order: 11; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 601\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"m2bdtDOhF\":{\"layout\":[\"fixed\",\"auto\"]},\"w3D8hKPDp\":{\"layout\":[\"fixed\",\"auto\"]},\"FvjEDPZi2\":{\"layout\":[\"fixed\",\"auto\"]},\"ajuY3LEqm\":{\"layout\":[\"fixed\",\"auto\"]},\"eQwXAlFWv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercmmoACdV3=withCSS(Component,css,\"framer-akcaj\");export default FramercmmoACdV3;FramercmmoACdV3.displayName=\"Sales Hero Stack\";FramercmmoACdV3.defaultProps={height:601,width:1280};addPropertyControls(FramercmmoACdV3,{variant:{options:[\"oB4HDStz6\",\"m2bdtDOhF\",\"w3D8hKPDp\",\"FvjEDPZi2\",\"ajuY3LEqm\",\"eQwXAlFWv\"],optionTitles:[\"Desktop\",\"Calm\",\"Tablet Chaos\",\"Tablet Calm\",\"Mobile Chaos\",\"Mobile Calm\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercmmoACdV3,[{explicitInter:true,fonts:[{family:\"Komika Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/JKYOb6fAyPWmxFRtqTbQrOReCI.woff2\"}]},...HeaderStrokeFonts,...TopicFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercmmoACdV3\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"601\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m2bdtDOhF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w3D8hKPDp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FvjEDPZi2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ajuY3LEqm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eQwXAlFWv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Topic from\"https://framerusercontent.com/modules/mND34kxpBXdGDetewvvt/r8PQRoP9L7Jc9Fqv8uHj/iUg1G4Hr_.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithFX=withFX(motion.div);const TopicFonts=getFonts(Topic);const cycleOrder=[\"DJg1oPF1x\",\"phoghBlJL\"];const serializationHash=\"framer-Z1jsK\";const variantClassNames={DJg1oPF1x:\"framer-v-1bw0nql\",phoghBlJL:\"framer-v-15l0tj4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:-14,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:-180,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Calm:\"phoghBlJL\",Chaos:\"DJg1oPF1x\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"DJg1oPF1x\"};};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:\"DJg1oPF1x\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"phoghBlJL\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"phoghBlJL\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bw0nql\",className,classNames),\"data-framer-name\":\"Chaos\",layoutDependency:layoutDependency,layoutId:\"DJg1oPF1x\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({phoghBlJL:{\"data-framer-name\":\"Calm\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-48g7qq\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpB\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a0fh03\",layoutDependency:layoutDependency,layoutId:\"pbYY5ymrU\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-yys45h\",\"data-framer-appear-id\":\"yys45h\",\"data-framer-name\":\"Memojis 2\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBcibQrxqoZ\",optimized:true,style:{rotate:-14},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png\",srcSet:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png 590w\"},className:\"framer-u9ogl4\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBd0OmQ4lmT\",style:{rotate:27},...addPropertyOverrides({phoghBlJL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png\",srcSet:\"https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/YExNaHr0yBsmpZMYFaPB7GwFrE.png 590w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png\",srcSet:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png?scale-down-to=512 512w,https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png 590w\"},className:\"framer-pmhiom\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBUcpDUfBr_\",...addPropertyOverrides({phoghBlJL:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png\",srcSet:\"https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bIDDgouxIA21HKeXZRKVxaQ3twA.png 590w\"}}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"up\",target:animation1},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1q0xcbv\",\"data-framer-name\":\"Memojis 1\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBeUFBXPiWu\",style:{rotate:-14},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png\",srcSet:\"https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6dAPVvbzjUBskHPNfNJ59oURA.png 590w\"},className:\"framer-13crnbg\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBxrbXiFB3c\",style:{rotate:3}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:590,intrinsicWidth:590,pixelHeight:590,pixelWidth:590,sizes:\"86px\",src:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png\",srcSet:\"https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png?scale-down-to=512 512w,https://framerusercontent.com/images/2yZoVqR6fgjzQkexvHvbHKjG00.png 590w\"},className:\"framer-p86nk8\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBNmhlbGfzd\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wzry4k\",\"data-framer-name\":\"Tablet Stack\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBx0XX0PCsq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ffzyh-container\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBfM_MXR9BL-container\",style:{rotate:-13},variants:{phoghBlJL:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:16,dwL8RAz8W:30,height:\"100%\",id:\"UNAQTHVpBfM_MXR9BL\",layoutId:\"UNAQTHVpBfM_MXR9BL\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"pa5H207x5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wy6eas-container\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBYwPFUniQK-container\",style:{rotate:9},variants:{phoghBlJL:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:16,dwL8RAz8W:30,height:\"100%\",id:\"UNAQTHVpBYwPFUniQK\",layoutId:\"UNAQTHVpBYwPFUniQK\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"bI0fr79aC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13vatbb-container\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBmW1zjsAWB-container\",style:{rotate:-6},variants:{phoghBlJL:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:16,dwL8RAz8W:30,height:\"100%\",id:\"UNAQTHVpBmW1zjsAWB\",layoutId:\"UNAQTHVpBmW1zjsAWB\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"oJIIjqq5T\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aynj1q-container\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBB78PGeQxO-container\",style:{rotate:-8},variants:{phoghBlJL:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:16,dwL8RAz8W:30,height:\"100%\",id:\"UNAQTHVpBB78PGeQxO\",layoutId:\"UNAQTHVpBB78PGeQxO\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"aDPRAX1OE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a2drg9-container\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBpqPv6EeCY-container\",style:{rotate:18},variants:{phoghBlJL:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:16,dwL8RAz8W:30,height:\"100%\",id:\"UNAQTHVpBpqPv6EeCY\",layoutId:\"UNAQTHVpBpqPv6EeCY\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"Qop9Kmzp_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-184ty3p-container\",layoutDependency:layoutDependency,layoutId:\"UNAQTHVpBZxV6YpAs_-container\",style:{rotate:7},variants:{phoghBlJL:{rotate:0}},children:/*#__PURE__*/_jsx(Topic,{CjJmCbPWK:16,dwL8RAz8W:30,height:\"100%\",id:\"UNAQTHVpBZxV6YpAs_\",layoutId:\"UNAQTHVpBZxV6YpAs_\",QjVULbma1:\"12px\",tNVx49PLn:\"12px 24px 12px 24px\",variant:\"P7Ovz5azV\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z1jsK.framer-1siw4ca, .framer-Z1jsK .framer-1siw4ca { display: block; }\",\".framer-Z1jsK.framer-1bw0nql { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-Z1jsK .framer-48g7qq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 890px; }\",\".framer-Z1jsK .framer-a0fh03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 164px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Z1jsK .framer-yys45h, .framer-Z1jsK .framer-1q0xcbv { flex: none; height: 84px; left: calc(50.00000000000002% - 159px / 2); overflow: hidden; position: absolute; top: calc(36.58536585365856% - 84px / 2); width: 159px; z-index: 2; }\",\".framer-Z1jsK .framer-u9ogl4 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 86px); }\",\".framer-Z1jsK .framer-pmhiom { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 86px); }\",\".framer-Z1jsK .framer-13crnbg { aspect-ratio: 1 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 84px); }\",\".framer-Z1jsK .framer-p86nk8 { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 84px); }\",\".framer-Z1jsK .framer-1wzry4k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Z1jsK .framer-15ffzyh-container, .framer-Z1jsK .framer-1wy6eas-container, .framer-Z1jsK .framer-13vatbb-container, .framer-Z1jsK .framer-aynj1q-container, .framer-Z1jsK .framer-a2drg9-container, .framer-Z1jsK .framer-184ty3p-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z1jsK.framer-1bw0nql, .framer-Z1jsK .framer-48g7qq, .framer-Z1jsK .framer-a0fh03, .framer-Z1jsK .framer-1wzry4k { gap: 0px; } .framer-Z1jsK.framer-1bw0nql > *, .framer-Z1jsK .framer-a0fh03 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Z1jsK.framer-1bw0nql > :first-child, .framer-Z1jsK .framer-48g7qq > :first-child, .framer-Z1jsK .framer-a0fh03 > :first-child { margin-top: 0px; } .framer-Z1jsK.framer-1bw0nql > :last-child, .framer-Z1jsK .framer-48g7qq > :last-child, .framer-Z1jsK .framer-a0fh03 > :last-child { margin-bottom: 0px; } .framer-Z1jsK .framer-48g7qq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Z1jsK .framer-1wzry4k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Z1jsK .framer-1wzry4k > :first-child { margin-left: 0px; } .framer-Z1jsK .framer-1wzry4k > :last-child { margin-right: 0px; } }\",\".framer-Z1jsK.framer-v-15l0tj4 .framer-u9ogl4, .framer-Z1jsK.framer-v-15l0tj4 .framer-pmhiom { width: var(--framer-aspect-ratio-supported, 84px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 243\n * @framerIntrinsicWidth 890\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"phoghBlJL\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJV0O8OfUg=withCSS(Component,css,\"framer-Z1jsK\");export default FramerJV0O8OfUg;FramerJV0O8OfUg.displayName=\"Tablet Hero Sales page\";FramerJV0O8OfUg.defaultProps={height:243,width:890};addPropertyControls(FramerJV0O8OfUg,{variant:{options:[\"DJg1oPF1x\",\"phoghBlJL\"],optionTitles:[\"Chaos\",\"Calm\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJV0O8OfUg,[{explicitInter:true,fonts:[]},...TopicFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJV0O8OfUg\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"890\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"243\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"phoghBlJL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JV0O8OfUg.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export function CountdownTimerVisualComponent({deadline,numberFontSize,numberFontFamily,numberColor,numberLetterSpacing,labelFontSize,labelFontFamily,labelColor,labelLetterSpacing}){const[timeLeft,setTimeLeft]=useState(calculateTimeLeft(deadline));useEffect(()=>{const timer=setInterval(()=>{setTimeLeft(calculateTimeLeft(deadline));},1e3);return()=>clearInterval(timer);},[deadline]);return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-around\"},children:[renderTimeBlock(\"Days\",timeLeft.days,numberFontSize,numberFontFamily,numberColor,numberLetterSpacing,labelFontSize,labelFontFamily,labelColor,labelLetterSpacing),renderTimeBlock(\"Hours\",timeLeft.hours,numberFontSize,numberFontFamily,numberColor,numberLetterSpacing,labelFontSize,labelFontFamily,labelColor,labelLetterSpacing),renderTimeBlock(\"Minutes\",timeLeft.minutes,numberFontSize,numberFontFamily,numberColor,numberLetterSpacing,labelFontSize,labelFontFamily,labelColor,labelLetterSpacing),renderTimeBlock(\"Seconds\",timeLeft.seconds,numberFontSize,numberFontFamily,numberColor,numberLetterSpacing,labelFontSize,labelFontFamily,labelColor,labelLetterSpacing)]});}function calculateTimeLeft(deadline){const difference=new Date(deadline)-new Date;let timeLeft={};if(difference>0){timeLeft={days:Math.floor(difference/(1e3*60*60*24)),hours:Math.floor(difference/(1e3*60*60)%24),minutes:Math.floor(difference/1e3/60%60),seconds:Math.floor(difference/1e3%60)};}else{timeLeft={days:0,hours:0,minutes:0,seconds:0};}return timeLeft;}function renderTimeBlock(label,value,numberFontSize,numberFontFamily,numberColor,numberLetterSpacing,labelFontSize,labelFontFamily,labelColor,labelLetterSpacing){return /*#__PURE__*/_jsxs(\"div\",{style:{textAlign:\"center\",margin:\"0 10px\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${numberFontSize}px`,fontFamily:numberFontFamily,color:numberColor,letterSpacing:`${numberLetterSpacing}px`},children:value}),/*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${labelFontSize}px`,fontFamily:labelFontFamily,color:labelColor,letterSpacing:`${labelLetterSpacing}px`},children:label})]});}// Add property controls for the component\naddPropertyControls(CountdownTimerVisualComponent,{deadline:{type:ControlType.String,title:\"Deadline\",defaultValue:\"2024-12-31T23:59:59\"},numberFontSize:{type:ControlType.Number,title:\"Number Font Size\",defaultValue:48,min:10,max:200,unit:\"px\"},numberFontFamily:{type:ControlType.String,title:\"Number Font Family\",defaultValue:\"Arial, sans-serif\"},numberColor:{type:ControlType.Color,title:\"Number Color\",defaultValue:\"#000000\"},numberLetterSpacing:{type:ControlType.Number,title:\"Number Letter Spacing\",defaultValue:0,min:-5,max:20,unit:\"px\"},labelFontSize:{type:ControlType.Number,title:\"Label Font Size\",defaultValue:18,min:10,max:100,unit:\"px\"},labelFontFamily:{type:ControlType.String,title:\"Label Font Family\",defaultValue:\"Arial, sans-serif\"},labelColor:{type:ControlType.Color,title:\"Label Color\",defaultValue:\"#000000\"},labelLetterSpacing:{type:ControlType.Number,title:\"Label Letter Spacing\",defaultValue:0,min:-5,max:20,unit:\"px\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"CountdownTimerVisualComponent\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimerVisualComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CountdownTimerVisualComponent.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export function CountdownTimerComponent({deadline,fontSize,color,fontFamily,letterSpacing}){const[timeLeft,setTimeLeft]=useState(calculateTimeLeft(deadline));useEffect(()=>{const timer=setInterval(()=>{setTimeLeft(calculateTimeLeft(deadline));},1e3);return()=>clearInterval(timer);},[deadline]);return /*#__PURE__*/_jsx(\"div\",{style:{fontSize:`${fontSize}px`,color:color,fontFamily:fontFamily,letterSpacing:`${letterSpacing}px`,textAlign:\"center\"},children:formatTimeLeft(timeLeft)});}function calculateTimeLeft(deadline){const difference=new Date(deadline)-new Date;let timeLeft={};if(difference>0){timeLeft={days:Math.floor(difference/(1e3*60*60*24)),hours:Math.floor(difference/(1e3*60*60)%24),minutes:Math.floor(difference/1e3/60%60),seconds:Math.floor(difference/1e3%60)};}else{timeLeft={days:0,hours:0,minutes:0,seconds:0};}return timeLeft;}function formatTimeLeft(timeLeft){return`${timeLeft.days} days, ${timeLeft.hours} hours, ${timeLeft.minutes} minutes, ${timeLeft.seconds} seconds`;}// Add property controls for the component\naddPropertyControls(CountdownTimerComponent,{deadline:{type:ControlType.String,title:\"Deadline\",defaultValue:\"2024-12-31T23:59:59\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:24,min:10,max:100,unit:\"px\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Arial, sans-serif\"},letterSpacing:{type:ControlType.Number,title:\"Letter Spacing\",defaultValue:0,min:-5,max:20,unit:\"px\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"CountdownTimerComponent\":{\"type\":\"reactComponent\",\"name\":\"CountdownTimerComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CountdownToDate.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const cycleOrder=[\"vvbFromEK\",\"bBUHJzhaX\",\"G3P1E99gN\",\"aBYs1ofBw\",\"t8j94ZLXm\",\"RwGnsVQTY\",\"VRpAGN7Jk\",\"fq22EecR9\",\"yYErBR98d\",\"Jk89nmM3s\",\"a0d14bpFD\",\"Cb8kvKGxK\"];const serializationHash=\"framer-5lnbH\";const variantClassNames={a0d14bpFD:\"framer-v-10omsv\",aBYs1ofBw:\"framer-v-1s0pmxa\",bBUHJzhaX:\"framer-v-1eu08g4\",Cb8kvKGxK:\"framer-v-zs2r2p\",fq22EecR9:\"framer-v-16l5w7r\",G3P1E99gN:\"framer-v-10onzaf\",Jk89nmM3s:\"framer-v-19gso48\",RwGnsVQTY:\"framer-v-awk6fc\",t8j94ZLXm:\"framer-v-ct36ln\",VRpAGN7Jk:\"framer-v-y45fym\",vvbFromEK:\"framer-v-pj2n9y\",yYErBR98d:\"framer-v-e6x0bx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};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={\"Button Hover\":\"G3P1E99gN\",\"Button Only\":\"bBUHJzhaX\",\"Link 1 Selected\":\"vvbFromEK\",\"Link 2 Selected\":\"aBYs1ofBw\",\"Link 3 Selected\":\"t8j94ZLXm\",\"Link 4 Selected\":\"RwGnsVQTY\",\"Link 5 Selected\":\"VRpAGN7Jk\",\"Mobile Cohort\":\"Jk89nmM3s\",\"Mobile FAQ\":\"Cb8kvKGxK\",\"Mobile Features\":\"yYErBR98d\",\"Mobile Pricing\":\"a0d14bpFD\",\"Mobile Primary\":\"fq22EecR9\"};const getProps=({background,buttonVisible,height,id,joinLink,link1LinkAbout,link1Text,link2LinkFeatures,link2Text,link3LinkCalmLaunch,link3Text,link4LinkPricing,link4Text,link5LinkFAQ,link5Text,width,...props})=>{return{...props,AedreaeIZ:link3Text??props.AedreaeIZ??\"Calm Launch\",AqYv1NYei:buttonVisible??props.AqYv1NYei??true,EZmJ2jDqC:link2LinkFeatures??props.EZmJ2jDqC,jAJDjwqND:link5Text??props.jAJDjwqND??\"FAQ\",KRkWsVTdL:link1Text??props.KRkWsVTdL??\"About\",NoFFflO75:joinLink??props.NoFFflO75,PVu2cao1Z:link3LinkCalmLaunch??props.PVu2cao1Z,qZ2vv4spe:link1LinkAbout??props.qZ2vv4spe,ss9abqXcJ:link4LinkPricing??props.ss9abqXcJ,ulG84eovZ:background??props.ulG84eovZ??\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vvbFromEK\",vDHPiHdq2:link4Text??props.vDHPiHdq2??\"Pricing\",wyzXJ2_2o:link5LinkFAQ??props.wyzXJ2_2o,xArkoNnjL:link2Text??props.xArkoNnjL??\"Features\"};};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,KRkWsVTdL,qZ2vv4spe,xArkoNnjL,EZmJ2jDqC,AedreaeIZ,PVu2cao1Z,vDHPiHdq2,ss9abqXcJ,jAJDjwqND,wyzXJ2_2o,NoFFflO75,ulG84eovZ,AqYv1NYei,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vvbFromEK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1yhzqak=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"G3P1E99gN\");});const onMouseLeave1i221pu=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"bBUHJzhaX\");});const onTap1jnipgm=activeVariantCallback(async(...args)=>{setVariant(\"fq22EecR9\");});const onTap1nd0sow=activeVariantCallback(async(...args)=>{setVariant(\"aBYs1ofBw\");});const onTap1gl7ifx=activeVariantCallback(async(...args)=>{setVariant(\"yYErBR98d\");});const onTap1opnfa8=activeVariantCallback(async(...args)=>{setVariant(\"t8j94ZLXm\");});const onTap1bvm9dk=activeVariantCallback(async(...args)=>{setVariant(\"Jk89nmM3s\");});const onTap1ne7jm5=activeVariantCallback(async(...args)=>{setVariant(\"RwGnsVQTY\");});const onTap3knjge=activeVariantCallback(async(...args)=>{setVariant(\"a0d14bpFD\");});const onTap1fdxbnc=activeVariantCallback(async(...args)=>{setVariant(\"VRpAGN7Jk\");});const onTapm5hby0=activeVariantCallback(async(...args)=>{setVariant(\"Cb8kvKGxK\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"bBUHJzhaX\",\"G3P1E99gN\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"aBYs1ofBw\",\"t8j94ZLXm\",\"RwGnsVQTY\",\"VRpAGN7Jk\",\"yYErBR98d\",\"Jk89nmM3s\",\"a0d14bpFD\",\"Cb8kvKGxK\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"aBYs1ofBw\",\"yYErBR98d\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"t8j94ZLXm\",\"Jk89nmM3s\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"RwGnsVQTY\",\"a0d14bpFD\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"VRpAGN7Jk\",\"Cb8kvKGxK\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"bBUHJzhaX\",\"G3P1E99gN\"].includes(baseVariant))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-pj2n9y\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Link 1 Selected\",layoutDependency:layoutDependency,layoutId:\"vvbFromEK\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(192, 191, 255)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"8px 10px 15px 0px rgba(0, 0, 0, 0.15)\",...style},variants:{a0d14bpFD:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},bBUHJzhaX:{backgroundColor:\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\"},Cb8kvKGxK:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},fq22EecR9:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},G3P1E99gN:{backgroundColor:\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\"},Jk89nmM3s:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},yYErBR98d:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"}},...addPropertyOverrides({a0d14bpFD:{\"data-framer-name\":\"Mobile Pricing\"},aBYs1ofBw:{\"data-framer-name\":\"Link 2 Selected\"},bBUHJzhaX:{\"data-framer-name\":\"Button Only\",\"data-highlight\":true,onMouseEnter:onMouseEnter1yhzqak},Cb8kvKGxK:{\"data-framer-name\":\"Mobile FAQ\"},fq22EecR9:{\"data-framer-name\":\"Mobile Primary\"},G3P1E99gN:{\"data-framer-name\":\"Button Hover\",\"data-highlight\":true,onMouseLeave:onMouseLeave1i221pu},Jk89nmM3s:{\"data-framer-name\":\"Mobile Cohort\"},RwGnsVQTY:{\"data-framer-name\":\"Link 4 Selected\"},t8j94ZLXm:{\"data-framer-name\":\"Link 3 Selected\"},VRpAGN7Jk:{\"data-framer-name\":\"Link 5 Selected\"},yYErBR98d:{\"data-framer-name\":\"Mobile Features\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xj6azj\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"xsAQE7Hiu\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:qZ2vv4spe,nodeId:\"Zydw35FC8\",openInNewTab:false,...addPropertyOverrides({aBYs1ofBw:{smoothScroll:true},fq22EecR9:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1928u0g framer-mnismc\",layoutDependency:layoutDependency,layoutId:\"Zydw35FC8\",...addPropertyOverrides({a0d14bpFD:{\"data-highlight\":true,onTap:onTap1jnipgm},aBYs1ofBw:{\"data-highlight\":true,onTap:undefined},Cb8kvKGxK:{\"data-highlight\":true,onTap:onTap1jnipgm},Jk89nmM3s:{\"data-highlight\":true,onTap:onTap1jnipgm},yYErBR98d:{\"data-highlight\":true,onTap:onTap1jnipgm}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jgdsfh\",layoutDependency:layoutDependency,layoutId:\"YdbZmy3K1\",style:{backgroundColor:\"rgb(192, 191, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),className:\"framer-lltd6o\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"WMYdtVSxz\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",opacity:1},text:KRkWsVTdL,variants:{a0d14bpFD:{opacity:.4},aBYs1ofBw:{opacity:.4},Cb8kvKGxK:{opacity:.4},fq22EecR9:{opacity:1},Jk89nmM3s:{opacity:.4},RwGnsVQTY:{opacity:.4},t8j94ZLXm:{opacity:.4},VRpAGN7Jk:{opacity:.4},yYErBR98d:{opacity:.4}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0d14bpFD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]},aBYs1ofBw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]},Cb8kvKGxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]},fq22EecR9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})})},Jk89nmM3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]},RwGnsVQTY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]},t8j94ZLXm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]},VRpAGN7Jk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]},yYErBR98d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"About\"})}),fonts:[\"FS;Satoshi-regular\"]}},baseVariant,gestureVariant)})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:EZmJ2jDqC,nodeId:\"O_NI4_LY7\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-18xmcpm framer-mnismc\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"O_NI4_LY7\",onTap:onTap1nd0sow,...addPropertyOverrides({a0d14bpFD:{onTap:onTap1gl7ifx},Cb8kvKGxK:{onTap:onTap1gl7ifx},fq22EecR9:{onTap:onTap1gl7ifx},Jk89nmM3s:{onTap:onTap1gl7ifx},yYErBR98d:{onTap:onTap1gl7ifx}},baseVariant,gestureVariant),children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-da75fk\",layoutDependency:layoutDependency,layoutId:\"DcsFp_V19\",style:{backgroundColor:\"rgb(192, 191, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Features\"})}),className:\"framer-ie1yfm\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"B4h0KQQhZ\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",opacity:.4},text:xArkoNnjL,variants:{aBYs1ofBw:{opacity:1},yYErBR98d:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0d14bpFD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Features\"})})},aBYs1ofBw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Features\"})}),fonts:[\"FS;Satoshi-bold\"]},Cb8kvKGxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Features\"})})},fq22EecR9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Features\"})})},Jk89nmM3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Features\"})})},yYErBR98d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Features\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:PVu2cao1Z,nodeId:\"CrQmHPlBI\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13vyjvp framer-mnismc\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CrQmHPlBI\",onTap:onTap1opnfa8,...addPropertyOverrides({a0d14bpFD:{onTap:onTap1bvm9dk},Cb8kvKGxK:{onTap:onTap1bvm9dk},fq22EecR9:{onTap:onTap1bvm9dk},Jk89nmM3s:{onTap:onTap1bvm9dk},yYErBR98d:{onTap:onTap1bvm9dk}},baseVariant,gestureVariant),children:[isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xhrri0\",layoutDependency:layoutDependency,layoutId:\"x_l1PJRFI\",style:{backgroundColor:\"rgb(192, 191, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Calm Launch\"})}),className:\"framer-wq865t\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"KlfFoHZ2K\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",opacity:.4},text:AedreaeIZ,variants:{Jk89nmM3s:{opacity:1},t8j94ZLXm:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0d14bpFD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Calm Launch\"})})},Cb8kvKGxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Calm Launch\"})})},fq22EecR9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Calm Launch\"})})},Jk89nmM3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Calm Launch\"})}),fonts:[\"FS;Satoshi-bold\"]},t8j94ZLXm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Calm Launch\"})}),fonts:[\"FS;Satoshi-bold\"]},yYErBR98d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Calm Launch\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:ss9abqXcJ,nodeId:\"PbbD1Ag7z\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-9fc4tf framer-mnismc\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PbbD1Ag7z\",onTap:onTap1ne7jm5,...addPropertyOverrides({a0d14bpFD:{onTap:onTap3knjge},Cb8kvKGxK:{onTap:onTap3knjge},fq22EecR9:{onTap:onTap3knjge},Jk89nmM3s:{onTap:onTap3knjge},yYErBR98d:{onTap:onTap3knjge}},baseVariant,gestureVariant),children:[isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16wxwze\",layoutDependency:layoutDependency,layoutId:\"BX6or8IOV\",style:{backgroundColor:\"rgb(192, 191, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Pricing\"})}),className:\"framer-1exmmcd\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"FJDRfQpG1\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",opacity:.4},text:vDHPiHdq2,variants:{a0d14bpFD:{opacity:1},RwGnsVQTY:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0d14bpFD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Pricing\"})}),fonts:[\"FS;Satoshi-bold\"]},Cb8kvKGxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Pricing\"})})},fq22EecR9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Pricing\"})})},Jk89nmM3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Pricing\"})})},RwGnsVQTY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Pricing\"})}),fonts:[\"FS;Satoshi-bold\"]},yYErBR98d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Pricing\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:wyzXJ2_2o,nodeId:\"HRZ8I_CiO\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11fnbyx framer-mnismc\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HRZ8I_CiO\",onTap:onTap1fdxbnc,...addPropertyOverrides({a0d14bpFD:{onTap:onTap3knjge},Cb8kvKGxK:{onTap:onTapm5hby0},fq22EecR9:{onTap:onTapm5hby0},Jk89nmM3s:{onTap:onTapm5hby0},yYErBR98d:{onTap:onTapm5hby0}},baseVariant,gestureVariant),children:[isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-le3gva\",layoutDependency:layoutDependency,layoutId:\"dceIeuBKi\",style:{backgroundColor:\"rgb(192, 191, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"FAQ\"})}),className:\"framer-1yol2nf\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"fTG0PCAbz\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",opacity:.4},text:jAJDjwqND,variants:{Cb8kvKGxK:{opacity:1},VRpAGN7Jk:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0d14bpFD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"FAQ\"})})},Cb8kvKGxK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"FAQ\"})}),fonts:[\"FS;Satoshi-bold\"]},fq22EecR9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"FAQ\"})})},Jk89nmM3s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"FAQ\"})})},VRpAGN7Jk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"FAQ\"})}),fonts:[\"FS;Satoshi-bold\"]},yYErBR98d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"FAQ\"})})}},baseVariant,gestureVariant)})]})}),AqYv1NYei&&/*#__PURE__*/_jsx(Link,{href:NoFFflO75,nodeId:\"BTgHavNUV\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vkhj3q framer-mnismc\",\"data-framer-name\":\"Buy\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BTgHavNUV\",onTap:onTap1ne7jm5,style:{backgroundColor:ulG84eovZ,borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60},whileHover:animation,...addPropertyOverrides({a0d14bpFD:{onTap:onTap3knjge},Cb8kvKGxK:{onTap:onTap3knjge},fq22EecR9:{onTap:onTap3knjge},Jk89nmM3s:{onTap:onTap3knjge},yYErBR98d:{onTap:onTap3knjge}},baseVariant,gestureVariant),children:[isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1417jg3\",layoutDependency:layoutDependency,layoutId:\"cFb9FfjEB\",style:{backgroundColor:\"rgb(192, 191, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"19.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join Now\"})}),className:\"framer-1jsq1ws\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"yLQFg2oOZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19rr377-container\",layoutDependency:layoutDependency,layoutId:\"NOayGrcWz-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"NOayGrcWz\",layoutId:\"NOayGrcWz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5lnbH.framer-mnismc, .framer-5lnbH .framer-mnismc { display: block; }\",\".framer-5lnbH.framer-pj2n9y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 24px; height: 43px; justify-content: flex-end; overflow: hidden; padding: 0px 5px 0px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-5lnbH .framer-xj6azj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5lnbH .framer-1928u0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-5lnbH .framer-jgdsfh, .framer-5lnbH .framer-da75fk, .framer-5lnbH .framer-xhrri0, .framer-5lnbH .framer-16wxwze, .framer-5lnbH .framer-le3gva, .framer-5lnbH .framer-1417jg3 { flex: none; height: 8px; overflow: visible; position: relative; width: 8px; }\",\".framer-5lnbH .framer-lltd6o, .framer-5lnbH .framer-ie1yfm, .framer-5lnbH .framer-wq865t, .framer-5lnbH .framer-1exmmcd, .framer-5lnbH .framer-1yol2nf, .framer-5lnbH .framer-1jsq1ws { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-5lnbH .framer-18xmcpm, .framer-5lnbH .framer-13vyjvp, .framer-5lnbH .framer-9fc4tf, .framer-5lnbH .framer-11fnbyx { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-5lnbH .framer-1vkhj3q { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 8px 4px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-5lnbH .framer-19rr377-container { flex: none; height: 26px; position: relative; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lnbH.framer-pj2n9y, .framer-5lnbH .framer-xj6azj, .framer-5lnbH .framer-1928u0g, .framer-5lnbH .framer-18xmcpm, .framer-5lnbH .framer-13vyjvp, .framer-5lnbH .framer-9fc4tf, .framer-5lnbH .framer-11fnbyx, .framer-5lnbH .framer-1vkhj3q { gap: 0px; } .framer-5lnbH.framer-pj2n9y > *, .framer-5lnbH .framer-xj6azj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5lnbH.framer-pj2n9y > :first-child, .framer-5lnbH .framer-xj6azj > :first-child, .framer-5lnbH .framer-1928u0g > :first-child, .framer-5lnbH .framer-18xmcpm > :first-child, .framer-5lnbH .framer-13vyjvp > :first-child, .framer-5lnbH .framer-9fc4tf > :first-child, .framer-5lnbH .framer-11fnbyx > :first-child, .framer-5lnbH .framer-1vkhj3q > :first-child { margin-left: 0px; } .framer-5lnbH.framer-pj2n9y > :last-child, .framer-5lnbH .framer-xj6azj > :last-child, .framer-5lnbH .framer-1928u0g > :last-child, .framer-5lnbH .framer-18xmcpm > :last-child, .framer-5lnbH .framer-13vyjvp > :last-child, .framer-5lnbH .framer-9fc4tf > :last-child, .framer-5lnbH .framer-11fnbyx > :last-child, .framer-5lnbH .framer-1vkhj3q > :last-child { margin-right: 0px; } .framer-5lnbH .framer-1928u0g > *, .framer-5lnbH .framer-18xmcpm > *, .framer-5lnbH .framer-13vyjvp > *, .framer-5lnbH .framer-9fc4tf > *, .framer-5lnbH .framer-11fnbyx > *, .framer-5lnbH .framer-1vkhj3q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-5lnbH.framer-v-10onzaf.framer-pj2n9y { padding: 0px 32px 0px 32px; }\",\".framer-5lnbH.framer-v-10onzaf .framer-1vkhj3q { gap: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lnbH.framer-v-10onzaf .framer-1vkhj3q { gap: 0px; } .framer-5lnbH.framer-v-10onzaf .framer-1vkhj3q > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-5lnbH.framer-v-10onzaf .framer-1vkhj3q > :first-child { margin-left: 0px; } .framer-5lnbH.framer-v-10onzaf .framer-1vkhj3q > :last-child { margin-right: 0px; } }\",\".framer-5lnbH.framer-v-1s0pmxa .framer-1928u0g, .framer-5lnbH.framer-v-e6x0bx .framer-1928u0g, .framer-5lnbH.framer-v-19gso48 .framer-1928u0g, .framer-5lnbH.framer-v-10omsv .framer-1928u0g, .framer-5lnbH.framer-v-zs2r2p .framer-1928u0g { cursor: pointer; }\",\".framer-5lnbH.framer-v-16l5w7r.framer-pj2n9y, .framer-5lnbH.framer-v-e6x0bx.framer-pj2n9y, .framer-5lnbH.framer-v-19gso48.framer-pj2n9y, .framer-5lnbH.framer-v-10omsv.framer-pj2n9y, .framer-5lnbH.framer-v-zs2r2p.framer-pj2n9y { flex-direction: column; gap: 18px; height: min-content; padding: 8px; width: 445px; }\",\".framer-5lnbH.framer-v-16l5w7r .framer-xj6azj, .framer-5lnbH.framer-v-e6x0bx .framer-xj6azj, .framer-5lnbH.framer-v-19gso48 .framer-xj6azj, .framer-5lnbH.framer-v-10omsv .framer-xj6azj, .framer-5lnbH.framer-v-zs2r2p .framer-xj6azj { flex-wrap: wrap; gap: 12px; width: 100%; }\",\".framer-5lnbH.framer-v-16l5w7r .framer-1vkhj3q, .framer-5lnbH.framer-v-e6x0bx .framer-1vkhj3q, .framer-5lnbH.framer-v-19gso48 .framer-1vkhj3q, .framer-5lnbH.framer-v-10omsv .framer-1vkhj3q, .framer-5lnbH.framer-v-zs2r2p .framer-1vkhj3q { flex: 1 0 0px; min-width: 280px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lnbH.framer-v-16l5w7r.framer-pj2n9y, .framer-5lnbH.framer-v-16l5w7r .framer-xj6azj { gap: 0px; } .framer-5lnbH.framer-v-16l5w7r.framer-pj2n9y > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5lnbH.framer-v-16l5w7r.framer-pj2n9y > :first-child { margin-top: 0px; } .framer-5lnbH.framer-v-16l5w7r.framer-pj2n9y > :last-child { margin-bottom: 0px; } .framer-5lnbH.framer-v-16l5w7r .framer-xj6azj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-5lnbH.framer-v-16l5w7r .framer-xj6azj > :first-child { margin-left: 0px; } .framer-5lnbH.framer-v-16l5w7r .framer-xj6azj > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lnbH.framer-v-e6x0bx.framer-pj2n9y, .framer-5lnbH.framer-v-e6x0bx .framer-xj6azj { gap: 0px; } .framer-5lnbH.framer-v-e6x0bx.framer-pj2n9y > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5lnbH.framer-v-e6x0bx.framer-pj2n9y > :first-child { margin-top: 0px; } .framer-5lnbH.framer-v-e6x0bx.framer-pj2n9y > :last-child { margin-bottom: 0px; } .framer-5lnbH.framer-v-e6x0bx .framer-xj6azj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-5lnbH.framer-v-e6x0bx .framer-xj6azj > :first-child { margin-left: 0px; } .framer-5lnbH.framer-v-e6x0bx .framer-xj6azj > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lnbH.framer-v-19gso48.framer-pj2n9y, .framer-5lnbH.framer-v-19gso48 .framer-xj6azj { gap: 0px; } .framer-5lnbH.framer-v-19gso48.framer-pj2n9y > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5lnbH.framer-v-19gso48.framer-pj2n9y > :first-child { margin-top: 0px; } .framer-5lnbH.framer-v-19gso48.framer-pj2n9y > :last-child { margin-bottom: 0px; } .framer-5lnbH.framer-v-19gso48 .framer-xj6azj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-5lnbH.framer-v-19gso48 .framer-xj6azj > :first-child { margin-left: 0px; } .framer-5lnbH.framer-v-19gso48 .framer-xj6azj > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lnbH.framer-v-10omsv.framer-pj2n9y, .framer-5lnbH.framer-v-10omsv .framer-xj6azj { gap: 0px; } .framer-5lnbH.framer-v-10omsv.framer-pj2n9y > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5lnbH.framer-v-10omsv.framer-pj2n9y > :first-child { margin-top: 0px; } .framer-5lnbH.framer-v-10omsv.framer-pj2n9y > :last-child { margin-bottom: 0px; } .framer-5lnbH.framer-v-10omsv .framer-xj6azj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-5lnbH.framer-v-10omsv .framer-xj6azj > :first-child { margin-left: 0px; } .framer-5lnbH.framer-v-10omsv .framer-xj6azj > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5lnbH.framer-v-zs2r2p.framer-pj2n9y, .framer-5lnbH.framer-v-zs2r2p .framer-xj6azj { gap: 0px; } .framer-5lnbH.framer-v-zs2r2p.framer-pj2n9y > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5lnbH.framer-v-zs2r2p.framer-pj2n9y > :first-child { margin-top: 0px; } .framer-5lnbH.framer-v-zs2r2p.framer-pj2n9y > :last-child { margin-bottom: 0px; } .framer-5lnbH.framer-v-zs2r2p .framer-xj6azj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-5lnbH.framer-v-zs2r2p .framer-xj6azj > :first-child { margin-left: 0px; } .framer-5lnbH.framer-v-zs2r2p .framer-xj6azj > :last-child { margin-right: 0px; } }\",'.framer-5lnbH[data-border=\"true\"]::after, .framer-5lnbH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 556\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"bBUHJzhaX\":{\"layout\":[\"auto\",\"fixed\"]},\"G3P1E99gN\":{\"layout\":[\"auto\",\"fixed\"]},\"aBYs1ofBw\":{\"layout\":[\"auto\",\"fixed\"]},\"t8j94ZLXm\":{\"layout\":[\"auto\",\"fixed\"]},\"RwGnsVQTY\":{\"layout\":[\"auto\",\"fixed\"]},\"VRpAGN7Jk\":{\"layout\":[\"auto\",\"fixed\"]},\"fq22EecR9\":{\"layout\":[\"fixed\",\"auto\"]},\"yYErBR98d\":{\"layout\":[\"fixed\",\"auto\"]},\"Jk89nmM3s\":{\"layout\":[\"fixed\",\"auto\"]},\"a0d14bpFD\":{\"layout\":[\"fixed\",\"auto\"]},\"Cb8kvKGxK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"KRkWsVTdL\":\"link1Text\",\"qZ2vv4spe\":\"link1LinkAbout\",\"xArkoNnjL\":\"link2Text\",\"EZmJ2jDqC\":\"link2LinkFeatures\",\"AedreaeIZ\":\"link3Text\",\"PVu2cao1Z\":\"link3LinkCalmLaunch\",\"vDHPiHdq2\":\"link4Text\",\"ss9abqXcJ\":\"link4LinkPricing\",\"jAJDjwqND\":\"link5Text\",\"wyzXJ2_2o\":\"link5LinkFAQ\",\"NoFFflO75\":\"joinLink\",\"ulG84eovZ\":\"background\",\"AqYv1NYei\":\"buttonVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIRB73kyKg=withCSS(Component,css,\"framer-5lnbH\");export default FramerIRB73kyKg;FramerIRB73kyKg.displayName=\"Join Page Navigation\";FramerIRB73kyKg.defaultProps={height:43,width:556};addPropertyControls(FramerIRB73kyKg,{variant:{options:[\"vvbFromEK\",\"bBUHJzhaX\",\"G3P1E99gN\",\"aBYs1ofBw\",\"t8j94ZLXm\",\"RwGnsVQTY\",\"VRpAGN7Jk\",\"fq22EecR9\",\"yYErBR98d\",\"Jk89nmM3s\",\"a0d14bpFD\",\"Cb8kvKGxK\"],optionTitles:[\"Link 1 Selected\",\"Button Only\",\"Button Hover\",\"Link 2 Selected\",\"Link 3 Selected\",\"Link 4 Selected\",\"Link 5 Selected\",\"Mobile Primary\",\"Mobile Features\",\"Mobile Cohort\",\"Mobile Pricing\",\"Mobile FAQ\"],title:\"Variant\",type:ControlType.Enum},KRkWsVTdL:{defaultValue:\"About\",displayTextArea:false,title:\"Link 1 Text\",type:ControlType.String},qZ2vv4spe:{title:\"Link 1 Link (About)\",type:ControlType.Link},xArkoNnjL:{defaultValue:\"Features\",displayTextArea:false,title:\"Link 2 Text\",type:ControlType.String},EZmJ2jDqC:{title:\"Link 2 Link (Features)\",type:ControlType.Link},AedreaeIZ:{defaultValue:\"Calm Launch\",displayTextArea:false,title:\"Link 3 Text\",type:ControlType.String},PVu2cao1Z:{title:\"Link 3 Link (Calm Launch)\",type:ControlType.Link},vDHPiHdq2:{defaultValue:\"Pricing\",displayTextArea:false,title:\"Link 4 Text\",type:ControlType.String},ss9abqXcJ:{title:\"Link 4 Link (Pricing)\",type:ControlType.Link},jAJDjwqND:{defaultValue:\"FAQ\",displayTextArea:false,title:\"Link 5 Text\",type:ControlType.String},wyzXJ2_2o:{title:\"Link 5 Link (FAQ)\",type:ControlType.Link},NoFFflO75:{title:\"Join Link\",type:ControlType.Link},ulG84eovZ:{defaultValue:'var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255)) /* {\"name\":\"Blue\"} */',title:\"Background\",type:ControlType.Color},AqYv1NYei:{defaultValue:true,title:\"Button Visible?\",type:ControlType.Boolean}});addFonts(FramerIRB73kyKg,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIRB73kyKg\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"43\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"bBUHJzhaX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"G3P1E99gN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"aBYs1ofBw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"t8j94ZLXm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"RwGnsVQTY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"VRpAGN7Jk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fq22EecR9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yYErBR98d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jk89nmM3s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a0d14bpFD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cb8kvKGxK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"556\",\"framerVariables\":\"{\\\"KRkWsVTdL\\\":\\\"link1Text\\\",\\\"qZ2vv4spe\\\":\\\"link1LinkAbout\\\",\\\"xArkoNnjL\\\":\\\"link2Text\\\",\\\"EZmJ2jDqC\\\":\\\"link2LinkFeatures\\\",\\\"AedreaeIZ\\\":\\\"link3Text\\\",\\\"PVu2cao1Z\\\":\\\"link3LinkCalmLaunch\\\",\\\"vDHPiHdq2\\\":\\\"link4Text\\\",\\\"ss9abqXcJ\\\":\\\"link4LinkPricing\\\",\\\"jAJDjwqND\\\":\\\"link5Text\\\",\\\"wyzXJ2_2o\\\":\\\"link5LinkFAQ\\\",\\\"NoFFflO75\\\":\\\"joinLink\\\",\\\"ulG84eovZ\\\":\\\"background\\\",\\\"AqYv1NYei\\\":\\\"buttonVisible\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IRB73kyKg.map", "// Generated by Framer (b6cf623)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{CountdownTimerVisualComponent}from\"https://framerusercontent.com/modules/tBinjPDb3dmUFQdn48fA/ry6Ph550i49UrXQF7MeH/CountdownTimerVisualComponent.js\";import{CountdownTimerComponent}from\"https://framerusercontent.com/modules/lMIRtTnU78OYN6DqnbKR/Mpc9hkbr1r2b5Jk63lA9/CountdownToDate.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lgtBsn29dhNBV3w8s0wX/fNzkyp8LuzDkFEMpMlkN/PtEqHsk8b.js\";import JoinPageNavigation from\"https://framerusercontent.com/modules/TGDowjSpXpGnsH0nnobK/TdwDkeQX0PUmKfOMoHg3/IRB73kyKg.js\";const CountdownTimerVisualComponentFonts=getFonts(CountdownTimerVisualComponent);const CountdownTimerComponentFonts=getFonts(CountdownTimerComponent);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const JoinPageNavigationFonts=getFonts(JoinPageNavigation);const JoinPageNavigationWithVariantAppearEffect=withVariantAppearEffect(JoinPageNavigation);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"KdVbUETSY\",\"kP9Ykchkl\",\"bMQP4ByOH\",\"FqcglfmZ1\",\"AhdGo8fCF\",\"CsnvFvOB3\",\"F0_9F1hs4\",\"qsZK9UmfL\",\"GzCtRUNsm\",\"lCFuWPk6X\",\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"];const serializationHash=\"framer-jM9bP\";const variantClassNames={AhdGo8fCF:\"framer-v-3si2ij\",bMQP4ByOH:\"framer-v-n4xyhr\",CsnvFvOB3:\"framer-v-1y07dpt\",F0_9F1hs4:\"framer-v-9zpf8b\",FqcglfmZ1:\"framer-v-1wgyddj\",GzCtRUNsm:\"framer-v-m62ril\",KdVbUETSY:\"framer-v-1oi0pd5\",kP9Ykchkl:\"framer-v-kr8hjd\",lCFuWPk6X:\"framer-v-1re9k3o\",q9qH0_VBv:\"framer-v-dbehnq\",qAHB_5u4i:\"framer-v-oy2ee6\",qsZK9UmfL:\"framer-v-goe3ks\",XPO_swkN7:\"framer-v-mq305c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition3={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};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={\"Menu Only Phone\":\"qsZK9UmfL\",\"Menu Only\":\"F0_9F1hs4\",\"Sticky Closed Countdown - 6 Months\":\"XPO_swkN7\",\"Sticky Menu - Closed Countdown\":\"qAHB_5u4i\",\"Sticky Menu - Closed\":\"GzCtRUNsm\",\"Sticky Menu - Open\":\"AhdGo8fCF\",\"Sticky Menu Phone - Closed Countdown\":\"q9qH0_VBv\",\"Sticky Menu Phone - Closed\":\"lCFuWPk6X\",\"Sticky Menu Phone\":\"CsnvFvOB3\",Default:\"KdVbUETSY\",Phone:\"bMQP4ByOH\",Tablet:\"kP9Ykchkl\",XL:\"FqcglfmZ1\"};const getProps=({height,id,joinLink,link1,link1Text,link2,link2Text,link3,link3Text,lINk4,link4Text,link5,link5Text,scrollSectionEnter,scrollSectionLink2,scrollSectionLink3,scrollSectionLink4,scrollSectionLink5,scrollSectionStart,showBigCountdown,showLitttleCountdown,showNavigation,title,width,...props})=>{return{...props,ACWyWHCgP:scrollSectionEnter??props.ACWyWHCgP,ahjCmE3UW:link1??props.ahjCmE3UW,AitGcFW54:showNavigation??props.AitGcFW54,auowfS2rC:link3??props.auowfS2rC,b1GACU1rn:showLitttleCountdown??props.b1GACU1rn,eG05VtB2d:link2??props.eG05VtB2d,FVhiQQZfD:scrollSectionLink3??props.FVhiQQZfD,FyWblHdGq:link2Text??props.FyWblHdGq??\"Features\",i2NkeMZX2:scrollSectionLink5??props.i2NkeMZX2,ltjhuAo1y:link1Text??props.ltjhuAo1y??\"About\",LZ8GWHshM:link4Text??props.LZ8GWHshM??\"Pricing\",mk02QFjxA:joinLink??props.mk02QFjxA,raX8zd7PE:link5Text??props.raX8zd7PE??\"FAQ\",S5vk6E8Ll:lINk4??props.S5vk6E8Ll,t9AzFYD24:scrollSectionLink4??props.t9AzFYD24,tbBiEfJpZ:scrollSectionLink2??props.tbBiEfJpZ,uL1kXfFKl:link3Text??props.uL1kXfFKl??\"Calm Launch\",variant:humanReadableVariantMap[props.variant]??props.variant??\"KdVbUETSY\",VWJIzMyCe:link5??props.VWJIzMyCe,wRA67AVxI:title??props.wRA67AVxI??\"\u23F0 Doors close in: \u23F0\",wwuf5tygD:scrollSectionStart??props.wwuf5tygD,yImbyOvQ2:showBigCountdown??props.yImbyOvQ2??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ACWyWHCgP,wwuf5tygD,tbBiEfJpZ,FVhiQQZfD,t9AzFYD24,i2NkeMZX2,yImbyOvQ2,b1GACU1rn,AitGcFW54,ahjCmE3UW,eG05VtB2d,auowfS2rC,S5vk6E8Ll,VWJIzMyCe,mk02QFjxA,wRA67AVxI,ltjhuAo1y,FyWblHdGq,uL1kXfFKl,LZ8GWHshM,raX8zd7PE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KdVbUETSY\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=value=>{if([\"AhdGo8fCF\",\"CsnvFvOB3\",\"F0_9F1hs4\",\"qsZK9UmfL\",\"GzCtRUNsm\",\"lCFuWPk6X\",\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"].includes(baseVariant))return false;return value;};const isDisplayed1=value=>{if([\"AhdGo8fCF\",\"CsnvFvOB3\",\"GzCtRUNsm\",\"lCFuWPk6X\",\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"].includes(baseVariant))return true;if([\"F0_9F1hs4\",\"qsZK9UmfL\"].includes(baseVariant))return false;return value;};const isDisplayed2=()=>{if([\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"CsnvFvOB3\",\"GzCtRUNsm\",\"lCFuWPk6X\",\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"AhdGo8fCF\",\"GzCtRUNsm\",\"lCFuWPk6X\",\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"].includes(baseVariant))return false;return true;};const isDisplayed6=value=>{if([\"AhdGo8fCF\",\"CsnvFvOB3\",\"F0_9F1hs4\",\"qsZK9UmfL\",\"GzCtRUNsm\",\"lCFuWPk6X\",\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"].includes(baseVariant))return true;return value;};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:transition2,...addPropertyOverrides({AhdGo8fCF:{value:transition3},CsnvFvOB3:{value:transition3},F0_9F1hs4:{value:transition3},GzCtRUNsm:{value:transition3},lCFuWPk6X:{value:transition3},q9qH0_VBv:{value:transition3},qAHB_5u4i:{value:transition3},qsZK9UmfL:{value:transition3},XPO_swkN7:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ACWyWHCgP,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1oi0pd5\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"KdVbUETSY\",ref:ref??ref1,style:{...style},...addPropertyOverrides({AhdGo8fCF:{\"data-framer-name\":\"Sticky Menu - Open\"},bMQP4ByOH:{\"data-framer-name\":\"Phone\"},CsnvFvOB3:{\"data-framer-name\":\"Sticky Menu Phone\"},F0_9F1hs4:{\"data-framer-name\":\"Menu Only\"},FqcglfmZ1:{\"data-framer-name\":\"XL\"},GzCtRUNsm:{\"data-framer-name\":\"Sticky Menu - Closed\"},kP9Ykchkl:{\"data-framer-name\":\"Tablet\"},lCFuWPk6X:{\"data-framer-name\":\"Sticky Menu Phone - Closed\"},q9qH0_VBv:{\"data-framer-name\":\"Sticky Menu Phone - Closed Countdown\"},qAHB_5u4i:{\"data-framer-name\":\"Sticky Menu - Closed Countdown\"},qsZK9UmfL:{\"data-framer-name\":\"Menu Only Phone\"},XPO_swkN7:{\"data-framer-name\":\"Sticky Closed Countdown - 6 Months\"}},baseVariant,gestureVariant),children:[isDisplayed(yImbyOvQ2)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rakenx\",\"data-border\":true,\"data-framer-name\":\"Big Countdown\",layoutDependency:layoutDependency,layoutId:\"PssLCoGIm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 212, 41)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ffb87468-3920-4a5e-876a-152a211bf7c2, rgb(255, 237, 165))\",borderBottomLeftRadius:82,borderBottomRightRadius:82,borderTopLeftRadius:82,borderTopRightRadius:82,boxShadow:\"8px 8px 15px 0px rgba(0, 0, 0, 0.15)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"1.5px\",\"--framer-text-alignment\":\"right\"},children:\"\u23F0 Doors close in: \u23F0\"})}),className:\"framer-3z1ing\",fonts:[\"CUSTOM;Komika Display Kaps Regular\"],layoutDependency:layoutDependency,layoutId:\"J43eGoKEV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wRA67AVxI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1665baq-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"peww5OoAT-container\",nodeId:\"peww5OoAT\",rendersWithMotion:true,scopeId:\"K7HmyT9Ti\",children:/*#__PURE__*/_jsx(CountdownTimerVisualComponent,{deadline:\"2025-03-11T11:00:00\",height:\"100%\",id:\"peww5OoAT\",labelColor:\"rgb(0, 0, 0)\",labelFontFamily:\"Satoshi, sans-serif\",labelFontSize:14,labelLetterSpacing:0,layoutId:\"peww5OoAT\",numberColor:\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",numberFontFamily:\"Caprasimo, Satoshi\",numberFontSize:40,numberLetterSpacing:0,width:\"100%\",...addPropertyOverrides({bMQP4ByOH:{numberFontSize:29}},baseVariant,gestureVariant)})})})]}),isDisplayed1(b1GACU1rn)&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1u9jkia\",\"data-border\":true,\"data-framer-appear-id\":\"1u9jkia\",\"data-framer-name\":\"Little Countdown\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"CLkobuC5E\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 212, 41)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ffb87468-3920-4a5e-876a-152a211bf7c2, rgb(255, 237, 165))\",borderBottomLeftRadius:82,borderBottomRightRadius:82,borderTopLeftRadius:82,borderTopRightRadius:82},variants:{q9qH0_VBv:{\"--border-color\":\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\",backgroundColor:\"var(--token-3fd6d061-5610-47b8-8091-6bfdcda0ebc5, rgb(239, 248, 248))\"},qAHB_5u4i:{\"--border-color\":\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\",backgroundColor:\"var(--token-3fd6d061-5610-47b8-8091-6bfdcda0ebc5, rgb(239, 248, 248))\"},XPO_swkN7:{\"--border-color\":\"var(--token-7f62794c-f9c3-4d04-80dd-404d2a8c8a47, rgb(153, 229, 228))\",backgroundColor:\"var(--token-3fd6d061-5610-47b8-8091-6bfdcda0ebc5, rgb(239, 248, 248))\"}},children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1.5px\"},children:\"\u23F0\"}),\" Doors close in:\"]})}),className:\"framer-163prax\",fonts:[\"FS;Satoshi-regular\",\"CUSTOM;Komika Display Kaps Regular\"],layoutDependency:layoutDependency,layoutId:\"huPz1piQC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{GzCtRUNsm:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},lCFuWPk6X:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AhdGo8fCF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1.5px\"},children:\"\u23F0 Doors close in:\"})})})},CsnvFvOB3:{text:wRA67AVxI},GzCtRUNsm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:[\"\uD83D\uDEAA Sorry, Charlie! Doors to WAIM Unlimited are currently closed! \",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ou6yNiYVR\"},motionChild:true,nodeId:\"huPz1piQC\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1yzwv6i\",\"data-styles-preset\":\"PtEqHsk8b\",children:\"Hop on our email list\"})}),\" to make sure you get notified!\"]})}),fonts:[\"FS;Satoshi-regular\"]},lCFuWPk6X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:[\"\uD83D\uDEAA Sorry, Charlie! Doors to WAIM Unlimited are currently closed! \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ou6yNiYVR\"},motionChild:true,nodeId:\"huPz1piQC\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1yzwv6i\",\"data-styles-preset\":\"PtEqHsk8b\",children:\"Hop on our email list\"})}),\" to make sure you get notified!\"]})}),fonts:[\"FS;Satoshi-regular\"]}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15plhqu\",\"data-framer-name\":\"Open Countdown\",layoutDependency:layoutDependency,layoutId:\"lPj8k2SRN\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fvspfb-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"hjz9YqWDT-container\",nodeId:\"hjz9YqWDT\",rendersWithMotion:true,scopeId:\"K7HmyT9Ti\",children:/*#__PURE__*/_jsx(CountdownTimerComponent,{color:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",deadline:\"2025-02-24T00:00:00\",fontFamily:\"Komika Display Kaps Regular, Satoshi\",fontSize:15,height:\"100%\",id:\"hjz9YqWDT\",layoutId:\"hjz9YqWDT\",letterSpacing:1.5,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1.5px\"},children:\"\u23F0\"}),\" Doors open in:\"]})}),className:\"framer-aox5g6\",fonts:[\"FS;Satoshi-regular\",\"CUSTOM;Komika Display Kaps Regular\"],layoutDependency:layoutDependency,layoutId:\"x8_XJZBxo\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({q9qH0_VBv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1.5px\"},children:\"\u23F0\"}),\" Doors open Feb 24:\"]})})},qAHB_5u4i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1.5px\"},children:\"\u23F0\"}),\" Doors open Feb 24:\"]})})},XPO_swkN7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-alignment\":\"right\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IEthcHMgUmVndWxhcg==\",\"--framer-font-family\":'\"Komika Display Kaps Regular\", \"Komika Display Kaps Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1.5px\"},children:\"\u23F0\"}),\" Doors open Feb 24:\"]})})}},baseVariant,gestureVariant)})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e6qbv7-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"bg2V6D3Ev-container\",nodeId:\"bg2V6D3Ev\",rendersWithMotion:true,scopeId:\"K7HmyT9Ti\",children:/*#__PURE__*/_jsx(CountdownTimerComponent,{color:\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",deadline:\"2025-03-11T11:00:00\",fontFamily:\"Komika Display Kaps Regular, Satoshi\",fontSize:15,height:\"100%\",id:\"bg2V6D3Ev\",layoutId:\"bg2V6D3Ev\",letterSpacing:1.5,width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bggo5m-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"KxmIJXGyw-container\",nodeId:\"KxmIJXGyw\",rendersWithMotion:true,scopeId:\"K7HmyT9Ti\",children:/*#__PURE__*/_jsx(CountdownTimerVisualComponent,{deadline:\"2025-03-11T11:00:00\",height:\"100%\",id:\"KxmIJXGyw\",labelColor:\"rgb(0, 0, 0)\",labelFontFamily:\"Satoshi, sans-serif\",labelFontSize:14,labelLetterSpacing:0,layoutId:\"KxmIJXGyw\",numberColor:\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",numberFontFamily:\"Caprasimo, Satoshi\",numberFontSize:24,numberLetterSpacing:0,width:\"100%\"})})})]}),isDisplayed6(AitGcFW54)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+24+(((componentViewport?.height||128.5)-48-495)/2+432+20),...addPropertyOverrides({AhdGo8fCF:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||135.5)-48-269)/2+216+10)},bMQP4ByOH:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+12+(((componentViewport?.height||119)-24-521.8)/2+458.8+20)},CsnvFvOB3:{width:\"370px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||217)-36-295.8)/2+242.8+10)},F0_9F1hs4:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||91)-48-43)/2+0+0)},GzCtRUNsm:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||156)-48-167)/2+113.99999999999999+10)},lCFuWPk6X:{width:\"380px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||185)-36-161)/2+107.99999999999999+10)},q9qH0_VBv:{width:\"380px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||189)-36-295.8)/2+242.8+10)},qAHB_5u4i:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||135.5)-48-269)/2+216+10)},qsZK9UmfL:{width:\"380px\",y:(componentViewport?.y||0)+24+(((componentViewport?.height||117)-36-43)/2+0+0)},XPO_swkN7:{y:(componentViewport?.y||0)+24+(((componentViewport?.height||135.5)-48-269)/2+216+10)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-6udykm-container\",\"data-framer-appear-id\":\"6udykm\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"c8KVFG25z-container\",nodeId:\"c8KVFG25z\",optimized:true,rendersWithMotion:true,scopeId:\"K7HmyT9Ti\",children:/*#__PURE__*/_jsx(JoinPageNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:wwuf5tygD,target:\"vvbFromEK\"},{ref:tbBiEfJpZ,target:\"aBYs1ofBw\"},{ref:FVhiQQZfD,target:\"t8j94ZLXm\"},{ref:t9AzFYD24,target:\"RwGnsVQTY\"},{ref:i2NkeMZX2,target:\"VRpAGN7Jk\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,AedreaeIZ:\"Calm Launch\",AqYv1NYei:true,EZmJ2jDqC:\"/join#features\",height:\"100%\",id:\"c8KVFG25z\",jAJDjwqND:\"FAQ\",KRkWsVTdL:\"About\",layoutId:\"c8KVFG25z\",NoFFflO75:\"/join#buy\",PVu2cao1Z:\"/join#cohort\",qZ2vv4spe:\"/join#about\",ss9abqXcJ:\"/join#buy\",style:{height:\"100%\"},ulG84eovZ:\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",variant:\"vvbFromEK\",vDHPiHdq2:\"Pricing\",width:\"100%\",wyzXJ2_2o:\"/join#faq\",xArkoNnjL:\"Features\",...addPropertyOverrides({AhdGo8fCF:{AedreaeIZ:uL1kXfFKl,EZmJ2jDqC:eG05VtB2d,jAJDjwqND:raX8zd7PE,KRkWsVTdL:ltjhuAo1y,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,vDHPiHdq2:LZ8GWHshM,wyzXJ2_2o:VWJIzMyCe,xArkoNnjL:FyWblHdGq},bMQP4ByOH:{__framer__targets:undefined,style:{width:\"100%\"},variant:\"fq22EecR9\"},CsnvFvOB3:{__framer__targets:[{ref:wwuf5tygD,target:\"fq22EecR9\"},{ref:tbBiEfJpZ,target:\"yYErBR98d\"},{ref:FVhiQQZfD,target:\"Jk89nmM3s\"},{ref:t9AzFYD24,target:\"a0d14bpFD\"},{ref:i2NkeMZX2,target:\"Cb8kvKGxK\"}],AedreaeIZ:uL1kXfFKl,EZmJ2jDqC:eG05VtB2d,jAJDjwqND:raX8zd7PE,KRkWsVTdL:ltjhuAo1y,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,style:{width:\"100%\"},variant:\"fq22EecR9\",vDHPiHdq2:LZ8GWHshM,wyzXJ2_2o:VWJIzMyCe,xArkoNnjL:FyWblHdGq},F0_9F1hs4:{EZmJ2jDqC:eG05VtB2d,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,wyzXJ2_2o:VWJIzMyCe},GzCtRUNsm:{EZmJ2jDqC:eG05VtB2d,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,wyzXJ2_2o:VWJIzMyCe},lCFuWPk6X:{__framer__targets:[{ref:wwuf5tygD,target:\"fq22EecR9\"},{ref:tbBiEfJpZ,target:\"yYErBR98d\"},{ref:FVhiQQZfD,target:\"Jk89nmM3s\"},{ref:t9AzFYD24,target:\"a0d14bpFD\"},{ref:i2NkeMZX2,target:\"Cb8kvKGxK\"}],AedreaeIZ:uL1kXfFKl,EZmJ2jDqC:eG05VtB2d,jAJDjwqND:raX8zd7PE,KRkWsVTdL:ltjhuAo1y,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,style:{width:\"100%\"},variant:\"fq22EecR9\",vDHPiHdq2:LZ8GWHshM,wyzXJ2_2o:VWJIzMyCe,xArkoNnjL:FyWblHdGq},q9qH0_VBv:{__framer__targets:[{ref:wwuf5tygD,target:\"fq22EecR9\"},{ref:tbBiEfJpZ,target:\"yYErBR98d\"},{ref:FVhiQQZfD,target:\"Jk89nmM3s\"},{ref:t9AzFYD24,target:\"a0d14bpFD\"},{ref:i2NkeMZX2,target:\"Cb8kvKGxK\"}],EZmJ2jDqC:eG05VtB2d,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,style:{width:\"100%\"},variant:\"fq22EecR9\",wyzXJ2_2o:VWJIzMyCe},qAHB_5u4i:{EZmJ2jDqC:eG05VtB2d,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,wyzXJ2_2o:VWJIzMyCe},qsZK9UmfL:{__framer__targets:[{ref:wwuf5tygD,target:\"fq22EecR9\"},{ref:tbBiEfJpZ,target:\"yYErBR98d\"},{ref:FVhiQQZfD,target:\"Jk89nmM3s\"},{ref:t9AzFYD24,target:\"a0d14bpFD\"},{ref:i2NkeMZX2,target:\"Cb8kvKGxK\"}],AedreaeIZ:uL1kXfFKl,EZmJ2jDqC:eG05VtB2d,jAJDjwqND:raX8zd7PE,KRkWsVTdL:ltjhuAo1y,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,style:{width:\"100%\"},variant:\"fq22EecR9\",vDHPiHdq2:LZ8GWHshM,wyzXJ2_2o:VWJIzMyCe,xArkoNnjL:FyWblHdGq},XPO_swkN7:{AedreaeIZ:uL1kXfFKl,EZmJ2jDqC:eG05VtB2d,jAJDjwqND:raX8zd7PE,KRkWsVTdL:ltjhuAo1y,NoFFflO75:mk02QFjxA,PVu2cao1Z:auowfS2rC,qZ2vv4spe:ahjCmE3UW,ss9abqXcJ:S5vk6E8Ll,vDHPiHdq2:LZ8GWHshM,wyzXJ2_2o:VWJIzMyCe,xArkoNnjL:FyWblHdGq}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jM9bP.framer-uloogn, .framer-jM9bP .framer-uloogn { display: block; }\",\".framer-jM9bP.framer-1oi0pd5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 660px; }\",\".framer-jM9bP .framer-rakenx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jM9bP .framer-3z1ing, .framer-jM9bP .framer-163prax, .framer-jM9bP .framer-aox5g6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jM9bP .framer-1665baq-container, .framer-jM9bP .framer-1fvspfb-container, .framer-jM9bP .framer-1e6qbv7-container, .framer-jM9bP .framer-1bggo5m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jM9bP .framer-1u9jkia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 540px; overflow: hidden; padding: 8px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jM9bP .framer-15plhqu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 508px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jM9bP .framer-6udykm-container { flex: none; height: 43px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jM9bP.framer-1oi0pd5, .framer-jM9bP .framer-rakenx, .framer-jM9bP .framer-1u9jkia, .framer-jM9bP .framer-15plhqu { gap: 0px; } .framer-jM9bP.framer-1oi0pd5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jM9bP.framer-1oi0pd5 > :first-child { margin-top: 0px; } .framer-jM9bP.framer-1oi0pd5 > :last-child { margin-bottom: 0px; } .framer-jM9bP .framer-rakenx > *, .framer-jM9bP .framer-1u9jkia > *, .framer-jM9bP .framer-15plhqu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jM9bP .framer-rakenx > :first-child, .framer-jM9bP .framer-1u9jkia > :first-child, .framer-jM9bP .framer-15plhqu > :first-child { margin-left: 0px; } .framer-jM9bP .framer-rakenx > :last-child, .framer-jM9bP .framer-1u9jkia > :last-child, .framer-jM9bP .framer-15plhqu > :last-child { margin-right: 0px; } }\",\".framer-jM9bP.framer-v-n4xyhr.framer-1oi0pd5 { padding: 12px; width: 390px; }\",\".framer-jM9bP.framer-v-n4xyhr .framer-rakenx { flex-direction: column; max-width: 460px; width: 100%; }\",\".framer-jM9bP.framer-v-n4xyhr .framer-6udykm-container { height: auto; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jM9bP.framer-v-n4xyhr .framer-rakenx { gap: 0px; } .framer-jM9bP.framer-v-n4xyhr .framer-rakenx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jM9bP.framer-v-n4xyhr .framer-rakenx > :first-child { margin-top: 0px; } .framer-jM9bP.framer-v-n4xyhr .framer-rakenx > :last-child { margin-bottom: 0px; } }\",\".framer-jM9bP.framer-v-3si2ij .framer-1u9jkia { max-width: 600px; }\",\".framer-jM9bP.framer-v-3si2ij .framer-163prax, .framer-jM9bP.framer-v-oy2ee6 .framer-aox5g6, .framer-jM9bP.framer-v-dbehnq .framer-aox5g6, .framer-jM9bP.framer-v-mq305c .framer-aox5g6 { order: 0; }\",\".framer-jM9bP.framer-v-3si2ij .framer-1e6qbv7-container, .framer-jM9bP.framer-v-oy2ee6 .framer-1fvspfb-container, .framer-jM9bP.framer-v-dbehnq .framer-1fvspfb-container, .framer-jM9bP.framer-v-mq305c .framer-1fvspfb-container { order: 1; }\",\".framer-jM9bP.framer-v-1y07dpt.framer-1oi0pd5 { max-width: 390px; padding: 24px 24px 12px 24px; width: min-content; }\",\".framer-jM9bP.framer-v-1y07dpt .framer-1u9jkia { flex-direction: column; max-width: 380px; width: 370px; }\",\".framer-jM9bP.framer-v-1y07dpt .framer-6udykm-container { height: auto; width: 370px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jM9bP.framer-v-1y07dpt .framer-1u9jkia { gap: 0px; } .framer-jM9bP.framer-v-1y07dpt .framer-1u9jkia > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jM9bP.framer-v-1y07dpt .framer-1u9jkia > :first-child { margin-top: 0px; } .framer-jM9bP.framer-v-1y07dpt .framer-1u9jkia > :last-child { margin-bottom: 0px; } }\",\".framer-jM9bP.framer-v-goe3ks.framer-1oi0pd5 { max-width: 480px; padding: 24px 24px 12px 24px; width: 480px; }\",\".framer-jM9bP.framer-v-goe3ks .framer-6udykm-container, .framer-jM9bP.framer-v-1re9k3o .framer-6udykm-container, .framer-jM9bP.framer-v-dbehnq .framer-6udykm-container { height: auto; width: 380px; }\",\".framer-jM9bP.framer-v-m62ril .framer-163prax { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-jM9bP.framer-v-1re9k3o.framer-1oi0pd5, .framer-jM9bP.framer-v-dbehnq.framer-1oi0pd5 { padding: 24px 24px 12px 24px; width: 480px; }\",\".framer-jM9bP.framer-v-1re9k3o .framer-1u9jkia { flex-direction: column; max-width: 90%; padding: 12px; }\",\".framer-jM9bP.framer-v-1re9k3o .framer-163prax { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jM9bP.framer-v-1re9k3o .framer-1u9jkia { gap: 0px; } .framer-jM9bP.framer-v-1re9k3o .framer-1u9jkia > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jM9bP.framer-v-1re9k3o .framer-1u9jkia > :first-child { margin-top: 0px; } .framer-jM9bP.framer-v-1re9k3o .framer-1u9jkia > :last-child { margin-bottom: 0px; } }\",\".framer-jM9bP.framer-v-oy2ee6 .framer-15plhqu, .framer-jM9bP.framer-v-mq305c .framer-15plhqu { min-height: unset; }\",\".framer-jM9bP.framer-v-dbehnq .framer-1u9jkia { max-width: 90%; }\",\".framer-jM9bP.framer-v-dbehnq .framer-15plhqu { flex-direction: column; min-height: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jM9bP.framer-v-dbehnq .framer-15plhqu { gap: 0px; } .framer-jM9bP.framer-v-dbehnq .framer-15plhqu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jM9bP.framer-v-dbehnq .framer-15plhqu > :first-child { margin-top: 0px; } .framer-jM9bP.framer-v-dbehnq .framer-15plhqu > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-jM9bP[data-border=\"true\"]::after, .framer-jM9bP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 128.5\n * @framerIntrinsicWidth 660\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kP9Ykchkl\":{\"layout\":[\"fixed\",\"auto\"]},\"bMQP4ByOH\":{\"layout\":[\"fixed\",\"auto\"]},\"FqcglfmZ1\":{\"layout\":[\"fixed\",\"auto\"]},\"AhdGo8fCF\":{\"layout\":[\"fixed\",\"auto\"]},\"CsnvFvOB3\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"390px\",null,null]},\"F0_9F1hs4\":{\"layout\":[\"fixed\",\"auto\"]},\"qsZK9UmfL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"480px\",null,null]},\"GzCtRUNsm\":{\"layout\":[\"fixed\",\"auto\"]},\"lCFuWPk6X\":{\"layout\":[\"fixed\",\"auto\"]},\"qAHB_5u4i\":{\"layout\":[\"fixed\",\"auto\"]},\"q9qH0_VBv\":{\"layout\":[\"fixed\",\"auto\"]},\"XPO_swkN7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ACWyWHCgP\":\"scrollSectionEnter\",\"wwuf5tygD\":\"scrollSectionStart\",\"tbBiEfJpZ\":\"scrollSectionLink2\",\"FVhiQQZfD\":\"scrollSectionLink3\",\"t9AzFYD24\":\"scrollSectionLink4\",\"i2NkeMZX2\":\"scrollSectionLink5\",\"yImbyOvQ2\":\"showBigCountdown\",\"b1GACU1rn\":\"showLitttleCountdown\",\"AitGcFW54\":\"showNavigation\",\"ahjCmE3UW\":\"link1\",\"eG05VtB2d\":\"link2\",\"auowfS2rC\":\"link3\",\"S5vk6E8Ll\":\"lINk4\",\"VWJIzMyCe\":\"link5\",\"mk02QFjxA\":\"joinLink\",\"wRA67AVxI\":\"title\",\"ltjhuAo1y\":\"link1Text\",\"FyWblHdGq\":\"link2Text\",\"uL1kXfFKl\":\"link3Text\",\"LZ8GWHshM\":\"link4Text\",\"raX8zd7PE\":\"link5Text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerK7HmyT9Ti=withCSS(Component,css,\"framer-jM9bP\");export default FramerK7HmyT9Ti;FramerK7HmyT9Ti.displayName=\"Sales Menu\";FramerK7HmyT9Ti.defaultProps={height:128.5,width:660};addPropertyControls(FramerK7HmyT9Ti,{variant:{options:[\"KdVbUETSY\",\"kP9Ykchkl\",\"bMQP4ByOH\",\"FqcglfmZ1\",\"AhdGo8fCF\",\"CsnvFvOB3\",\"F0_9F1hs4\",\"qsZK9UmfL\",\"GzCtRUNsm\",\"lCFuWPk6X\",\"qAHB_5u4i\",\"q9qH0_VBv\",\"XPO_swkN7\"],optionTitles:[\"Default\",\"Tablet\",\"Phone\",\"XL\",\"Sticky Menu - Open\",\"Sticky Menu Phone\",\"Menu Only\",\"Menu Only Phone\",\"Sticky Menu - Closed\",\"Sticky Menu Phone - Closed\",\"Sticky Menu - Closed Countdown\",\"Sticky Menu Phone - Closed Countdown\",\"Sticky Closed Countdown - 6 Months\"],title:\"Variant\",type:ControlType.Enum},ACWyWHCgP:{title:\"Scroll Section Enter\",type:ControlType.ScrollSectionRef},wwuf5tygD:{title:\"Scroll Section Start\",type:ControlType.ScrollSectionRef},tbBiEfJpZ:{title:\"Scroll Section Link 2\",type:ControlType.ScrollSectionRef},FVhiQQZfD:{title:\"Scroll Section Link 3\",type:ControlType.ScrollSectionRef},t9AzFYD24:{title:\"Scroll Section Link 4\",type:ControlType.ScrollSectionRef},i2NkeMZX2:{title:\"Scroll Section Link 5\",type:ControlType.ScrollSectionRef},yImbyOvQ2:{defaultValue:true,title:\"Show Big Countdown\",type:ControlType.Boolean},b1GACU1rn:{defaultValue:false,title:\"Show Litttle Countdown\",type:ControlType.Boolean},AitGcFW54:{defaultValue:false,title:\"Show Navigation\",type:ControlType.Boolean},ahjCmE3UW:{title:\"Link 1\",type:ControlType.Link},eG05VtB2d:{title:\"Link 2\",type:ControlType.Link},auowfS2rC:{title:\"Link 3\",type:ControlType.Link},S5vk6E8Ll:{title:\"LInk 4\",type:ControlType.Link},VWJIzMyCe:{title:\"Link 5\",type:ControlType.Link},mk02QFjxA:{title:\"Join Link\",type:ControlType.Link},wRA67AVxI:{defaultValue:\"\u23F0 Doors close in: \u23F0\",displayTextArea:false,title:\"Title\",type:ControlType.String},ltjhuAo1y:{defaultValue:\"About\",displayTextArea:false,title:\"Link 1 Text\",type:ControlType.String},FyWblHdGq:{defaultValue:\"Features\",displayTextArea:false,title:\"Link 2 Text\",type:ControlType.String},uL1kXfFKl:{defaultValue:\"Calm Launch\",displayTextArea:false,title:\"Link 3 Text\",type:ControlType.String},LZ8GWHshM:{defaultValue:\"Pricing\",displayTextArea:false,title:\"Link 4 Text\",type:ControlType.String},raX8zd7PE:{defaultValue:\"FAQ\",displayTextArea:false,title:\"Link 5 Text\",type:ControlType.String}});addFonts(FramerK7HmyT9Ti,[{explicitInter:true,fonts:[{family:\"Komika Display Kaps Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/hFMkNcz5G82RNX0SWf5kBGBp27k.woff2\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...CountdownTimerVisualComponentFonts,...CountdownTimerComponentFonts,...JoinPageNavigationFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK7HmyT9Ti\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"660\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kP9Ykchkl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bMQP4ByOH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FqcglfmZ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AhdGo8fCF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CsnvFvOB3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"390px\\\",null,null]},\\\"F0_9F1hs4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qsZK9UmfL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"480px\\\",null,null]},\\\"GzCtRUNsm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lCFuWPk6X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qAHB_5u4i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q9qH0_VBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XPO_swkN7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ACWyWHCgP\\\":\\\"scrollSectionEnter\\\",\\\"wwuf5tygD\\\":\\\"scrollSectionStart\\\",\\\"tbBiEfJpZ\\\":\\\"scrollSectionLink2\\\",\\\"FVhiQQZfD\\\":\\\"scrollSectionLink3\\\",\\\"t9AzFYD24\\\":\\\"scrollSectionLink4\\\",\\\"i2NkeMZX2\\\":\\\"scrollSectionLink5\\\",\\\"yImbyOvQ2\\\":\\\"showBigCountdown\\\",\\\"b1GACU1rn\\\":\\\"showLitttleCountdown\\\",\\\"AitGcFW54\\\":\\\"showNavigation\\\",\\\"ahjCmE3UW\\\":\\\"link1\\\",\\\"eG05VtB2d\\\":\\\"link2\\\",\\\"auowfS2rC\\\":\\\"link3\\\",\\\"S5vk6E8Ll\\\":\\\"lINk4\\\",\\\"VWJIzMyCe\\\":\\\"link5\\\",\\\"mk02QFjxA\\\":\\\"joinLink\\\",\\\"wRA67AVxI\\\":\\\"title\\\",\\\"ltjhuAo1y\\\":\\\"link1Text\\\",\\\"FyWblHdGq\\\":\\\"link2Text\\\",\\\"uL1kXfFKl\\\":\\\"link3Text\\\",\\\"LZ8GWHshM\\\":\\\"link4Text\\\",\\\"raX8zd7PE\\\":\\\"link5Text\\\"}\",\"framerIntrinsicHeight\":\"128.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K7HmyT9Ti.map", "// Generated by Framer (97d1eee)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"HhfELL_I0\",\"wLGsIhsPI\",\"Yu505R2kt\",\"P7qxEBvxC\",\"ZyNoVTQB0\"];const serializationHash=\"framer-2chIF\";const variantClassNames={HhfELL_I0:\"framer-v-1i4wl1t\",P7qxEBvxC:\"framer-v-16c60tw\",wLGsIhsPI:\"framer-v-15hf4dn\",Yu505R2kt:\"framer-v-ly4w24\",ZyNoVTQB0:\"framer-v-bvhnun\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Blue:\"wLGsIhsPI\",Green:\"ZyNoVTQB0\",Pink:\"P7qxEBvxC\",White:\"HhfELL_I0\",Yellow:\"Yu505R2kt\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"HhfELL_I0\"};};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:\"HhfELL_I0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i4wl1t\",className,classNames),\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"HhfELL_I0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},variants:{P7qxEBvxC:{backgroundColor:\"var(--token-7eabc803-8c59-457e-9f4a-c9e119d4a009, rgb(252, 241, 240))\"},wLGsIhsPI:{backgroundColor:\"var(--token-6c9c7063-61d4-44f9-a45e-0e14b9b9a175, rgb(235, 236, 255))\"},Yu505R2kt:{backgroundColor:\"var(--token-50ac3d45-5a94-4191-812a-a0d9bac45310, rgb(255, 247, 214))\"},ZyNoVTQB0:{backgroundColor:\"var(--token-83541a6f-3b96-409e-a0b6-650ce8cc23e9, rgb(239, 248, 248))\"}},...addPropertyOverrides({P7qxEBvxC:{\"data-framer-name\":\"Pink\"},wLGsIhsPI:{\"data-framer-name\":\"Blue\"},Yu505R2kt:{\"data-framer-name\":\"Yellow\"},ZyNoVTQB0:{\"data-framer-name\":\"Green\"}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2chIF.framer-dtq5vh, .framer-2chIF .framer-dtq5vh { display: block; }\",\".framer-2chIF.framer-1i4wl1t { height: 1973px; overflow: hidden; position: relative; width: 1280px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1973\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wLGsIhsPI\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yu505R2kt\":{\"layout\":[\"fixed\",\"fixed\"]},\"P7qxEBvxC\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZyNoVTQB0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermcW0js4c8=withCSS(Component,css,\"framer-2chIF\");export default FramermcW0js4c8;FramermcW0js4c8.displayName=\"Talk BG\";FramermcW0js4c8.defaultProps={height:1973,width:1280};addPropertyControls(FramermcW0js4c8,{variant:{options:[\"HhfELL_I0\",\"wLGsIhsPI\",\"Yu505R2kt\",\"P7qxEBvxC\",\"ZyNoVTQB0\"],optionTitles:[\"White\",\"Blue\",\"Yellow\",\"Pink\",\"Green\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermcW0js4c8,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermcW0js4c8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wLGsIhsPI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yu505R2kt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P7qxEBvxC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZyNoVTQB0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"1973\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mcW0js4c8.map", "// Generated by Framer (8d84d1c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UYnrR0dJj\",\"enHY0gwtx\",\"k9cl8iyzk\",\"W31xCuqeB\"];const serializationHash=\"framer-VxMMb\";const variantClassNames={enHY0gwtx:\"framer-v-11mai92\",k9cl8iyzk:\"framer-v-16czk3y\",UYnrR0dJj:\"framer-v-1mgbbab\",W31xCuqeB:\"framer-v-khy3qg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"0 Percent Left\":\"UYnrR0dJj\",\"0 Percent Right\":\"k9cl8iyzk\",\"100 Percent Left\":\"W31xCuqeB\",\"100 Percent RIght\":\"enHY0gwtx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UYnrR0dJj\"};};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:\"UYnrR0dJj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mgbbab\",className,classNames),\"data-framer-name\":\"0 Percent Left\",layoutDependency:layoutDependency,layoutId:\"UYnrR0dJj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({enHY0gwtx:{\"data-framer-name\":\"100 Percent RIght\"},k9cl8iyzk:{\"data-framer-name\":\"0 Percent Right\"},W31xCuqeB:{\"data-framer-name\":\"100 Percent Left\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c57v6t\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"lOJ8xLAUA\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"0px\",rotate:36},variants:{k9cl8iyzk:{rotate:-36},W31xCuqeB:{rotate:-36}}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VxMMb.framer-w96bus, .framer-VxMMb .framer-w96bus { display: block; }\",\".framer-VxMMb.framer-1mgbbab { height: 315px; overflow: hidden; position: relative; width: 423px; }\",\".framer-VxMMb .framer-c57v6t { flex: none; height: 158px; left: 43px; overflow: hidden; position: absolute; top: -130px; width: 9%; }\",\".framer-VxMMb.framer-v-11mai92 .framer-c57v6t { left: -4px; top: 15px; width: 126%; }\",\".framer-VxMMb.framer-v-16czk3y .framer-c57v6t { left: unset; right: 43px; width: 36px; }\",\".framer-VxMMb.framer-v-khy3qg .framer-c57v6t { left: unset; right: -4px; top: 15px; width: 126%; }\",'.framer-VxMMb[data-border=\"true\"]::after, .framer-VxMMb [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 315\n * @framerIntrinsicWidth 423\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"enHY0gwtx\":{\"layout\":[\"fixed\",\"fixed\"]},\"k9cl8iyzk\":{\"layout\":[\"fixed\",\"fixed\"]},\"W31xCuqeB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNtzbDIqe4=withCSS(Component,css,\"framer-VxMMb\");export default FramerNtzbDIqe4;FramerNtzbDIqe4.displayName=\"Dotted Line\";FramerNtzbDIqe4.defaultProps={height:315,width:423};addPropertyControls(FramerNtzbDIqe4,{variant:{options:[\"UYnrR0dJj\",\"enHY0gwtx\",\"k9cl8iyzk\",\"W31xCuqeB\"],optionTitles:[\"0 Percent Left\",\"100 Percent RIght\",\"0 Percent Right\",\"100 Percent Left\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNtzbDIqe4,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNtzbDIqe4\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"315\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"enHY0gwtx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k9cl8iyzk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W31xCuqeB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"423\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NtzbDIqe4.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Xgk6WF1NX\",\"aFSqH4f8q\",\"yroUGoTK_\",\"WGQ1GYpCI\",\"pocN_VjLN\",\"EUdv1zfKy\",\"whPwCel_x\",\"wdoqbuBXa\",\"EAemAjbla\",\"mJoGrN9Yq\",\"sjFxTZJhV\",\"rTWHMREfW\",\"Mi7mjXCm7\"];const serializationHash=\"framer-Z78XQ\";const variantClassNames={aFSqH4f8q:\"framer-v-gesaoh\",EAemAjbla:\"framer-v-18ivumq\",EUdv1zfKy:\"framer-v-1rqyfn6\",Mi7mjXCm7:\"framer-v-bcy1od\",mJoGrN9Yq:\"framer-v-1d1fpue\",pocN_VjLN:\"framer-v-1c92kce\",rTWHMREfW:\"framer-v-1khdp9w\",sjFxTZJhV:\"framer-v-128i8vb\",wdoqbuBXa:\"framer-v-1kx8i5x\",WGQ1GYpCI:\"framer-v-dngox3\",whPwCel_x:\"framer-v-uvs1ao\",Xgk6WF1NX:\"framer-v-1hu90tn\",yroUGoTK_:\"framer-v-lbcyh0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Xgk6WF1NX\",\"Variant 10\":\"mJoGrN9Yq\",\"Variant 11\":\"sjFxTZJhV\",\"Variant 12\":\"rTWHMREfW\",\"Variant 2\":\"aFSqH4f8q\",\"Variant 3\":\"yroUGoTK_\",\"Variant 4\":\"WGQ1GYpCI\",\"Variant 5\":\"pocN_VjLN\",\"Variant 6\":\"EUdv1zfKy\",\"Variant 7\":\"whPwCel_x\",\"Variant 8\":\"wdoqbuBXa\",\"Variant 9\":\"EAemAjbla\",Mobile:\"Mi7mjXCm7\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Xgk6WF1NX\"};};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:\"Xgk6WF1NX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Mi7mjXCm7\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hu90tn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Xgk6WF1NX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aFSqH4f8q:{\"data-framer-name\":\"Variant 2\"},EAemAjbla:{\"data-framer-name\":\"Variant 9\"},EUdv1zfKy:{\"data-framer-name\":\"Variant 6\"},Mi7mjXCm7:{\"data-framer-name\":\"Mobile\"},mJoGrN9Yq:{\"data-framer-name\":\"Variant 10\"},pocN_VjLN:{\"data-framer-name\":\"Variant 5\"},rTWHMREfW:{\"data-framer-name\":\"Variant 12\"},sjFxTZJhV:{\"data-framer-name\":\"Variant 11\"},wdoqbuBXa:{\"data-framer-name\":\"Variant 8\"},WGQ1GYpCI:{\"data-framer-name\":\"Variant 4\"},whPwCel_x:{\"data-framer-name\":\"Variant 7\"},yroUGoTK_:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-137quv\",\"data-framer-name\":\"Stack 1\",layoutDependency:layoutDependency,layoutId:\"vyrMbUPlb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qv5p5j\",\"data-framer-name\":\"Section 1\",layoutDependency:layoutDependency,layoutId:\"PMa6sShAq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"If we haven\u2019t been properly introduced yet\u2026\"})}),className:\"framer-wmv8df\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"PJFS1C3zL\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{aFSqH4f8q:{opacity:1},EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FwcmFzaW1vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Caprasimo\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255)))\"},children:\"Hi there, we're Jason and Caroline Zook! \"})}),className:\"framer-1fjtg30\",fonts:[\"GF;Caprasimo-regular\"],layoutDependency:layoutDependency,layoutId:\"u2ygGT_rD\",style:{\"--extracted-r6o4lv\":\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{aFSqH4f8q:{opacity:1},EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:[\"We're a husband and wife duo with over 15 years of experience running online businesses and selling digital products. Together we created Wandering Aimfully, where we help solo creators go from overwhelmed, burnt out and grasping for revenue to \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-weight\":\"700\"},children:\"digital product powerhouses with the calm confidence to build burnout-proof businesses.\"})]})}),className:\"framer-euf4yp\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"yRj6HB1u2\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{aFSqH4f8q:{opacity:1},EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17bz80b\",layoutDependency:layoutDependency,layoutId:\"CQDNFetUt\",style:{opacity:0},variants:{aFSqH4f8q:{opacity:1},Mi7mjXCm7:{opacity:1},yroUGoTK_:{opacity:1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ezzht\",layoutDependency:layoutDependency,layoutId:\"xKAxInJqm\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1udyt1n\",\"data-border\":true,\"data-framer-name\":\"Image Frame\",layoutDependency:layoutDependency,layoutId:\"eFrtE6jIJ\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-0253317a-6983-4cf0-8671-582b3724acaa, rgb(235, 236, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"4px 4px 0px 0px var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2268,pixelWidth:4032,positionX:\"30%\",positionY:\"47.6%\",sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.24 - 12px, 1px)`,src:\"https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg\",srcSet:\"https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg 4032w\"},className:\"framer-1e7h8wd\",layoutDependency:layoutDependency,layoutId:\"qw5VwJu3w\",...addPropertyOverrides({Mi7mjXCm7:{background:{alt:\"\",fit:\"fill\",pixelHeight:2268,pixelWidth:4032,positionX:\"30%\",positionY:\"47.6%\",sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px, 1px)`,src:\"https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg\",srcSet:\"https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QnAOvxKipuDRsAZBWc9Ekrch94E.jpg 4032w\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c3ozh4\",\"data-framer-name\":\"Stack 2\",layoutDependency:layoutDependency,layoutId:\"eFMUMqgLG\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1paaikm\",layoutDependency:layoutDependency,layoutId:\"hp0LBSbl3\",style:{opacity:0},variants:{EUdv1zfKy:{opacity:1},pocN_VjLN:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-guzoji\",layoutDependency:layoutDependency,layoutId:\"EiPc4_bio\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-91is3q\",\"data-border\":true,\"data-framer-name\":\"Image Frame\",layoutDependency:layoutDependency,layoutId:\"xYhC9OO31\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-0253317a-6983-4cf0-8671-582b3724acaa, rgb(235, 236, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"4px 4px 0px 0px var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2885,pixelWidth:1474,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.27 - 12px, 1px)`,src:\"https://framerusercontent.com/images/ElvGwGkHl5LBt31stYnVIrVNnPo.jpeg\",srcSet:\"https://framerusercontent.com/images/ElvGwGkHl5LBt31stYnVIrVNnPo.jpeg?scale-down-to=1024 523w,https://framerusercontent.com/images/ElvGwGkHl5LBt31stYnVIrVNnPo.jpeg?scale-down-to=2048 1046w,https://framerusercontent.com/images/ElvGwGkHl5LBt31stYnVIrVNnPo.jpeg 1474w\"},className:\"framer-i3u83s\",layoutDependency:layoutDependency,layoutId:\"pYknfYqsY\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6sep5f\",\"data-framer-name\":\"Section 2\",layoutDependency:layoutDependency,layoutId:\"SG0L7mIb7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:'For years we were stuck at a revenue ceiling with our businesses, working far too many nights and feeling frustrated that we hadn\\'t \"broken through\" yet.'})}),className:\"framer-7xjjsa\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"BMQzCBDEd\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Not only that, but the stress of trying to juggle everything was finally catching up to us, compromising our physical and mental health. Anxiety attacks, burnout-induced exhaustion, and\\xa0deteriorating health felt like the unavoidable cost of being being passionate entrepreneurs.\"})}),className:\"framer-zbg8os\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"aW1l_M4Eb\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FwcmFzaW1vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Caprasimo\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255)))\"},children:\"Until finally, we stopped listening to conventional growth advice which was making our business more complex, stressful, and hard to manage.\"})}),className:\"framer-18739bk\",fonts:[\"GF;Caprasimo-regular\"],layoutDependency:layoutDependency,layoutId:\"T6VEwePcV\",style:{\"--extracted-r6o4lv\":\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"Instead we asked ourselves:\\xa0\"})}),className:\"framer-18aeg3n\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"isP7NOSlR\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1},yroUGoTK_:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tvj95w\",layoutDependency:layoutDependency,layoutId:\"uSpIWy1XD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m2x9ed\",\"data-framer-name\":\"Section 3\",layoutDependency:layoutDependency,layoutId:\"zqSP62keX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Komika Display Regular\", \"Komika Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"What would a CALM business look like?\"})}),className:\"framer-12lx0rr\",fonts:[\"CUSTOM;Komika Display Regular\"],layoutDependency:layoutDependency,layoutId:\"LovfZguU5\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"We dreamed of a business that felt simple, predictable, and spacious.\"})}),className:\"framer-1jqk5jb\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"OyQPvlj73\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"One that didn't rely on paid ads, or posting 20 Instagram stories every single day, or managing multiple landing pages and complex funnels.\"})}),className:\"framer-1xg6xpd\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"nKIQfOhNf\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:[\"We didn't want a lambo or a mansion; we just wanted \",/*#__PURE__*/_jsx(motion.strong,{children:\"enough\"}),\" money to live a great life, \",/*#__PURE__*/_jsx(motion.strong,{children:\"enough\"}),\" time to live at a slower pace, and \",/*#__PURE__*/_jsx(motion.strong,{children:\"enough\"}),\" customers to feel like we were making a difference.\"]})}),className:\"framer-vwtl1j\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"ICFCgEQDz\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7zb7to\",layoutDependency:layoutDependency,layoutId:\"WwoJ5xdii\",style:{opacity:1},variants:{aFSqH4f8q:{opacity:0}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ktfbn\",layoutDependency:layoutDependency,layoutId:\"lDVClxEGJ\",style:{opacity:0},variants:{EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},pocN_VjLN:{opacity:1},WGQ1GYpCI:{opacity:1},whPwCel_x:{opacity:1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17b1zhc\",\"data-border\":true,\"data-framer-name\":\"Image Frame\",layoutDependency:layoutDependency,layoutId:\"rtwDIZoz0\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-0253317a-6983-4cf0-8671-582b3724acaa, rgb(235, 236, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"4px 4px 0px 0px var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1790,pixelWidth:3292,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3 - 12px, 1px)`,src:\"https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg\",srcSet:\"https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg 3292w\"},className:\"framer-1bg1bfu\",layoutDependency:layoutDependency,layoutId:\"KmI7cXVEF\",...addPropertyOverrides({Mi7mjXCm7:{background:{alt:\"\",fit:\"fill\",pixelHeight:1790,pixelWidth:3292,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px, 1px)`,src:\"https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg\",srcSet:\"https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KTlk2L7CQjr0SB62WVpErMltXs.jpg 3292w\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hfntzy\",layoutDependency:layoutDependency,layoutId:\"pSnwpdjpr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v2kajk\",layoutDependency:layoutDependency,layoutId:\"chOarhxcM\",style:{opacity:1},variants:{aFSqH4f8q:{opacity:0},WGQ1GYpCI:{opacity:0},yroUGoTK_:{opacity:0}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ape78j\",layoutDependency:layoutDependency,layoutId:\"jPIzxxK2P\",style:{opacity:0},variants:{EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},pocN_VjLN:{opacity:1},whPwCel_x:{opacity:1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10dc0i7\",\"data-border\":true,\"data-framer-name\":\"Image Frame\",layoutDependency:layoutDependency,layoutId:\"mx7hBYMnm\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-0253317a-6983-4cf0-8671-582b3724acaa, rgb(235, 236, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"4px 4px 0px 0px var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:2268,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3 - 12px, 1px)`,src:\"https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg\",srcSet:\"https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg?scale-down-to=2048 1152w,https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg 2268w\"},className:\"framer-75dgg6\",layoutDependency:layoutDependency,layoutId:\"iFKZtcudI\",...addPropertyOverrides({Mi7mjXCm7:{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:2268,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px, 1px)`,src:\"https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg\",srcSet:\"https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg?scale-down-to=2048 1152w,https://framerusercontent.com/images/VfmgtRKB4HEeNyPw6DozILJM4.jpeg 2268w\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ew7yo4\",\"data-framer-name\":\"Section 4\",layoutDependency:layoutDependency,layoutId:\"cqJPOT20z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:[\"So, we combined our two businesses into one streamlined brand and narrowed in on ONE core offer that we could launch predictably. \",/*#__PURE__*/_jsx(motion.strong,{children:\"And that's where the magic started to happen.\"}),\" \"]})}),className:\"framer-rq6wuq\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"Pbni8c1zp\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"This allowed us to dial EVERYTHING in and put all our effort toward filling up ONE single bucket, not 20 buckets one drop at a time.\\xa0The result?\"})}),className:\"framer-1hbermi\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"QSkZxsCGI\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FwcmFzaW1vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Caprasimo\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255)))\"},children:\"We have a business that is more profitable than it\u2019s ever been AND one that allows us to take breaks whenever we want.\\xa0\"})}),className:\"framer-1yqt5un\",fonts:[\"GF;Caprasimo-regular\"],layoutDependency:layoutDependency,layoutId:\"Uyj94nfiw\",style:{\"--extracted-r6o4lv\":\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},pocN_VjLN:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rfkxtr\",layoutDependency:layoutDependency,layoutId:\"BDCSAXUPz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h3okw9\",\"data-framer-name\":\"Section 5\",layoutDependency:layoutDependency,layoutId:\"ZUoSVYFaR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"This approach has led us to a beautiful life where we were able to move to a small coastal town in Portugal\u2014working 5 hours a day most weeks, and having all the freedom we ever dreamed of\u2026\\xa0\"})}),className:\"framer-qzsvji\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"JVlE0fMGV\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q2FwcmFzaW1vLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Caprasimo\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255)))\"},children:\"Location freedom, time freedom, financial freedom and creative freedom.\"})}),className:\"framer-34e2is\",fonts:[\"GF;Caprasimo-regular\"],layoutDependency:layoutDependency,layoutId:\"gU8XEaQta\",style:{\"--extracted-r6o4lv\":\"var(--token-24677409-4eda-4497-aa5c-781c3ad8aa07, rgb(40, 49, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EAemAjbla:{opacity:1},EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},wdoqbuBXa:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"If this sounds like what you want, we want to help you get there.\"})}),className:\"framer-15w6umf\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"zxG0hzBs0\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Komika Display Regular\", \"Komika Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"You are a creator, WE are creators, and together we can build calm, sustainable, freedom-focused businesses.\"})}),className:\"framer-wllfar\",fonts:[\"CUSTOM;Komika Display Regular\"],layoutDependency:layoutDependency,layoutId:\"JD4OPyggM\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Mi7mjXCm7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tvbWlrYSBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Komika Display Regular\", \"Komika Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"You are a creator, WE are creators, and together we can build calm, sustainable, freedom-focused businesses.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37)))\"},children:\"How? So glad you asked. Let us teach you our ways! \"})}),className:\"framer-1hnp422\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"vA49cpmUJ\",style:{\"--extracted-r6o4lv\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},variants:{EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1},mJoGrN9Yq:{opacity:1},rTWHMREfW:{opacity:1},sjFxTZJhV:{opacity:1},whPwCel_x:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k7a4s4\",layoutDependency:layoutDependency,layoutId:\"z9w10om1C\",style:{opacity:0},variants:{EUdv1zfKy:{opacity:1},Mi7mjXCm7:{opacity:1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-133kpo3\",layoutDependency:layoutDependency,layoutId:\"L1Ax8BgFL\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ixaheg\",\"data-border\":true,\"data-framer-name\":\"Image Frame\",layoutDependency:layoutDependency,layoutId:\"JGGGTKV6g\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"var(--token-0253317a-6983-4cf0-8671-582b3724acaa, rgb(235, 236, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"4px 4px 0px 0px var(--token-c4fcdde6-a4f8-49d7-a2e0-90eeee412b57, rgb(33, 33, 37))\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:2268,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.3 - 12px, 1px)`,src:\"https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg\",srcSet:\"https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg?scale-down-to=2048 1152w,https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg 2268w\"},className:\"framer-k40wg2\",layoutDependency:layoutDependency,layoutId:\"efuZnIxbb\",...addPropertyOverrides({Mi7mjXCm7:{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:2268,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 12px, 1px)`,src:\"https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg\",srcSet:\"https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg?scale-down-to=1024 576w,https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg?scale-down-to=2048 1152w,https://framerusercontent.com/images/gabzRJFJfc635ocs0nDVOnXvYno.jpeg 2268w\"}}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Z78XQ.framer-1ggb86z, .framer-Z78XQ .framer-1ggb86z { display: block; }\",\".framer-Z78XQ.framer-1hu90tn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 900px; overflow: hidden; padding: 0px; position: relative; width: 900px; }\",\".framer-Z78XQ .framer-137quv, .framer-Z78XQ .framer-c3ozh4, .framer-Z78XQ .framer-tvj95w, .framer-Z78XQ .framer-1hfntzy, .framer-Z78XQ .framer-rfkxtr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Z78XQ .framer-qv5p5j, .framer-Z78XQ .framer-6sep5f, .framer-Z78XQ .framer-m2x9ed, .framer-Z78XQ .framer-ew7yo4, .framer-Z78XQ .framer-h3okw9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Z78XQ .framer-wmv8df, .framer-Z78XQ .framer-1fjtg30, .framer-Z78XQ .framer-euf4yp, .framer-Z78XQ .framer-7xjjsa, .framer-Z78XQ .framer-zbg8os, .framer-Z78XQ .framer-18739bk, .framer-Z78XQ .framer-18aeg3n, .framer-Z78XQ .framer-12lx0rr, .framer-Z78XQ .framer-1jqk5jb, .framer-Z78XQ .framer-1xg6xpd, .framer-Z78XQ .framer-vwtl1j, .framer-Z78XQ .framer-rq6wuq, .framer-Z78XQ .framer-1hbermi, .framer-Z78XQ .framer-1yqt5un, .framer-Z78XQ .framer-qzsvji, .framer-Z78XQ .framer-34e2is, .framer-Z78XQ .framer-15w6umf, .framer-Z78XQ .framer-wllfar, .framer-Z78XQ .framer-1hnp422 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Z78XQ .framer-17bz80b { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 55px; height: auto; justify-content: center; padding: 0px 12px 12px 0px; position: relative; width: 24%; }\",\".framer-Z78XQ .framer-13ezzht, .framer-Z78XQ .framer-guzoji, .framer-Z78XQ .framer-18ktfbn, .framer-Z78XQ .framer-1ape78j, .framer-Z78XQ .framer-133kpo3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Z78XQ .framer-1udyt1n, .framer-Z78XQ .framer-91is3q, .framer-Z78XQ .framer-17b1zhc, .framer-Z78XQ .framer-10dc0i7, .framer-Z78XQ .framer-1ixaheg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Z78XQ .framer-1e7h8wd, .framer-Z78XQ .framer-i3u83s, .framer-Z78XQ .framer-1bg1bfu, .framer-Z78XQ .framer-75dgg6, .framer-Z78XQ .framer-k40wg2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Z78XQ .framer-1paaikm { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 55px; height: auto; justify-content: center; padding: 0px 12px 12px 0px; position: relative; width: 27%; }\",\".framer-Z78XQ .framer-7zb7to, .framer-Z78XQ .framer-1v2kajk, .framer-Z78XQ .framer-1k7a4s4 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 55px; height: auto; justify-content: center; padding: 0px 12px 12px 0px; position: relative; width: 30%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z78XQ.framer-1hu90tn, .framer-Z78XQ .framer-137quv, .framer-Z78XQ .framer-qv5p5j, .framer-Z78XQ .framer-17bz80b, .framer-Z78XQ .framer-13ezzht, .framer-Z78XQ .framer-1udyt1n, .framer-Z78XQ .framer-1e7h8wd, .framer-Z78XQ .framer-c3ozh4, .framer-Z78XQ .framer-1paaikm, .framer-Z78XQ .framer-guzoji, .framer-Z78XQ .framer-91is3q, .framer-Z78XQ .framer-i3u83s, .framer-Z78XQ .framer-6sep5f, .framer-Z78XQ .framer-tvj95w, .framer-Z78XQ .framer-m2x9ed, .framer-Z78XQ .framer-7zb7to, .framer-Z78XQ .framer-18ktfbn, .framer-Z78XQ .framer-17b1zhc, .framer-Z78XQ .framer-1bg1bfu, .framer-Z78XQ .framer-1hfntzy, .framer-Z78XQ .framer-1v2kajk, .framer-Z78XQ .framer-1ape78j, .framer-Z78XQ .framer-10dc0i7, .framer-Z78XQ .framer-75dgg6, .framer-Z78XQ .framer-ew7yo4, .framer-Z78XQ .framer-rfkxtr, .framer-Z78XQ .framer-h3okw9, .framer-Z78XQ .framer-1k7a4s4, .framer-Z78XQ .framer-133kpo3, .framer-Z78XQ .framer-1ixaheg, .framer-Z78XQ .framer-k40wg2 { gap: 0px; } .framer-Z78XQ.framer-1hu90tn > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Z78XQ.framer-1hu90tn > :first-child, .framer-Z78XQ .framer-qv5p5j > :first-child, .framer-Z78XQ .framer-17bz80b > :first-child, .framer-Z78XQ .framer-1udyt1n > :first-child, .framer-Z78XQ .framer-1e7h8wd > :first-child, .framer-Z78XQ .framer-1paaikm > :first-child, .framer-Z78XQ .framer-91is3q > :first-child, .framer-Z78XQ .framer-i3u83s > :first-child, .framer-Z78XQ .framer-6sep5f > :first-child, .framer-Z78XQ .framer-m2x9ed > :first-child, .framer-Z78XQ .framer-7zb7to > :first-child, .framer-Z78XQ .framer-17b1zhc > :first-child, .framer-Z78XQ .framer-1bg1bfu > :first-child, .framer-Z78XQ .framer-1v2kajk > :first-child, .framer-Z78XQ .framer-10dc0i7 > :first-child, .framer-Z78XQ .framer-75dgg6 > :first-child, .framer-Z78XQ .framer-ew7yo4 > :first-child, .framer-Z78XQ .framer-h3okw9 > :first-child, .framer-Z78XQ .framer-1k7a4s4 > :first-child, .framer-Z78XQ .framer-1ixaheg > :first-child, .framer-Z78XQ .framer-k40wg2 > :first-child { margin-top: 0px; } .framer-Z78XQ.framer-1hu90tn > :last-child, .framer-Z78XQ .framer-qv5p5j > :last-child, .framer-Z78XQ .framer-17bz80b > :last-child, .framer-Z78XQ .framer-1udyt1n > :last-child, .framer-Z78XQ .framer-1e7h8wd > :last-child, .framer-Z78XQ .framer-1paaikm > :last-child, .framer-Z78XQ .framer-91is3q > :last-child, .framer-Z78XQ .framer-i3u83s > :last-child, .framer-Z78XQ .framer-6sep5f > :last-child, .framer-Z78XQ .framer-m2x9ed > :last-child, .framer-Z78XQ .framer-7zb7to > :last-child, .framer-Z78XQ .framer-17b1zhc > :last-child, .framer-Z78XQ .framer-1bg1bfu > :last-child, .framer-Z78XQ .framer-1v2kajk > :last-child, .framer-Z78XQ .framer-10dc0i7 > :last-child, .framer-Z78XQ .framer-75dgg6 > :last-child, .framer-Z78XQ .framer-ew7yo4 > :last-child, .framer-Z78XQ .framer-h3okw9 > :last-child, .framer-Z78XQ .framer-1k7a4s4 > :last-child, .framer-Z78XQ .framer-1ixaheg > :last-child, .framer-Z78XQ .framer-k40wg2 > :last-child { margin-bottom: 0px; } .framer-Z78XQ .framer-137quv > *, .framer-Z78XQ .framer-c3ozh4 > *, .framer-Z78XQ .framer-tvj95w > *, .framer-Z78XQ .framer-1hfntzy > *, .framer-Z78XQ .framer-rfkxtr > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Z78XQ .framer-137quv > :first-child, .framer-Z78XQ .framer-13ezzht > :first-child, .framer-Z78XQ .framer-c3ozh4 > :first-child, .framer-Z78XQ .framer-guzoji > :first-child, .framer-Z78XQ .framer-tvj95w > :first-child, .framer-Z78XQ .framer-18ktfbn > :first-child, .framer-Z78XQ .framer-1hfntzy > :first-child, .framer-Z78XQ .framer-1ape78j > :first-child, .framer-Z78XQ .framer-rfkxtr > :first-child, .framer-Z78XQ .framer-133kpo3 > :first-child { margin-left: 0px; } .framer-Z78XQ .framer-137quv > :last-child, .framer-Z78XQ .framer-13ezzht > :last-child, .framer-Z78XQ .framer-c3ozh4 > :last-child, .framer-Z78XQ .framer-guzoji > :last-child, .framer-Z78XQ .framer-tvj95w > :last-child, .framer-Z78XQ .framer-18ktfbn > :last-child, .framer-Z78XQ .framer-1hfntzy > :last-child, .framer-Z78XQ .framer-1ape78j > :last-child, .framer-Z78XQ .framer-rfkxtr > :last-child, .framer-Z78XQ .framer-133kpo3 > :last-child { margin-right: 0px; } .framer-Z78XQ .framer-qv5p5j > *, .framer-Z78XQ .framer-1udyt1n > *, .framer-Z78XQ .framer-91is3q > *, .framer-Z78XQ .framer-6sep5f > *, .framer-Z78XQ .framer-m2x9ed > *, .framer-Z78XQ .framer-17b1zhc > *, .framer-Z78XQ .framer-10dc0i7 > *, .framer-Z78XQ .framer-ew7yo4 > *, .framer-Z78XQ .framer-h3okw9 > *, .framer-Z78XQ .framer-1ixaheg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Z78XQ .framer-17bz80b > *, .framer-Z78XQ .framer-1paaikm > *, .framer-Z78XQ .framer-7zb7to > *, .framer-Z78XQ .framer-1v2kajk > *, .framer-Z78XQ .framer-1k7a4s4 > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-Z78XQ .framer-13ezzht > *, .framer-Z78XQ .framer-guzoji > *, .framer-Z78XQ .framer-18ktfbn > *, .framer-Z78XQ .framer-1ape78j > *, .framer-Z78XQ .framer-133kpo3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Z78XQ .framer-1e7h8wd > *, .framer-Z78XQ .framer-i3u83s > *, .framer-Z78XQ .framer-1bg1bfu > *, .framer-Z78XQ .framer-75dgg6 > *, .framer-Z78XQ .framer-k40wg2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-Z78XQ.framer-v-bcy1od.framer-1hu90tn { gap: 32px; width: 390px; }\",\".framer-Z78XQ.framer-v-bcy1od .framer-137quv, .framer-Z78XQ.framer-v-bcy1od .framer-c3ozh4, .framer-Z78XQ.framer-v-bcy1od .framer-tvj95w, .framer-Z78XQ.framer-v-bcy1od .framer-1hfntzy, .framer-Z78XQ.framer-v-bcy1od .framer-rfkxtr { flex-direction: column; }\",\".framer-Z78XQ.framer-v-bcy1od .framer-qv5p5j, .framer-Z78XQ.framer-v-bcy1od .framer-m2x9ed, .framer-Z78XQ.framer-v-bcy1od .framer-h3okw9 { flex: none; width: 100%; }\",\".framer-Z78XQ.framer-v-bcy1od .framer-17bz80b { align-self: unset; height: 259px; width: 100%; }\",\".framer-Z78XQ.framer-v-bcy1od .framer-6sep5f, .framer-Z78XQ.framer-v-bcy1od .framer-ew7yo4 { flex: none; order: 0; width: 100%; }\",\".framer-Z78XQ.framer-v-bcy1od .framer-7zb7to { align-self: unset; height: 228px; width: 100%; }\",\".framer-Z78XQ.framer-v-bcy1od .framer-1v2kajk { align-self: unset; height: 474px; order: 1; width: 100%; }\",\".framer-Z78XQ.framer-v-bcy1od .framer-1k7a4s4 { align-self: unset; height: 289px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Z78XQ.framer-v-bcy1od.framer-1hu90tn, .framer-Z78XQ.framer-v-bcy1od .framer-137quv, .framer-Z78XQ.framer-v-bcy1od .framer-c3ozh4, .framer-Z78XQ.framer-v-bcy1od .framer-tvj95w, .framer-Z78XQ.framer-v-bcy1od .framer-1hfntzy, .framer-Z78XQ.framer-v-bcy1od .framer-rfkxtr { gap: 0px; } .framer-Z78XQ.framer-v-bcy1od.framer-1hu90tn > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Z78XQ.framer-v-bcy1od.framer-1hu90tn > :first-child, .framer-Z78XQ.framer-v-bcy1od .framer-137quv > :first-child, .framer-Z78XQ.framer-v-bcy1od .framer-c3ozh4 > :first-child, .framer-Z78XQ.framer-v-bcy1od .framer-tvj95w > :first-child, .framer-Z78XQ.framer-v-bcy1od .framer-1hfntzy > :first-child, .framer-Z78XQ.framer-v-bcy1od .framer-rfkxtr > :first-child { margin-top: 0px; } .framer-Z78XQ.framer-v-bcy1od.framer-1hu90tn > :last-child, .framer-Z78XQ.framer-v-bcy1od .framer-137quv > :last-child, .framer-Z78XQ.framer-v-bcy1od .framer-c3ozh4 > :last-child, .framer-Z78XQ.framer-v-bcy1od .framer-tvj95w > :last-child, .framer-Z78XQ.framer-v-bcy1od .framer-1hfntzy > :last-child, .framer-Z78XQ.framer-v-bcy1od .framer-rfkxtr > :last-child { margin-bottom: 0px; } .framer-Z78XQ.framer-v-bcy1od .framer-137quv > *, .framer-Z78XQ.framer-v-bcy1od .framer-c3ozh4 > *, .framer-Z78XQ.framer-v-bcy1od .framer-tvj95w > *, .framer-Z78XQ.framer-v-bcy1od .framer-1hfntzy > *, .framer-Z78XQ.framer-v-bcy1od .framer-rfkxtr > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",'.framer-Z78XQ[data-border=\"true\"]::after, .framer-Z78XQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1868.5\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"aFSqH4f8q\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"yroUGoTK_\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"WGQ1GYpCI\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"pocN_VjLN\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"EUdv1zfKy\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"whPwCel_x\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"wdoqbuBXa\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"EAemAjbla\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"mJoGrN9Yq\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"sjFxTZJhV\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"rTWHMREfW\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]},\"Mi7mjXCm7\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"900px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUBeEt1ZCu=withCSS(Component,css,\"framer-Z78XQ\");export default FramerUBeEt1ZCu;FramerUBeEt1ZCu.displayName=\"Sales Page Intro Text v2\";FramerUBeEt1ZCu.defaultProps={height:1868.5,width:900};addPropertyControls(FramerUBeEt1ZCu,{variant:{options:[\"Xgk6WF1NX\",\"aFSqH4f8q\",\"yroUGoTK_\",\"WGQ1GYpCI\",\"pocN_VjLN\",\"EUdv1zfKy\",\"whPwCel_x\",\"wdoqbuBXa\",\"EAemAjbla\",\"mJoGrN9Yq\",\"sjFxTZJhV\",\"rTWHMREfW\",\"Mi7mjXCm7\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\",\"Variant 12\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUBeEt1ZCu,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Caprasimo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/caprasimo/v5/esDT31JQOPuXIUGBp72kkJUCGpG-GQ.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Komika Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/JKYOb6fAyPWmxFRtqTbQrOReCI.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUBeEt1ZCu\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"900\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1868.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"aFSqH4f8q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"yroUGoTK_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"WGQ1GYpCI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"pocN_VjLN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"EUdv1zfKy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"whPwCel_x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"wdoqbuBXa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"EAemAjbla\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"mJoGrN9Yq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"sjFxTZJhV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"rTWHMREfW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]},\\\"Mi7mjXCm7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"900px\\\",null,null]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UBeEt1ZCu.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"W1Lm3YiGg\",\"l9EHrTiNg\",\"CRdPaMrVo\",\"BMn1XyDT3\",\"Wy87N2yYh\"];const serializationHash=\"framer-xmLVS\";const variantClassNames={BMn1XyDT3:\"framer-v-7jdw4k\",CRdPaMrVo:\"framer-v-buz8x0\",l9EHrTiNg:\"framer-v-1f8eaw9\",W1Lm3YiGg:\"framer-v-ut5q28\",Wy87N2yYh:\"framer-v-npo5g3\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Check Mark\":\"l9EHrTiNg\",Bonus:\"Wy87N2yYh\",Ex:\"CRdPaMrVo\",Image:\"BMn1XyDT3\",Text:\"W1Lm3YiGg\"};const getProps=({background,border,fontSize,height,id,text,width,...props})=>{return{...props,DWi2LKzAI:text??props.DWi2LKzAI??\"10\",PewB910Y8:background??props.PewB910Y8??\"rgb(238, 237, 238)\",SImalh1Df:fontSize??props.SImalh1Df??16,variant:humanReadableVariantMap[props.variant]??props.variant??\"W1Lm3YiGg\",xFXSIXA3c:border??props.xFXSIXA3c??{borderColor:\"black\",borderStyle:\"solid\",borderWidth:0}};};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,PewB910Y8,DWi2LKzAI,SImalh1Df,xFXSIXA3c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"W1Lm3YiGg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"l9EHrTiNg\",\"CRdPaMrVo\",\"BMn1XyDT3\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Wy87N2yYh\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"BMn1XyDT3\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"l9EHrTiNg\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"CRdPaMrVo\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ut5q28\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"W1Lm3YiGg\",ref:ref??ref1,style:{\"--border-bottom-width\":(xFXSIXA3c.borderBottomWidth??xFXSIXA3c.borderWidth)+\"px\",\"--border-color\":xFXSIXA3c.borderColor,\"--border-left-width\":(xFXSIXA3c.borderLeftWidth??xFXSIXA3c.borderWidth)+\"px\",\"--border-right-width\":(xFXSIXA3c.borderRightWidth??xFXSIXA3c.borderWidth)+\"px\",\"--border-style\":xFXSIXA3c.borderStyle,\"--border-top-width\":(xFXSIXA3c.borderTopWidth??xFXSIXA3c.borderWidth)+\"px\",backgroundColor:PewB910Y8,...style},...addPropertyOverrides({BMn1XyDT3:{\"data-framer-name\":\"Image\"},CRdPaMrVo:{\"data-framer-name\":\"Ex\"},l9EHrTiNg:{\"data-framer-name\":\"Check Mark\"},Wy87N2yYh:{\"data-framer-name\":\"Bonus\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-SImalh1Df-whajoFi5f) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b2f8315e-a3a8-44ce-b1b9-f5184a400514, rgb(51, 51, 51)))\"},children:\"10\"})}),className:\"framer-w8k9t5\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"my2WlOhHD\",style:{\"--extracted-r6o4lv\":\"var(--token-b2f8315e-a3a8-44ce-b1b9-f5184a400514, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-SImalh1Df-whajoFi5f\":SImalh1Df},text:DWi2LKzAI,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Wy87N2yYh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-SImalh1Df-whajoFi5f) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b2f8315e-a3a8-44ce-b1b9-f5184a400514, rgb(51, 51, 51)))\"},children:\"Bonus!\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18ka93j\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"agUEH3fYc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 13\"><path d=\"M 17.014 1.564 L 6.414 12.164 C 6.321 12.258 6.193 12.312 6.059 12.312 C 5.926 12.312 5.798 12.258 5.704 12.164 L 0.314 6.774 C 0.22 6.68 0.167 6.552 0.167 6.419 C 0.167 6.285 0.22 6.158 0.314 6.064 L 1.014 5.364 C 1.108 5.269 1.236 5.216 1.369 5.216 C 1.503 5.216 1.631 5.269 1.724 5.364 L 6.054 9.694 L 15.604 0.144 C 15.802 -0.048 16.117 -0.048 16.314 0.144 L 17.014 0.854 C 17.109 0.948 17.162 1.076 17.162 1.209 C 17.162 1.342 17.109 1.47 17.014 1.564 Z\" fill=\"var(--token-92498da1-5666-48de-b685-aeda672cb6c9, rgb(112, 222, 184)) /* {&quot;name&quot;:&quot;Green 500&quot;} */\"></path></svg>',svgContentId:9784587068,withExternalLayout:true,...addPropertyOverrides({Wy87N2yYh:{svgContentId:10684812413}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/ywWFy3AAqrYwxkV2MugZdkAYY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ywWFy3AAqrYwxkV2MugZdkAYY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ywWFy3AAqrYwxkV2MugZdkAYY.png 800w\"},className:\"framer-nx96ma\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"ruxmZdHct\",transformTemplate:transformTemplate1,...addPropertyOverrides({BMn1XyDT3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||48)-45),pixelHeight:800,pixelWidth:800,sizes:\"66px\",src:\"https://framerusercontent.com/images/ywWFy3AAqrYwxkV2MugZdkAYY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ywWFy3AAqrYwxkV2MugZdkAYY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ywWFy3AAqrYwxkV2MugZdkAYY.png 800w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f1ecma-container\",\"data-framer-name\":\"Check\",layoutDependency:layoutDependency,layoutId:\"B5IcPd0P2-container\",name:\"Check\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-73f93801-b018-45cd-8dbb-d6ea16276b6e, rgb(23, 188, 188))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"B5IcPd0P2\",layoutId:\"B5IcPd0P2\",mirrored:false,name:\"Check\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18ge67s-container\",\"data-framer-name\":\"X\",layoutDependency:layoutDependency,layoutId:\"xBRKHkFY5-container\",name:\"X\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 143, 146)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"xBRKHkFY5\",layoutId:\"xBRKHkFY5\",mirrored:false,name:\"X\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xmLVS.framer-hlg7mr, .framer-xmLVS .framer-hlg7mr { display: block; }\",\".framer-xmLVS.framer-ut5q28 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 255px; }\",\".framer-xmLVS .framer-w8k9t5 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xmLVS .framer-18ka93j { flex: none; height: 13px; position: relative; width: 18px; }\",\".framer-xmLVS .framer-nx96ma { aspect-ratio: 1 / 1; bottom: -21px; flex: none; height: var(--framer-aspect-ratio-supported, 66px); left: 47%; overflow: visible; position: absolute; width: 66px; z-index: 1; }\",\".framer-xmLVS .framer-1f1ecma-container, .framer-xmLVS .framer-18ge67s-container { flex: none; height: 24px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xmLVS.framer-ut5q28 { gap: 0px; } .framer-xmLVS.framer-ut5q28 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-xmLVS.framer-ut5q28 > :first-child { margin-left: 0px; } .framer-xmLVS.framer-ut5q28 > :last-child { margin-right: 0px; } }\",\".framer-xmLVS.framer-v-1f8eaw9 .framer-1f1ecma-container { order: 4; }\",\".framer-xmLVS.framer-v-buz8x0 .framer-18ge67s-container { order: 5; }\",\".framer-xmLVS.framer-v-7jdw4k.framer-ut5q28 { min-height: 48px; overflow: hidden; }\",\".framer-xmLVS.framer-v-7jdw4k .framer-nx96ma { order: 3; }\",\".framer-xmLVS.framer-v-npo5g3 .framer-w8k9t5 { flex: none; order: 1; white-space: pre; width: auto; }\",\".framer-xmLVS.framer-v-npo5g3 .framer-18ka93j { order: 0; }\",'.framer-xmLVS[data-border=\"true\"]::after, .framer-xmLVS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 254.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l9EHrTiNg\":{\"layout\":[\"fixed\",\"auto\"]},\"CRdPaMrVo\":{\"layout\":[\"fixed\",\"auto\"]},\"BMn1XyDT3\":{\"layout\":[\"fixed\",\"auto\"]},\"Wy87N2yYh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PewB910Y8\":\"background\",\"DWi2LKzAI\":\"text\",\"SImalh1Df\":\"fontSize\",\"xFXSIXA3c\":\"border\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwhajoFi5f=withCSS(Component,css,\"framer-xmLVS\");export default FramerwhajoFi5f;FramerwhajoFi5f.displayName=\"Grid Cell\";FramerwhajoFi5f.defaultProps={height:56,width:254.5};addPropertyControls(FramerwhajoFi5f,{variant:{options:[\"W1Lm3YiGg\",\"l9EHrTiNg\",\"CRdPaMrVo\",\"BMn1XyDT3\",\"Wy87N2yYh\"],optionTitles:[\"Text\",\"Check Mark\",\"Ex\",\"Image\",\"Bonus\"],title:\"Variant\",type:ControlType.Enum},PewB910Y8:{defaultValue:\"rgb(238, 237, 238)\",title:\"Background\",type:ControlType.Color},DWi2LKzAI:{defaultValue:\"10\",displayTextArea:false,title:\"Text\",type:ControlType.String},SImalh1Df:{defaultValue:16,title:\"Font Size\",type:ControlType.Number},xFXSIXA3c:{defaultValue:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:0},title:\"Border\",type:ControlType.Border}});addFonts(FramerwhajoFi5f,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwhajoFi5f\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l9EHrTiNg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CRdPaMrVo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BMn1XyDT3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wy87N2yYh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"56\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"PewB910Y8\\\":\\\"background\\\",\\\"DWi2LKzAI\\\":\\\"text\\\",\\\"SImalh1Df\\\":\\\"fontSize\\\",\\\"xFXSIXA3c\\\":\\\"border\\\"}\",\"framerIntrinsicWidth\":\"254.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./whajoFi5f.map", "// Generated by Framer (fdd8d61)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import GridCell from\"https://framerusercontent.com/modules/Nw8Y9ZN4GMYdKKVaMgcb/xBp1QsNEwiBHQr6fuKR9/whajoFi5f.js\";const GridCellFonts=getFonts(GridCell);const GridCellControls=getPropertyControls(GridCell);const cycleOrder=[\"SNvmldzi7\",\"zl7PaPKsX\"];const serializationHash=\"framer-ClruE\";const variantClassNames={SNvmldzi7:\"framer-v-vast6o\",zl7PaPKsX:\"framer-v-1gl6ahk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 humanReadableEnumMap={\"Check Mark\":\"l9EHrTiNg\",Bonus:\"Wy87N2yYh\",Ex:\"CRdPaMrVo\",Image:\"BMn1XyDT3\",Text:\"W1Lm3YiGg\"};const humanReadableVariantMap={\"Variant 1\":\"SNvmldzi7\",\"Variant 2\":\"zl7PaPKsX\"};const getProps=({border,bottomBorder,cell1Variant,cell2Variant,cell3Variant,featureName,fontSize,height,id,width,...props})=>{return{...props,D3BCqh8UA:fontSize??props.D3BCqh8UA??16,DBT0ocho0:humanReadableEnumMap[cell3Variant]??cell3Variant??props.DBT0ocho0??\"W1Lm3YiGg\",dSvOs6ph4:bottomBorder??props.dSvOs6ph4??{borderBottomWidth:1,borderColor:'var(--token-cd862c1d-4028-4cde-82ac-fb334bc37e5c, rgb(185, 182, 185)) /* {\"name\":\"Gray 650\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},k1sSoYHqv:humanReadableEnumMap[cell1Variant]??cell1Variant??props.k1sSoYHqv??\"l9EHrTiNg\",t08od__6N:border??props.t08od__6N??{borderColor:\"black\",borderStyle:\"solid\",borderWidth:0},UpOfQ389C:featureName??props.UpOfQ389C??\"Inbox\",variant:humanReadableVariantMap[props.variant]??props.variant??\"SNvmldzi7\",Ycdzx8I6J:humanReadableEnumMap[cell2Variant]??cell2Variant??props.Ycdzx8I6J??\"W1Lm3YiGg\"};};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,UpOfQ389C,k1sSoYHqv,Ycdzx8I6J,DBT0ocho0,t08od__6N,dSvOs6ph4,D3BCqh8UA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SNvmldzi7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vast6o\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"SNvmldzi7\",ref:ref??ref1,style:{\"--border-bottom-width\":(dSvOs6ph4.borderBottomWidth??dSvOs6ph4.borderWidth)+\"px\",\"--border-color\":dSvOs6ph4.borderColor,\"--border-left-width\":(dSvOs6ph4.borderLeftWidth??dSvOs6ph4.borderWidth)+\"px\",\"--border-right-width\":(dSvOs6ph4.borderRightWidth??dSvOs6ph4.borderWidth)+\"px\",\"--border-style\":dSvOs6ph4.borderStyle,\"--border-top-width\":(dSvOs6ph4.borderTopWidth??dSvOs6ph4.borderWidth)+\"px\",backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({zl7PaPKsX:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xh0lu3\",\"data-framer-name\":\"Table Row Name\",layoutDependency:layoutDependency,layoutId:\"KcKiuwd98\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-D3BCqh8UA-lTew3jQp6) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff4c69a8-32be-4098-9fea-b2218c9c3ff5, rgb(51, 51, 51)))\"},children:\"Inbox\"})}),className:\"framer-100yxfm\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"S3fImBMEZ\",style:{\"--extracted-r6o4lv\":\"var(--token-ff4c69a8-32be-4098-9fea-b2218c9c3ff5, rgb(51, 51, 51))\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-D3BCqh8UA-lTew3jQp6\":D3BCqh8UA},text:UpOfQ389C,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-155fj02\",\"data-framer-name\":\"Grid Container\",layoutDependency:layoutDependency,layoutId:\"l4Hc7UqNB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`max((max(${componentViewport?.width||\"100vw\"} - 380px, 1px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({zl7PaPKsX:{width:`max((max(${componentViewport?.width||\"100vw\"} - 300px, 1px) - 32px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d48viz-container\",layoutDependency:layoutDependency,layoutId:\"OfI7mIFge-container\",children:/*#__PURE__*/_jsx(GridCell,{DWi2LKzAI:\"10\",height:\"100%\",id:\"OfI7mIFge\",layoutId:\"OfI7mIFge\",PewB910Y8:\"rgba(237, 237, 237, 0)\",SImalh1Df:16,style:{height:\"100%\",width:\"100%\"},variant:k1sSoYHqv,width:\"100%\",xFXSIXA3c:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:0}})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`max((max(${componentViewport?.width||\"100vw\"} - 380px, 1px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({zl7PaPKsX:{width:`max((max(${componentViewport?.width||\"100vw\"} - 300px, 1px) - 32px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gcburu-container\",layoutDependency:layoutDependency,layoutId:\"eRmAATpJB-container\",children:/*#__PURE__*/_jsx(GridCell,{DWi2LKzAI:\"10\",height:\"100%\",id:\"eRmAATpJB\",layoutId:\"eRmAATpJB\",PewB910Y8:\"rgba(237, 237, 237, 0)\",SImalh1Df:16,style:{height:\"100%\",width:\"100%\"},variant:Ycdzx8I6J,width:\"100%\",xFXSIXA3c:t08od__6N})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:`max((max(${componentViewport?.width||\"100vw\"} - 380px, 1px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({zl7PaPKsX:{width:`max((max(${componentViewport?.width||\"100vw\"} - 300px, 1px) - 32px) / 3, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-il2xl0-container\",layoutDependency:layoutDependency,layoutId:\"xkVcIwxkY-container\",children:/*#__PURE__*/_jsx(GridCell,{DWi2LKzAI:\"10\",height:\"100%\",id:\"xkVcIwxkY\",layoutId:\"xkVcIwxkY\",PewB910Y8:\"rgba(237, 237, 237, 0)\",SImalh1Df:16,style:{height:\"100%\",width:\"100%\"},variant:DBT0ocho0,width:\"100%\",xFXSIXA3c:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:0}})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ClruE.framer-kxeo2g, .framer-ClruE .framer-kxeo2g { display: block; }\",\".framer-ClruE.framer-vast6o { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-ClruE .framer-1xh0lu3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 380px; }\",\".framer-ClruE .framer-100yxfm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 372px; word-break: break-word; word-wrap: break-word; }\",\".framer-ClruE .framer-155fj02 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 56px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ClruE .framer-1d48viz-container, .framer-ClruE .framer-1gcburu-container, .framer-ClruE .framer-il2xl0-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ClruE.framer-vast6o, .framer-ClruE .framer-1xh0lu3, .framer-ClruE .framer-155fj02 { gap: 0px; } .framer-ClruE.framer-vast6o > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ClruE.framer-vast6o > :first-child, .framer-ClruE .framer-1xh0lu3 > :first-child, .framer-ClruE .framer-155fj02 > :first-child { margin-left: 0px; } .framer-ClruE.framer-vast6o > :last-child, .framer-ClruE .framer-1xh0lu3 > :last-child, .framer-ClruE .framer-155fj02 > :last-child { margin-right: 0px; } .framer-ClruE .framer-1xh0lu3 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ClruE .framer-155fj02 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-ClruE.framer-v-1gl6ahk.framer-vast6o { width: 800px; }\",\".framer-ClruE.framer-v-1gl6ahk .framer-1xh0lu3 { width: 300px; }\",\".framer-ClruE.framer-v-1gl6ahk .framer-100yxfm { flex: 1 0 0px; width: 1px; }\",'.framer-ClruE[data-border=\"true\"]::after, .framer-ClruE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zl7PaPKsX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UpOfQ389C\":\"featureName\",\"k1sSoYHqv\":\"cell1Variant\",\"Ycdzx8I6J\":\"cell2Variant\",\"DBT0ocho0\":\"cell3Variant\",\"t08od__6N\":\"border\",\"dSvOs6ph4\":\"bottomBorder\",\"D3BCqh8UA\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlTew3jQp6=withCSS(Component,css,\"framer-ClruE\");export default FramerlTew3jQp6;FramerlTew3jQp6.displayName=\"Pricing Row\";FramerlTew3jQp6.defaultProps={height:56,width:1e3};addPropertyControls(FramerlTew3jQp6,{variant:{options:[\"SNvmldzi7\",\"zl7PaPKsX\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},UpOfQ389C:{defaultValue:\"Inbox\",displayTextArea:false,title:\"Feature Name\",type:ControlType.String},k1sSoYHqv:GridCellControls?.[\"variant\"]&&{...GridCellControls[\"variant\"],defaultValue:\"l9EHrTiNg\",description:undefined,hidden:undefined,title:\"Cell 1 Variant\"},Ycdzx8I6J:GridCellControls?.[\"variant\"]&&{...GridCellControls[\"variant\"],defaultValue:\"W1Lm3YiGg\",description:undefined,hidden:undefined,title:\"Cell 2 Variant\"},DBT0ocho0:GridCellControls?.[\"variant\"]&&{...GridCellControls[\"variant\"],defaultValue:\"W1Lm3YiGg\",description:undefined,hidden:undefined,title:\"Cell 3 Variant\"},t08od__6N:{defaultValue:{borderColor:\"black\",borderStyle:\"solid\",borderWidth:0},title:\"Border\",type:ControlType.Border},dSvOs6ph4:{defaultValue:{borderBottomWidth:1,borderColor:'var(--token-cd862c1d-4028-4cde-82ac-fb334bc37e5c, rgb(185, 182, 185)) /* {\"name\":\"Gray 650\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},title:\"Bottom Border\",type:ControlType.Border},D3BCqh8UA:{defaultValue:16,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerlTew3jQp6,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...GridCellFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlTew3jQp6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"UpOfQ389C\\\":\\\"featureName\\\",\\\"k1sSoYHqv\\\":\\\"cell1Variant\\\",\\\"Ycdzx8I6J\\\":\\\"cell2Variant\\\",\\\"DBT0ocho0\\\":\\\"cell3Variant\\\",\\\"t08od__6N\\\":\\\"border\\\",\\\"dSvOs6ph4\\\":\\\"bottomBorder\\\",\\\"D3BCqh8UA\\\":\\\"fontSize\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zl7PaPKsX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"56\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lTew3jQp6.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "HeaderStrokeFonts", "getFonts", "JFMTCCS5E_default", "ImageWithFX", "withFX", "Image2", "ImageWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "MotionDivWithFX", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "TopicFonts", "iUg1G4Hr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "animation4", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramercmmoACdV3", "withCSS", "cmmoACdV3_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "MotionDivWithFX", "TopicFonts", "getFonts", "iUg1G4Hr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "ComponentViewportProvider", "css", "FramerJV0O8OfUg", "withCSS", "JV0O8OfUg_default", "addPropertyControls", "ControlType", "addFonts", "CountdownTimerVisualComponent", "deadline", "numberFontSize", "numberFontFamily", "numberColor", "numberLetterSpacing", "labelFontSize", "labelFontFamily", "labelColor", "labelLetterSpacing", "timeLeft", "setTimeLeft", "ye", "calculateTimeLeft", "ue", "timer", "u", "renderTimeBlock", "difference", "label", "value", "p", "addPropertyControls", "ControlType", "CountdownTimerComponent", "deadline", "fontSize", "color", "fontFamily", "letterSpacing", "timeLeft", "setTimeLeft", "ye", "calculateTimeLeft", "ue", "timer", "p", "formatTimeLeft", "difference", "addPropertyControls", "ControlType", "FeatherFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "buttonVisible", "height", "id", "joinLink", "link1LinkAbout", "link1Text", "link2LinkFeatures", "link2Text", "link3LinkCalmLaunch", "link3Text", "link4LinkPricing", "link4Text", "link5LinkFAQ", "link5Text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "KRkWsVTdL", "qZ2vv4spe", "xArkoNnjL", "EZmJ2jDqC", "AedreaeIZ", "PVu2cao1Z", "vDHPiHdq2", "ss9abqXcJ", "jAJDjwqND", "wyzXJ2_2o", "NoFFflO75", "ulG84eovZ", "AqYv1NYei", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1yhzqak", "args", "onMouseLeave1i221pu", "onTap1jnipgm", "onTap1nd0sow", "onTap1gl7ifx", "onTap1opnfa8", "onTap1bvm9dk", "onTap1ne7jm5", "onTap3knjge", "onTap1fdxbnc", "onTapm5hby0", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "RichText2", "ComponentViewportProvider", "css", "FramerIRB73kyKg", "withCSS", "IRB73kyKg_default", "addPropertyControls", "ControlType", "addFonts", "CountdownTimerVisualComponentFonts", "getFonts", "CountdownTimerVisualComponent", "CountdownTimerComponentFonts", "CountdownTimerComponent", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "JoinPageNavigationFonts", "IRB73kyKg_default", "JoinPageNavigationWithVariantAppearEffect", "withVariantAppearEffect", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "SmartComponentScopedContainer", "MotionDivWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "transition3", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "joinLink", "link1", "link1Text", "link2", "link2Text", "link3", "link3Text", "lINk4", "link4Text", "link5", "link5Text", "scrollSectionEnter", "scrollSectionLink2", "scrollSectionLink3", "scrollSectionLink4", "scrollSectionLink5", "scrollSectionStart", "showBigCountdown", "showLitttleCountdown", "showNavigation", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ACWyWHCgP", "wwuf5tygD", "tbBiEfJpZ", "FVhiQQZfD", "t9AzFYD24", "i2NkeMZX2", "yImbyOvQ2", "b1GACU1rn", "AitGcFW54", "ahjCmE3UW", "eG05VtB2d", "auowfS2rC", "S5vk6E8Ll", "VWJIzMyCe", "mk02QFjxA", "wRA67AVxI", "ltjhuAo1y", "FyWblHdGq", "uL1kXfFKl", "LZ8GWHshM", "raX8zd7PE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "Link", "css", "FramerK7HmyT9Ti", "withCSS", "K7HmyT9Ti_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramermcW0js4c8", "withCSS", "mcW0js4c8_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerNtzbDIqe4", "withCSS", "NtzbDIqe4_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramerUBeEt1ZCu", "withCSS", "UBeEt1ZCu_default", "addPropertyControls", "ControlType", "addFonts", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "border", "fontSize", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PewB910Y8", "DWi2LKzAI", "SImalh1Df", "xFXSIXA3c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerwhajoFi5f", "withCSS", "whajoFi5f_default", "addPropertyControls", "ControlType", "addFonts", "GridCellFonts", "getFonts", "whajoFi5f_default", "GridCellControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "border", "bottomBorder", "cell1Variant", "cell2Variant", "cell3Variant", "featureName", "fontSize", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UpOfQ389C", "k1sSoYHqv", "Ycdzx8I6J", "DBT0ocho0", "t08od__6N", "dSvOs6ph4", "D3BCqh8UA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerlTew3jQp6", "withCSS", "lTew3jQp6_default", "addPropertyControls", "ControlType", "addFonts"]
}
