{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/zdSFuPjq5DyjjFn91Hsz/PixIRAUHEGBNnv2NQW8h/EoGzSnwGp.js", "ssg:https://framerusercontent.com/modules/g1nRn7HhqMIBYGoFGuLO/XEVdyd9txyTJMhaAHdbD/nKsWdfKeg.js", "ssg:https://framerusercontent.com/modules/1acHpG9cHvZ09W3ohIYo/jiqF1kA6JZ3nMqrGkNOG/QL1G4s3q6.js", "ssg:https://framerusercontent.com/modules/FPJV2ziKJZysQHZzqlTO/srtnljlWPCjILLrqiV51/vWDaWbop8.js", "ssg:https://framerusercontent.com/modules/71bYpSjw8Z8O9KjfX7nX/mOsnvGx5wEEtK60qLJYP/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MainButton from\"https://framerusercontent.com/modules/QfZ3qtrEkywUFGsEUbkx/RhhQ9DwEhsY3DP6wAwRH/vuzf6ndaV.js\";const MainButtonFonts=getFonts(MainButton);const cycleOrder=[\"Lblu3pOG1\",\"LlGOWouqW\"];const serializationHash=\"framer-C2cbG\";const variantClassNames={Lblu3pOG1:\"framer-v-1cebgzk\",LlGOWouqW:\"framer-v-1n27rct\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"Lblu3pOG1\",Mobile:\"LlGOWouqW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Lblu3pOG1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Lblu3pOG1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cebgzk\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Lblu3pOG1\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgba(35, 35, 36, 1) 0%, rgba(12, 12, 12, 1) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({LlGOWouqW:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j54vhb\",\"data-framer-name\":\"Price Title\",layoutDependency:layoutDependency,layoutId:\"HneTlZmk5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Annual Plan\"})}),className:\"framer-6h1iga\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Gotham-regular\"],layoutDependency:layoutDependency,layoutId:\"Y7eIUaEhe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n6lo6m\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"duX1doT8Q\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o6lwc0\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"ZfuMXW3dO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"67px\",\"--framer-letter-spacing\":\"-0.05em\"},children:\"\\xa359\"}),\"/user/mo\"]})}),className:\"framer-zc0kjc\",\"data-framer-name\":\"Price\",fonts:[\"GF;Gotham-regular\"],layoutDependency:layoutDependency,layoutId:\"UJZziLl61\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"or \\xa3708 yearly\"})}),className:\"framer-xsfulp\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"RZ5fC3eYj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wd3lo8\",\"data-framer-name\":\"Actions\",layoutDependency:layoutDependency,layoutId:\"HuYtscgJF\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+32+200+0+528.5+0+0,...addPropertyOverrides({LlGOWouqW:{y:(componentViewport?.y||0)+32+65.6+0+137.7+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b4weob-container\",layoutDependency:layoutDependency,layoutId:\"n71_NDrbV-container\",children:/*#__PURE__*/_jsx(MainButton,{g8ifUoiv9:\"rgb(255, 255, 255)\",height:\"100%\",ho7vU6fog:true,HOMiPFDVa:\"https://meetings-eu1.hubspot.com/mick-gosset\",id:\"n71_NDrbV\",layoutId:\"n71_NDrbV\",UICFdbQZR:\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\",w29DXYQaD:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",width:\"100%\",XLsB2Shof:\"Book A Demo\"})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eklta6\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:434,layoutDependency:layoutDependency,layoutId:\"fLIrQdxLQ\",svg:'<svg width=\"434\" height=\"4\" viewBox=\"-1 -1 434 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.25\" x2=\"432\" y2=\"1.25\" stroke=\"#404040\" stroke-width=\"1.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ociqdk\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"zBfpxW9gY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10jips9\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"ZyQxr5SMI\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o8k3sa\",\"data-framer-name\":\"Check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"UnicWhANo\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3479 7.56384L9.7479 18.1638C9.65402 18.2585 9.52622 18.3117 9.3929 18.3117C9.25958 18.3117 9.13178 18.2585 9.0379 18.1638L3.6479 12.7738C3.55324 12.68 3.5 12.5522 3.5 12.4188C3.5 12.2855 3.55324 12.1577 3.6479 12.0638L4.3479 11.3638C4.44178 11.2692 4.56958 11.2159 4.7029 11.2159C4.83622 11.2159 4.96402 11.2692 5.0579 11.3638L9.3879 15.6938L18.9379 6.14384C19.1357 5.95205 19.4501 5.95205 19.6479 6.14384L20.3479 6.85384C20.4426 6.94772 20.4958 7.07552 20.4958 7.20884C20.4958 7.34216 20.4426 7.46995 20.3479 7.56384Z\" fill=\"#EF4952\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Unlimited Flows\"})}),className:\"framer-qlxr07\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"nGWiG8TA0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-thxgvg\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"DC5Sqfytl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-o72dos\",\"data-framer-name\":\"Check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"rMpsS2Pl3\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3479 7.56384L9.7479 18.1638C9.65402 18.2585 9.52622 18.3117 9.3929 18.3117C9.25958 18.3117 9.13178 18.2585 9.0379 18.1638L3.6479 12.7738C3.55324 12.68 3.5 12.5522 3.5 12.4188C3.5 12.2855 3.55324 12.1577 3.6479 12.0638L4.3479 11.3638C4.44178 11.2692 4.56958 11.2159 4.7029 11.2159C4.83622 11.2159 4.96402 11.2692 5.0579 11.3638L9.3879 15.6938L18.9379 6.14384C19.1357 5.95205 19.4501 5.95205 19.6479 6.14384L20.3479 6.85384C20.4426 6.94772 20.4958 7.07552 20.4958 7.20884C20.4958 7.34216 20.4426 7.46995 20.3479 7.56384Z\" fill=\"#EF4952\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Unlimited Templates\"})}),className:\"framer-9qdxx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"ETca5Ugx9\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u8vi8w\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"tFO8OOIjy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nveg09\",\"data-framer-name\":\"Check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"dCdj8wdeY\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3479 7.56384L9.7479 18.1638C9.65402 18.2585 9.52622 18.3117 9.3929 18.3117C9.25958 18.3117 9.13178 18.2585 9.0379 18.1638L3.6479 12.7738C3.55324 12.68 3.5 12.5522 3.5 12.4188C3.5 12.2855 3.55324 12.1577 3.6479 12.0638L4.3479 11.3638C4.44178 11.2692 4.56958 11.2159 4.7029 11.2159C4.83622 11.2159 4.96402 11.2692 5.0579 11.3638L9.3879 15.6938L18.9379 6.14384C19.1357 5.95205 19.4501 5.95205 19.6479 6.14384L20.3479 6.85384C20.4426 6.94772 20.4958 7.07552 20.4958 7.20884C20.4958 7.34216 20.4426 7.46995 20.3479 7.56384Z\" fill=\"#EF4952\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Unlimited Projects\"})}),className:\"framer-6jzz7v\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"h_ThAhQNQ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16i87ou\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"QvHHBxqVK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-whs6dn\",\"data-framer-name\":\"Check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"uMoBUs6HG\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3479 7.56384L9.7479 18.1638C9.65402 18.2585 9.52622 18.3117 9.3929 18.3117C9.25958 18.3117 9.13178 18.2585 9.0379 18.1638L3.6479 12.7738C3.55324 12.68 3.5 12.5522 3.5 12.4188C3.5 12.2855 3.55324 12.1577 3.6479 12.0638L4.3479 11.3638C4.44178 11.2692 4.56958 11.2159 4.7029 11.2159C4.83622 11.2159 4.96402 11.2692 5.0579 11.3638L9.3879 15.6938L18.9379 6.14384C19.1357 5.95205 19.4501 5.95205 19.6479 6.14384L20.3479 6.85384C20.4426 6.94772 20.4958 7.07552 20.4958 7.20884C20.4958 7.34216 20.4426 7.46995 20.3479 7.56384Z\" fill=\"#EF4952\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Unlimited Mutual Action Plans\"})}),className:\"framer-5vsofx\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"olmdpFC3r\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t0bpam\",\"data-framer-name\":\"List Item\",layoutDependency:layoutDependency,layoutId:\"YwTSebtuT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ecm6v\",\"data-framer-name\":\"Check\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"d7fUGMOq9\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.3479 7.56384L9.7479 18.1638C9.65402 18.2585 9.52622 18.3117 9.3929 18.3117C9.25958 18.3117 9.13178 18.2585 9.0379 18.1638L3.6479 12.7738C3.55324 12.68 3.5 12.5522 3.5 12.4188C3.5 12.2855 3.55324 12.1577 3.6479 12.0638L4.3479 11.3638C4.44178 11.2692 4.56958 11.2159 4.7029 11.2159C4.83622 11.2159 4.96402 11.2692 5.0579 11.3638L9.3879 15.6938L18.9379 6.14384C19.1357 5.95205 19.4501 5.95205 19.6479 6.14384L20.3479 6.85384C20.4426 6.94772 20.4958 7.07552 20.4958 7.20884C20.4958 7.34216 20.4426 7.46995 20.3479 7.56384Z\" fill=\"#EF4952\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ipuhy2\",\"data-framer-name\":\"Frame 453\",layoutDependency:layoutDependency,layoutId:\"SuZoqxQgJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Full Support\"})}),className:\"framer-1snyb3j\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"dgarO0mNR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(114, 114, 114))\"},children:\"*excludes \\xa35,000 Annual Platform Access \"})}),className:\"framer-dbt5st\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"muRRS3UE0\",style:{\"--extracted-r6o4lv\":\"rgb(114, 114, 114)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C2cbG.framer-vayzip, .framer-C2cbG .framer-vayzip { display: block; }\",\".framer-C2cbG.framer-1cebgzk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 500px; overflow: visible; padding: 32px; position: relative; width: min-content; }\",\".framer-C2cbG .framer-1j54vhb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1248px; }\",\".framer-C2cbG .framer-6h1iga, .framer-C2cbG .framer-zc0kjc, .framer-C2cbG .framer-xsfulp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 432px; word-break: break-word; word-wrap: break-word; }\",\".framer-C2cbG .framer-1n6lo6m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-C2cbG .framer-1o6lwc0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 432px; }\",\".framer-C2cbG .framer-wd3lo8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C2cbG .framer-1b4weob-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-C2cbG .framer-eklta6 { flex: none; height: 4px; position: relative; width: 434px; }\",\".framer-C2cbG .framer-ociqdk { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: auto; }\",\".framer-C2cbG .framer-10jips9, .framer-C2cbG .framer-thxgvg, .framer-C2cbG .framer-u8vi8w, .framer-C2cbG .framer-16i87ou, .framer-C2cbG .framer-t0bpam { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-C2cbG .framer-1o8k3sa, .framer-C2cbG .framer-o72dos, .framer-C2cbG .framer-1nveg09, .framer-C2cbG .framer-whs6dn, .framer-C2cbG .framer-ecm6v { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-C2cbG .framer-qlxr07, .framer-C2cbG .framer-9qdxx, .framer-C2cbG .framer-6jzz7v, .framer-C2cbG .framer-5vsofx, .framer-C2cbG .framer-1snyb3j, .framer-C2cbG .framer-dbt5st { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-C2cbG .framer-ipuhy2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C2cbG.framer-1cebgzk, .framer-C2cbG .framer-1j54vhb, .framer-C2cbG .framer-1n6lo6m, .framer-C2cbG .framer-1o6lwc0, .framer-C2cbG .framer-wd3lo8, .framer-C2cbG .framer-ociqdk, .framer-C2cbG .framer-10jips9, .framer-C2cbG .framer-thxgvg, .framer-C2cbG .framer-u8vi8w, .framer-C2cbG .framer-16i87ou, .framer-C2cbG .framer-t0bpam, .framer-C2cbG .framer-ipuhy2 { gap: 0px; } .framer-C2cbG.framer-1cebgzk > *, .framer-C2cbG .framer-1n6lo6m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-C2cbG.framer-1cebgzk > :first-child, .framer-C2cbG .framer-1j54vhb > :first-child, .framer-C2cbG .framer-1n6lo6m > :first-child, .framer-C2cbG .framer-1o6lwc0 > :first-child, .framer-C2cbG .framer-wd3lo8 > :first-child, .framer-C2cbG .framer-ociqdk > :first-child, .framer-C2cbG .framer-ipuhy2 > :first-child { margin-top: 0px; } .framer-C2cbG.framer-1cebgzk > :last-child, .framer-C2cbG .framer-1j54vhb > :last-child, .framer-C2cbG .framer-1n6lo6m > :last-child, .framer-C2cbG .framer-1o6lwc0 > :last-child, .framer-C2cbG .framer-wd3lo8 > :last-child, .framer-C2cbG .framer-ociqdk > :last-child, .framer-C2cbG .framer-ipuhy2 > :last-child { margin-bottom: 0px; } .framer-C2cbG .framer-1j54vhb > *, .framer-C2cbG .framer-ipuhy2 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-C2cbG .framer-1o6lwc0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-C2cbG .framer-wd3lo8 > *, .framer-C2cbG .framer-ociqdk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-C2cbG .framer-10jips9 > *, .framer-C2cbG .framer-thxgvg > *, .framer-C2cbG .framer-u8vi8w > *, .framer-C2cbG .framer-16i87ou > *, .framer-C2cbG .framer-t0bpam > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-C2cbG .framer-10jips9 > :first-child, .framer-C2cbG .framer-thxgvg > :first-child, .framer-C2cbG .framer-u8vi8w > :first-child, .framer-C2cbG .framer-16i87ou > :first-child, .framer-C2cbG .framer-t0bpam > :first-child { margin-left: 0px; } .framer-C2cbG .framer-10jips9 > :last-child, .framer-C2cbG .framer-thxgvg > :last-child, .framer-C2cbG .framer-u8vi8w > :last-child, .framer-C2cbG .framer-16i87ou > :last-child, .framer-C2cbG .framer-t0bpam > :last-child { margin-right: 0px; } }\",\".framer-C2cbG.framer-v-1n27rct.framer-1cebgzk { height: 599px; max-width: 350px; }\",\".framer-C2cbG.framer-v-1n27rct .framer-1j54vhb { align-content: center; align-items: center; align-self: stretch; width: auto; }\",\".framer-C2cbG.framer-v-1n27rct .framer-6h1iga, .framer-C2cbG.framer-v-1n27rct .framer-zc0kjc, .framer-C2cbG.framer-v-1n27rct .framer-xsfulp { white-space: pre; width: auto; }\",\".framer-C2cbG.framer-v-1n27rct .framer-1n6lo6m { align-self: stretch; width: auto; }\",\".framer-C2cbG.framer-v-1n27rct .framer-1o6lwc0 { width: 100%; }\",\".framer-C2cbG.framer-v-1n27rct .framer-eklta6 { width: 292px; }\",'.framer-C2cbG[data-border=\"true\"]::after, .framer-C2cbG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 590.5\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"500px\",null,null]},\"LlGOWouqW\":{\"layout\":[\"auto\",\"fixed\"],\"constraints\":[null,\"350px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEoGzSnwGp=withCSS(Component,css,\"framer-C2cbG\");export default FramerEoGzSnwGp;FramerEoGzSnwGp.displayName=\"Pricing\";FramerEoGzSnwGp.defaultProps={height:590.5,width:500};addPropertyControls(FramerEoGzSnwGp,{variant:{options:[\"Lblu3pOG1\",\"LlGOWouqW\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEoGzSnwGp,[{explicitInter:true,fonts:[]},...MainButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEoGzSnwGp\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"590.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"500px\\\",null,null]},\\\"LlGOWouqW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"350px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"500\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/hzNL8w4u7ilyB23ymeOV/YJ5wnvFrveMQHeNgwdox/DrbnFMA_e.js\";const cycleOrder=[\"CS5zIO5Nw\",\"afi0oZ3Ix\"];const serializationHash=\"framer-L0GH3\";const variantClassNames={afi0oZ3Ix:\"framer-v-1rsspg1\",CS5zIO5Nw:\"framer-v-918u9y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"CS5zIO5Nw\",Mobile:\"afi0oZ3Ix\"};const getProps=({companyLogo,height,id,name1,person,review,tITle,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,IyXDzUuBm:(_ref=review!==null&&review!==void 0?review:props.IyXDzUuBm)!==null&&_ref!==void 0?_ref:\"\u201CGame changer. Being able to capture the each buying journey gives us a level of control we didn\u2019t know existed .\u201D\",kZdEsLxaw:(_ref1=name1!==null&&name1!==void 0?name1:props.kZdEsLxaw)!==null&&_ref1!==void 0?_ref1:\"Name Surname\",Nrr9RBgq1:(_ref2=tITle!==null&&tITle!==void 0?tITle:props.Nrr9RBgq1)!==null&&_ref2!==void 0?_ref2:\"Managing Director, Magnolia\",Pz6VscMjK:(_ref3=person!==null&&person!==void 0?person:props.Pz6VscMjK)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/dkhHqTyBiCr1gFQUlEoT5iwjR68.png\"},qzGOgDnol:companyLogo!==null&&companyLogo!==void 0?companyLogo:props.qzGOgDnol,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"CS5zIO5Nw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Pz6VscMjK,kZdEsLxaw,Nrr9RBgq1,qzGOgDnol,IyXDzUuBm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CS5zIO5Nw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-918u9y\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"CS5zIO5Nw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(35, 35, 36, 0.18)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({afi0oZ3Ix:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11hauxi\",layoutDependency:layoutDependency,layoutId:\"sQisu_VCl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-j4sqwk\",\"data-framer-name\":\"Stars\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"eXBBnv9ni\",svg:'<svg width=\"116\" height=\"19\" viewBox=\"0 0 116 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_100_3339)\">\\n<path d=\"M9.07088 0.612343C9.41462 -0.204115 10.5854 -0.204114 10.9291 0.612346L12.9579 5.43123C13.1029 5.77543 13.4306 6.01061 13.8067 6.0404L19.0727 6.45748C19.9649 6.52814 20.3267 7.62813 19.6469 8.2034L15.6348 11.5987C15.3482 11.8412 15.223 12.2218 15.3106 12.5843L16.5363 17.661C16.744 18.5211 15.7969 19.201 15.033 18.7401L10.5245 16.0196C10.2025 15.8252 9.7975 15.8252 9.47548 16.0196L4.96699 18.7401C4.20311 19.201 3.25596 18.5211 3.46363 17.661L4.68942 12.5843C4.77698 12.2218 4.65182 11.8412 4.36526 11.5987L0.353062 8.2034C-0.326718 7.62813 0.0350679 6.52814 0.927291 6.45748L6.19336 6.0404C6.5695 6.01061 6.89716 5.77543 7.04207 5.43123L9.07088 0.612343Z\" fill=\"#EF4952\"/>\\n<path d=\"M33.0709 0.612343C33.4146 -0.204115 34.5854 -0.204114 34.9291 0.612346L36.9579 5.43123C37.1029 5.77543 37.4306 6.01061 37.8067 6.0404L43.0727 6.45748C43.9649 6.52814 44.3267 7.62813 43.6469 8.2034L39.6348 11.5987C39.3482 11.8412 39.223 12.2218 39.3106 12.5843L40.5363 17.661C40.744 18.5211 39.7969 19.201 39.033 18.7401L34.5245 16.0196C34.2025 15.8252 33.7975 15.8252 33.4755 16.0196L28.967 18.7401C28.2031 19.201 27.256 18.5211 27.4636 17.661L28.6894 12.5843C28.777 12.2218 28.6518 11.8412 28.3653 11.5987L24.3531 8.2034C23.6733 7.62813 24.0351 6.52814 24.9273 6.45748L30.1934 6.0404C30.5695 6.01061 30.8972 5.77543 31.0421 5.43123L33.0709 0.612343Z\" fill=\"#EF4952\"/>\\n<path d=\"M57.0709 0.612343C57.4146 -0.204115 58.5854 -0.204114 58.9291 0.612346L60.9579 5.43123C61.1029 5.77543 61.4306 6.01061 61.8067 6.0404L67.0727 6.45748C67.9649 6.52814 68.3267 7.62813 67.6469 8.2034L63.6348 11.5987C63.3482 11.8412 63.223 12.2218 63.3106 12.5843L64.5363 17.661C64.744 18.5211 63.7969 19.201 63.033 18.7401L58.5245 16.0196C58.2025 15.8252 57.7975 15.8252 57.4755 16.0196L52.967 18.7401C52.2031 19.201 51.256 18.5211 51.4636 17.661L52.6894 12.5843C52.777 12.2218 52.6518 11.8412 52.3653 11.5987L48.3531 8.2034C47.6733 7.62813 48.0351 6.52814 48.9273 6.45748L54.1934 6.0404C54.5695 6.01061 54.8972 5.77543 55.0421 5.43123L57.0709 0.612343Z\" fill=\"#EF4952\"/>\\n<path d=\"M81.0706 0.612343C81.4144 -0.204115 82.5851 -0.204114 82.9289 0.612346L84.9576 5.43123C85.1026 5.77543 85.4303 6.01061 85.8064 6.0404L91.0724 6.45748C91.9646 6.52814 92.3264 7.62813 91.6466 8.2034L87.6345 11.5987C87.348 11.8412 87.2228 12.2218 87.3103 12.5843L88.5361 17.661C88.7438 18.5211 87.7966 19.201 87.0328 18.7401L82.5243 16.0196C82.2023 15.8252 81.7973 15.8252 81.4752 16.0196L76.9667 18.7401C76.2029 19.201 75.2557 18.5211 75.4634 17.661L76.6892 12.5843C76.7767 12.2218 76.6516 11.8412 76.365 11.5987L72.3528 8.2034C71.673 7.62813 72.0348 6.52814 72.927 6.45748L78.1931 6.0404C78.5693 6.01061 78.8969 5.77543 79.0418 5.43123L81.0706 0.612343Z\" fill=\"#EF4952\"/>\\n<path d=\"M105.071 0.612343C105.414 -0.204115 106.585 -0.204114 106.929 0.612346L108.958 5.43123C109.103 5.77543 109.43 6.01061 109.806 6.0404L115.072 6.45748C115.965 6.52814 116.326 7.62813 115.647 8.2034L111.635 11.5987C111.348 11.8412 111.223 12.2218 111.31 12.5843L112.536 17.661C112.744 18.5211 111.797 19.201 111.033 18.7401L106.524 16.0196C106.202 15.8252 105.797 15.8252 105.475 16.0196L100.967 18.7401C100.203 19.201 99.2557 18.5211 99.4634 17.661L100.689 12.5843C100.777 12.2218 100.652 11.8412 100.365 11.5987L96.3528 8.2034C95.673 7.62813 96.0348 6.52814 96.927 6.45748L102.193 6.0404C102.569 6.01061 102.897 5.77543 103.042 5.43123L105.071 0.612343Z\" fill=\"#EF4952\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_100_3339\">\\n<rect width=\"116\" height=\"18.8889\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-4mbxok\",\"data-styles-preset\":\"DrbnFMA_e\",children:\"\u201CGame changer. Being able to capture the each buying journey gives us a level of control we didn\u2019t know existed .\u201D\"})}),className:\"framer-tbbsjd\",\"data-framer-name\":'\"Text Suspendisse varius enim in eros elementum tristique.\"',fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qjhuwz1NL\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:IyXDzUuBm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ovkzfi\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"nvSW_0XdL\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349.5)-64-324)/2+0+0)+0+147+0+0),sizes:\"56px\",...toResponsiveImage(Pz6VscMjK),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1eiw2xj\",\"data-framer-name\":\"Avatar Image\",layoutDependency:layoutDependency,layoutId:\"xMr_ZIZDP\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({afi0oZ3Ix:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||388)-64-420)/2+0+0)+0+147+0+0),sizes:\"56px\",...toResponsiveImage(Pz6VscMjK),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7b236\",\"data-framer-name\":\"Avatar Content\",layoutDependency:layoutDependency,layoutId:\"sZwR_FD36\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\"},children:\"Name Surname\"})}),className:\"framer-qqlkfg\",\"data-framer-name\":\"Name Surname\",fonts:[\"GF;Gotham-regular\"],layoutDependency:layoutDependency,layoutId:\"V_xrpxFwL\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:kZdEsLxaw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R290aGFtLTMwMA==\",\"--framer-font-family\":'\"Gotham\", \"Gotham Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\"},children:\"Managing Director, Magnolia\"})}),className:\"framer-1yjv2nw\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gotham-300\"],layoutDependency:layoutDependency,layoutId:\"CRGVZ0ej9\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Nrr9RBgq1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349.5)-64-324)/2+0+0)+0+147+0+136),pixelHeight:28,pixelWidth:135,...toResponsiveImage(qzGOgDnol),...{positionX:\"left\",positionY:\"center\"}},className:\"framer-17uamxv\",layoutDependency:layoutDependency,layoutId:\"qViOPQlNN\",...addPropertyOverrides({afi0oZ3Ix:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||388)-64-420)/2+0+0)+0+147+0+232),pixelHeight:28,pixelWidth:135,...toResponsiveImage(qzGOgDnol),...{positionX:\"left\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L0GH3.framer-g55au8, .framer-L0GH3 .framer-g55au8 { display: block; }\",\".framer-L0GH3.framer-918u9y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-L0GH3 .framer-11hauxi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L0GH3 .framer-j4sqwk { flex: none; height: 19px; position: relative; width: 116px; }\",\".framer-L0GH3 .framer-tbbsjd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 374px; word-break: break-word; word-wrap: break-word; }\",\".framer-L0GH3 .framer-ovkzfi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L0GH3 .framer-1eiw2xj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 56px; }\",\".framer-L0GH3 .framer-i7b236 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L0GH3 .framer-qqlkfg, .framer-L0GH3 .framer-1yjv2nw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-L0GH3 .framer-17uamxv { align-self: stretch; flex: none; height: 41px; overflow: hidden; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L0GH3.framer-918u9y, .framer-L0GH3 .framer-11hauxi, .framer-L0GH3 .framer-ovkzfi, .framer-L0GH3 .framer-i7b236 { gap: 0px; } .framer-L0GH3.framer-918u9y > *, .framer-L0GH3 .framer-i7b236 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-L0GH3.framer-918u9y > :first-child, .framer-L0GH3 .framer-11hauxi > :first-child, .framer-L0GH3 .framer-ovkzfi > :first-child, .framer-L0GH3 .framer-i7b236 > :first-child { margin-top: 0px; } .framer-L0GH3.framer-918u9y > :last-child, .framer-L0GH3 .framer-11hauxi > :last-child, .framer-L0GH3 .framer-ovkzfi > :last-child, .framer-L0GH3 .framer-i7b236 > :last-child { margin-bottom: 0px; } .framer-L0GH3 .framer-11hauxi > *, .framer-L0GH3 .framer-ovkzfi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-L0GH3.framer-v-1rsspg1.framer-918u9y { max-width: 300px; width: 300px; }\",\".framer-L0GH3.framer-v-1rsspg1 .framer-11hauxi { width: 100%; }\",\".framer-L0GH3.framer-v-1rsspg1 .framer-tbbsjd { max-width: 243px; width: 243px; }\",\".framer-L0GH3.framer-v-1rsspg1 .framer-1yjv2nw { white-space: pre-wrap; width: 212px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,'.framer-L0GH3[data-border=\"true\"]::after, .framer-L0GH3 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 349.5\n * @framerIntrinsicWidth 437.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"afi0oZ3Ix\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"300px\",null,null]}}}\n * @framerVariables {\"Pz6VscMjK\":\"person\",\"kZdEsLxaw\":\"name1\",\"Nrr9RBgq1\":\"tITle\",\"qzGOgDnol\":\"companyLogo\",\"IyXDzUuBm\":\"review\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernKsWdfKeg=withCSS(Component,css,\"framer-L0GH3\");export default FramernKsWdfKeg;FramernKsWdfKeg.displayName=\"Review\";FramernKsWdfKeg.defaultProps={height:349.5,width:437.5};addPropertyControls(FramernKsWdfKeg,{variant:{options:[\"CS5zIO5Nw\",\"afi0oZ3Ix\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},Pz6VscMjK:{__defaultAssetReference:\"data:framer/asset-reference,dkhHqTyBiCr1gFQUlEoT5iwjR68.png?originalFilename=Avatar+Image.png&preferredSize=auto\",title:\"Person\",type:ControlType.ResponsiveImage},kZdEsLxaw:{defaultValue:\"Name Surname\",displayTextArea:false,title:\"Name\",type:ControlType.String},Nrr9RBgq1:{defaultValue:\"Managing Director, Magnolia\",displayTextArea:false,title:\"TItle\",type:ControlType.String},qzGOgDnol:{title:\"Company Logo\",type:ControlType.ResponsiveImage},IyXDzUuBm:{defaultValue:\"\u201CGame changer. Being able to capture the each buying journey gives us a level of control we didn\u2019t know existed .\u201D\",displayTextArea:false,title:\"Review\",type:ControlType.String}});addFonts(FramernKsWdfKeg,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernKsWdfKeg\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"afi0oZ3Ix\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"300px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"437.5\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"349.5\",\"framerVariables\":\"{\\\"Pz6VscMjK\\\":\\\"person\\\",\\\"kZdEsLxaw\\\":\\\"name1\\\",\\\"Nrr9RBgq1\\\":\\\"tITle\\\",\\\"qzGOgDnol\\\":\\\"companyLogo\\\",\\\"IyXDzUuBm\\\":\\\"review\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nKsWdfKeg.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import AIKitBadgeSmall from\"https://framerusercontent.com/modules/K1Clh1Rne4op0AkzfU1z/Wzw55I3l92am5u7PTQfG/tfc9M2Qbh.js\";const PhosphorFonts=getFonts(Phosphor);const AIKitBadgeSmallFonts=getFonts(AIKitBadgeSmall);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={imRoR72wV:{hover:true}};const cycleOrder=[\"imRoR72wV\",\"lkvfcfHn2\"];const serializationHash=\"framer-gIa0d\";const variantClassNames={imRoR72wV:\"framer-v-q0ijw\",lkvfcfHn2:\"framer-v-4uap6d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Center:\"lkvfcfHn2\",Left:\"imRoR72wV\"};const getProps=({badge,badge1,badge2,description,description1,height,icon,icon1,iconColor,id,padding,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_humanReadableVariantMap_props_variant,_ref10;return{...props,aZts8hcy1:(_ref=badge2!==null&&badge2!==void 0?badge2:props.aZts8hcy1)!==null&&_ref!==void 0?_ref:\"NEW\",eoEAnehP1:(_ref1=icon!==null&&icon!==void 0?icon:props.eoEAnehP1)!==null&&_ref1!==void 0?_ref1:true,kxDdHTi1D:(_ref2=padding!==null&&padding!==void 0?padding:props.kxDdHTi1D)!==null&&_ref2!==void 0?_ref2:\"20px\",MFt5Zs_AB:(_ref3=description!==null&&description!==void 0?description:props.MFt5Zs_AB)!==null&&_ref3!==void 0?_ref3:true,OPJUBTb18:(_ref4=icon1!==null&&icon1!==void 0?icon1:props.OPJUBTb18)!==null&&_ref4!==void 0?_ref4:\"House\",qCV3eUx76:(_ref5=iconColor!==null&&iconColor!==void 0?iconColor:props.qCV3eUx76)!==null&&_ref5!==void 0?_ref5:\"rgb(255, 255, 255)\",SeJGf8Cjm:(_ref6=description1!==null&&description1!==void 0?description1:props.SeJGf8Cjm)!==null&&_ref6!==void 0?_ref6:\"View, manage, and deploy your applications directly from the canvas.\",u6K4JqA__:(_ref7=title!==null&&title!==void 0?title:props.u6K4JqA__)!==null&&_ref7!==void 0?_ref7:\"Deploy\",ui_AXJ1vG:(_ref8=badge1!==null&&badge1!==void 0?badge1:props.ui_AXJ1vG)!==null&&_ref8!==void 0?_ref8:\"var(--token-6ee39359-b4dc-42f1-93d9-495015475b07, rgb(140, 69, 255))\",UrJk386ze:(_ref9=badge!==null&&badge!==void 0?badge:props.UrJk386ze)!==null&&_ref9!==void 0?_ref9:true,variant:(_ref10=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref10!==void 0?_ref10:\"imRoR72wV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eoEAnehP1,qCV3eUx76,OPJUBTb18,u6K4JqA__,MFt5Zs_AB,SeJGf8Cjm,UrJk386ze,ui_AXJ1vG,aZts8hcy1,kxDdHTi1D,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"imRoR72wV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-q0ijw\",className,classNames),\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"imRoR72wV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--13znd2c\":numberToPixelString(kxDdHTi1D),...style},...addPropertyOverrides({\"imRoR72wV-hover\":{\"data-framer-name\":undefined},lkvfcfHn2:{\"data-framer-name\":\"Center\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6jgyq2\",layoutDependency:layoutDependency,layoutId:\"L7IoFl7We\",children:[eoEAnehP1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ov6u58-container\",layoutDependency:layoutDependency,layoutId:\"bHWEuRnt8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:qCV3eUx76,height:\"100%\",iconSearch:\"House\",iconSelection:OPJUBTb18,id:\"bHWEuRnt8\",layoutId:\"bHWEuRnt8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({\"imRoR72wV-hover\":{color:\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36)))\"},children:\"Deploy\"})}),className:\"framer-1a8v51r\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Y7cwjVbwl\",style:{\"--extracted-1lwpl3i\":\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:u6K4JqA__,verticalAlignment:\"top\",withExternalLayout:true}),UrJk386ze&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rjyvwg-container\",layoutDependency:layoutDependency,layoutId:\"P6AD_vLEI-container\",children:/*#__PURE__*/_jsx(AIKitBadgeSmall,{height:\"100%\",id:\"P6AD_vLEI\",KRE46DdiB:aZts8hcy1,layoutId:\"P6AD_vLEI\",mE04gl1oz:ui_AXJ1vG,qtG3Zqs8c:\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\",width:\"100%\"})})})]}),MFt5Zs_AB&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36)))\"},children:\"View, manage, and deploy your applications directly from the canvas.\"})}),className:\"framer-1m0xa0z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uasSaTeIq\",style:{\"--extracted-r6o4lv\":\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:SeJGf8Cjm,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lkvfcfHn2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36)))\"},children:\"View, manage, and deploy your applications directly from the canvas.\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gIa0d.framer-1a9q97q, .framer-gIa0d .framer-1a9q97q { display: block; }\",\".framer-gIa0d.framer-q0ijw { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: var(--13znd2c); position: relative; width: 295px; }\",\".framer-gIa0d .framer-6jgyq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gIa0d .framer-1ov6u58-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-gIa0d .framer-1a8v51r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gIa0d .framer-1rjyvwg-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-gIa0d .framer-1m0xa0z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gIa0d.framer-q0ijw, .framer-gIa0d .framer-6jgyq2 { gap: 0px; } .framer-gIa0d.framer-q0ijw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gIa0d.framer-q0ijw > :first-child { margin-top: 0px; } .framer-gIa0d.framer-q0ijw > :last-child { margin-bottom: 0px; } .framer-gIa0d .framer-6jgyq2 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-gIa0d .framer-6jgyq2 > :first-child { margin-left: 0px; } .framer-gIa0d .framer-6jgyq2 > :last-child { margin-right: 0px; } }\",\".framer-gIa0d.framer-v-4uap6d.framer-q0ijw { align-content: center; align-items: center; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 143\n * @framerIntrinsicWidth 294.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lkvfcfHn2\":{\"layout\":[\"fixed\",\"auto\"]},\"bJffbS_bM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eoEAnehP1\":\"icon\",\"qCV3eUx76\":\"iconColor\",\"OPJUBTb18\":\"icon1\",\"u6K4JqA__\":\"title\",\"MFt5Zs_AB\":\"description\",\"SeJGf8Cjm\":\"description1\",\"UrJk386ze\":\"badge\",\"ui_AXJ1vG\":\"badge1\",\"aZts8hcy1\":\"badge2\",\"kxDdHTi1D\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQL1G4s3q6=withCSS(Component,css,\"framer-gIa0d\");export default FramerQL1G4s3q6;FramerQL1G4s3q6.displayName=\"AI Kit/Feature Small\";FramerQL1G4s3q6.defaultProps={height:143,width:294.5};addPropertyControls(FramerQL1G4s3q6,{variant:{options:[\"imRoR72wV\",\"lkvfcfHn2\"],optionTitles:[\"Left\",\"Center\"],title:\"Variant\",type:ControlType.Enum},eoEAnehP1:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},qCV3eUx76:{defaultValue:\"rgb(255, 255, 255)\",title:\"Icon color\",type:ControlType.Color},OPJUBTb18:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},u6K4JqA__:{defaultValue:\"Deploy\",displayTextArea:false,title:\"Title\",type:ControlType.String},MFt5Zs_AB:{defaultValue:true,title:\"Description\",type:ControlType.Boolean},SeJGf8Cjm:{defaultValue:\"View, manage, and deploy your applications directly from the canvas.\",displayTextArea:true,title:\"Description\",type:ControlType.String},UrJk386ze:{defaultValue:true,title:\"Badge\",type:ControlType.Boolean},ui_AXJ1vG:{defaultValue:'var(--token-6ee39359-b4dc-42f1-93d9-495015475b07, rgb(140, 69, 255)) /* {\"name\":\"Purple\"} */',title:\"Badge\",type:ControlType.Color},aZts8hcy1:{defaultValue:\"NEW\",displayTextArea:false,title:\"Badge\",type:ControlType.String},kxDdHTi1D:{defaultValue:\"20px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerQL1G4s3q6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...AIKitBadgeSmallFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQL1G4s3q6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"294.5\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"143\",\"framerVariables\":\"{\\\"eoEAnehP1\\\":\\\"icon\\\",\\\"qCV3eUx76\\\":\\\"iconColor\\\",\\\"OPJUBTb18\\\":\\\"icon1\\\",\\\"u6K4JqA__\\\":\\\"title\\\",\\\"MFt5Zs_AB\\\":\\\"description\\\",\\\"SeJGf8Cjm\\\":\\\"description1\\\",\\\"UrJk386ze\\\":\\\"badge\\\",\\\"ui_AXJ1vG\\\":\\\"badge1\\\",\\\"aZts8hcy1\\\":\\\"badge2\\\",\\\"kxDdHTi1D\\\":\\\"padding\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lkvfcfHn2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bJffbS_bM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QL1G4s3q6.map", "// Generated by Framer (2b47498)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"r2kDHagwr\",\"pP65L4VS5\",\"aJF566VmS\",\"Zi7E1dPx0\"];const serializationHash=\"framer-A6TKp\";const variantClassNames={aJF566VmS:\"framer-v-1nxcjeu\",pP65L4VS5:\"framer-v-hj8g90\",r2kDHagwr:\"framer-v-128t92e\",Zi7E1dPx0:\"framer-v-zkbu4d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const transition2={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"r2kDHagwr\",\"Variant 2\":\"pP65L4VS5\",\"Variant 3\":\"aJF566VmS\",\"Variant 4\":\"Zi7E1dPx0\"};const getProps=({height,id,textColor,textSize,title1,title2,title3,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5;return{...props,alrWq3yGr:(_ref=title3!==null&&title3!==void 0?title3:props.alrWq3yGr)!==null&&_ref!==void 0?_ref:\"beauty.\",c_FQD8pO8:(_ref1=textColor!==null&&textColor!==void 0?textColor:props.c_FQD8pO8)!==null&&_ref1!==void 0?_ref1:\"rgb(255, 255, 255)\",dNmvBpuNV:(_ref2=textSize!==null&&textSize!==void 0?textSize:props.dNmvBpuNV)!==null&&_ref2!==void 0?_ref2:60,prRJoYo14:(_ref3=title1!==null&&title1!==void 0?title1:props.prRJoYo14)!==null&&_ref3!==void 0?_ref3:\"no-code tool.\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"r2kDHagwr\",zLT7JXi3G:(_ref5=title2!==null&&title2!==void 0?title2:props.zLT7JXi3G)!==null&&_ref5!==void 0?_ref5:\"website builder.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,prRJoYo14,zLT7JXi3G,alrWq3yGr,c_FQD8pO8,dNmvBpuNV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r2kDHagwr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearld3g9m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pP65L4VS5\"),500);});const onAppear5ph67k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"aJF566VmS\"),1e3);});const onAppearfm8amb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Zi7E1dPx0\"),1e3);});const onAppear151hv3p=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"r2kDHagwr\"),500);});useOnVariantChange(baseVariant,{aJF566VmS:onAppearfm8amb,default:onAppearld3g9m,pP65L4VS5:onAppear5ph67k,Zi7E1dPx0:onAppear151hv3p});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({aJF566VmS:{value:transition2},pP65L4VS5:{value:transition2},Zi7E1dPx0:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-128t92e\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"r2kDHagwr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aJF566VmS:{\"data-framer-name\":\"Variant 3\"},pP65L4VS5:{\"data-framer-name\":\"Variant 2\"},Zi7E1dPx0:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-dNmvBpuNV-vWDaWbop8) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-vWDaWbop8))\"},children:\"no-code tool.\"})}),className:\"framer-e3n0fd\",\"data-framer-name\":\"Text-1\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"Sglnc4qAu\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-vWDaWbop8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-vWDaWbop8\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-vWDaWbop8\":dNmvBpuNV,opacity:1},text:prRJoYo14,variants:{aJF566VmS:{opacity:0},pP65L4VS5:{opacity:0}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({aJF566VmS:{transformTemplate:transformTemplate1},pP65L4VS5:{transformTemplate:transformTemplate1},Zi7E1dPx0:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-dNmvBpuNV-vWDaWbop8) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-vWDaWbop8))\"},children:\"website builder.\"})}),className:\"framer-k7xfss\",\"data-framer-name\":\"Text-2\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"sLj6gGyvD\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-vWDaWbop8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-vWDaWbop8\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-vWDaWbop8\":dNmvBpuNV,opacity:0},text:zLT7JXi3G,transformTemplate:transformTemplate1,variants:{pP65L4VS5:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({pP65L4VS5:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-dNmvBpuNV-vWDaWbop8) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-vWDaWbop8))\"},children:\"beauty.\"})}),className:\"framer-jyasqa\",\"data-framer-name\":\"Text-3\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"scPMsfCpn\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-vWDaWbop8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-vWDaWbop8\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-vWDaWbop8\":dNmvBpuNV,opacity:0},text:alrWq3yGr,transformTemplate:transformTemplate1,variants:{aJF566VmS:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({aJF566VmS:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-dNmvBpuNV-vWDaWbop8) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-c_FQD8pO8-vWDaWbop8))\"},children:\"no-code tool.\"})}),className:\"framer-1yllp4h\",\"data-framer-name\":\"Text-1 (2nd)\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"phIQuuQGP\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-c_FQD8pO8-vWDaWbop8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-c_FQD8pO8-vWDaWbop8\":c_FQD8pO8,\"--variable-reference-dNmvBpuNV-vWDaWbop8\":dNmvBpuNV,opacity:0},text:prRJoYo14,transformTemplate:transformTemplate1,variants:{Zi7E1dPx0:{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Zi7E1dPx0:{transformTemplate:undefined}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A6TKp.framer-1yj5v4q, .framer-A6TKp .framer-1yj5v4q { display: block; }\",\".framer-A6TKp.framer-128t92e { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-A6TKp .framer-e3n0fd { flex: none; height: auto; overflow: visible; pointer-events: none; position: relative; white-space: pre; width: auto; }\",\".framer-A6TKp .framer-k7xfss { bottom: -84px; flex: none; height: auto; left: 50%; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-A6TKp .framer-jyasqa { bottom: -168px; flex: none; height: auto; left: 50%; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\".framer-A6TKp .framer-1yllp4h { bottom: -252px; flex: none; height: auto; left: 50%; overflow: visible; pointer-events: none; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A6TKp.framer-128t92e { gap: 0px; } .framer-A6TKp.framer-128t92e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-A6TKp.framer-128t92e > :first-child { margin-top: 0px; } .framer-A6TKp.framer-128t92e > :last-child { margin-bottom: 0px; } }\",\".framer-A6TKp.framer-v-hj8g90.framer-128t92e, .framer-A6TKp.framer-v-1nxcjeu.framer-128t92e, .framer-A6TKp.framer-v-zkbu4d.framer-128t92e { flex-direction: row; }\",\".framer-A6TKp.framer-v-hj8g90 .framer-e3n0fd { left: 50%; position: absolute; top: -84px; z-index: 1; }\",\".framer-A6TKp.framer-v-hj8g90 .framer-k7xfss, .framer-A6TKp.framer-v-1nxcjeu .framer-jyasqa, .framer-A6TKp.framer-v-zkbu4d .framer-1yllp4h { bottom: unset; left: unset; position: relative; }\",\".framer-A6TKp.framer-v-hj8g90 .framer-jyasqa { bottom: -84px; left: 50%; }\",\".framer-A6TKp.framer-v-hj8g90 .framer-1yllp4h { bottom: -168px; left: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A6TKp.framer-v-hj8g90.framer-128t92e { gap: 0px; } .framer-A6TKp.framer-v-hj8g90.framer-128t92e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-A6TKp.framer-v-hj8g90.framer-128t92e > :first-child { margin-left: 0px; } .framer-A6TKp.framer-v-hj8g90.framer-128t92e > :last-child { margin-right: 0px; } }\",\".framer-A6TKp.framer-v-1nxcjeu .framer-e3n0fd { left: 50%; position: absolute; top: -168px; z-index: 1; }\",\".framer-A6TKp.framer-v-1nxcjeu .framer-k7xfss { bottom: 84px; left: 48%; }\",\".framer-A6TKp.framer-v-1nxcjeu .framer-1yllp4h { bottom: -84px; left: 48%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A6TKp.framer-v-1nxcjeu.framer-128t92e { gap: 0px; } .framer-A6TKp.framer-v-1nxcjeu.framer-128t92e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-A6TKp.framer-v-1nxcjeu.framer-128t92e > :first-child { margin-left: 0px; } .framer-A6TKp.framer-v-1nxcjeu.framer-128t92e > :last-child { margin-right: 0px; } }\",\".framer-A6TKp.framer-v-zkbu4d .framer-e3n0fd { left: 50%; position: absolute; top: -252px; z-index: 1; }\",\".framer-A6TKp.framer-v-zkbu4d .framer-k7xfss { bottom: 168px; left: 50%; }\",\".framer-A6TKp.framer-v-zkbu4d .framer-jyasqa { bottom: 84px; left: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A6TKp.framer-v-zkbu4d.framer-128t92e { gap: 0px; } .framer-A6TKp.framer-v-zkbu4d.framer-128t92e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-A6TKp.framer-v-zkbu4d.framer-128t92e > :first-child { margin-left: 0px; } .framer-A6TKp.framer-v-zkbu4d.framer-128t92e > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 375\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pP65L4VS5\":{\"layout\":[\"auto\",\"auto\"]},\"aJF566VmS\":{\"layout\":[\"auto\",\"auto\"]},\"Zi7E1dPx0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"prRJoYo14\":\"title1\",\"zLT7JXi3G\":\"title2\",\"alrWq3yGr\":\"title3\",\"c_FQD8pO8\":\"textColor\",\"dNmvBpuNV\":\"textSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervWDaWbop8=withCSS(Component,css,\"framer-A6TKp\");export default FramervWDaWbop8;FramervWDaWbop8.displayName=\"Words Center\";FramervWDaWbop8.defaultProps={height:84,width:375};addPropertyControls(FramervWDaWbop8,{variant:{options:[\"r2kDHagwr\",\"pP65L4VS5\",\"aJF566VmS\",\"Zi7E1dPx0\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},prRJoYo14:{defaultValue:\"no-code tool.\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},zLT7JXi3G:{defaultValue:\"website builder.\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},alrWq3yGr:{defaultValue:\"beauty.\",displayTextArea:false,title:\"Title 3\",type:ControlType.String},c_FQD8pO8:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text Color\",type:ControlType.Color},dNmvBpuNV:{defaultValue:60,title:\"Text Size\",type:ControlType.Number}});addFonts(FramervWDaWbop8,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervWDaWbop8\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pP65L4VS5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aJF566VmS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Zi7E1dPx0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"prRJoYo14\\\":\\\"title1\\\",\\\"zLT7JXi3G\\\":\\\"title2\\\",\\\"alrWq3yGr\\\":\\\"title3\\\",\\\"c_FQD8pO8\\\":\\\"textColor\\\",\\\"dNmvBpuNV\\\":\\\"textSize\\\"}\",\"framerIntrinsicHeight\":\"84\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"375\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vWDaWbop8.map", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import Pricing from\"#framer/local/canvasComponent/EoGzSnwGp/EoGzSnwGp.js\";import Footer from\"#framer/local/canvasComponent/kaEp7u2I7/kaEp7u2I7.js\";import Review from\"#framer/local/canvasComponent/nKsWdfKeg/nKsWdfKeg.js\";import AIKitFeatureSmall from\"#framer/local/canvasComponent/QL1G4s3q6/QL1G4s3q6.js\";import Nav from\"#framer/local/canvasComponent/u2X49Z4ue/u2X49Z4ue.js\";import MainButton from\"#framer/local/canvasComponent/vuzf6ndaV/vuzf6ndaV.js\";import WordsCenter from\"#framer/local/canvasComponent/vWDaWbop8/vWDaWbop8.js\";import*as sharedStyle4 from\"#framer/local/css/DrbnFMA_e/DrbnFMA_e.js\";import*as sharedStyle2 from\"#framer/local/css/DRSDfevD_/DRSDfevD_.js\";import*as sharedStyle3 from\"#framer/local/css/i4Uksihhb/i4Uksihhb.js\";import*as sharedStyle from\"#framer/local/css/lZPkUep__/lZPkUep__.js\";import*as sharedStyle1 from\"#framer/local/css/Tip7zHemh/Tip7zHemh.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavFonts=getFonts(Nav);const MainButtonFonts=getFonts(MainButton);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const WordsCenterFonts=getFonts(WordsCenter);const ReviewFonts=getFonts(Review);const VideoFonts=getFonts(Video);const AIKitFeatureSmallFonts=getFonts(AIKitFeatureSmall);const PricingFonts=getFonts(Pricing);const FooterFonts=getFonts(Footer);const breakpoints={aqZjLFOZ1:\"(max-width: 809px)\",moeb6Ga9O:\"(min-width: 1200px) and (max-width: 1439px)\",tss6pNfaI:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-K1Wei\";const variantClassNames={aqZjLFOZ1:\"framer-v-13ktri3\",moeb6Ga9O:\"framer-v-5royfx\",tss6pNfaI:\"framer-v-1m9zm0s\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const transition2={bounce:.2,delay:.4,duration:1.1,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"moeb6Ga9O\",Phone:\"aqZjLFOZ1\",Tablet:\"tss6pNfaI\",Wide:\"WQLkyLRf1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"aqZjLFOZ1\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"aqZjLFOZ1\")return true;return false;};const elementId=useRouteElementId(\"zISvybPEk\");const ref1=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"tss6pNfaI\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"tss6pNfaI\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,y:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19a1ldw-container hidden-13ktri3\",layoutScroll:true,nodeId:\"Gt9DGro3R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"Gt9DGro3R\",layoutId:\"Gt9DGro3R\",style:{height:\"100%\"},variant:\"oOAkFS_al\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17p1t5g\",\"data-framer-name\":\"Max Width\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2nh6bf\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u6ek4d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-otdr4k\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nmp5o\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lixcdn\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:\"Control, Accelerate, Predict & Win\"})}),fonts:[\"CUSTOM;Gotham Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1n3zxjy\",\"data-styles-preset\":\"lZPkUep__\",style:{\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:\"Control, Accelerate, Predict & Win\"})}),className:\"framer-128x6gu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1o3qtpr\",\"data-styles-preset\":\"Tip7zHemh\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\"},children:\"Non-Linear Sales Cycles\"})}),className:\"framer-1lmdl06\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wmcbou\",\"data-framer-name\":\"Frame 12\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+-36.5+0+0+0+235+0),pixelHeight:172,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nRXLp1GWWbDBGlBeHMXO81QIFF8.png\"}},moeb6Ga9O:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+-51+0+0+0+235+0),pixelHeight:172,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nRXLp1GWWbDBGlBeHMXO81QIFF8.png\"}},tss6pNfaI:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+-54+0+0+0+235+0),pixelHeight:172,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nRXLp1GWWbDBGlBeHMXO81QIFF8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+0+0+0+0+235+0),pixelHeight:172,pixelWidth:189,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nRXLp1GWWbDBGlBeHMXO81QIFF8.png\"},className:\"framer-188sz76\",\"data-framer-name\":\"Group 62\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-myne0r\",\"data-framer-name\":\"Frame 11\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R290aGFtIE1lZGl1bS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Gotham Medium\", \"Gotham Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(35, 35, 36)\"},children:\"\u201CReal Value for CEOs\u201D\"})}),className:\"framer-8pupsf\",\"data-framer-name\":\"\u201CReal Value for CEOs\u201D\",fonts:[\"GF;Gotham Medium-500italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pfy1ie\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sw70aq\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kn4e95\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 2.1726C8.1276 1.64614 8.8724 1.64614 9.04346 2.1726L10.1678 5.63302C10.2443 5.86846 10.4637 6.02786 10.7113 6.02786H14.3498C14.9033 6.02786 15.1335 6.73622 14.6857 7.06159L11.742 9.20024C11.5418 9.34575 11.458 9.60368 11.5345 9.83912L12.6588 13.2995C12.8299 13.826 12.2273 14.2638 11.7795 13.9384L8.83588 11.7998C8.6356 11.6542 8.3644 11.6542 8.16412 11.7998L5.22052 13.9384C4.77268 14.2638 4.17012 13.826 4.34118 13.2995L5.46554 9.83912C5.54204 9.60368 5.45823 9.34575 5.25795 9.20024L2.31435 7.06159C1.86651 6.73621 2.09667 6.02786 2.65022 6.02786H6.28872C6.53628 6.02786 6.75568 5.86846 6.83218 5.63302L7.95654 2.1726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xqtgqy\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18prqz2\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 2.1726C8.1276 1.64614 8.8724 1.64614 9.04346 2.1726L10.1678 5.63302C10.2443 5.86846 10.4637 6.02786 10.7113 6.02786H14.3498C14.9033 6.02786 15.1335 6.73622 14.6857 7.06159L11.742 9.20024C11.5418 9.34575 11.458 9.60368 11.5345 9.83912L12.6588 13.2995C12.8299 13.826 12.2273 14.2638 11.7795 13.9384L8.83588 11.7998C8.6356 11.6542 8.3644 11.6542 8.16412 11.7998L5.22052 13.9384C4.77268 14.2638 4.17012 13.826 4.34118 13.2995L5.46554 9.83912C5.54204 9.60368 5.45823 9.34575 5.25795 9.20024L2.31435 7.06159C1.86651 6.73621 2.09667 6.02786 2.65022 6.02786H6.28872C6.53628 6.02786 6.75568 5.86846 6.83218 5.63302L7.95654 2.1726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nvn0t8\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vjkk7r\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 2.1726C8.1276 1.64614 8.8724 1.64614 9.04346 2.1726L10.1678 5.63302C10.2443 5.86846 10.4637 6.02786 10.7113 6.02786H14.3498C14.9033 6.02786 15.1335 6.73622 14.6857 7.06159L11.742 9.20024C11.5418 9.34575 11.458 9.60368 11.5345 9.83912L12.6588 13.2995C12.8299 13.826 12.2273 14.2638 11.7795 13.9384L8.83588 11.7998C8.6356 11.6542 8.3644 11.6542 8.16412 11.7998L5.22052 13.9384C4.77268 14.2638 4.17012 13.826 4.34118 13.2995L5.46554 9.83912C5.54204 9.60368 5.45823 9.34575 5.25795 9.20024L2.31435 7.06159C1.86651 6.73621 2.09667 6.02786 2.65022 6.02786H6.28872C6.53628 6.02786 6.75568 5.86846 6.83218 5.63302L7.95654 2.1726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-thx7yi\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zknxgm\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 2.1726C8.1276 1.64614 8.8724 1.64614 9.04346 2.1726L10.1678 5.63302C10.2443 5.86846 10.4637 6.02786 10.7113 6.02786H14.3498C14.9033 6.02786 15.1335 6.73622 14.6857 7.06159L11.742 9.20024C11.5418 9.34575 11.458 9.60368 11.5345 9.83912L12.6588 13.2995C12.8299 13.826 12.2273 14.2638 11.7795 13.9384L8.83588 11.7998C8.6356 11.6542 8.3644 11.6542 8.16412 11.7998L5.22052 13.9384C4.77268 14.2638 4.17012 13.826 4.34118 13.2995L5.46554 9.83912C5.54204 9.60368 5.45823 9.34575 5.25795 9.20024L2.31435 7.06159C1.86651 6.73621 2.09667 6.02786 2.65022 6.02786H6.28872C6.53628 6.02786 6.75568 5.86846 6.83218 5.63302L7.95654 2.1726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fkh3cm\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ig1l2e\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 2.1726C8.1276 1.64614 8.8724 1.64614 9.04346 2.1726L10.1678 5.63302C10.2443 5.86846 10.4637 6.02786 10.7113 6.02786H14.3498C14.9033 6.02786 15.1335 6.73622 14.6857 7.06159L11.742 9.20024C11.5418 9.34575 11.458 9.60368 11.5345 9.83912L12.6588 13.2995C12.8299 13.826 12.2273 14.2638 11.7795 13.9384L8.83588 11.7998C8.6356 11.6542 8.3644 11.6542 8.16412 11.7998L5.22052 13.9384C4.77268 14.2638 4.17012 13.826 4.34118 13.2995L5.46554 9.83912C5.54204 9.60368 5.45823 9.34575 5.25795 9.20024L2.31435 7.06159C1.86651 6.73621 2.09667 6.02786 2.65022 6.02786H6.28872C6.53628 6.02786 6.75568 5.86846 6.83218 5.63302L7.95654 2.1726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{y:(componentViewport?.y||0)+0+0+0+0+128+-36.5+0+0+0+342},moeb6Ga9O:{y:(componentViewport?.y||0)+0+0+0+0+128+-51+0+0+0+310},tss6pNfaI:{y:(componentViewport?.y||0)+0+0+0+0+128+-54+0+0+0+310}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+0+0+0+128+0+0+0+0+310,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1scqz05-container\",nodeId:\"AyRADa0m1\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation,children:/*#__PURE__*/_jsx(MainButton,{g8ifUoiv9:\"rgb(255, 255, 255)\",height:\"100%\",ho7vU6fog:true,HOMiPFDVa:\"https://meetings-eu1.hubspot.com/mick-gosset\",id:\"AyRADa0m1\",layoutId:\"AyRADa0m1\",UICFdbQZR:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",w29DXYQaD:\"rgb(35, 35, 36)\",width:\"100%\",XLsB2Shof:\"Book A Demo\"})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-afvc8v\",\"data-border\":true,\"data-framer-appear-id\":\"afvc8v\",\"data-framer-name\":\"Asset\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+390.5+10+0),pixelHeight:836,pixelWidth:1431,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 2000px) - 64px, 1300px) - 20px)`,src:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1 1431w\"}},moeb6Ga9O:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+376+10+0),pixelHeight:836,pixelWidth:1431,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 2000px) - 64px, 1300px) - 20px)`,src:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1 1431w\"}},tss6pNfaI:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+373+10+0),pixelHeight:836,pixelWidth:1431,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 2000px) - 64px, 1300px) - 20px)`,src:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1 1431w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fit\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+128+427+10+0),pixelHeight:836,pixelWidth:1431,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 2000px) - 64px, 1300px) - 20px)`,src:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/b0Yj0GbQNoQHJHXAof0KcLzQ4Q.png?lossless=1 1431w\"},className:\"framer-17emal8\",\"data-border\":true,\"data-framer-appear-id\":\"17emal8\",\"data-framer-name\":\"App_2x\",initial:animation4,optimized:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6rrgkj\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ei41tn\",\"data-framer-name\":\"Ticker + Differ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12y8jq3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CkikfaNBU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"CkikfaNBU\",layoutId:\"CkikfaNBU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:168,pixelWidth:5797,positionX:\"center\",positionY:\"center\",sizes:\"1794px\",src:\"https://framerusercontent.com/images/afMxWntVzXBEUdI8pox9f9eFw.png\",srcSet:\"https://framerusercontent.com/images/afMxWntVzXBEUdI8pox9f9eFw.png?scale-down-to=512 512w,https://framerusercontent.com/images/afMxWntVzXBEUdI8pox9f9eFw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/afMxWntVzXBEUdI8pox9f9eFw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/afMxWntVzXBEUdI8pox9f9eFw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/afMxWntVzXBEUdI8pox9f9eFw.png 5797w\"},className:\"framer-7hf2jk\",\"data-framer-name\":\"Content\"})],speed:80,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12840ax\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16swk0t\",\"data-framer-name\":\"Section Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sez1ys\",\"data-styles-preset\":\"DRSDfevD_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:\"You\u2019re in the right place if...\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sez1ys\",\"data-styles-preset\":\"DRSDfevD_\",style:{\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:\"You\u2019re in the right place if...\"})}),className:\"framer-gb9et5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kxfnmv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lazg7e\",\"data-border\":true,\"data-framer-name\":\"Bento1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wdn978\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"left\"},children:\"You\u2019re trying to improve these metrics\u2026\"})})},moeb6Ga9O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"left\"},children:\" You\u2019re trying to improve these metrics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",children:\"You\u2019re trying to improve these metrics\"})}),className:\"framer-9j3ik5\",\"data-framer-name\":\"You\u2019re trying to improve these metrics\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8dimaf\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{y:(componentViewport?.y||0)+0+702+32+189+0+71.2+64+0+32+81.6+0+16.5},moeb6Ga9O:{y:(componentViewport?.y||0)+0+1053+32+189+0+71.2+64+0+32+97.6+0+16.5},tss6pNfaI:{y:(componentViewport?.y||0)+0+868+32+189+0+71.2+64+0+32+125.6+0+16.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:(componentViewport?.y||0)+0+1155+32+189+0+71.2+64+0+32+97.6+0+16.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13775h4-container\",nodeId:\"QmWrP_Mlk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{dNmvBpuNV:27},moeb6Ga9O:{dNmvBpuNV:46}},children:/*#__PURE__*/_jsx(WordsCenter,{alrWq3yGr:\"Forecasting Accuracy\",c_FQD8pO8:\"rgb(255, 255, 255)\",dNmvBpuNV:56,height:\"100%\",id:\"QmWrP_Mlk\",layoutId:\"QmWrP_Mlk\",prRJoYo14:\"Conversion Rate\",variant:\"r2kDHagwr\",width:\"100%\",zLT7JXi3G:\"Deal Velocity\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-89fp21\",\"data-border\":true,\"data-framer-name\":\"Bento2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ozukrh\",\"data-framer-name\":\"TExt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"left\"},children:\"You struggle with\u2026\"})})},moeb6Ga9O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",children:\" You struggle with\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",children:\"You struggle with\"})}),className:\"framer-1h3jhev\",\"data-framer-name\":\"You struggle with\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qfnd98\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1597l37\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Predictability\"})})},tss6pNfaI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Predictability\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Predictability\"})}),className:\"framer-qdd66i\",fonts:[\"CUSTOM;Gotham Book\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-51g4df\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Deal Slippage\"})})},tss6pNfaI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Deal Slippage\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Deal Slippage\"})}),className:\"framer-1bvqxp1\",fonts:[\"CUSTOM;Gotham Book\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-abp8vn\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Growth\"})})},tss6pNfaI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Growth\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Growth\"})}),className:\"framer-16yvjob\",fonts:[\"CUSTOM;Gotham Book\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n86pvh\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Momentum\"})})},tss6pNfaI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Momentum\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Momentum\"})}),className:\"framer-1n61wow\",fonts:[\"CUSTOM;Gotham Book\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11f5fhs\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Forecasting\"})})},tss6pNfaI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Forecasting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Forecasting\"})}),className:\"framer-1d9tdve\",fonts:[\"CUSTOM;Gotham Book\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hsk3y\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Long Sales Cycles\"})})},tss6pNfaI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Long Sales Cycles\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb29r\",\"--framer-font-family\":'\"Gotham Book\", \"Gotham Book Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Long Sales Cycles\"})}),className:\"framer-qz0rs5\",fonts:[\"CUSTOM;Gotham Book\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2555qx\",\"data-border\":true,\"data-framer-name\":\"Bento3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w9qfld\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"left\"},children:\"You look like this\u2026\"})})},moeb6Ga9O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",children:\" You look like this\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",children:\"You look like this\"})}),className:\"framer-1m7gdwy\",\"data-framer-name\":\"You look like this\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+32+189+0+71.2+64+644+32+97.6),pixelHeight:483,pixelWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nsvhLeraCLJHIOeQa1G62QJpRIA.png\"}},moeb6Ga9O:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1053+32+189+0+71.2+64+416+32+97.6),pixelHeight:483,pixelWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nsvhLeraCLJHIOeQa1G62QJpRIA.png\"}},tss6pNfaI:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+868+32+189+0+71.2+64+864+32+97.6),pixelHeight:483,pixelWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nsvhLeraCLJHIOeQa1G62QJpRIA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1155+32+189+0+71.2+64+432+32+97.6),pixelHeight:483,pixelWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nsvhLeraCLJHIOeQa1G62QJpRIA.png\"},className:\"framer-fuxoas\",\"data-framer-name\":\"Wrapper\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-84jqe9\",\"data-border\":true,\"data-framer-name\":\"Bento4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-drhfbd\",\"data-framer-name\":\"Frame 80\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"left\"},children:\"You\u2019re running initiatives like\u2026\"})})},moeb6Ga9O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",children:\" You\u2019re running initiatives like\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",children:\"You\u2019re running initiatives like\"})}),className:\"framer-1lnixl\",\"data-framer-name\":\"You\u2019re running initiatives like\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+32+189+0+71.2+64+966+32+97.6),pixelHeight:932,pixelWidth:2080,sizes:\"307px\",src:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png\",srcSet:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png 2080w\"}},moeb6Ga9O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1053+32+189+0+71.2+64+416+32+97.6),pixelHeight:932,pixelWidth:2080,sizes:\"460px\",src:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png\",srcSet:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png 2080w\"}},tss6pNfaI:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+868+32+189+0+71.2+64+1296+32+97.6),pixelHeight:932,pixelWidth:2080,sizes:\"520px\",src:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png\",srcSet:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png 2080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1155+32+189+0+71.2+64+432+32+97.6),pixelHeight:932,pixelWidth:2080,sizes:\"520px\",src:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png\",srcSet:\"https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0D10vnmSoklyeQM1CL8WbzRI.png 2080w\"},className:\"framer-zkj5t2\",\"data-framer-name\":\"Wrapper\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t314ag\",\"data-framer-name\":\"Frame 78\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{y:(componentViewport?.y||0)+0+702+32+1723.2+0+0},moeb6Ga9O:{y:(componentViewport?.y||0)+0+1053+32+1268.2+0+0},tss6pNfaI:{y:(componentViewport?.y||0)+0+868+32+2148.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+0+1155+32+1284.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldbfwu-container\",nodeId:\"izRXXRXFG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MainButton,{g8ifUoiv9:\"rgb(255, 255, 255)\",height:\"100%\",ho7vU6fog:true,HOMiPFDVa:\"https://meetings-eu1.hubspot.com/mick-gosset\",id:\"izRXXRXFG\",layoutId:\"izRXXRXFG\",UICFdbQZR:\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\",w29DXYQaD:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",width:\"100%\",XLsB2Shof:\"Book A Demo\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-181geth\",\"data-framer-name\":\"Frame 12\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+702+32+1723.2+0+69+0),pixelHeight:160,pixelWidth:161,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0K2cu43Hy1lREyuxnup6CXFuP8.png\"}},moeb6Ga9O:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1053+32+1268.2+0+69+0),pixelHeight:160,pixelWidth:161,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0K2cu43Hy1lREyuxnup6CXFuP8.png\"}},tss6pNfaI:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+868+32+2148.2+0+69+0),pixelHeight:160,pixelWidth:161,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0K2cu43Hy1lREyuxnup6CXFuP8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1155+32+1284.2+0+69+0),pixelHeight:160,pixelWidth:161,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0K2cu43Hy1lREyuxnup6CXFuP8.png\"},className:\"framer-dcqnpw\",\"data-framer-name\":\"Group 62\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ses859\",\"data-framer-name\":\"Frame 11\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R290aGFtIE1lZGl1bS01MDBpdGFsaWM=\",\"--framer-font-family\":'\"Gotham Medium\", \"Gotham Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\u201CGame Changer\u201D\"})}),className:\"framer-18ce1cf\",\"data-framer-name\":\"\u201CGame Changer\u201D\",fonts:[\"GF;Gotham Medium-500italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ah2au6\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-199i595\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uz0kl3\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 1.6726C8.1276 1.14614 8.8724 1.14614 9.04346 1.6726L10.1678 5.13302C10.2443 5.36846 10.4637 5.52786 10.7113 5.52786H14.3498C14.9033 5.52786 15.1335 6.23622 14.6857 6.56159L11.742 8.70024C11.5418 8.84575 11.458 9.10368 11.5345 9.33912L12.6588 12.7995C12.8299 13.326 12.2273 13.7638 11.7795 13.4384L8.83588 11.2998C8.6356 11.1542 8.3644 11.1542 8.16412 11.2998L5.22052 13.4384C4.77268 13.7638 4.17012 13.326 4.34118 12.7995L5.46554 9.33912C5.54204 9.10368 5.45823 8.84575 5.25795 8.70024L2.31435 6.56159C1.86651 6.23621 2.09667 5.52786 2.65022 5.52786H6.28872C6.53628 5.52786 6.75568 5.36846 6.83218 5.13302L7.95654 1.6726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hlr4xo\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1r7l3w1\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 1.6726C8.1276 1.14614 8.8724 1.14614 9.04346 1.6726L10.1678 5.13302C10.2443 5.36846 10.4637 5.52786 10.7113 5.52786H14.3498C14.9033 5.52786 15.1335 6.23622 14.6857 6.56159L11.742 8.70024C11.5418 8.84575 11.458 9.10368 11.5345 9.33912L12.6588 12.7995C12.8299 13.326 12.2273 13.7638 11.7795 13.4384L8.83588 11.2998C8.6356 11.1542 8.3644 11.1542 8.16412 11.2998L5.22052 13.4384C4.77268 13.7638 4.17012 13.326 4.34118 12.7995L5.46554 9.33912C5.54204 9.10368 5.45823 8.84575 5.25795 8.70024L2.31435 6.56159C1.86651 6.23621 2.09667 5.52786 2.65022 5.52786H6.28872C6.53628 5.52786 6.75568 5.36846 6.83218 5.13302L7.95654 1.6726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kcxy4g\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15a3814\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 1.6726C8.1276 1.14614 8.8724 1.14614 9.04346 1.6726L10.1678 5.13302C10.2443 5.36846 10.4637 5.52786 10.7113 5.52786H14.3498C14.9033 5.52786 15.1335 6.23622 14.6857 6.56159L11.742 8.70024C11.5418 8.84575 11.458 9.10368 11.5345 9.33912L12.6588 12.7995C12.8299 13.326 12.2273 13.7638 11.7795 13.4384L8.83588 11.2998C8.6356 11.1542 8.3644 11.1542 8.16412 11.2998L5.22052 13.4384C4.77268 13.7638 4.17012 13.326 4.34118 12.7995L5.46554 9.33912C5.54204 9.10368 5.45823 8.84575 5.25795 8.70024L2.31435 6.56159C1.86651 6.23621 2.09667 5.52786 2.65022 5.52786H6.28872C6.53628 5.52786 6.75568 5.36846 6.83218 5.13302L7.95654 1.6726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i888n8\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cx8waa\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 1.6726C8.1276 1.14614 8.8724 1.14614 9.04346 1.6726L10.1678 5.13302C10.2443 5.36846 10.4637 5.52786 10.7113 5.52786H14.3498C14.9033 5.52786 15.1335 6.23622 14.6857 6.56159L11.742 8.70024C11.5418 8.84575 11.458 9.10368 11.5345 9.33912L12.6588 12.7995C12.8299 13.326 12.2273 13.7638 11.7795 13.4384L8.83588 11.2998C8.6356 11.1542 8.3644 11.1542 8.16412 11.2998L5.22052 13.4384C4.77268 13.7638 4.17012 13.326 4.34118 12.7995L5.46554 9.33912C5.54204 9.10368 5.45823 8.84575 5.25795 8.70024L2.31435 6.56159C1.86651 6.23621 2.09667 5.52786 2.65022 5.52786H6.28872C6.53628 5.52786 6.75568 5.36846 6.83218 5.13302L7.95654 1.6726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ostrlb\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-aqt56g\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.95654 1.6726C8.1276 1.14614 8.8724 1.14614 9.04346 1.6726L10.1678 5.13302C10.2443 5.36846 10.4637 5.52786 10.7113 5.52786H14.3498C14.9033 5.52786 15.1335 6.23622 14.6857 6.56159L11.742 8.70024C11.5418 8.84575 11.458 9.10368 11.5345 9.33912L12.6588 12.7995C12.8299 13.326 12.2273 13.7638 11.7795 13.4384L8.83588 11.2998C8.6356 11.1542 8.3644 11.1542 8.16412 11.2998L5.22052 13.4384C4.77268 13.7638 4.17012 13.326 4.34118 12.7995L5.46554 9.33912C5.54204 9.10368 5.45823 8.84575 5.25795 8.70024L2.31435 6.56159C1.86651 6.23621 2.09667 5.52786 2.65022 5.52786H6.28872C6.53628 5.52786 6.75568 5.36846 6.83218 5.13302L7.95654 1.6726Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10z5e3s\",\"data-framer-name\":\"Testimonial / 12 /\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0x13z\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sez1ys\",\"data-styles-preset\":\"DRSDfevD_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\"},children:\"The Masses Have Spoken\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sez1ys\",\"data-styles-preset\":\"DRSDfevD_\",style:{\"--framer-text-color\":\"var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, rgb(35, 35, 36))\"},children:\"The Masses Have Spoken\"})}),className:\"framer-8dfqq1\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:'\"Before using Jointflows, I didn\\'t realize we were collectively failing at closing deals\" - Gregoire Blond - Co-founder | Costory'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:[\"\\\"Before using Jointflows, I didn't realise we were collectively failing at \",/*#__PURE__*/_jsx(\"br\",{}),'closing deals\" ',/*#__PURE__*/_jsx(\"br\",{}),\"Gregoire Blond - Co-founder | Costory\"]})}),className:\"framer-1s2rkkr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aa66h5\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7qwjq\",\"data-framer-name\":\"Container\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f4m7wo-container hidden-72rtr7 hidden-5royfx hidden-1m9zm0s\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"racsyKTaB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.4,id:\"racsyKTaB\",layoutId:\"racsyKTaB\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:512,width:\"295px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u14r15-container\",inComponentSlot:true,nodeId:\"Ia1dqFM9n\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"Ia1dqFM9n\",IyXDzUuBm:'\"As a sales rep, I love how JointFlows can enhance collaboration between the sales person and the prospect. The platform helps bridge the communication gap between sales person and prospect by providing a collaboration tool to help us plan and execute next steps. \"',kZdEsLxaw:\"Jeaton Cary\",layoutId:\"Ia1dqFM9n\",Nrr9RBgq1:\"Head of Business Development | Supercede\",Pz6VscMjK:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Pr84WzFGGRdImMt9LG2zjzqDI8.png\",srcSet:\"https://framerusercontent.com/images/Pr84WzFGGRdImMt9LG2zjzqDI8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pr84WzFGGRdImMt9LG2zjzqDI8.png 800w\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:28,pixelWidth:135,src:\"https://framerusercontent.com/images/qvHpO6eXGYQl3MqUAnuRi6r1D8Q.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"afi0oZ3Ix\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:659,width:\"290px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3nhv9-container\",inComponentSlot:true,nodeId:\"zB1hk03IV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"zB1hk03IV\",IyXDzUuBm:'\"Turns Subjective sales cycles and forecasts into Objective meaning and data. Clarity to sales cycles, better forecasting and prediction for Founders/CEO\\'s and consistency to sales teams and onboarding new resources In enterprise and complex selling and in a bootstrapped business, forecasting and prediction of revenue/cashflow was critical. Jointflows added real meaning to this conversation but also gave us a consistent point of view to run sales meetings and offer better insights into best next steps and gaps to navigate.\"',kZdEsLxaw:\"Darren Hitchcock\",layoutId:\"zB1hk03IV\",Nrr9RBgq1:\"General Manager | Magnolia CMS\",Pz6VscMjK:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/0BRBZdVnVGTdVKnEKJRpxF33NHw.png\",srcSet:\"https://framerusercontent.com/images/0BRBZdVnVGTdVKnEKJRpxF33NHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BRBZdVnVGTdVKnEKJRpxF33NHw.png 800w\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:100,pixelWidth:503,src:\"https://framerusercontent.com/images/9dS05wRnEAu8rRW5usbi9Kj8GWI.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"afi0oZ3Ix\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:508,width:\"438px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-178bnja-container\",inComponentSlot:true,nodeId:\"uunPb6_Hg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"uunPb6_Hg\",IyXDzUuBm:'\"Give ownership to outside sales stakeholders (legal, data operations...) and keep track of actions. Monitor performances at each stage of the cycle to act before it is too late. The entire organization can assist our Account Executives in closing their deals. As a Sales Manager, I can quickly identify threats in our pipeline and act accordingly.\"',kZdEsLxaw:\"Gregoire Blond\",layoutId:\"uunPb6_Hg\",Nrr9RBgq1:\"Co-founder | Costory\",Pz6VscMjK:addImageAlt({pixelHeight:528,pixelWidth:528,src:\"https://framerusercontent.com/images/8EO5N22t8qh0ftHGp5wyAQ1CqM.png\",srcSet:\"https://framerusercontent.com/images/8EO5N22t8qh0ftHGp5wyAQ1CqM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8EO5N22t8qh0ftHGp5wyAQ1CqM.png 528w\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:74,pixelWidth:219,src:\"https://framerusercontent.com/images/uu2G4PBAfzpUtRAu6k4ARaTv8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"afi0oZ3Ix\",width:\"100%\"})})})],speed:40,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hp7nwm-container hidden-13ktri3\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aWv_eFCEM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.2,id:\"aWv_eFCEM\",layoutId:\"aWv_eFCEM\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:593,width:\"438px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1il16w8-container\",inComponentSlot:true,nodeId:\"gyhHnLsn_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"gyhHnLsn_\",IyXDzUuBm:\"\u201CPreviously we managed our projects via a custom Salesforce object which made understanding simple things like how long certain tasks take far more difficult than it should be. JointFlows really allows me to understand exactly how long our onboarding process takes, where we might be having issues and whether our projects are on time or slipping. It also gives us the added benefit of being able to provide more transparency to our clients, helping them understand how a project is progressing and helping us keep our clients accountable for the tasks they're responsible for. JointFlows was easy to implement. The platform is very easy to use and I've been comfortable making adjustments to the products to help fit my needs.\\\"\",kZdEsLxaw:\"Scott Scott\",layoutId:\"gyhHnLsn_\",Nrr9RBgq1:\"Pre-sales & Support Director | SaleCycle\",Pz6VscMjK:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/cKMaOa3bBJR5W1kVze13FXbaOA.png\",srcSet:\"https://framerusercontent.com/images/cKMaOa3bBJR5W1kVze13FXbaOA.png?scale-down-to=512 512w,https://framerusercontent.com/images/cKMaOa3bBJR5W1kVze13FXbaOA.png 800w\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:36,pixelWidth:275,src:\"https://framerusercontent.com/images/YZI9dTsQ8jc6JsecKxNEEi7jvs.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"CS5zIO5Nw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:\"438px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-avry2y-container\",inComponentSlot:true,nodeId:\"nPnwRXdD3\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"nPnwRXdD3\",IyXDzUuBm:'\"Turns Subjective sales cycles and forecasts into Objective meaning and data. Clarity to sales cycles, better forecasting and prediction for Founders/CEO\\'s and consistency to sales teams and onboarding new resources In enterprise and complex selling and in a bootstrapped business, forecasting and prediction of revenue/cashflow was critical. Jointflows added real meaning to this conversation but also gave us a consistent point of view to run sales meetings and offer better insights into best next steps and gaps to navigate.\"',kZdEsLxaw:\"Darren Hitchcock\",layoutId:\"nPnwRXdD3\",Nrr9RBgq1:\"General Manager | Magnolia CMS\",Pz6VscMjK:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/0BRBZdVnVGTdVKnEKJRpxF33NHw.png\",srcSet:\"https://framerusercontent.com/images/0BRBZdVnVGTdVKnEKJRpxF33NHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BRBZdVnVGTdVKnEKJRpxF33NHw.png 800w\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:100,pixelWidth:503,src:\"https://framerusercontent.com/images/9dS05wRnEAu8rRW5usbi9Kj8GWI.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"CS5zIO5Nw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:394,width:\"438px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bjcnja-container\",inComponentSlot:true,nodeId:\"LsxOiaM5r\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"LsxOiaM5r\",IyXDzUuBm:'\"As a sales rep, I love how JointFlows can enhance collaboration between the sales person and the prospect. The platform helps bridge the communication gap between sales person and prospect by providing a collaboration tool to help us plan and execute next steps. \"',kZdEsLxaw:\"Jeaton Cary\",layoutId:\"LsxOiaM5r\",Nrr9RBgq1:\"Head of Business Development | Supercede\",Pz6VscMjK:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Pr84WzFGGRdImMt9LG2zjzqDI8.png\",srcSet:\"https://framerusercontent.com/images/Pr84WzFGGRdImMt9LG2zjzqDI8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pr84WzFGGRdImMt9LG2zjzqDI8.png 800w\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:28,pixelWidth:135,src:\"https://framerusercontent.com/images/qvHpO6eXGYQl3MqUAnuRi6r1D8Q.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"CS5zIO5Nw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:419,width:\"438px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cthstx-container\",inComponentSlot:true,nodeId:\"H_mtiPv1C\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"H_mtiPv1C\",IyXDzUuBm:'\"Give ownership to outside sales stakeholders (legal, data operations...) and keep track of actions. Monitor performances at each stage of the cycle to act before it is too late. The entire organization can assist our Account Executives in closing their deals. As a Sales Manager, I can quickly identify threats in our pipeline and act accordingly.\"',kZdEsLxaw:\"Gregoire Blond\",layoutId:\"H_mtiPv1C\",Nrr9RBgq1:\"Co-founder | Costory\",Pz6VscMjK:addImageAlt({pixelHeight:528,pixelWidth:528,src:\"https://framerusercontent.com/images/8EO5N22t8qh0ftHGp5wyAQ1CqM.png\",srcSet:\"https://framerusercontent.com/images/8EO5N22t8qh0ftHGp5wyAQ1CqM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8EO5N22t8qh0ftHGp5wyAQ1CqM.png 528w\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:74,pixelWidth:219,src:\"https://framerusercontent.com/images/uu2G4PBAfzpUtRAu6k4ARaTv8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"CS5zIO5Nw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:\"438px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-azitrt-container\",inComponentSlot:true,nodeId:\"msBN7vBj8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{height:\"100%\",id:\"msBN7vBj8\",IyXDzUuBm:'\"Jointflows have helped me to streamline my closing plans taking away all of the unknowns and making each stakeholder accountable for their role in the deal, this has not only improved my close rate but they have allowed me to increase the number of deals I am closing at any one time. The forecasting and deal tracking capabilities allow me to identify where I have risks in my deals this allows me to quickly and efficiently eradicate the risks or bring in the right people to help without having to go back through hundreds of emails and call recordings.\"',kZdEsLxaw:\"Josh Davies\",layoutId:\"msBN7vBj8\",Nrr9RBgq1:\"Enterprise AE | Imagino\",Pz6VscMjK:addImageAlt({pixelHeight:434,pixelWidth:434,src:\"https://framerusercontent.com/images/2d4cFYbGE6J5sm3mgemXUOhLsI.png\"},\"\"),qzGOgDnol:addImageAlt({pixelHeight:237,pixelWidth:705,src:\"https://framerusercontent.com/images/FkJwti5TyQZIeO0A3OLxAvpcPVc.webp\",srcSet:\"https://framerusercontent.com/images/FkJwti5TyQZIeO0A3OLxAvpcPVc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/FkJwti5TyQZIeO0A3OLxAvpcPVc.webp 705w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"CS5zIO5Nw\",width:\"100%\"})})})],speed:65,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cypr1e\",\"data-framer-name\":\"Product 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vlqip2\",\"data-border\":true,\"data-framer-name\":\"Features\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqn6hw\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l7ph67\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1n3zxjy\",\"data-styles-preset\":\"lZPkUep__\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Jointflows empowers end-to-end revenue execution. \",/*#__PURE__*/_jsx(\"br\",{}),\"We offer a suite of features to help you \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:\"control, accelerate, predict, and win non-linear sales cycles. \"}),\" \"]})}),className:\"framer-18zh59v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8839ot\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zibg62\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4jmf88\",\"data-framer-name\":\"Asset\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{moeb6Ga9O:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3767+0+0+64+0+0+85.6+0+0+40+0+160-218),pixelHeight:447,pixelWidth:294,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/MEmN86bwrF9N8xEqDlkvhCFmO8.png\"},transformTemplate:undefined},tss6pNfaI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4462+0+0+64+0+0+85.6+0+0+40+0+-4.5),pixelHeight:447,pixelWidth:294,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/MEmN86bwrF9N8xEqDlkvhCFmO8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3885+0+0+64+0+0+85.6+0+0+40+0+-4.5),pixelHeight:447,pixelWidth:294,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/MEmN86bwrF9N8xEqDlkvhCFmO8.png\"},className:\"framer-o3sc9q hidden-13ktri3\",\"data-framer-name\":\"cuber_dough\",transformTemplate:transformTemplate1})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3574+0+0+64+0+0+85.6+0+0+40+0+-40.4211),pixelHeight:682,pixelWidth:588,positionX:\"center\",positionY:\"top\",sizes:\"229px\",src:\"https://framerusercontent.com/images/0Ln02BBXzNxRYEMzcKv8cJvXE.png\",srcSet:\"https://framerusercontent.com/images/0Ln02BBXzNxRYEMzcKv8cJvXE.png 588w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:682,pixelWidth:588,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/0Ln02BBXzNxRYEMzcKv8cJvXE.png\",srcSet:\"https://framerusercontent.com/images/0Ln02BBXzNxRYEMzcKv8cJvXE.png 588w\"},className:\"framer-q1siay hidden-72rtr7 hidden-5royfx hidden-1m9zm0s\",\"data-framer-name\":\"cuber_dough\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ny3ekr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Mutual Action Plan AI Agent\"})}),className:\"framer-xulv23\",fonts:[\"CUSTOM;Gotham Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4mbxok\",\"data-styles-preset\":\"DrbnFMA_e\",style:{\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Collaboration that drives to close.\"})}),className:\"framer-lr9q6e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n7qs9w\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tss6pNfaI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4462+0+0+64+0+0+85.6+0+0+40+0),pixelHeight:1530,pixelWidth:2462,positionX:\"center\",positionY:\"top\",sizes:\"565px\",src:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg 2462w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,pixelHeight:1530,pixelWidth:2462,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg 2462w\"},className:\"framer-1dchuin hidden-72rtr7 hidden-5royfx hidden-13ktri3\",\"data-framer-name\":\"App_2x\"})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g6xb6c hidden-1m9zm0s\",\"data-framer-name\":\"Asset\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3574+0+0+64+0+0+85.6+0+410+40+0+-1),pixelHeight:1530,pixelWidth:2462,positionX:\"center\",positionY:\"top\",sizes:`calc(max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 200px) + 176px)`,src:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg 2462w\"}},moeb6Ga9O:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3767+0+0+64+0+0+85.6+0+0+40+0+163.2-240),pixelHeight:1530,pixelWidth:2462,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1312px) - 20px) / 3, 200px) * 2 + 122px)`,src:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg 2462w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:874,intrinsicWidth:1100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3885+0+0+64+0+0+85.6+0+0+40+0+163.2-246),pixelHeight:1530,pixelWidth:2462,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 20px) / 3, 200px) * 2 + 47.5px)`,src:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQjCrHcDOr9cJxhT7TXBUnXQJc.jpg 2462w\"},className:\"framer-z0hxl\",\"data-framer-name\":\"App_2x\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r6utkz\",\"data-framer-name\":\"Play Button Wrapper\",id:\"r6utkz\",onTap:onTap3bnx0g({overlay}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-dpk4ym\"),\"data-framer-portal-id\":\"r6utkz\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"X7_zuIbi8\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-x2305c\"),\"data-border\":true,\"data-framer-portal-id\":\"r6utkz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a2yddb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EXU9R1X3L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"EXU9R1X3L\",isMixedBorderRadius:false,layoutId:\"EXU9R1X3L\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nd9hyh\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bllg8t\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><path d=\"M 0 0 L 28 0 L 28 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 21.875 6.125 L 6.125 21.875 M 21.875 21.875 L 6.125 6.125\" fill=\"rgb(255,255,255)\" stroke-width=\"1.33\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12506028301,withExternalLayout:true})})]})]}),getContainer())})})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cb0e6x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Internal Orchestration AI Agent\"})}),className:\"framer-15tortw\",fonts:[\"CUSTOM;Gotham Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4mbxok\",\"data-styles-preset\":\"DrbnFMA_e\",style:{\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Deal clarity for the entire team.\"})}),className:\"framer-1syfmvc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1naoq13\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k9g4dm\",\"data-framer-name\":\"Asset\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:673,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3574+0+0+64+0+0+85.6+0+820+40+0+15),pixelHeight:640,pixelWidth:1155,sizes:`calc((max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 200px) - 80px) * 1.6087)`,src:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png 1155w\"}},moeb6Ga9O:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:673,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3767+0+0+64+0+0+85.6+0+410+40+0+0),pixelHeight:640,pixelWidth:1155,sizes:`calc(max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1312px) - 20px) / 3, 200px) * 2 - 70px)`,src:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png 1155w\"}},tss6pNfaI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:673,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4462+0+0+64+0+0+85.6+0+410+40+0+0),pixelHeight:640,pixelWidth:1155,sizes:`calc((max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 20px) / 3, 200px) * 2 - 70px) * 1.1029)`,src:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png 1155w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:673,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3885+0+0+64+0+0+85.6+0+410+40+0+0),pixelHeight:640,pixelWidth:1155,sizes:`calc(max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 20px) / 3, 200px) * 2 - 70px)`,src:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=512 512w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vEC0q9q0mwISBK48f65zosXbaPc.png 1155w\"},className:\"framer-1nqyh3g\",\"data-framer-name\":\"Analytics_2x\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7tdn3b\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tss6pNfaI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"In-Depth Deal Forecasting\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"In-Depth Deal Forecasting\"})}),className:\"framer-1uxofmm\",fonts:[\"CUSTOM;Gotham Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4mbxok\",\"data-styles-preset\":\"DrbnFMA_e\",style:{\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Data to know where you're at and where you're going.\"})}),className:\"framer-1oit199\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m6wnr3\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-id4meu\",\"data-framer-name\":\"Asset\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3574+0+0+64+0+0+85.6+0+1230+40+0+-73.4077),pixelHeight:1480,pixelWidth:1422,sizes:`calc(max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 200px) - 46px)`,src:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg\",srcSet:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg?scale-down-to=1024 983w,https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg 1422w\"},transformTemplate:transformTemplate3},moeb6Ga9O:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3767+0+0+64+0+0+85.6+0+410+40+0+0),pixelHeight:1480,pixelWidth:1422,sizes:`calc(max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1312px) - 20px) / 3, 200px) - 80.5px)`,src:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg\",srcSet:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg?scale-down-to=1024 983w,https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg 1422w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3885+0+0+64+0+0+85.6+0+410+40+0+0),pixelHeight:1480,pixelWidth:1422,sizes:`calc(max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 20px) / 3, 200px) - 80px)`,src:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg\",srcSet:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg?scale-down-to=1024 983w,https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg 1422w\"},className:\"framer-a0kj3b hidden-1m9zm0s\",\"data-framer-name\":\"cyber_conus\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tss6pNfaI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4462+0+0+64+0+0+85.6+0+410+40+0+-1),pixelHeight:1480,pixelWidth:1422,sizes:`calc(max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 20px) / 3, 200px) - 34px)`,src:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg\",srcSet:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg?scale-down-to=1024 983w,https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg 1422w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:1480,pixelWidth:1422,src:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg\",srcSet:\"https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg?scale-down-to=1024 983w,https://framerusercontent.com/images/udBlrtIKuD9iQIl88pLVhBNiL5k.jpg 1422w\"},className:\"framer-tojqnu hidden-72rtr7 hidden-5royfx hidden-13ktri3\",\"data-framer-name\":\"cyber_conus\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd60mg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dvdGhhbSBCb2xk\",\"--framer-font-family\":'\"Gotham Bold\", \"Gotham Bold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Full Buyer-Seller Journey Analytics\"})}),className:\"framer-1mbr7qm\",fonts:[\"CUSTOM;Gotham Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4mbxok\",\"data-styles-preset\":\"DrbnFMA_e\",style:{\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Capture the full buying journey all in one place.\"})}),className:\"framer-1woqsce\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q1zey\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-euvm8t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sez1ys\",\"data-styles-preset\":\"DRSDfevD_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Features Road Map\"})}),className:\"framer-3o4hs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11cgjwm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+0},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+0},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r4g991-container\",nodeId:\"zbeQZf9bH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"NEW\",eoEAnehP1:true,height:\"100%\",id:\"zbeQZf9bH\",kxDdHTi1D:\"0px\",layoutId:\"zbeQZf9bH\",MFt5Zs_AB:true,OPJUBTb18:\"FolderSimpleUser\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Accelerate deal velocity with shared goals and clear milestones.\",style:{width:\"100%\"},u6K4JqA__:\"Mutual Action Plan\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:false,variant:\"imRoR72wV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+183},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+0},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ihvg43-container\",nodeId:\"hAIB9abIt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"NEW\",eoEAnehP1:true,height:\"100%\",id:\"hAIB9abIt\",kxDdHTi1D:\"0px\",layoutId:\"hAIB9abIt\",MFt5Zs_AB:true,OPJUBTb18:\"Lightning\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Streamline processes to maintain control over deal progress.\",style:{width:\"100%\"},u6K4JqA__:\"Internal Orchestrator Agent\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:false,variant:\"imRoR72wV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+366},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+0},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+183}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fa2wh6-container\",nodeId:\"L9lBUhIyh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"NEW\",eoEAnehP1:true,height:\"100%\",id:\"L9lBUhIyh\",kxDdHTi1D:\"0px\",layoutId:\"L9lBUhIyh\",MFt5Zs_AB:true,OPJUBTb18:\"ChartLine\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Improve forecasting accuracy with AI-driven close date predictions.\",style:{width:\"100%\"},u6K4JqA__:\"Forecasting Agent\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:false,variant:\"imRoR72wV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+549},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+183},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+183}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+183,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1onoq5s-container\",nodeId:\"Lki1D_0ih\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"NEW\",eoEAnehP1:true,height:\"100%\",id:\"Lki1D_0ih\",kxDdHTi1D:\"0px\",layoutId:\"Lki1D_0ih\",MFt5Zs_AB:true,OPJUBTb18:\"PlugsConnected\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Unlock insights to remove roadblocks and boost conversion rates.\",style:{width:\"100%\"},u6K4JqA__:\"Full Seller-Buyer Journey Analytics\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:true,variant:\"imRoR72wV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+732},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+183},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+366}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+183,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dqmyhd-container\",nodeId:\"Od8MWNIke\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"NEW\",eoEAnehP1:true,height:\"100%\",id:\"Od8MWNIke\",kxDdHTi1D:\"0px\",layoutId:\"Od8MWNIke\",MFt5Zs_AB:true,OPJUBTb18:\"ListNumbers\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Drive efficiency by focusing on deals with the highest win likelihood.\",style:{width:\"100%\"},u6K4JqA__:\"Deal and Resource Prioritisation\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:true,variant:\"imRoR72wV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+915},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+183},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+366}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+183,children:/*#__PURE__*/_jsx(Container,{className:\"framer-65wb10-container\",nodeId:\"QSXNGZNJH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"NEW\",eoEAnehP1:true,height:\"100%\",id:\"QSXNGZNJH\",kxDdHTi1D:\"0px\",layoutId:\"QSXNGZNJH\",MFt5Zs_AB:true,OPJUBTb18:\"ComputerTower\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Align technical and sales teams to accelerate implementation timelines.\",style:{width:\"100%\"},u6K4JqA__:\"Jira Integration\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:true,variant:\"imRoR72wV\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+1098},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+366},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+549}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+366,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xk9pbn-container\",nodeId:\"oi7c4aJQ5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{moeb6Ga9O:{aZts8hcy1:\"Coming Soon\"}},children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"COMING SOON\",eoEAnehP1:true,height:\"100%\",id:\"oi7c4aJQ5\",kxDdHTi1D:\"0px\",layoutId:\"oi7c4aJQ5\",MFt5Zs_AB:true,OPJUBTb18:\"MagicWand\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Strengthen proposals by aligning solutions with buyer challenges.\",style:{width:\"100%\"},u6K4JqA__:\"Business Case Agent\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:true,variant:\"imRoR72wV\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+1281},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+366},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+549}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+366,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b6twn5-container\",nodeId:\"RsbQrHgLQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{moeb6Ga9O:{aZts8hcy1:\"Coming Soon\"}},children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"COMING SOON\",eoEAnehP1:true,height:\"100%\",id:\"RsbQrHgLQ\",kxDdHTi1D:\"0px\",layoutId:\"RsbQrHgLQ\",MFt5Zs_AB:true,OPJUBTb18:\"Ranking\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Increase conversion rates by identifying high-quality opportunities.\",style:{width:\"100%\"},u6K4JqA__:\"Sales Qualification Agent\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:true,variant:\"imRoR72wV\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px), 50px)`,y:(componentViewport?.y||0)+0+3574+0+0+64+1811.6+0+157.2+0+1464},moeb6Ga9O:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1100px) - 128px, 1100px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3767+0+0+64+991.6+0+157.2+0+366},tss6pNfaI:{width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 40px) / 2, 50px)`,y:(componentViewport?.y||0)+0+4462+0+0+64+991.6+0+157.2+0+732}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`max((min(min(min(${componentViewport?.width||\"100vw\"}, 1600px), 1440px) - 80px, 1312px) - 80px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3885+0+0+64+991.6+0+157.2+0+366,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w4mt5m-container\",nodeId:\"ukXiI0cGK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{moeb6Ga9O:{aZts8hcy1:\"Coming Soon\"}},children:/*#__PURE__*/_jsx(AIKitFeatureSmall,{aZts8hcy1:\"COMING SOON\",eoEAnehP1:true,height:\"100%\",id:\"ukXiI0cGK\",kxDdHTi1D:\"0px\",layoutId:\"ukXiI0cGK\",MFt5Zs_AB:true,OPJUBTb18:\"Files\",qCV3eUx76:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",SeJGf8Cjm:\"Maintain deal momentum with seamless stakeholder transitions.\",style:{width:\"100%\"},u6K4JqA__:\"Stakeholder Handover Agent\",ui_AXJ1vG:\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\",UrJk386ze:true,variant:\"imRoR72wV\",width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9a153q\",\"data-framer-name\":\"Flow\",id:\"9a153q\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eluh9q\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fvlyw3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-jm9946\",\"data-styles-preset\":\"i4Uksihhb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e58153f7-37b7-413a-a588-efce241cd80c, rgb(239, 73, 83))\"},children:\"Bring All Your Sales Assets to Life\"})}),className:\"framer-4b5p9z\",\"data-framer-name\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sez1ys\",\"data-styles-preset\":\"DRSDfevD_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48b74ebd-fada-48d3-bd2a-054665e3c028, rgb(255, 255, 255))\"},children:\"Capture the Buying Journeys \"})}),className:\"framer-fqmj25\",\"data-framer-name\":\"Medium length hero headline goes here\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dtjj2e\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{y:(componentViewport?.y||0)+0+7277.8+128+182.8+0+0},moeb6Ga9O:{y:(componentViewport?.y||0)+0+5552.8+128+182.8+0},tss6pNfaI:{y:(componentViewport?.y||0)+0+6613.8+128+182.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:590,y:(componentViewport?.y||0)+0+5670.8+128+182.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10tqtnw-container\",nodeId:\"SgqydGtjo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{variant:\"LlGOWouqW\"}},children:/*#__PURE__*/_jsx(Pricing,{height:\"100%\",id:\"SgqydGtjo\",layoutId:\"SgqydGtjo\",variant:\"Lblu3pOG1\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aklw9x\",\"data-framer-name\":\"Footer / 11 /\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{y:(componentViewport?.y||0)+0+8242.6+0+0},moeb6Ga9O:{y:(componentViewport?.y||0)+0+6517.6+0+0},tss6pNfaI:{y:(componentViewport?.y||0)+0+7578.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:241,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6635.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yt578p-container\",nodeId:\"tnFEMNM0Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tnFEMNM0Q\",layoutId:\"tnFEMNM0Q\",style:{width:\"100%\"},width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aqZjLFOZ1:{height:72,y:32}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rvnifb-container hidden-72rtr7 hidden-5royfx hidden-1m9zm0s\",layoutScroll:true,nodeId:\"pDipocM4h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"pDipocM4h\",layoutId:\"pDipocM4h\",variant:\"DDDCIkBei\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K1Wei.framer-lux5qc, .framer-K1Wei .framer-lux5qc { display: block; }\",\".framer-K1Wei.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-K1Wei .framer-19a1ldw-container { flex: none; height: 72px; left: 50%; position: fixed; top: 32px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-K1Wei .framer-17p1t5g, .framer-K1Wei .framer-12840ax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-2nh6bf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-height: 1200px; max-width: 2000px; overflow: hidden; padding: 128px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-u6ek4d { align-content: center; align-items: center; background: radial-gradient(50% 50% at 50% 50%, #ffffff 30.590160472972972%, rgba(0, 200, 240, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 427px; justify-content: center; max-width: 1312px; overflow: hidden; padding: 0px; position: relative; width: 1299px; z-index: 1; }\",\".framer-K1Wei .framer-otdr4k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: center; max-width: 1312px; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-K1Wei .framer-15nmp5o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 123px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1299px; }\",\".framer-K1Wei .framer-1lixcdn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-128x6gu, .framer-K1Wei .framer-1lmdl06 { --framer-paragraph-spacing: 0px; flex: none; height: 60px; max-width: 800px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-wmcbou, .framer-K1Wei .framer-181geth { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-K1Wei .framer-188sz76 { flex: none; height: 43px; position: relative; width: 47px; }\",\".framer-K1Wei .framer-myne0r, .framer-K1Wei .framer-1ses859 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-K1Wei .framer-8pupsf, .framer-K1Wei .framer-gb9et5, .framer-K1Wei .framer-18ce1cf, .framer-K1Wei .framer-8dfqq1, .framer-K1Wei .framer-1s2rkkr { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-K1Wei .framer-pfy1ie, .framer-K1Wei .framer-1ah2au6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-K1Wei .framer-sw70aq, .framer-K1Wei .framer-xqtgqy, .framer-K1Wei .framer-nvn0t8, .framer-K1Wei .framer-thx7yi, .framer-K1Wei .framer-fkh3cm, .framer-K1Wei .framer-199i595, .framer-K1Wei .framer-1hlr4xo, .framer-K1Wei .framer-1kcxy4g, .framer-K1Wei .framer-i888n8, .framer-K1Wei .framer-ostrlb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 16px; }\",\".framer-K1Wei .framer-kn4e95, .framer-K1Wei .framer-18prqz2, .framer-K1Wei .framer-1vjkk7r, .framer-K1Wei .framer-zknxgm, .framer-K1Wei .framer-ig1l2e { bottom: 1px; flex: none; left: 0px; position: absolute; right: 1px; top: 0px; }\",\".framer-K1Wei .framer-1scqz05-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-K1Wei .framer-afvc8v { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-K1Wei .framer-17emal8 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.4285714285714286 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 896px); overflow: visible; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-K1Wei .framer-6rrgkj { background: radial-gradient(50% 50% at 50% 50%, var(--token-e58153f7-37b7-413a-a588-efce241cd80c, #ef4953) 0%, rgba(171, 171, 171, 0) 100%); bottom: 0px; flex: none; height: 951px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-K1Wei .framer-1ei41tn { align-content: center; align-items: center; background: linear-gradient(180deg, #232324 0%, rgb(12, 12, 12) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 32px 48px 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-K1Wei .framer-12y8jq3-container { flex: none; height: 125px; max-width: 1312px; position: relative; width: 1312px; }\",\".framer-K1Wei .framer-7hf2jk { height: 56px; position: relative; width: 1794px; }\",\".framer-K1Wei .framer-16swk0t, .framer-K1Wei .framer-z0x13z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-K1Wei .framer-kxfnmv { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(586px, 1fr)); grid-template-rows: repeat(2, min-content); height: 960px; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: min-content; }\",\".framer-K1Wei .framer-1lazg7e, .framer-K1Wei .framer-89fp21, .framer-K1Wei .framer-2555qx, .framer-K1Wei .framer-84jqe9 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(12px); align-content: center; align-items: center; align-self: start; backdrop-filter: blur(12px); background: linear-gradient(180deg, rgba(35, 35, 36, 0.72) 0%, rgba(12, 12, 12, 0.72) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 400px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-K1Wei .framer-wdn978, .framer-K1Wei .framer-ozukrh, .framer-K1Wei .framer-w9qfld, .framer-K1Wei .framer-drhfbd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 465px; }\",\".framer-K1Wei .framer-9j3ik5, .framer-K1Wei .framer-1h3jhev, .framer-K1Wei .framer-1m7gdwy, .framer-K1Wei .framer-1lnixl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 465px; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-8dimaf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 117px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 468px; }\",\".framer-K1Wei .framer-13775h4-container, .framer-K1Wei .framer-ldbfwu-container, .framer-K1Wei .framer-10tqtnw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-K1Wei .framer-1qfnd98 { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); height: 230px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 506px; }\",\".framer-K1Wei .framer-1597l37, .framer-K1Wei .framer-51g4df, .framer-K1Wei .framer-abp8vn, .framer-K1Wei .framer-n86pvh, .framer-K1Wei .framer-11f5fhs, .framer-K1Wei .framer-16hsk3y { --border-bottom-width: 1px; --border-color: rgba(240, 74, 85, 0.97); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: rgba(153, 238, 255, 0); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset -252px 1px 2px 0px #2b1b1b; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-K1Wei .framer-qdd66i, .framer-K1Wei .framer-1bvqxp1, .framer-K1Wei .framer-16yvjob, .framer-K1Wei .framer-1n61wow, .framer-K1Wei .framer-1d9tdve, .framer-K1Wei .framer-qz0rs5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-K1Wei .framer-fuxoas { flex: none; height: 300px; overflow: hidden; position: relative; width: 522px; }\",\".framer-K1Wei .framer-zkj5t2 { flex: none; height: 233px; overflow: hidden; position: relative; width: 520px; }\",\".framer-K1Wei .framer-1t314ag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 193px; }\",\".framer-K1Wei .framer-dcqnpw { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-K1Wei .framer-uz0kl3, .framer-K1Wei .framer-1r7l3w1, .framer-K1Wei .framer-15a3814, .framer-K1Wei .framer-1cx8waa, .framer-K1Wei .framer-aqt56g { bottom: 0px; flex: none; left: 0px; position: absolute; right: 1px; top: 0px; }\",\".framer-K1Wei .framer-10z5e3s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 112px 64px 112px 64px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-aa66h5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-7qwjq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 850px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-f4m7wo-container { flex: none; height: 553px; max-width: 1312px; position: relative; width: 321px; }\",\".framer-K1Wei .framer-u14r15-container { height: 512px; position: relative; width: 295px; }\",\".framer-K1Wei .framer-e3nhv9-container { height: 659px; position: relative; width: 290px; }\",\".framer-K1Wei .framer-178bnja-container { height: 508px; position: relative; width: 438px; }\",\".framer-K1Wei .framer-1hp7nwm-container { flex: 1 0 0px; height: 100%; max-width: 1312px; position: relative; width: 1px; }\",\".framer-K1Wei .framer-1il16w8-container { height: 593px; position: relative; width: 438px; }\",\".framer-K1Wei .framer-avry2y-container { height: 511px; position: relative; width: 438px; }\",\".framer-K1Wei .framer-bjcnja-container { height: 394px; position: relative; width: 438px; }\",\".framer-K1Wei .framer-1cthstx-container { height: 419px; position: relative; width: 438px; }\",\".framer-K1Wei .framer-azitrt-container { height: 500px; position: relative; width: 438px; }\",\".framer-K1Wei .framer-1cypr1e { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1vlqip2 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 64px 40px 64px 40px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1nqn6hw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1l7ph67 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-18zh59v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1100px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-8839ot { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1312px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-zibg62 { --border-bottom-width: 5px; --border-color: rgba(0, 0, 0, 0.17); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; align-content: flex-start; align-items: flex-start; align-self: start; background: linear-gradient(0deg, var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, #232324) 0%, rgb(97, 97, 97) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 400px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-K1Wei .framer-4jmf88, .framer-K1Wei .framer-1g6xb6c, .framer-K1Wei .framer-k9g4dm, .framer-K1Wei .framer-id4meu { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-K1Wei .framer-o3sc9q { -webkit-mask: linear-gradient(180deg, #000000 48.49908502252252%, rgba(0,0,0,0) 100%) add; aspect-ratio: 0.9875706214689266 / 1; bottom: -75px; flex: none; left: 50%; mask: linear-gradient(180deg, #000000 48.49908502252252%, rgba(0,0,0,0) 100%) add; overflow: visible; position: absolute; top: -4px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 313px); }\",\".framer-K1Wei .framer-q1siay { -webkit-mask: linear-gradient(180deg, #000000 48.49908502252252%, rgba(0,0,0,0) 100%) add; aspect-ratio: 0.9875706214689266 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 232px); left: 50%; mask: linear-gradient(180deg, #000000 48.49908502252252%, rgba(0,0,0,0) 100%) add; overflow: visible; position: absolute; top: 47%; transform: translate(-50%, -50%); width: 229px; }\",\".framer-K1Wei .framer-1ny3ekr, .framer-K1Wei .framer-1cb0e6x, .framer-K1Wei .framer-7tdn3b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-xulv23, .framer-K1Wei .framer-15tortw, .framer-K1Wei .framer-1uxofmm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-K1Wei .framer-lr9q6e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 260px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-n7qs9w, .framer-K1Wei .framer-1naoq13 { --border-bottom-width: 5px; --border-color: rgba(0, 0, 0, 0.17); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; align-content: flex-start; align-items: flex-start; align-self: start; background: linear-gradient(0deg, var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, #232324) 0%, rgb(97, 97, 97) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; grid-column: auto / span 2; height: 400px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-K1Wei .framer-1dchuin { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 51.785965653153156%) add; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 223px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 51.785965653153156%) add; overflow: visible; position: relative; width: 565px; }\",\".framer-K1Wei .framer-z0hxl { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 55.24352477477478%) add; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -49px; flex: none; height: 295px; left: -2px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 55.24352477477478%) add; overflow: visible; position: absolute; right: -115px; }\",\".framer-K1Wei .framer-r6utkz { cursor: pointer; flex: none; height: 112px; left: calc(50.00000000000002% - 112px / 2); overflow: hidden; position: absolute; top: calc(49.925705794948016% - 112px / 2); width: 112px; }\",\".framer-K1Wei.framer-dpk4ym { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 7; }\",\".framer-K1Wei.framer-x2305c { --border-bottom-width: 1px; --border-color: var(--token-d559605d-d2a3-4776-a2c1-0436ceda3b18, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; left: calc(50.00000000000002% - 1100px / 2); overflow: hidden; padding: 0px; position: fixed; top: calc(50.00000000000002% - 600px / 2); width: 1100px; will-change: var(--framer-will-change-override, transform); z-index: 7; }\",\".framer-K1Wei .framer-1a2yddb-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-K1Wei .framer-1nd9hyh { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 10px; top: 10px; width: min-content; z-index: 1; }\",\".framer-K1Wei .framer-1bllg8t { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-K1Wei .framer-1syfmvc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 340px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-1nqyh3g { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 23.733741554054056%, rgba(0,0,0,1) 69.18264358108108%) add; aspect-ratio: 1.8055555555555556 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 439px); left: 0px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 23.733741554054056%, rgba(0,0,0,1) 69.18264358108108%) add; overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-K1Wei .framer-1oit199 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-1m6wnr3 { --border-bottom-width: 5px; --border-color: rgba(0, 0, 0, 0.15); --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; align-content: flex-start; align-items: flex-start; align-self: start; background: linear-gradient(0deg, var(--token-0d05ce36-5131-43c9-9cec-5f1fb1b1a07b, #232324) 0%, rgb(97, 97, 97) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 400px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-K1Wei .framer-a0kj3b { -webkit-mask: linear-gradient(180deg, #000000 42.57988457207207%, rgba(0,0,0,0) 100%) add; aspect-ratio: 1.3 / 1; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; flex: none; height: var(--framer-aspect-ratio-supported, 270px); left: 0px; mask: linear-gradient(180deg, #000000 42.57988457207207%, rgba(0,0,0,0) 100%) add; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-K1Wei .framer-tojqnu { -webkit-mask: linear-gradient(180deg, #000000 42.57988457207207%, rgba(0,0,0,0) 100%) add; aspect-ratio: 1.3 / 1; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; flex: none; height: var(--framer-aspect-ratio-supported, 156px); left: -23px; mask: linear-gradient(180deg, #000000 42.57988457207207%, rgba(0,0,0,0) 100%) add; overflow: visible; position: absolute; right: -23px; top: -1px; }\",\".framer-K1Wei .framer-cd60mg, .framer-K1Wei .framer-euvm8t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1mbr7qm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-1woqsce { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 230px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-1q1zey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1312px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-K1Wei .framer-3o4hs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-11cgjwm { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1r4g991-container, .framer-K1Wei .framer-ihvg43-container, .framer-K1Wei .framer-1onoq5s-container, .framer-K1Wei .framer-1dqmyhd-container, .framer-K1Wei .framer-65wb10-container, .framer-K1Wei .framer-1xk9pbn-container, .framer-K1Wei .framer-1b6twn5-container, .framer-K1Wei .framer-w4mt5m-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-K1Wei .framer-fa2wh6-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-K1Wei .framer-9a153q { align-content: center; align-items: center; background: linear-gradient(180deg, #232324 0%, rgb(12, 12, 12) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 64px 64px 64px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-eluh9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 768px; }\",\".framer-K1Wei .framer-fvlyw3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-4b5p9z, .framer-K1Wei .framer-fqmj25 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K1Wei .framer-dtjj2e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1aklw9x { align-content: center; align-items: center; background-color: #0c0c0c; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1yt578p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-K1Wei .framer-1rvnifb-container { flex: none; height: auto; left: 50%; position: fixed; top: 32px; transform: translateX(-50%); width: auto; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-K1Wei.framer-72rtr7, .framer-K1Wei .framer-17p1t5g, .framer-K1Wei .framer-2nh6bf, .framer-K1Wei .framer-u6ek4d, .framer-K1Wei .framer-otdr4k, .framer-K1Wei .framer-15nmp5o, .framer-K1Wei .framer-1lixcdn, .framer-K1Wei .framer-wmcbou, .framer-K1Wei .framer-myne0r, .framer-K1Wei .framer-pfy1ie, .framer-K1Wei .framer-afvc8v, .framer-K1Wei .framer-1ei41tn, .framer-K1Wei .framer-12840ax, .framer-K1Wei .framer-16swk0t, .framer-K1Wei .framer-1lazg7e, .framer-K1Wei .framer-wdn978, .framer-K1Wei .framer-8dimaf, .framer-K1Wei .framer-89fp21, .framer-K1Wei .framer-ozukrh, .framer-K1Wei .framer-1597l37, .framer-K1Wei .framer-51g4df, .framer-K1Wei .framer-abp8vn, .framer-K1Wei .framer-n86pvh, .framer-K1Wei .framer-11f5fhs, .framer-K1Wei .framer-16hsk3y, .framer-K1Wei .framer-2555qx, .framer-K1Wei .framer-w9qfld, .framer-K1Wei .framer-84jqe9, .framer-K1Wei .framer-drhfbd, .framer-K1Wei .framer-1t314ag, .framer-K1Wei .framer-181geth, .framer-K1Wei .framer-1ses859, .framer-K1Wei .framer-1ah2au6, .framer-K1Wei .framer-10z5e3s, .framer-K1Wei .framer-z0x13z, .framer-K1Wei .framer-aa66h5, .framer-K1Wei .framer-7qwjq, .framer-K1Wei .framer-1cypr1e, .framer-K1Wei .framer-1vlqip2, .framer-K1Wei .framer-1nqn6hw, .framer-K1Wei .framer-1l7ph67, .framer-K1Wei .framer-zibg62, .framer-K1Wei .framer-1ny3ekr, .framer-K1Wei .framer-n7qs9w, .framer-K1Wei.framer-x2305c, .framer-K1Wei .framer-1nd9hyh, .framer-K1Wei .framer-1cb0e6x, .framer-K1Wei .framer-1naoq13, .framer-K1Wei .framer-7tdn3b, .framer-K1Wei .framer-1m6wnr3, .framer-K1Wei .framer-cd60mg, .framer-K1Wei .framer-1q1zey, .framer-K1Wei .framer-euvm8t, .framer-K1Wei .framer-9a153q, .framer-K1Wei .framer-eluh9q, .framer-K1Wei .framer-fvlyw3, .framer-K1Wei .framer-dtjj2e, .framer-K1Wei .framer-1aklw9x { gap: 0px; } .framer-K1Wei.framer-72rtr7 > *, .framer-K1Wei .framer-2nh6bf > *, .framer-K1Wei .framer-1cypr1e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-K1Wei.framer-72rtr7 > :first-child, .framer-K1Wei .framer-17p1t5g > :first-child, .framer-K1Wei .framer-2nh6bf > :first-child, .framer-K1Wei .framer-u6ek4d > :first-child, .framer-K1Wei .framer-otdr4k > :first-child, .framer-K1Wei .framer-15nmp5o > :first-child, .framer-K1Wei .framer-1lixcdn > :first-child, .framer-K1Wei .framer-myne0r > :first-child, .framer-K1Wei .framer-afvc8v > :first-child, .framer-K1Wei .framer-1ei41tn > :first-child, .framer-K1Wei .framer-12840ax > :first-child, .framer-K1Wei .framer-16swk0t > :first-child, .framer-K1Wei .framer-1lazg7e > :first-child, .framer-K1Wei .framer-wdn978 > :first-child, .framer-K1Wei .framer-8dimaf > :first-child, .framer-K1Wei .framer-89fp21 > :first-child, .framer-K1Wei .framer-ozukrh > :first-child, .framer-K1Wei .framer-2555qx > :first-child, .framer-K1Wei .framer-w9qfld > :first-child, .framer-K1Wei .framer-84jqe9 > :first-child, .framer-K1Wei .framer-drhfbd > :first-child, .framer-K1Wei .framer-1t314ag > :first-child, .framer-K1Wei .framer-1ses859 > :first-child, .framer-K1Wei .framer-10z5e3s > :first-child, .framer-K1Wei .framer-z0x13z > :first-child, .framer-K1Wei .framer-1cypr1e > :first-child, .framer-K1Wei .framer-1vlqip2 > :first-child, .framer-K1Wei .framer-1nqn6hw > :first-child, .framer-K1Wei .framer-1l7ph67 > :first-child, .framer-K1Wei .framer-zibg62 > :first-child, .framer-K1Wei .framer-1ny3ekr > :first-child, .framer-K1Wei .framer-n7qs9w > :first-child, .framer-K1Wei .framer-1cb0e6x > :first-child, .framer-K1Wei .framer-1naoq13 > :first-child, .framer-K1Wei .framer-7tdn3b > :first-child, .framer-K1Wei .framer-1m6wnr3 > :first-child, .framer-K1Wei .framer-cd60mg > :first-child, .framer-K1Wei .framer-1q1zey > :first-child, .framer-K1Wei .framer-euvm8t > :first-child, .framer-K1Wei .framer-9a153q > :first-child, .framer-K1Wei .framer-eluh9q > :first-child, .framer-K1Wei .framer-fvlyw3 > :first-child, .framer-K1Wei .framer-1aklw9x > :first-child { margin-top: 0px; } .framer-K1Wei.framer-72rtr7 > :last-child, .framer-K1Wei .framer-17p1t5g > :last-child, .framer-K1Wei .framer-2nh6bf > :last-child, .framer-K1Wei .framer-u6ek4d > :last-child, .framer-K1Wei .framer-otdr4k > :last-child, .framer-K1Wei .framer-15nmp5o > :last-child, .framer-K1Wei .framer-1lixcdn > :last-child, .framer-K1Wei .framer-myne0r > :last-child, .framer-K1Wei .framer-afvc8v > :last-child, .framer-K1Wei .framer-1ei41tn > :last-child, .framer-K1Wei .framer-12840ax > :last-child, .framer-K1Wei .framer-16swk0t > :last-child, .framer-K1Wei .framer-1lazg7e > :last-child, .framer-K1Wei .framer-wdn978 > :last-child, .framer-K1Wei .framer-8dimaf > :last-child, .framer-K1Wei .framer-89fp21 > :last-child, .framer-K1Wei .framer-ozukrh > :last-child, .framer-K1Wei .framer-2555qx > :last-child, .framer-K1Wei .framer-w9qfld > :last-child, .framer-K1Wei .framer-84jqe9 > :last-child, .framer-K1Wei .framer-drhfbd > :last-child, .framer-K1Wei .framer-1t314ag > :last-child, .framer-K1Wei .framer-1ses859 > :last-child, .framer-K1Wei .framer-10z5e3s > :last-child, .framer-K1Wei .framer-z0x13z > :last-child, .framer-K1Wei .framer-1cypr1e > :last-child, .framer-K1Wei .framer-1vlqip2 > :last-child, .framer-K1Wei .framer-1nqn6hw > :last-child, .framer-K1Wei .framer-1l7ph67 > :last-child, .framer-K1Wei .framer-zibg62 > :last-child, .framer-K1Wei .framer-1ny3ekr > :last-child, .framer-K1Wei .framer-n7qs9w > :last-child, .framer-K1Wei .framer-1cb0e6x > :last-child, .framer-K1Wei .framer-1naoq13 > :last-child, .framer-K1Wei .framer-7tdn3b > :last-child, .framer-K1Wei .framer-1m6wnr3 > :last-child, .framer-K1Wei .framer-cd60mg > :last-child, .framer-K1Wei .framer-1q1zey > :last-child, .framer-K1Wei .framer-euvm8t > :last-child, .framer-K1Wei .framer-9a153q > :last-child, .framer-K1Wei .framer-eluh9q > :last-child, .framer-K1Wei .framer-fvlyw3 > :last-child, .framer-K1Wei .framer-1aklw9x > :last-child { margin-bottom: 0px; } .framer-K1Wei .framer-17p1t5g > *, .framer-K1Wei .framer-u6ek4d > *, .framer-K1Wei .framer-afvc8v > *, .framer-K1Wei .framer-12840ax > *, .framer-K1Wei .framer-8dimaf > *, .framer-K1Wei .framer-1ny3ekr > *, .framer-K1Wei .framer-1cb0e6x > *, .framer-K1Wei .framer-7tdn3b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-K1Wei .framer-otdr4k > *, .framer-K1Wei .framer-1t314ag > *, .framer-K1Wei .framer-1aklw9x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-K1Wei .framer-15nmp5o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-K1Wei .framer-1lixcdn > *, .framer-K1Wei .framer-myne0r > *, .framer-K1Wei .framer-wdn978 > *, .framer-K1Wei .framer-ozukrh > *, .framer-K1Wei .framer-w9qfld > *, .framer-K1Wei .framer-drhfbd > *, .framer-K1Wei .framer-1ses859 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-K1Wei .framer-wmcbou > *, .framer-K1Wei .framer-181geth > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-K1Wei .framer-wmcbou > :first-child, .framer-K1Wei .framer-pfy1ie > :first-child, .framer-K1Wei .framer-1597l37 > :first-child, .framer-K1Wei .framer-51g4df > :first-child, .framer-K1Wei .framer-abp8vn > :first-child, .framer-K1Wei .framer-n86pvh > :first-child, .framer-K1Wei .framer-11f5fhs > :first-child, .framer-K1Wei .framer-16hsk3y > :first-child, .framer-K1Wei .framer-181geth > :first-child, .framer-K1Wei .framer-1ah2au6 > :first-child, .framer-K1Wei .framer-aa66h5 > :first-child, .framer-K1Wei .framer-7qwjq > :first-child, .framer-K1Wei.framer-x2305c > :first-child, .framer-K1Wei .framer-1nd9hyh > :first-child, .framer-K1Wei .framer-dtjj2e > :first-child { margin-left: 0px; } .framer-K1Wei .framer-wmcbou > :last-child, .framer-K1Wei .framer-pfy1ie > :last-child, .framer-K1Wei .framer-1597l37 > :last-child, .framer-K1Wei .framer-51g4df > :last-child, .framer-K1Wei .framer-abp8vn > :last-child, .framer-K1Wei .framer-n86pvh > :last-child, .framer-K1Wei .framer-11f5fhs > :last-child, .framer-K1Wei .framer-16hsk3y > :last-child, .framer-K1Wei .framer-181geth > :last-child, .framer-K1Wei .framer-1ah2au6 > :last-child, .framer-K1Wei .framer-aa66h5 > :last-child, .framer-K1Wei .framer-7qwjq > :last-child, .framer-K1Wei.framer-x2305c > :last-child, .framer-K1Wei .framer-1nd9hyh > :last-child, .framer-K1Wei .framer-dtjj2e > :last-child { margin-right: 0px; } .framer-K1Wei .framer-pfy1ie > *, .framer-K1Wei .framer-1ah2au6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-K1Wei .framer-1ei41tn > *, .framer-K1Wei .framer-1lazg7e > *, .framer-K1Wei .framer-89fp21 > *, .framer-K1Wei .framer-2555qx > *, .framer-K1Wei .framer-84jqe9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-K1Wei .framer-16swk0t > *, .framer-K1Wei .framer-z0x13z > *, .framer-K1Wei .framer-cd60mg > *, .framer-K1Wei .framer-euvm8t > *, .framer-K1Wei .framer-eluh9q > *, .framer-K1Wei .framer-fvlyw3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-K1Wei .framer-1597l37 > *, .framer-K1Wei .framer-51g4df > *, .framer-K1Wei .framer-abp8vn > *, .framer-K1Wei .framer-n86pvh > *, .framer-K1Wei .framer-11f5fhs > *, .framer-K1Wei .framer-16hsk3y > *, .framer-K1Wei.framer-x2305c > *, .framer-K1Wei .framer-1nd9hyh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-K1Wei .framer-10z5e3s > *, .framer-K1Wei .framer-9a153q > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-K1Wei .framer-aa66h5 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-K1Wei .framer-7qwjq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-K1Wei .framer-1vlqip2 > *, .framer-K1Wei .framer-1q1zey > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-K1Wei .framer-1nqn6hw > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-K1Wei .framer-1l7ph67 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-K1Wei .framer-zibg62 > *, .framer-K1Wei .framer-n7qs9w > *, .framer-K1Wei .framer-1naoq13 > *, .framer-K1Wei .framer-1m6wnr3 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-K1Wei .framer-dtjj2e > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-K1Wei[data-border=\"true\"]::after, .framer-K1Wei [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; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-K1Wei.framer-72rtr7 { width: 1200px; } .framer-K1Wei .framer-2nh6bf { height: 1053px; } .framer-K1Wei .framer-u6ek4d, .framer-K1Wei .framer-16swk0t, .framer-K1Wei .framer-gb9et5, .framer-K1Wei .framer-1lazg7e, .framer-K1Wei .framer-ozukrh { order: 0; } .framer-K1Wei .framer-afvc8v, .framer-K1Wei .framer-89fp21 { order: 1; } .framer-K1Wei .framer-17emal8 { height: var(--framer-aspect-ratio-supported, 781px); } .framer-K1Wei .framer-6rrgkj { bottom: -126px; } .framer-K1Wei .framer-kxfnmv { gap: 16px; grid-template-columns: repeat(2, minmax(500px, 1fr)); height: min-content; order: 1; width: 100%; } .framer-K1Wei .framer-1qfnd98 { aspect-ratio: 2.19327731092437 / 1; height: var(--framer-aspect-ratio-supported, 210px); order: 1; width: 460px; } .framer-K1Wei .framer-2555qx { order: 2; } .framer-K1Wei .framer-fuxoas { aspect-ratio: 1.5333333333333334 / 1; height: var(--framer-aspect-ratio-supported, 300px); width: 460px; } .framer-K1Wei .framer-84jqe9 { order: 3; } .framer-K1Wei .framer-zkj5t2 { aspect-ratio: 2.1904761904761907 / 1; height: var(--framer-aspect-ratio-supported, 210px); width: 460px; } .framer-K1Wei .framer-1vlqip2 { max-width: 1100px; padding: 64px; } .framer-K1Wei .framer-o3sc9q { bottom: -45px; height: var(--framer-aspect-ratio-supported, 263px); left: -11px; right: -11px; top: unset; transform: unset; width: unset; } .framer-K1Wei .framer-z0hxl { bottom: -55px; right: -190px; } .framer-K1Wei .framer-1nqyh3g { height: var(--framer-aspect-ratio-supported, 313px); } .framer-K1Wei .framer-id4meu { overflow: hidden; } .framer-K1Wei .framer-a0kj3b { height: var(--framer-aspect-ratio-supported, 182px); right: 1px; } .framer-K1Wei .framer-1q1zey { max-width: 1100px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-K1Wei .framer-kxfnmv { gap: 0px; } .framer-K1Wei .framer-kxfnmv > *, .framer-K1Wei .framer-kxfnmv > :first-child, .framer-K1Wei .framer-kxfnmv > :last-child { margin: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-K1Wei.framer-72rtr7 { width: 810px; } .framer-K1Wei .framer-2nh6bf { height: 868px; } .framer-K1Wei .framer-afvc8v { height: 421px; } .framer-K1Wei .framer-17emal8 { height: var(--framer-aspect-ratio-supported, 140px); } .framer-K1Wei .framer-6rrgkj { bottom: -260px; } .framer-K1Wei .framer-kxfnmv { grid-template-columns: repeat(1, minmax(586px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; } .framer-K1Wei .framer-1lazg7e { gap: 92px; } .framer-K1Wei .framer-o3sc9q { bottom: 23px; width: var(--framer-aspect-ratio-supported, 199px); } .framer-K1Wei .framer-1naoq13 { height: 330px; } .framer-K1Wei .framer-1nqyh3g { bottom: var(--framer-aspect-ratio-supported, -17px); height: unset; left: 50%; transform: translateX(-50%); width: 110%; } .framer-K1Wei .framer-1m6wnr3 { height: 329px; } .framer-K1Wei .framer-11cgjwm { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-K1Wei .framer-dtjj2e { align-content: center; align-items: center; flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-K1Wei .framer-1lazg7e, .framer-K1Wei .framer-dtjj2e { gap: 0px; } .framer-K1Wei .framer-1lazg7e > * { margin: 0px; margin-bottom: calc(92px / 2); margin-top: calc(92px / 2); } .framer-K1Wei .framer-1lazg7e > :first-child, .framer-K1Wei .framer-dtjj2e > :first-child { margin-top: 0px; } .framer-K1Wei .framer-1lazg7e > :last-child, .framer-K1Wei .framer-dtjj2e > :last-child { margin-bottom: 0px; } .framer-K1Wei .framer-dtjj2e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 809px) { .framer-K1Wei.framer-72rtr7 { width: 390px; } .framer-K1Wei .framer-2nh6bf { height: 702px; } .framer-K1Wei .framer-u6ek4d { max-width: 300px; width: 300px; } .framer-K1Wei .framer-otdr4k { gap: 64px; max-width: 300px; z-index: 1; } .framer-K1Wei .framer-1lixcdn { gap: 15px; max-width: 300px; } .framer-K1Wei .framer-1lmdl06 { height: auto; } .framer-K1Wei .framer-afvc8v { height: 220px; } .framer-K1Wei .framer-17emal8 { height: var(--framer-aspect-ratio-supported, 140px); } .framer-K1Wei .framer-6rrgkj { bottom: -496px; } .framer-K1Wei .framer-12840ax { max-width: 450px; } .framer-K1Wei .framer-16swk0t, .framer-K1Wei .framer-1m7gdwy { width: 100%; } .framer-K1Wei .framer-gb9et5 { max-width: 300px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-K1Wei .framer-kxfnmv { grid-template-columns: repeat(1, minmax(586px, 1fr)); grid-template-rows: repeat(4, min-content); height: min-content; max-width: 100%; } .framer-K1Wei .framer-1lazg7e { gap: 48px; height: 290px; justify-self: center; max-width: 326px; order: 0; } .framer-K1Wei .framer-wdn978 { align-content: center; align-items: center; order: 0; width: 100%; } .framer-K1Wei .framer-9j3ik5 { width: 273px; } .framer-K1Wei .framer-8dimaf { max-width: 326px; order: 1; width: 100%; } .framer-K1Wei .framer-89fp21 { height: 290px; justify-self: center; max-width: 326px; order: 1; } .framer-K1Wei .framer-ozukrh { align-content: center; align-items: center; max-width: 300px; width: 100%; } .framer-K1Wei .framer-1h3jhev { max-width: 300px; width: 100%; } .framer-K1Wei .framer-1qfnd98 { aspect-ratio: 2.2 / 1; height: var(--framer-aspect-ratio-supported, 122px); max-width: 290px; width: 268px; } .framer-K1Wei .framer-2555qx { height: 290px; justify-self: center; max-width: 326px; order: 2; } .framer-K1Wei .framer-w9qfld { align-content: center; align-items: center; width: 100%; } .framer-K1Wei .framer-fuxoas { aspect-ratio: 1.74 / 1; height: var(--framer-aspect-ratio-supported, 169px); width: 294px; } .framer-K1Wei .framer-84jqe9 { height: 305px; justify-self: center; max-width: 326px; order: 3; } .framer-K1Wei .framer-drhfbd { align-content: center; align-items: center; max-width: 326px; width: 100%; } .framer-K1Wei .framer-1lnixl { max-width: 398px; order: 0; width: 100%; } .framer-K1Wei .framer-zkj5t2 { aspect-ratio: 2.2317596566523603 / 1; height: var(--framer-aspect-ratio-supported, 138px); width: 307px; } .framer-K1Wei .framer-z0x13z { max-width: 400px; width: 300px; } .framer-K1Wei .framer-8dfqq1, .framer-K1Wei .framer-1s2rkkr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-K1Wei .framer-aa66h5 { width: 321px; } .framer-K1Wei .framer-7qwjq { flex: 1 0 0px; height: 553px; width: 1px; } .framer-K1Wei .framer-f4m7wo-container { order: 0; } .framer-K1Wei .framer-8839ot { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-K1Wei .framer-n7qs9w, .framer-K1Wei .framer-1naoq13 { grid-column: auto / span 1; } .framer-K1Wei .framer-z0hxl { bottom: -36px; height: unset; left: -11px; right: -245px; top: -1px; } .framer-K1Wei .framer-1nqyh3g { bottom: var(--framer-aspect-ratio-supported, 5px); height: unset; left: -19px; top: 15px; width: 161%; } .framer-K1Wei .framer-a0kj3b { height: var(--framer-aspect-ratio-supported, 203px); left: -17px; right: -17px; top: 43%; transform: translateY(-50%); } .framer-K1Wei .framer-11cgjwm { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-K1Wei .framer-fvlyw3 { max-width: 400px; } .framer-K1Wei .framer-dtjj2e { align-content: center; align-items: center; flex-direction: column; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-K1Wei .framer-otdr4k, .framer-K1Wei .framer-1lixcdn, .framer-K1Wei .framer-1lazg7e, .framer-K1Wei .framer-dtjj2e { gap: 0px; } .framer-K1Wei .framer-otdr4k > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-K1Wei .framer-otdr4k > :first-child, .framer-K1Wei .framer-1lixcdn > :first-child, .framer-K1Wei .framer-1lazg7e > :first-child, .framer-K1Wei .framer-dtjj2e > :first-child { margin-top: 0px; } .framer-K1Wei .framer-otdr4k > :last-child, .framer-K1Wei .framer-1lixcdn > :last-child, .framer-K1Wei .framer-1lazg7e > :last-child, .framer-K1Wei .framer-dtjj2e > :last-child { margin-bottom: 0px; } .framer-K1Wei .framer-1lixcdn > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-K1Wei .framer-1lazg7e > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-K1Wei .framer-dtjj2e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6843\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"moeb6Ga9O\":{\"layout\":[\"fixed\",\"auto\"]},\"tss6pNfaI\":{\"layout\":[\"fixed\",\"auto\"]},\"aqZjLFOZ1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zISvybPEk\":{\"pattern\":\":zISvybPEk\",\"name\":\"features\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-K1Wei\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6843,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Gotham Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/qriciwHVbwFguSw3BTt4lAVXwzw.woff2\"},{family:\"Gotham Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/NNRBQxj51i7Lha5HIiKhS1M350.woff2\"}]},...NavFonts,...MainButtonFonts,...TickerFonts,...WordsCenterFonts,...ReviewFonts,...VideoFonts,...AIKitFeatureSmallFonts,...PricingFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"6843\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"moeb6Ga9O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tss6pNfaI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aqZjLFOZ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"zISvybPEk\\\":{\\\"pattern\\\":\\\":zISvybPEk\\\",\\\"name\\\":\\\"features\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "MainButtonFonts", "getFonts", "vuzf6ndaV_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerEoGzSnwGp", "withCSS", "EoGzSnwGp_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "companyLogo", "height", "id", "name1", "person", "review", "tITle", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Pz6VscMjK", "kZdEsLxaw", "Nrr9RBgq1", "qzGOgDnol", "IyXDzUuBm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramernKsWdfKeg", "withCSS", "nKsWdfKeg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "AIKitBadgeSmallFonts", "tfc9M2Qbh_default", "PhosphorControls", "getPropertyControls", "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", "badge", "badge1", "badge2", "description", "description1", "height", "icon", "icon1", "iconColor", "id", "padding", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_humanReadableVariantMap_props_variant", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eoEAnehP1", "qCV3eUx76", "OPJUBTb18", "u6K4JqA__", "MFt5Zs_AB", "SeJGf8Cjm", "UrJk386ze", "ui_AXJ1vG", "aZts8hcy1", "kxDdHTi1D", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerQL1G4s3q6", "withCSS", "QL1G4s3q6_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "textColor", "textSize", "title1", "title2", "title3", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "prRJoYo14", "zLT7JXi3G", "alrWq3yGr", "c_FQD8pO8", "dNmvBpuNV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearld3g9m", "args", "onAppear5ph67k", "onAppearfm8amb", "onAppear151hv3p", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramervWDaWbop8", "withCSS", "vWDaWbop8_default", "addPropertyControls", "ControlType", "addFonts", "NavFonts", "getFonts", "u2X49Z4ue_default", "MainButtonFonts", "vuzf6ndaV_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "WordsCenterFonts", "vWDaWbop8_default", "ReviewFonts", "nKsWdfKeg_default", "VideoFonts", "Video", "AIKitFeatureSmallFonts", "QL1G4s3q6_default", "PricingFonts", "EoGzSnwGp_default", "FooterFonts", "kaEp7u2I7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "transformTemplate2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "getLoadingLazyAtYPosition", "SVG", "l", "AnimatePresence", "Ga", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
