{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/jNBsk8CI17JqVZ05S9Sk/BES3npoP1yDge9ck5Tgo/Custom_Function_Override.js", "ssg:https://framerusercontent.com/modules/9vCt51aAuJBWbLUaqYJH/2nt0glrccV9Zf91AZcl8/YxAUZlgP8.js", "ssg:https://framerusercontent.com/modules/rCeZGByAt5trjtc74Nqt/g1f59vJa9c80PS7vpZRY/ZNc7qfYHq.js", "ssg:https://framerusercontent.com/modules/R1JTP6sr3MDBxIJixFP6/OlhFRXrJoWqU0C6zcPe5/nQvZ5kQcV.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\",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\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{createElement as _createElement}from\"react\";import{useState,useEffect,useMemo}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{HUBSPOT_TRACK_EVENTS,USERPILOT_EVENTS,getUUIDParams}from\"https://framerusercontent.com/modules/bht4YxYvS1EtDNlVwP8y/IeQ5DBByb3aiPyYH3PsS/Hubspot_Events.js\";import{segmentLoad,callTrackEvent}from\"https://framerusercontent.com/modules/sAg1Vq6Uhcdm0gGKWqo1/yW3psvUxk01Y6r79v3ge/UseSegment.js\";const{trackButtonClickedTryItForFree,trackHeaderFooterMenuClick,trackClickTab,trackClickTabFloating,trackClickAugmentedRealitySolutions,trackClickBuildYourOwnConfigurator,trackClickCustomerSuccessStories,trackClickExplore3DRendering,trackClickLearnMoreEnterprise}=USERPILOT_EVENTS;// Learn more: https://www.framer.com/docs/guides/overrides/\n// helper functions\nfunction updateLoginButton(user=null){const logInBtn=document.querySelectorAll(\".login_btn\");if(logInBtn?.length>0){for(let i=0;i<logInBtn?.length;i++){const btn=logInBtn[i];if(!(user?.id&&user?.is_guest)){btn.querySelector(\".framer-text\").innerHTML=user?\"Hi, \"+user?.first_name:\"Log in\";// btn.toggleClass(\"user_name\", !!user)\n// btn.toggleClass(\"js-event_btn_Mixpanel\", !user)\nbtn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"data-href\",btn.querySelectorAll(\"a\")?.[0]?.getAttribute(\"href\"));btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"href\",user?\"javascript:void(0)\":\"https://app.imagine.io/sign-in\"+getUUIDParams());btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"target\",user?\"\":\"_blank\");}btn.querySelectorAll(\"a\")?.[0]?.addEventListener(\"click\",function(event){callTrackEvent(\"Login Click\",{},false);});}}}function updateGetStartedButton(_user=null){const user=_user&&!_user?.is_guest;const getStartedBtn=document.querySelectorAll(\".getStarted_btn\");if(getStartedBtn?.length>0){for(let i=0;i<getStartedBtn?.length;i++){const btn=getStartedBtn[i];btn.style.display=user?\"block\":\"none\";btn.querySelector(\".framer-text\").innerHTML=user?\"Dashboard\":\"Get started\";//     btn.toggleClass(\"header_dashboard\", !!user)\n//     btn.toggleClass(\"js-event_btn_Mixpanel\", !user)\nif(btn.querySelectorAll(\"a\")?.[0]){btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"href\",user?\"https://app.imagine.io/dashboard\"+getUUIDParams():\"https://app.imagine.io/register\"+getUUIDParams());btn.querySelectorAll(\"a\")?.[0]?.setAttribute(\"target\",\"_blank\");}else{btn.onclick=()=>{window.open(user?\"https://app.imagine.io/dashboard\"+getUUIDParams():\"https://app.imagine.io/register\"+getUUIDParams(),\"_blank\");};}}}}function getDataFromLocalStorage(callback=null){const currentUser=localStorage.getItem(\"current_user\")||null;const USER_DATA=currentUser?JSON.parse(currentUser):null;const user=USER_DATA?.user;callback?.(user);return user;}// function overrides\nexport function withHideWhenLoggedIn(Component){const WrappedComponent=props=>{const handleLogin=()=>{const isLoggedIn=getDataFromLocalStorage();// hiding login btn when the user is loggedin, else showing it\ndocument.querySelectorAll(\".hide_when_loggedin\").forEach(btn=>{btn.style.display=isLoggedIn?\"none\":\"flex\";});};useEffect(()=>{handleLogin();window.addEventListener(\"storage\",handleLogin);return()=>{window.removeEventListener(\"storage\",handleLogin);};},[]);props.className+=\" hide_when_loggedin\";return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}// function overrides\nexport function withLoginButton(Component){const WrappedComponent=props=>{const handleLogin=()=>{const isLoggedIn=getDataFromLocalStorage(updateLoginButton);// hiding login btn when the user is loggedin, else showing it\ndocument.querySelectorAll(\".login_btn\").forEach(btn=>{btn.style.display=isLoggedIn?\"none\":\"flex\";});};useEffect(()=>{handleLogin();segmentLoad();window.addEventListener(\"storage\",handleLogin);return()=>{window.removeEventListener(\"storage\",handleLogin);};},[]);props.className+=\" login_btn\";return /*#__PURE__*/_jsx(Component,{...props,onClick:trackButtonClickedTryItForFree});};return WrappedComponent;}export function withGetStartedButton(Component){const WrappedComponent=props=>{const handleGetStarted=()=>getDataFromLocalStorage(updateGetStartedButton);useEffect(()=>{handleGetStarted();window.addEventListener(\"storage\",handleGetStarted);// window.addEventListener(\"click\", handleGetStarted)\nreturn()=>{window.removeEventListener(\"storage\",handleGetStarted);// window.removeEventListener(\"click\", handleGetStarted)\n};},[]);props.className+=\" getStarted_btn\";return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}const CYCLE={MONTHLY:1,YEARLY:2};const TYPE={PRODUCTS:1,TEXTILES:2};const defaultValues={cycle:CYCLE.YEARLY,type:TYPE.PRODUCTS};const useStore=createStore({...defaultValues});// new subscription working & flow\nfunction getSubscriptionInfoFromBrowserStorage(callback=null){const currentUser=localStorage.getItem(\"current_user\")||null;const planOrderId=localStorage.getItem(\"planOrderId\");const planPriceId=localStorage.getItem(\"planPriceId\");const planPriceAmount=localStorage.getItem(\"planPriceAmount\");const isTexturePlan=localStorage.getItem(\"isTexturePlan\");const USER_DATA=currentUser?JSON.parse(currentUser):null;const user=USER_DATA?.user;const organizationDetail=USER_DATA?.organization_detail;const obj={user:user,organizationDetail:organizationDetail,planOrderId:+planOrderId,planPriceId:planPriceId===\"null\"?null:+planPriceId,planPriceAmount:+planPriceAmount,isTexturePlan:isTexturePlan===\"true\"?true:false};callback?.(obj);return obj;}export function withSubscriptionWrapperProductsAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();if(!props.className?.includes(\"subscription-wrapper\")){props.className+=\" subscription-wrapper\";}if(!props.className?.includes(\"products\")){props.className+=\" products\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionWrapperTextilesAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();if(!props.className?.includes(\"subscription-wrapper\")){props.className+=\" subscription-wrapper\";}if(!props.className?.includes(\"textiles\")){props.className+=\" textiles\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionProductsTypeAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const handleSelectType=()=>{setStore({...store,type:TYPE.PRODUCTS});};if(!props.className?.includes(\"subscription-type\")){props.className+=\" subscription-type\";}if(!props.className?.includes(\"products\")){props.className+=\" products\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleSelectType});};return WrappedComponent;}export function withSubscriptionTextilesTypeAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const handleSelectType=()=>{setStore({...store,type:TYPE.TEXTILES});};if(!props.className?.includes(\"subscription-type\")){props.className+=\" subscription-type\";}if(!props.className?.includes(\"textiles\")){props.className+=\" textiles\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleSelectType});};return WrappedComponent;}export function withSubscriptionCycleAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const handleSelectCycle=e=>{const isMonthly=e.target.innerText?.includes(\"monthly\");setStore({...store,cycle:isMonthly?CYCLE.MONTHLY:CYCLE.YEARLY});};if(!props.className?.includes(\"subscription-cycle\")){props.className+=\" subscription-cycle\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleSelectCycle});};return WrappedComponent;}export function withSubscriptionContainerAddClass(Component){const WrappedComponent=props=>{const[store,setStore]=useStore();const[isLoggedin,setIsLoggedin]=useState();const getAndUpdateAllButtons=(containers=[])=>{if(containers.length===0)return;const userInfo=getSubscriptionInfoFromBrowserStorage();const isTexturePlan=userInfo?.isTexturePlan;const planOrderId=userInfo?.planOrderId;const planPriceId=userInfo?.planPriceId;const planPriceAmount=userInfo?.planPriceAmount;const orgSubscriptionType=userInfo?.organizationDetail?.subscription_type;const isFreemiumOrg=orgSubscriptionType===\"FREEMIUM\";const isPremiumOrg=orgSubscriptionType===\"PREMIUM\"&&planPriceId// planOrderId > 0\n;const isOldPremiumOrg=orgSubscriptionType===\"PREMIUM\"&&(!planPriceId||planPriceId===null)// planOrderId === 0\n;const isOldSubscription=orgSubscriptionType===\"OLD_SUBSCRIPTION\";const subscriptionTypes=document.querySelectorAll(\".subscription-type\");if(userInfo?.user&&isPremiumOrg){if(subscriptionTypes?.length>0){for(let i=0;i<subscriptionTypes.length;i++){subscriptionTypes[i].parentElement.parentElement.style.display=\"none\";}}}else{if(subscriptionTypes?.length>0){for(let i=0;i<subscriptionTypes.length;i++){subscriptionTypes[i].parentElement.parentElement.style.display=\"flex\";}}}for(let i=0;i<containers.length;i++){const name1=containers[i].querySelector(\".subscription-name .framer-text\")?.innerText;const button=containers?.[i]?.querySelector(\".subscription-button\")?.querySelectorAll(\"a\")?.[0];let cardPlanOrderId=containers?.[i]?.querySelector(\".subscription-plan-order-id\")?.querySelector(\".framer-text\")?.innerText;cardPlanOrderId=Number(cardPlanOrderId);let cardPlanPriceId=containers?.[i]?.querySelector(\".subscription-plan-price-id\")?.querySelector(\".framer-text\")?.innerText;cardPlanPriceId=Number(cardPlanPriceId);let cardPlanPriceAmount=containers?.[i]?.querySelector(\".subscription-plan-price-amount\")?.querySelector(\".framer-text\")?.innerText;cardPlanPriceAmount=parseInt(cardPlanPriceAmount.replace(/[$,]/g,\"\"),10);const href=button.getAttribute(\"href\");if(userInfo?.user){const isCurrentPlan=planPriceId?cardPlanPriceId===planPriceId:cardPlanOrderId===planOrderId;if(i===0){button.setAttribute(\"href\",href?.replaceAll(\"register\",\"dashboard\"));button.querySelectorAll(\".framer-text\")[0].innerHTML=isCurrentPlan&&isFreemiumOrg?\"Current Plan\":\"Try it free\";}else{if(!isOldPremiumOrg){button.querySelectorAll(\".framer-text\")[0].innerHTML=isCurrentPlan?\"Current Plan\":cardPlanPriceAmount>planPriceAmount// cardPlanOrderId > planOrderId\n?`Upgrade to ${name1}`:`Downgrade to ${name1}`;}else{button.querySelectorAll(\".framer-text\")[0].innerHTML=isCurrentPlan?\"Current Plan\":`Go ${name1}`;}button.setAttribute(\"href\",href?.replaceAll(\"register?\",\"settings?activeTab=plans&\"));button.style.pointerEvents=isCurrentPlan?\"none\":\"auto\";const subButton=button.querySelectorAll(\"a\")[0];if(isCurrentPlan){subButton.classList.add(\"current-plan-button\");}else{subButton.classList.remove(\"current-plan-button\");}}}else{if(i===0){button.setAttribute(\"href\",href?.replaceAll(\"dashboard\",\"register\"));button.querySelectorAll(\".framer-text\")[0].innerHTML=\"Try it free\";}else{button.setAttribute(\"href\",href?.replaceAll(\"settings?activeTab=plans&\",\"register?\"));button.style.pointerEvents=\"auto\";button.querySelectorAll(\"a\")[0].style.backgroundColor=\"rgb(235, 78, 10)\";button.querySelectorAll(\"a\")[0].querySelectorAll(\".framer-text\")[0].style.color=\"rgb(255,255,255)\";button.querySelectorAll(\".framer-text\")[0].innerHTML=`Go ${name1}`;}}}};const getMonthlyContainers=(wrapper=null)=>{const containers=wrapper.querySelectorAll(\".subscription-container.monthly\");getAndUpdateAllButtons(containers);};const getYearlyContainers=(wrapper=null)=>{const containers=wrapper?.querySelectorAll(\".subscription-container.yearly\");getAndUpdateAllButtons(containers);};const getProductsWrapperContainers=()=>{const wrapper=document.querySelector(\".subscription-wrapper.products\");const wrapperTextiles=document.querySelector(\".subscription-wrapper.textiles\");if(wrapperTextiles)wrapperTextiles.parentElement.style.display=\"none\";if(wrapper)wrapper.parentElement.style.display=\"block\";if(store.cycle===CYCLE.MONTHLY)getMonthlyContainers(wrapper);if(store.cycle===CYCLE.YEARLY)getYearlyContainers(wrapper);};const getTextilesWrapperContainers=()=>{const userInfo=getSubscriptionInfoFromBrowserStorage();const planOrderId=userInfo?.planOrderId;const planPriceId=userInfo?.planPriceId;const orgSubscriptionType=userInfo?.organizationDetail?.subscription_type;const isPremiumOrg=orgSubscriptionType===\"PREMIUM\"&&planPriceId// planOrderId > 0\n;if(userInfo?.user&&isPremiumOrg){const wrapper=document.querySelector(\".subscription-wrapper.textiles\");const wrapperProducts=document.querySelector(\".subscription-wrapper.products\");wrapperProducts.parentElement.style.display=\"none\";wrapper.parentElement.style.display=\"block\";if(store.cycle===CYCLE.MONTHLY)getMonthlyContainers(wrapper);if(store.cycle===CYCLE.YEARLY)getYearlyContainers(wrapper);}};const checkIfUserIsLoggedInorNot=()=>{const userInfo=getSubscriptionInfoFromBrowserStorage();setIsLoggedin(Boolean(userInfo?.user));setTimeout(()=>{if(userInfo?.isTexturePlan)getTextilesWrapperContainers();else getProductsWrapperContainers();},5e3);};useEffect(()=>{setStore({...store,...getSubscriptionInfoFromBrowserStorage()?.isTexturePlan===true?{type:TYPE.TEXTILES}:{type:TYPE.PRODUCTS}});},[getSubscriptionInfoFromBrowserStorage()?.isTexturePlan,getSubscriptionInfoFromBrowserStorage()?.planPriceId,getSubscriptionInfoFromBrowserStorage()?.planPriceAmount,isLoggedin]);useEffect(()=>{checkIfUserIsLoggedInorNot();window.addEventListener(\"storage\",checkIfUserIsLoggedInorNot);return()=>{window.removeEventListener(\"storage\",checkIfUserIsLoggedInorNot);};},[]);useEffect(()=>{const timerId=setTimeout(()=>{if(store.type===TYPE.PRODUCTS)getProductsWrapperContainers();if(store.type===TYPE.TEXTILES)getTextilesWrapperContainers();},500);return()=>{if(timerId)clearInterval(timerId);};},[store,isLoggedin]);if(!props.className?.includes(\"subscription-container\")){props.className+=\" subscription-container\";}props.className+=store?.type===TYPE.PRODUCTS?\" products\":\" textiles\";props.className+=store?.cycle===CYCLE.MONTHLY?\" monthly\":\" yearly\";return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionNameAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-name\")){props.className+=\" subscription-name\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionPlanOrderIdAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-plan-order-id\")){props.className+=\" subscription-plan-order-id\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionPlanPriceIdAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-plan-price-id\")){props.className+=\" subscription-plan-price-id\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}export function withSubscriptionPlanPriceAmountAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"subscription-plan-price-amount\")){props.className+=\" subscription-plan-price-amount\";}return /*#__PURE__*/_jsx(Component,{...props});};return WrappedComponent;}const getHubspotEvents=(type=null)=>{const{trackBuyFreemiumSubscription,trackBuyProductsBasicMonthlySubscription,trackBuyProductsBasicYearlySubscription,trackBuyTextilesBasicMonthlySubscription,trackBuyTextilesBasicYearlySubscription,trackBuyProductsPlusMonthlySubscription,trackBuyProductsPlusYearlySubscription,trackBuyTextilesPlusMonthlySubscription,trackBuyTextilesPlusYearlySubscription,trackBuyProductsProMonthlySubscription,trackBuyProductsProYearlySubscription,trackBuyTextilesProMonthlySubscription,trackBuyTextilesProYearlySubscription}=HUBSPOT_TRACK_EVENTS||{};const subscriptionEventsMapping={[\"freemium_1_1\"]:trackBuyFreemiumSubscription,[\"freemium_1_2\"]:trackBuyFreemiumSubscription,[\"freemium_2_1\"]:trackBuyFreemiumSubscription,[\"freemium_2_2\"]:trackBuyFreemiumSubscription,[\"basic_1_1\"]:trackBuyProductsBasicMonthlySubscription,[\"basic_1_2\"]:trackBuyProductsBasicYearlySubscription,[\"basic_2_1\"]:trackBuyTextilesBasicMonthlySubscription,[\"basic_2_2\"]:trackBuyTextilesBasicYearlySubscription,[\"plus_1_1\"]:trackBuyProductsPlusMonthlySubscription,[\"plus_1_2\"]:trackBuyProductsPlusYearlySubscription,[\"plus_2_1\"]:trackBuyTextilesPlusMonthlySubscription,[\"plus_2_2\"]:trackBuyTextilesPlusYearlySubscription,[\"pro_1_1\"]:trackBuyProductsProMonthlySubscription,[\"pro_1_2\"]:trackBuyProductsProYearlySubscription,[\"pro_2_1\"]:trackBuyTextilesProMonthlySubscription,[\"pro_2_2\"]:trackBuyTextilesProYearlySubscription};const eventFunction=subscriptionEventsMapping[type];if(typeof eventFunction===\"function\"){eventFunction()// Call the function directly\n;console.log(`Event function for ${type} called successfully.`);}else{console.log(`No event function found for type ${type}.`);}};export function withSubscriptionButtonAddClass(Component){const WrappedComponent=props=>{const[store]=useStore();const handleClick=e=>{const container=e?.target?.closest(\".subscription-container\");let name1=container?.querySelector(\".subscription-name .framer-text\")?.innerText;if(name1){name1=name1?.trim()?.toLowerCase();}getHubspotEvents?.(`${name1}_${store.type}_${store.cycle}`);};if(!props.className?.includes(\"subscription-button\")){props.className+=\" subscription-button\";}return /*#__PURE__*/_jsx(Component,{...props,as:\"Button\",onClick:handleClick});};return WrappedComponent;}export function withOverlayCloseButtonAddClass(Component){const WrappedComponent=props=>{if(!props.className?.includes(\"overlay-close-button\")){props.className+=\" overlay-close-button\";}return /*#__PURE__*/_jsx(Component,{...props,as:\"Button\"});};return WrappedComponent;}export function withHeaderMenuClick(Component){const WrappedComponent=props=>{const handleClick=e=>{e.stopPropagation();const menu_name=e?.target?.innerText||e?.target?.querySelector(\".framer-text\")?.innerText||\"\";trackHeaderFooterMenuClick({clicked_from:\"Header\",menu_name:menu_name});};if(!props.className?.includes(\"header-menu-item\")){props.className+=\" header-menu-item\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};return WrappedComponent;}export function withFooterMenuClick(Component){const WrappedComponent=props=>{const handleClick=e=>{e.stopPropagation();e.stopPropagation();const menu_name=e?.target?.innerText||e?.target?.querySelector(\".framer-text\")?.innerText||\"\";trackHeaderFooterMenuClick({clicked_from:\"Footer\",menu_name:menu_name});};if(!props.className?.includes(\"footer-menu-item\")){props.className+=\" footer-menu-item\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};return WrappedComponent;}export function withClickTab(Component){return props=>{const handleClick=e=>{e.stopPropagation();const tabName=e?.target?.closest(\".click-tab\")?.querySelector(\".framer-text\")?.innerText||e?.target?.innerText;trackClickTab({tab_name:tabName});};if(!props.className?.includes(\"click-tab\")){props.className+=\" click-tab\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickTabFloating(Component){return props=>{const handleClick=e=>{e.stopPropagation();const tabName=e?.target?.closest(\".click-tab-floating\")?.querySelector(\".framer-text\")?.innerText||e?.target?.innerText;trackClickTabFloating({tab_name:tabName});};if(!props.className?.includes(\"click-tab-floating\")){props.className+=\" click-tab-floating\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickLearnMoreEnterprise(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickLearnMoreEnterprise();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickExplore3DRendering(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickExplore3DRendering();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickBuildYourOwnConfigurator(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickBuildYourOwnConfigurator();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickCustomerSuccessStories(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickCustomerSuccessStories();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withClickAugmentedRealitySolutions(Component){return props=>{const handleClick=e=>{e.stopPropagation();trackClickAugmentedRealitySolutions();};if(!props.className?.includes(\"click-button\")){props.className+=\" click-button\";}return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}// DYNAMIC PLAN CARD - BEGINS\nexport function withSubscriptionPlanCard(Component){return props=>{const[plans,setPlans]=useState([]);const fetchDetails=async()=>{const token=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNzIyNDkzNzIzLCJpYXQiOjE3MjE4ODg5MjMsImp0aSI6IjIxM2MyMmM0ZjNlZDQ4YWFiMzdlODNlN2FlMTQ1MTRjIiwidXNlcl9pZCI6NTI2MSwibWVtYmVyIjoxMTgwLCJvcmdhbml6YXRpb24iOjEwNDAsImlzX2VtYWlsX3ZlcmlmaWVkIjp0cnVlfQ.im7TLxkN3h6qjJNS7uh0uWvuJm2bNe4cb00KsOVDSQk\";const url=\"https://prod.imagine.io/subscription/api/main_subscription_plans/?is_add_on=false&per_page=100\";const response=await fetch(url,{headers:{[\"Authorization\"]:`Bearer ${token}`,[\"Content-Type\"]:\"application/json\"}}).then(r=>r.json());const results=response?.results?.filter(a=>a?.pricing_details.length>0);setPlans(results);console.log(\"DEBUG__response\",results);};useEffect(()=>{fetchDetails();},[]);useEffect(()=>{if(plans.length===0)return;const planCard=document.querySelectorAll(\".subscription-plan-card\");if(planCard?.length>0){for(let i=0;i<planCard?.length;i++){if(i===0){planCard[i].parentElement.style.display=\"flex\";planCard[i].parentElement.style.flexWrap=\"wrap\";planCard[i].parentElement.style.gap=\"1.5em\";planCard[i].parentElement.style.width=\"100%\";planCard[i].parentElement.style.height=\"auto\";}planCard[i].style.width=\"100%\";planCard[i].style.maxWidth=\"400px\";}}},[plans]);const linkTitle=useMemo(()=>{return`Go ${name}`;},[name]);if(!props.className?.includes(\"subscription-plan-card\")){props.className+=\" subscription-plan-card\";}if(plans?.length===0)return null;return /*#__PURE__*/_jsx(_Fragment,{children:plans?.map(({id,name:name1})=>/*#__PURE__*/_createElement(Component,{...props,key:id,planTitle:name1,linkTitle:linkTitle}))});};}// DYNAMIC PLAN CARD - ENDS\n// subscription\n// let freemimum = [],\n//     basic = [],\n//     plus = [],\n//     pro = [],\n//     monthlyTabElement = [],\n//     YealyTabElement = [],\n//     activeTab = \"yearly\"\n// function handleGetTab() {\n//     let tab = localStorage.getItem(\"currentTab\")\n//     if (!tab) {\n//         localStorage.setItem(\"currentTab\", \"yearly\")\n//     }\n//     return activeTab || \"yearly\"\n// }\n// function updateSubscriptionButton(data) {\n//     const { user, planOrderId, isTexturePlan } = data || {}\n//     const currentUser = JSON.parse(localStorage.getItem(\"current_user\"))\n//     const isFreemimum =\n//         currentUser?.organization_detail?.subscription_type === \"FREEMIUM\" &&\n//         (!planOrderId || planOrderId === 0 || planOrderId === \"0\")\n//     const oldPlan =\n//         user &&\n//         (!planOrderId || planOrderId === 0 || planOrderId === \"0\") &&\n//         currentUser?.organization_detail?.subscription_type !== \"FREEMIUM\" &&\n//         currentUser?.organization_detail?.subscription_type\n//     const AllDataList = document.querySelectorAll(\n//         \".pricing-section .framer-text\"\n//     )\n//     if (AllDataList?.length > 0) {\n//         for (let i = 0; i < AllDataList?.length; i++) {\n//             const btn = AllDataList[i]\n//             const getStarted = \"Get started\"\n//             const TryIt = \"Try it Free\"\n//             const currentPlan = \"Current Plan\"\n//             const goPro = \"Go Pro\"\n//             const upgradePro = \"Upgrade to Pro\"\n//             const downgradePro = \"Downgrade to Pro\"\n//             const goBasic = \"Go Basic\"\n//             const upgradeBasic = \"Upgrade to Basic\"\n//             const downgradeBasic = \"Downgrade to Basic\"\n//             const goPlus = \"Go Plus\"\n//             const upgradePlus = \"Upgrade to Plus\"\n//             const downgradePlus = \"Downgrade to Plus\"\n//             const monthlyTab = \"Pay monthly\"\n//             const yearlyTab = \"Pay yearly (Save 16%)\"\n//             switch (btn.innerHTML) {\n//                 case getStarted:\n//                 case TryIt:\n//                     freemimum = [btn]\n//                     break\n//                 case goBasic:\n//                 case upgradeBasic:\n//                 case downgradeBasic:\n//                     basic = [btn]\n//                     break\n//                 case goPlus:\n//                 case upgradePlus:\n//                 case downgradePlus:\n//                     plus = [btn]\n//                     break\n//                 case goPro:\n//                 case upgradePro:\n//                 case downgradePro:\n//                     pro = [btn]\n//                     break\n//                 case monthlyTab:\n//                     monthlyTabElement = [btn]\n//                     break\n//                 case yearlyTab:\n//                     YealyTabElement = [btn]\n//                     break\n//             }\n//         }\n//     }\n//     const handleSetActiveTab = (value) => {\n//         activeTab = value\n//         localStorage.setItem(\"currentTab\", value)\n//     }\n//     if (YealyTabElement?.length > 0) {\n//         const btn = YealyTabElement[0]\n//         btn.addEventListener(\"click\", () => handleSetActiveTab(\"yearly\"))\n//     }\n//     if (monthlyTabElement?.length > 0) {\n//         const btn = monthlyTabElement[0]\n//         btn.addEventListener(\"click\", () => handleSetActiveTab(\"monthly\"))\n//     }\n//     if (activeTab === \"monthly\") {\n//         // monthly plan logic\n//         if (freemimum?.length > 0) {\n//             const btn = freemimum[0]\n//             btn.innerHTML = user && isFreemimum ? \"Current Plan\" : \"Try it Free\"\n//         }\n//         if (basic?.length > 0) {\n//             const btn = basic[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 1\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 1\n//                           ? \"Downgrade to Basic\"\n//                           : \"Upgrade to Basic\"\n//                     : \"Go Basic\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 1\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (plus?.length > 0) {\n//             const btn = plus[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 2\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 2\n//                           ? \"Downgrade to Plus\"\n//                           : \"Upgrade to Plus\"\n//                     : \"Go Plus\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 2\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (pro?.length > 0) {\n//             const btn = pro[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 3\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 3\n//                           ? \"Downgrade to Pro\"\n//                           : \"Upgrade to Pro\"\n//                     : \"Go Pro\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 3\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//     } else {\n//         // yearly plan logic\n//         if (freemimum?.length > 0) {\n//             const btn = freemimum[0]\n//             btn.innerHTML = user && isFreemimum ? \"Current Plan\" : \"Try it Free\"\n//         }\n//         if (basic?.length > 0) {\n//             const btn = basic[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 4\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 5\n//                           ? \"Downgrade to Basic\"\n//                           : \"Upgrade to Basic\"\n//                     : \"Go Basic\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 4\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (plus?.length > 0) {\n//             const btn = plus[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 5\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 6\n//                           ? \"Downgrade to Plus\"\n//                           : \"Upgrade to Plus\"\n//                     : \"Go Plus\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 5\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//         if (pro?.length > 0) {\n//             const btn = pro[0]\n//             btn.innerHTML =\n//                 user && !oldPlan\n//                     ? +planOrderId === 6\n//                         ? \"Current Plan\"\n//                         : +planOrderId >= 7\n//                           ? \"Downgrade to Pro\"\n//                           : \"Upgrade to Pro\"\n//                     : \"Go Pro\"\n//             const shouldDisable = user && !oldPlan && +planOrderId === 6\n//             btn.style.color = shouldDisable\n//                 ? \"rgb(16, 16, 16)\"\n//                 : \"rgb(255, 255, 255)\"\n//             btn.closest(\".pricing-section\").style.background = shouldDisable\n//                 ? \"rgb(236, 236, 234)\"\n//                 : \"rgb(235, 78, 10)\"\n//             btn.closest(\".pricing-section\").style.pointerEvents = shouldDisable\n//                 ? \"none\"\n//                 : \"auto\"\n//         }\n//     }\n// }\n// function getDataFromLocalStorageSubscriptionInfo(callback = null) {\n//     const currentUser = localStorage.getItem(\"current_user\") || null\n//     const planOrderId = localStorage.getItem(\"planOrderId\")\n//     const isTexturePlan = localStorage.getItem(\"isTexturePlan\")\n//     const USER_DATA = currentUser ? JSON.parse(currentUser) : null\n//     const user = USER_DATA?.user\n//     callback?.({\n//         user: user,\n//         planOrderId: +planOrderId,\n//         isTexturePlan: isTexturePlan,\n//     })\n// }\n// export const withSubscription = (Component): ComponentType => {\n//     const WrappedComponent = (props) => {\n//         const handleUpdateBtnTitle = () =>\n//             getDataFromLocalStorageSubscriptionInfo(updateSubscriptionButton)\n//         useEffect(() => {\n//             const timerId = setTimeout(() => {\n//                 handleUpdateBtnTitle()\n//                 localStorage.setItem(\"currentTab\", \"yearly\")\n//                 window.addEventListener(\"storage\", handleUpdateBtnTitle)\n//                 // window.addEventListener(\"click\", handleUpdateBtnTitle)\n//             }, 1000)\n//             return () => {\n//                 if (timerId) clearInterval(timerId)\n//                 window.removeEventListener(\"storage\", handleUpdateBtnTitle)\n//                 // window.removeEventListener(\"click\", handleUpdateBtnTitle)\n//             }\n//         }, [])\n//         props.className += \" pricing-section\"\n//         return <Component {...props} />\n//     }\n//     return WrappedComponent\n// }\n// export function withUpdateFreeMiumButton(Component): ComponentType {\n//     const WrappedComponent = (props) => {\n//         return <Component {...props} />\n//     }\n//     return WrappedComponent\n// }\n\nexport const __FramerMetadata__ = {\"exports\":{\"withOverlayCloseButtonAddClass\":{\"type\":\"reactHoc\",\"name\":\"withOverlayCloseButtonAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanCard\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanCard\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionTextilesTypeAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionTextilesTypeAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionButtonAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionButtonAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionCycleAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionCycleAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickLearnMoreEnterprise\":{\"type\":\"reactHoc\",\"name\":\"withClickLearnMoreEnterprise\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withGetStartedButton\":{\"type\":\"reactHoc\",\"name\":\"withGetStartedButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionContainerAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionContainerAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickTabFloating\":{\"type\":\"reactHoc\",\"name\":\"withClickTabFloating\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLoginButton\":{\"type\":\"reactHoc\",\"name\":\"withLoginButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickTab\":{\"type\":\"reactHoc\",\"name\":\"withClickTab\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withFooterMenuClick\":{\"type\":\"reactHoc\",\"name\":\"withFooterMenuClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanPriceAmountAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanPriceAmountAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickAugmentedRealitySolutions\":{\"type\":\"reactHoc\",\"name\":\"withClickAugmentedRealitySolutions\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionNameAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionNameAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickCustomerSuccessStories\":{\"type\":\"reactHoc\",\"name\":\"withClickCustomerSuccessStories\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionProductsTypeAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionProductsTypeAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHideWhenLoggedIn\":{\"type\":\"reactHoc\",\"name\":\"withHideWhenLoggedIn\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanOrderIdAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanOrderIdAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHeaderMenuClick\":{\"type\":\"reactHoc\",\"name\":\"withHeaderMenuClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickBuildYourOwnConfigurator\":{\"type\":\"reactHoc\",\"name\":\"withClickBuildYourOwnConfigurator\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionWrapperProductsAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionWrapperProductsAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionWrapperTextilesAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionWrapperTextilesAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withClickExplore3DRendering\":{\"type\":\"reactHoc\",\"name\":\"withClickExplore3DRendering\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscriptionPlanPriceIdAddClass\":{\"type\":\"reactHoc\",\"name\":\"withSubscriptionPlanPriceIdAddClass\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={faj3tzAo8:{hover:true},nzS1UEsKH:{hover:true},oVXEIhLEs:{hover:true},pNNQ0hvPz:{hover:true},wozyQnQOL:{hover:true},YlAzm2s0J:{hover:true}};const cycleOrder=[\"faj3tzAo8\",\"pNNQ0hvPz\",\"oVXEIhLEs\",\"YlAzm2s0J\",\"nzS1UEsKH\",\"wozyQnQOL\",\"QDjn1nsAE\",\"wY_22QoHv\"];const serializationHash=\"framer-rNneI\";const variantClassNames={faj3tzAo8:\"framer-v-ghked1\",nzS1UEsKH:\"framer-v-1pi5ya3\",oVXEIhLEs:\"framer-v-98z1av\",pNNQ0hvPz:\"framer-v-14yak2\",QDjn1nsAE:\"framer-v-wzppqz\",wozyQnQOL:\"framer-v-6anbj4\",wY_22QoHv:\"framer-v-q7avxq\",YlAzm2s0J:\"framer-v-1mm1lv3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.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 humanReadableVariantMap={\"Clear-Dark\":\"wozyQnQOL\",\"Clear-Light\":\"pNNQ0hvPz\",\"Dark-1\":\"oVXEIhLEs\",\"Homepage Button Clear Dark\":\"wY_22QoHv\",\"Homepage Button Dark\":\"QDjn1nsAE\",Dark2:\"YlAzm2s0J\",Light:\"nzS1UEsKH\",Main:\"faj3tzAo8\"};const getProps=({click,height,id,link,padding,shadow2,title,width,...props})=>{return{...props,Ekb5zt9TK:shadow2??props.Ekb5zt9TK??\"0px 0px 0px 0px rgba(0,0,0,0.25)\",HkXArTRCm:padding??props.HkXArTRCm??\"10px 20px 10px 20px\",i6ydiGswO:link??props.i6ydiGswO,JJ00ngaKv:click??props.JJ00ngaKv,jpKtV9MEn:title??props.jpKtV9MEn??\"Short\",variant:humanReadableVariantMap[props.variant]??props.variant??\"faj3tzAo8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,jpKtV9MEn,HkXArTRCm,i6ydiGswO,JJ00ngaKv,Ekb5zt9TK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"faj3tzAo8\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapcbi8nj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(JJ00ngaKv){const res=await JJ00ngaKv(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:i6ydiGswO,motionChild:true,nodeId:\"faj3tzAo8\",openInNewTab:false,scopeId:\"YxAUZlgP8\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-ghked1\",className,classNames)} framer-3tdfy7`,\"data-framer-name\":\"Main\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"faj3tzAo8\",onTap:onTapcbi8nj,ref:refBinding,style:{\"--164dkfe\":Ekb5zt9TK,\"--1honjkx\":numberToPixelString(HkXArTRCm),backgroundColor:\"var(--token-ec2fc95b-0069-4aaf-9dc7-4e4f889ff086, rgb(235, 78, 10))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"var(--164dkfe)\",...style},variants:{nzS1UEsKH:{backgroundColor:\"var(--token-255e0d8f-6c19-4cdb-914d-8d083e1995ba, rgb(249, 249, 249))\"},oVXEIhLEs:{backgroundColor:\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},pNNQ0hvPz:{backgroundColor:\"rgba(0, 0, 0, 0)\"},QDjn1nsAE:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"},wozyQnQOL:{backgroundColor:\"rgba(0, 0, 0, 0)\"},wY_22QoHv:{backgroundColor:\"rgba(0, 0, 0, 0)\"},YlAzm2s0J:{backgroundColor:\"var(--token-424407ca-8a5e-4b48-84df-2af93dcb4665, rgb(39, 40, 40))\"}},...addPropertyOverrides({\"faj3tzAo8-hover\":{\"data-framer-name\":undefined},\"nzS1UEsKH-hover\":{\"data-framer-name\":undefined},\"oVXEIhLEs-hover\":{\"data-framer-name\":undefined},\"pNNQ0hvPz-hover\":{\"data-framer-name\":undefined},\"wozyQnQOL-hover\":{\"data-framer-name\":undefined},\"YlAzm2s0J-hover\":{\"data-framer-name\":undefined},nzS1UEsKH:{\"data-framer-name\":\"Light\"},oVXEIhLEs:{\"data-framer-name\":\"Dark-1\"},pNNQ0hvPz:{\"data-framer-name\":\"Clear-Light\"},QDjn1nsAE:{\"data-framer-name\":\"Homepage Button Dark\"},wozyQnQOL:{\"data-framer-name\":\"Clear-Dark\"},wY_22QoHv:{\"data-framer-name\":\"Homepage Button Clear Dark\"},YlAzm2s0J:{\"data-framer-name\":\"Dark2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Short\"})}),className:\"framer-1rm3hsp\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;PP Neue Montreal Medium\"],layoutDependency:layoutDependency,layoutId:\"VplfT0ONj\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\"},text:jpKtV9MEn,variants:{nzS1UEsKH:{\"--extracted-1eung3n\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},wozyQnQOL:{\"--extracted-1eung3n\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"},wY_22QoHv:{\"--extracted-1eung3n\":\"var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nzS1UEsKH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Short\"})})},QDjn1nsAE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Short\"})})},wozyQnQOL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Short\"})})},wY_22QoHv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIE5ldWUgTW9udHJlYWwgTWVkaXVt\",\"--framer-font-family\":'\"PP Neue Montreal Medium\", \"PP Neue Montreal Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.1px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-02427687-12e6-4ba0-9dcd-6a9ca54a387f, rgb(16, 16, 16)))\"},children:\"Short\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rNneI.framer-3tdfy7, .framer-rNneI .framer-3tdfy7 { display: block; }\",\".framer-rNneI.framer-ghked1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: var(--1honjkx); position: relative; text-decoration: none; width: min-content; }\",\".framer-rNneI .framer-1rm3hsp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rNneI.framer-ghked1 { gap: 0px; } .framer-rNneI.framer-ghked1 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-rNneI.framer-ghked1 > :first-child { margin-left: 0px; } .framer-rNneI.framer-ghked1 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 74\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pNNQ0hvPz\":{\"layout\":[\"auto\",\"auto\"]},\"oVXEIhLEs\":{\"layout\":[\"auto\",\"auto\"]},\"YlAzm2s0J\":{\"layout\":[\"auto\",\"auto\"]},\"nzS1UEsKH\":{\"layout\":[\"auto\",\"auto\"]},\"wozyQnQOL\":{\"layout\":[\"auto\",\"auto\"]},\"QDjn1nsAE\":{\"layout\":[\"auto\",\"auto\"]},\"wY_22QoHv\":{\"layout\":[\"auto\",\"auto\"]},\"dVKenaHjd\":{\"layout\":[\"auto\",\"auto\"]},\"RD4qitdt4\":{\"layout\":[\"auto\",\"auto\"]},\"ej1sHh6KB\":{\"layout\":[\"auto\",\"auto\"]},\"X88g4MWFk\":{\"layout\":[\"auto\",\"auto\"]},\"EAuIEq3xy\":{\"layout\":[\"auto\",\"auto\"]},\"M5XWLpyI8\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"jpKtV9MEn\":\"title\",\"HkXArTRCm\":\"padding\",\"i6ydiGswO\":\"link\",\"JJ00ngaKv\":\"click\",\"Ekb5zt9TK\":\"shadow2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYxAUZlgP8=withCSS(Component,css,\"framer-rNneI\");export default FramerYxAUZlgP8;FramerYxAUZlgP8.displayName=\"Main-button-2025\";FramerYxAUZlgP8.defaultProps={height:40,width:74};addPropertyControls(FramerYxAUZlgP8,{variant:{options:[\"faj3tzAo8\",\"pNNQ0hvPz\",\"oVXEIhLEs\",\"YlAzm2s0J\",\"nzS1UEsKH\",\"wozyQnQOL\",\"QDjn1nsAE\",\"wY_22QoHv\"],optionTitles:[\"Main\",\"Clear-Light\",\"Dark-1\",\"Dark2\",\"Light\",\"Clear-Dark\",\"Homepage Button Dark\",\"Homepage Button Clear Dark\"],title:\"Variant\",type:ControlType.Enum},jpKtV9MEn:{defaultValue:\"Short\",displayTextArea:false,title:\"Title\",type:ControlType.String},HkXArTRCm:{defaultValue:\"10px 20px 10px 20px\",title:\"Padding\",type:ControlType.Padding},i6ydiGswO:{title:\"Link\",type:ControlType.Link},JJ00ngaKv:{title:\"Click\",type:ControlType.EventHandler},Ekb5zt9TK:{defaultValue:[{blur:0,color:\"rgba(0,0,0,0.25)\",diffusion:.5,focus:.5,inset:false,spread:0,type:\"box\",x:0,y:0}],title:\"Shadow 2\",type:ControlType.BoxShadow}});addFonts(FramerYxAUZlgP8,[{explicitInter:true,fonts:[{family:\"PP Neue Montreal Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/X3dpjR58Ye6dvtoHdLcifA4vzo.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYxAUZlgP8\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"jpKtV9MEn\\\":\\\"title\\\",\\\"HkXArTRCm\\\":\\\"padding\\\",\\\"i6ydiGswO\\\":\\\"link\\\",\\\"JJ00ngaKv\\\":\\\"click\\\",\\\"Ekb5zt9TK\\\":\\\"shadow2\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"74\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pNNQ0hvPz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oVXEIhLEs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YlAzm2s0J\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nzS1UEsKH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wozyQnQOL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QDjn1nsAE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wY_22QoHv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dVKenaHjd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RD4qitdt4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ej1sHh6KB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"X88g4MWFk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EAuIEq3xy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"M5XWLpyI8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YxAUZlgP8.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withBookADemoButton}from\"https://framerusercontent.com/modules/a1AltNGSODvt4QUfa5dO/AxOs2IW11pExRLE47WHF/CustomHubspotForm.js\";import MainButton2025 from\"https://framerusercontent.com/modules/9vCt51aAuJBWbLUaqYJH/2nt0glrccV9Zf91AZcl8/YxAUZlgP8.js\";const MainButton2025Fonts=getFonts(MainButton2025);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const MotionDivWithBookADemoButton1j5u4g0=withCodeBoundaryForOverrides(motion.div,{nodeId:\"pa7Ss2C3R\",override:withBookADemoButton,scopeId:\"ZNc7qfYHq\"});const serializationHash=\"framer-oaAG3\";const variantClassNames={pa7Ss2C3R:\"framer-v-1j5u4g0\"};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 transition2={damping:30,delay:.35,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 getProps=({height,id,title,width,...props})=>{return{...props,x0aGn4ek5:title??props.x0aGn4ek5??\"Book a demo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,x0aGn4ek5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pa7Ss2C3R\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivWithBookADemoButton1j5u4g0,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1j5u4g0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pa7Ss2C3R\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-40)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1ai2fzn-container\",\"data-framer-appear-id\":\"1ai2fzn\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"ctXOgKxm6-container\",nodeId:\"ctXOgKxm6\",optimized:true,rendersWithMotion:true,scopeId:\"ZNc7qfYHq\",children:/*#__PURE__*/_jsx(MainButton2025,{Ekb5zt9TK:\"0px 0px 0px 0px rgba(0,0,0,0.25)\",height:\"100%\",HkXArTRCm:\"10px 20px 10px 20px\",id:\"ctXOgKxm6\",jpKtV9MEn:x0aGn4ek5,layoutId:\"ctXOgKxm6\",style:{width:\"100%\"},variant:\"faj3tzAo8\",width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oaAG3.framer-66699a, .framer-oaAG3 .framer-66699a { display: block; }\",\".framer-oaAG3.framer-1j5u4g0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 113px; }\",\".framer-oaAG3 .framer-1ai2fzn-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oaAG3.framer-1j5u4g0 { gap: 0px; } .framer-oaAG3.framer-1j5u4g0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oaAG3.framer-1j5u4g0 > :first-child { margin-left: 0px; } .framer-oaAG3.framer-1j5u4g0 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 113\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"x0aGn4ek5\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZNc7qfYHq=withCSS(Component,css,\"framer-oaAG3\");export default FramerZNc7qfYHq;FramerZNc7qfYHq.displayName=\"Book a Demo V2\";FramerZNc7qfYHq.defaultProps={height:40,width:113};addPropertyControls(FramerZNc7qfYHq,{x0aGn4ek5:{defaultValue:\"Book a demo\",displayTextArea:false,placeholder:\"Title\",title:\"Title\",type:ControlType.String}});addFonts(FramerZNc7qfYHq,[{explicitInter:true,fonts:[]},...MainButton2025Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZNc7qfYHq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"113\",\"framerVariables\":\"{\\\"x0aGn4ek5\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (36a78eb)\nimport{jsx as a,jsxs as t}from\"react/jsx-runtime\";import{addFonts as l,addPropertyControls as r,ControlType as L,cx as C,SVG as e,useLocaleInfo as i,useVariantState as p,withCSS as d}from\"framer\";import{LayoutGroup as h,motion as f,MotionConfigContext as n}from\"framer-motion\";import*as o from\"react\";let s=[\"Hx8dTEFq9\",\"fQYRSHT96\"],g=\"framer-a6L9G\",m={fQYRSHT96:\"framer-v-t3mu76\",Hx8dTEFq9:\"framer-v-gle0ao\"};function Z(a,...t){let l={};return null==t||t.forEach(t=>t&&Object.assign(l,a[t])),l;}let M={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},b=({value:t,children:l})=>{let r=o.useContext(n),L=null!=t?t:r.transition,C=o.useMemo(()=>({...r,transition:L}),[JSON.stringify(L)]);return /*#__PURE__*/a(n.Provider,{value:C,children:l});},c={Dark:\"Hx8dTEFq9\",Light:\"fQYRSHT96\"},u=({height:a,id:t,width:l,...r})=>{var L,C;return{...r,variant:null!==(C=null!==(L=c[r.variant])&&void 0!==L?L:r.variant)&&void 0!==C?C:\"Hx8dTEFq9\"};},v=(a,t)=>t.join(\"-\")+a.layoutDependency,x=/*#__PURE__*/o.forwardRef(function(l,r){let{activeLocale:L}=i(),{style:d,className:n,layoutId:g,variant:c,...x}=u(l),{baseVariant:w,classNames:y,gestureVariant:E,setGestureState:k,setVariant:H,transition:T,variants:G}=p({cycleOrder:s,defaultVariant:\"Hx8dTEFq9\",transitions:M,variant:c,variantClassNames:m}),D=v(l,G),S=o.useRef(null),j=o.useId();return /*#__PURE__*/a(h,{id:null!=g?g:j,children:/*#__PURE__*/a(f.div,{initial:c,animate:G,onHoverStart:()=>k({isHovered:!0}),onHoverEnd:()=>k({isHovered:!1}),onTapStart:()=>k({isPressed:!0}),onTap:()=>k({isPressed:!1}),onTapCancel:()=>k({isPressed:!1}),className:C(\"framer-a6L9G\",...[],y),style:{display:\"contents\"},children:/*#__PURE__*/a(b,{value:T,children:/*#__PURE__*/t(f.div,{...x,className:C(\"framer-gle0ao\",n),\"data-framer-name\":\"Dark\",layoutDependency:D,layoutId:\"Hx8dTEFq9\",ref:null!=r?r:S,style:{...d},...Z({fQYRSHT96:{\"data-framer-name\":\"Light\"}},w,E),children:[/*#__PURE__*/a(e,{className:\"framer-1lzj6lr\",\"data-framer-name\":\"Mark_2\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:24,layoutDependency:D,layoutId:\"BEW6XZ3mc\",svg:'<svg width=\"24\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m11.92 14.472 5.776 6.944h6.145l-11.92-6.944Z\" fill=\"#919191\"/><path d=\"m11.92 14.472-.022.013L0 21.415h6.146l5.775-6.943Z\" fill=\"#727272\"/><path d=\"m11.92 14.472 2.506 6.944h3.27l-5.775-6.944Z\" fill=\"#828282\"/><path d=\"M11.92 21.416h2.506l-2.505-6.944v6.944Z\" fill=\"#828282\"/><path d=\"M9.416 21.416h2.505v-6.944l-2.505 6.944Zm2.505-6.944-5.775 6.944h3.27l2.505-6.944Z\" fill=\"#828282\"/><path d=\"m11.92 14.472.017.01 11.905 6.934-3.073-5.37-8.848-1.574Z\" fill=\"#D7D7D7\"/><path d=\"m11.92 14.472 8.849 1.574-1.635-2.858-7.213 1.284Z\" fill=\"#E6E6E6\"/><path d=\"m11.92 14.472 7.214-1.284L17.88 11l-5.96 3.472Z\" fill=\"#E6E6E6\"/><path d=\"M17.881 11 16.63 8.81l-4.708 5.662L17.88 11Zm-5.961 3.472 4.71-5.662-1.635-2.858-3.073 8.519Z\" fill=\"#E6E6E6\"/><path d=\"m11.92 14.472 3.074-8.519L11.92.583v13.889Z\" fill=\"#F6F6F6\"/><path d=\"M0 21.416Z\" fill=\"#fff\"/><path d=\"M11.921 14.472V.584l-3.073 5.37 3.073 8.518Z\" fill=\"#242424\"/><path d=\"m11.921 14.472-8.848 1.574L0 21.416l11.921-6.944Z\" fill=\"#434343\"/><path d=\"M11.92 14.472 8.849 5.953 7.213 8.811l4.708 5.66Z\" fill=\"#333\"/><path d=\"M7.213 8.81 5.96 11l5.96 3.472L7.214 8.81Z\" fill=\"#333\"/><path d=\"M11.921 14.472 5.961 11l-1.253 2.188 7.213 1.284Z\" fill=\"#333\"/><path d=\"m11.921 14.472-7.213-1.284-1.635 2.858 8.848-1.574Z\" fill=\"#333\"/><g style=\"mix-blend-mode:color\"><mask id=\"a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"24\" height=\"22\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m11.92 14.471-.022.014L0 21.415h23.84l-11.469-6.68 11.47 6.68-3.073-5.37-1.635-2.857-1.253-2.189-1.25-2.189-1.635-2.857L11.92.583l-3.073 5.37 3.073 8.518-3.073-8.518L7.213 8.81 5.96 11l-1.252 2.188-1.635 2.857L0 21.415l11.92-6.944ZM0 21.416Z\" fill=\"#fff\" style=\"mix-blend-mode:difference\"/></mask><g mask=\"url(#a)\"><path fill=\"#EC4E0B\" d=\"M0 .583h23.667v20.833H0z\"/></g></g></svg>',withExternalLayout:!0}),/*#__PURE__*/a(e,{className:\"framer-805xq8\",\"data-framer-name\":\"Medium\",layout:\"position\",layoutDependency:D,layoutId:\"LzIiDvzjV\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 21\"><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgba(0,0,0,0.9)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgba(0,0,0,0.9)\"></path></svg>',svgContentId:1221919051,variants:{fQYRSHT96:{backgroundColor:\"rgba(87, 27, 27, 0)\"}},withExternalLayout:!0,...Z({fQYRSHT96:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97 21\"><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 0.515 0.296 L 0.515 2.762 L 2.99 2.762 L 2.99 0.296 Z M 0.672 4.879 L 0.672 16.744 L 2.857 16.744 L 2.857 4.879 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 5.287 16.744 L 7.473 16.744 L 7.473 9.462 C 7.473 7.671 8.498 6.485 10.127 6.485 C 11.799 6.485 12.11 7.555 12.11 9.137 L 12.11 16.744 L 14.297 16.744 L 14.297 9.462 C 14.297 7.671 15.321 6.485 16.95 6.485 C 18.623 6.485 18.934 7.555 18.934 9.137 L 18.934 16.744 L 21.119 16.744 L 21.119 8.509 C 21.119 5.973 19.96 4.531 17.664 4.531 C 15.902 4.531 14.765 5.461 13.939 6.601 L 13.895 6.601 C 13.426 5.275 12.468 4.531 10.885 4.531 C 9.168 4.531 8.12 5.461 7.518 6.368 L 7.473 6.368 L 7.473 4.879 L 5.288 4.879 L 5.288 16.744 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 26.55 17.071 C 28.402 17.071 29.694 16.302 30.453 15.069 L 30.498 15.069 C 30.608 16.418 31.211 16.861 32.28 16.861 C 32.638 16.861 33.018 16.815 33.396 16.721 L 33.396 15.325 C 33.263 15.349 33.196 15.349 33.129 15.349 C 32.705 15.349 32.593 14.906 32.593 14.045 L 32.593 8.601 C 32.593 5.53 30.72 4.508 28.379 4.508 C 24.9 4.508 23.473 6.299 23.362 8.579 L 25.592 8.579 C 25.703 6.997 26.305 6.346 28.29 6.346 C 29.963 6.346 30.453 7.066 30.453 7.927 C 30.453 9.091 29.361 9.323 27.576 9.672 C 24.745 10.253 22.827 11.021 22.827 13.673 C 22.827 15.697 24.277 17.071 26.55 17.071 Z M 27.041 15.232 C 25.681 15.232 25.123 14.627 25.123 13.51 C 25.123 12.278 25.947 11.719 27.955 11.277 C 29.115 11.021 30.095 10.766 30.453 10.416 L 30.453 12.115 C 30.453 14.185 29.003 15.232 27.041 15.232 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 43.084 15.954 C 43.084 18.187 42.013 19.141 39.94 19.141 C 38.088 19.141 37.309 18.303 37.086 17.234 L 34.833 17.234 C 35.056 19.373 36.684 21.001 39.94 21.001 C 43.195 21.001 45.269 19.397 45.269 15.813 L 45.269 4.881 L 43.084 4.881 L 43.084 6.277 L 43.039 6.277 C 42.414 5.438 41.366 4.531 39.538 4.531 C 36.706 4.531 34.521 6.532 34.521 10.347 C 34.521 14.139 36.706 16.14 39.538 16.14 C 41.367 16.14 42.414 15.302 43.039 14.349 L 43.084 14.349 Z M 39.94 6.438 C 41.902 6.438 43.061 7.742 43.061 10.347 C 43.061 12.929 41.902 14.255 39.94 14.255 C 37.798 14.255 36.796 12.58 36.796 10.347 C 36.796 8.113 37.798 6.438 39.94 6.438 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 47.572 0.296 L 47.572 2.762 L 50.047 2.762 L 50.047 0.296 Z M 47.729 4.879 L 47.729 16.744 L 49.914 16.744 L 49.914 4.879 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 52.344 16.744 L 54.53 16.744 L 54.53 9.462 C 54.53 7.671 55.734 6.485 57.607 6.485 C 59.234 6.485 59.904 7.555 59.904 9.137 L 59.904 16.744 L 62.11 16.744 L 62.11 8.509 C 62.11 5.787 60.416 4.531 58.32 4.531 C 56.358 4.531 55.177 5.461 54.575 6.368 L 54.53 6.368 L 54.53 4.879 L 52.345 4.879 L 52.345 16.744 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 69.45 17.094 C 72.438 17.094 74.11 15.372 74.69 13.092 L 72.483 13.092 C 72.26 13.882 71.501 15.232 69.494 15.232 C 67.243 15.232 66.127 13.417 66.082 11.417 L 74.825 11.417 C 74.846 11.231 74.846 10.882 74.846 10.556 C 74.846 6.881 72.906 4.508 69.451 4.508 C 65.971 4.508 63.831 7.066 63.831 10.789 C 63.831 14.418 65.838 17.094 69.45 17.094 Z M 69.383 6.368 C 71.323 6.368 72.55 7.764 72.55 9.625 L 66.081 9.625 C 66.215 7.671 67.553 6.368 69.382 6.368 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 75.662 14.208 L 75.662 16.744 L 78.093 16.744 L 78.093 14.208 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 80.933 0.296 L 80.933 2.762 L 83.407 2.762 L 83.407 0.296 Z M 81.088 4.879 L 81.088 16.744 L 83.275 16.744 L 83.275 4.879 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgb(43,43,43)\"></path><path d=\"M 90.77 17.094 C 94.316 17.094 96.457 14.511 96.457 10.789 C 96.457 7.089 94.316 4.508 90.77 4.508 C 87.225 4.508 85.084 7.114 85.084 10.813 C 85.084 14.534 87.225 17.094 90.77 17.094 Z M 90.77 15.209 C 88.429 15.209 87.358 13.278 87.358 10.811 C 87.358 8.322 88.429 6.415 90.77 6.415 C 93.088 6.415 94.182 8.322 94.182 10.813 C 94.182 13.278 93.088 15.209 90.77 15.209 Z\" fill=\"rgba(255, 255, 255, 0.9)\"></path></svg>',svgContentId:417180519}},w,E)})]})})})});}),w=['.framer-a6L9G [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a6L9G .framer-1f0ceca { display: block; }\",\".framer-a6L9G .framer-gle0ao { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-a6L9G .framer-1lzj6lr { aspect-ratio: 1.0909090909090908 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 28px; }\",\".framer-a6L9G .framer-805xq8 { flex: none; height: 21px; position: relative; width: 97px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a6L9G .framer-gle0ao { gap: 0px; } .framer-a6L9G .framer-gle0ao > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-a6L9G .framer-gle0ao > :first-child { margin-left: 0px; } .framer-a6L9G .framer-gle0ao > :last-child { margin-right: 0px; } }\",\".framer-a6L9G.framer-v-t3mu76 .framer-gle0ao { justify-content: flex-start; }\"],y=d(x,w,\"framer-a6L9G\");export default y;y.displayName=\"Imagine.io Logo\",y.defaultProps={height:26,width:133},r(y,{variant:{options:[\"Hx8dTEFq9\",\"fQYRSHT96\"],optionTitles:[\"Dark\",\"Light\"],title:\"Variant\",type:L.Enum}}),l(y,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernQvZ5kQcV\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"26\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"133\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fQYRSHT96\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nQvZ5kQcV.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", "trackButtonClickedTryItForFree", "trackHeaderFooterMenuClick", "trackClickTab", "trackClickTabFloating", "trackClickAugmentedRealitySolutions", "trackClickBuildYourOwnConfigurator", "trackClickCustomerSuccessStories", "trackClickExplore3DRendering", "trackClickLearnMoreEnterprise", "USERPILOT_EVENTS", "updateLoginButton", "user", "logInBtn", "i", "btn", "getUUIDParams", "event", "callTrackEvent", "updateGetStartedButton", "_user", "getStartedBtn", "window", "getDataFromLocalStorage", "callback", "currentUser", "withLoginButton", "Component", "props", "handleLogin", "isLoggedIn", "getDataFromLocalStorage", "updateLoginButton", "btn", "ue", "segmentLoad", "window", "p", "trackButtonClickedTryItForFree", "withGetStartedButton", "handleGetStarted", "updateGetStartedButton", "CYCLE", "TYPE", "defaultValues", "useStore", "createStore", "withSubscriptionProductsTypeAddClass", "Component", "props", "store", "setStore", "useStore", "handleSelectType", "TYPE", "p", "withSubscriptionTextilesTypeAddClass", "withOverlayCloseButtonAddClass", "Component", "props", "p", "withHeaderMenuClick", "handleClick", "e", "menu_name", "trackHeaderFooterMenuClick", "withFooterMenuClick", "withClickTab", "tabName", "trackClickTab", "withClickTabFloating", "trackClickTabFloating", "withClickLearnMoreEnterprise", "trackClickLearnMoreEnterprise", "withClickExplore3DRendering", "trackClickExplore3DRendering", "withClickBuildYourOwnConfigurator", "trackClickBuildYourOwnConfigurator", "withClickCustomerSuccessStories", "trackClickCustomerSuccessStories", "withClickAugmentedRealitySolutions", "trackClickAugmentedRealitySolutions", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "padding", "shadow2", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jpKtV9MEn", "HkXArTRCm", "i6ydiGswO", "JJ00ngaKv", "Ekb5zt9TK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapcbi8nj", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerYxAUZlgP8", "withCSS", "YxAUZlgP8_default", "addPropertyControls", "ControlType", "addFonts", "ZNc7qfYHq_exports", "__export", "__FramerMetadata__", "ZNc7qfYHq_default", "MainButton2025Fonts", "getFonts", "YxAUZlgP8_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "MotionDivWithBookADemoButton1j5u4g0", "withCodeBoundaryForOverrides", "motion", "withBookADemoButton", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "x0aGn4ek5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "MotionDivWithBookADemoButton1j5u4g0", "ComponentViewportProvider", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "YxAUZlgP8_default", "css", "FramerZNc7qfYHq", "withCSS", "ZNc7qfYHq_default", "addPropertyControls", "ControlType", "addFonts", "MainButton2025Fonts", "__FramerMetadata__", "s", "m", "Z", "a", "t", "l", "M", "b", "r", "re", "MotionConfigContext", "L", "C", "se", "p", "c", "u", "v", "x", "Y", "useLocaleInfo", "d", "g", "w", "y", "E", "k", "H", "T", "G", "useVariantState", "s", "D", "S", "pe", "j", "ae", "LayoutGroup", "motion", "cx", "SVG", "withCSS", "nQvZ5kQcV_default", "addPropertyControls", "ControlType", "addFonts"]
}
