{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/c6szZLskeD6dc1euQNdA/DDdCJCN35vAFpLhedj3l/BgTuF5hVK.js", "ssg:https://framerusercontent.com/modules/9gNhvIZzMv9wnhOgy2tz/ZqrqTio7MspwV4RiQcHu/gEzAw2dB9.js", "ssg:https://framerusercontent.com/modules/yN6aiDEhu8X4d6txEG0c/ka1j4djwYmPtUAEBci8d/N0sZJWDCi.js", "ssg:https://framerusercontent.com/modules/pmgSNj8Nu4OvU1nCPVDb/n3F2k3EYFCrp9TNk1NKa/qw0MFgQPK.js", "ssg:https://framerusercontent.com/modules/8ngyCmj2N5pc1uZqsahT/cC7XuQ4mqlZj01E5eezd/ZtfWhssp1.js", "ssg:https://framerusercontent.com/modules/lkKrEw71GYREClrlxXV6/TIDkQvY4I9jvrfCmA1QJ/xjSJgchBm.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eiBP2HozPFPadbhBIq2q/r7TCPCd8JVvIGd1shMaE/D7_ghLSzJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6SFIGboj8bBQN9CsrOUi/1YeoHNJy6We4qlD0dLPK/LX7Y7e2ye.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/lSGjX0rVOGFV0ROTKVrJ/2CdZCor1NNHTq3Kxz8MQ/v6_GJUsmp.js\";const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-wV4x9\";const variantClassNames={wGqpiY_Gw:\"framer-v-wyjj2h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition1={bounce:.2,delay:.1,duration:.4,type:\"spring\"};const transition2={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 getProps=({bGColor,description,description1,height,id,number,title,width,...props})=>{return{...props,b7QMQsnoo:title??props.b7QMQsnoo??\"Automations created\",FWYaLA602:description??props.FWYaLA602??true,l2dvoejJd:description1??props.l2dvoejJd??\"Companies worldwide have built and deployed AI solutions that save thousands of development hours.\",QrpKZvhaK:number??props.QrpKZvhaK??\"10M+\",wsiICb0qb:bGColor??props.wsiICb0qb??\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,QrpKZvhaK,b7QMQsnoo,FWYaLA602,l2dvoejJd,wsiICb0qb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"wGqpiY_Gw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-wyjj2h\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"wGqpiY_Gw\",ref:refBinding,style:{backgroundColor:wsiICb0qb,borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pnf8rb\",\"data-framer-name\":\"Number + Type\",layoutDependency:layoutDependency,layoutId:\"Z_5G0N6Xf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l63uem\",\"data-styles-preset\":\"LX7Y7e2ye\",children:\"10M+\"})}),className:\"framer-7wit1g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HiwqTiZTj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:QrpKZvhaK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nllq54\",\"data-styles-preset\":\"D7_ghLSzJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-88bf4da0-2a34-4f9a-ac19-f556fdc54df1, rgb(168, 162, 158)))\"},children:\"Automations created\"})}),className:\"framer-10bfy42\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uV5K_RnDZ\",style:{\"--extracted-r6o4lv\":\"var(--token-88bf4da0-2a34-4f9a-ac19-f556fdc54df1, rgb(168, 162, 158))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:b7QMQsnoo,verticalAlignment:\"top\",withExternalLayout:true})]}),FWYaLA602&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a72ral\",\"data-styles-preset\":\"v6_GJUsmp\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"Companies worldwide have built and deployed AI solutions that save thousands of development hours.\"})}),className:\"framer-74hf8u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ep1dL0msX\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:l2dvoejJd,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wV4x9.framer-1dignq6, .framer-wV4x9 .framer-1dignq6 { display: block; }\",\".framer-wV4x9.framer-wyjj2h { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 344px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wV4x9 .framer-pnf8rb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wV4x9 .framer-7wit1g, .framer-wV4x9 .framer-10bfy42, .framer-wV4x9 .framer-74hf8u { 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-wV4x9.framer-wyjj2h, .framer-wV4x9 .framer-pnf8rb { gap: 0px; } .framer-wV4x9.framer-wyjj2h > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wV4x9.framer-wyjj2h > :first-child, .framer-wV4x9 .framer-pnf8rb > :first-child { margin-top: 0px; } .framer-wV4x9.framer-wyjj2h > :last-child, .framer-wV4x9 .framer-pnf8rb > :last-child { margin-bottom: 0px; } .framer-wV4x9 .framer-pnf8rb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 253\n * @framerIntrinsicWidth 344\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"QrpKZvhaK\":\"number\",\"b7QMQsnoo\":\"title\",\"FWYaLA602\":\"description\",\"l2dvoejJd\":\"description1\",\"wsiICb0qb\":\"bGColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBgTuF5hVK=withCSS(Component,css,\"framer-wV4x9\");export default FramerBgTuF5hVK;FramerBgTuF5hVK.displayName=\"Stats Card\";FramerBgTuF5hVK.defaultProps={height:253,width:344};addPropertyControls(FramerBgTuF5hVK,{QrpKZvhaK:{defaultValue:\"10M+\",displayTextArea:false,title:\"Number\",type:ControlType.String},b7QMQsnoo:{defaultValue:\"Automations created\",displayTextArea:false,title:\"Title\",type:ControlType.String},FWYaLA602:{defaultValue:true,title:\"Description?\",type:ControlType.Boolean},l2dvoejJd:{defaultValue:\"Companies worldwide have built and deployed AI solutions that save thousands of development hours.\",displayTextArea:false,title:\"Description\",type:ControlType.String},wsiICb0qb:{defaultValue:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",title:\"BG Color\",type:ControlType.Color}});addFonts(FramerBgTuF5hVK,[{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),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBgTuF5hVK\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"QrpKZvhaK\\\":\\\"number\\\",\\\"b7QMQsnoo\\\":\\\"title\\\",\\\"FWYaLA602\\\":\\\"description\\\",\\\"l2dvoejJd\\\":\\\"description1\\\",\\\"wsiICb0qb\\\":\\\"bGColor\\\"}\",\"framerIntrinsicHeight\":\"253\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"344\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BgTuF5hVK.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-Gqqjn\";const variantClassNames={G8zywRUf9:\"framer-v-1ovxkvc\"};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 getProps=({height,id,title,width,...props})=>{return{...props,ovJvdDBRs:title??props.ovJvdDBRs??\"Access to Emails\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ovJvdDBRs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"G8zywRUf9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ovxkvc\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"G8zywRUf9\",ref:refBinding,style:{backgroundColor:\"var(--token-674a61d0-92f3-4f5f-96ab-e9c4b993d828, rgb(240, 240, 239))\",borderBottomLeftRadius:228,borderBottomRightRadius:228,borderTopLeftRadius:228,borderTopRightRadius:228,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-162cc6f1-5b31-4c9d-a955-3d5570248c76, rgb(29, 31, 19)))\"},children:\"Access to Emails\"})}),className:\"framer-rn47n7\",\"data-framer-name\":\"Help With Cold Email\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"KSjL5hmFR\",style:{\"--extracted-r6o4lv\":\"var(--token-162cc6f1-5b31-4c9d-a955-3d5570248c76, rgb(29, 31, 19))\",\"--framer-paragraph-spacing\":\"0px\"},text:ovJvdDBRs,verticalAlignment:\"center\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Gqqjn.framer-jopwc1, .framer-Gqqjn .framer-jopwc1 { display: block; }\",\".framer-Gqqjn.framer-1ovxkvc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 24px 16px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Gqqjn .framer-rn47n7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Gqqjn.framer-1ovxkvc { gap: 0px; } .framer-Gqqjn.framer-1ovxkvc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Gqqjn.framer-1ovxkvc > :first-child { margin-top: 0px; } .framer-Gqqjn.framer-1ovxkvc > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 177.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ovJvdDBRs\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramergEzAw2dB9=withCSS(Component,css,\"framer-Gqqjn\");export default FramergEzAw2dB9;FramergEzAw2dB9.displayName=\"Elements / Advantage\";FramergEzAw2dB9.defaultProps={height:60,width:177.5};addPropertyControls(FramergEzAw2dB9,{ovJvdDBRs:{defaultValue:\"Access to Emails\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramergEzAw2dB9,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergEzAw2dB9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"177.5\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ovJvdDBRs\\\":\\\"title\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"60\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gEzAw2dB9.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/lSGjX0rVOGFV0ROTKVrJ/2CdZCor1NNHTq3Kxz8MQ/v6_GJUsmp.js\";const cycleOrder=[\"x5NxuPTBv\",\"bgRMFqNF1\"];const serializationHash=\"framer-CkShI\";const variantClassNames={bgRMFqNF1:\"framer-v-lvh8bh\",x5NxuPTBv:\"framer-v-144g6x5\"};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={\"Bullet Default\":\"x5NxuPTBv\",\"Bullet Variant\":\"bgRMFqNF1\"};const getProps=({height,icon,id,text,width,...props})=>{return{...props,FcmrTn57Q:icon??props.FcmrTn57Q??\"check\",variant:humanReadableVariantMap[props.variant]??props.variant??\"x5NxuPTBv\",Y76q34YJM:text??props.Y76q34YJM??\"Support for multiple AI/ML frameworks and models\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Y76q34YJM,FcmrTn57Q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"x5NxuPTBv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"bgRMFqNF1\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"bgRMFqNF1\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({bgRMFqNF1:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-144g6x5\",className,classNames),\"data-framer-name\":\"Bullet Default\",layoutDependency:layoutDependency,layoutId:\"x5NxuPTBv\",ref:refBinding,style:{...style},...addPropertyOverrides({bgRMFqNF1:{\"data-framer-name\":\"Bullet Variant\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ajxhmi\",\"data-framer-name\":\"Bullet Icon\",layoutDependency:layoutDependency,layoutId:\"ZPds3FXpY\",style:{backgroundColor:\"var(--token-e4009477-4d34-493c-98dc-0868b025e925, rgb(82, 99, 225))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgU3ltYm9scyBSb3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Material Symbols Rounded\", monospace',\"--framer-font-open-type-features\":\"'cv09' on, 'cv03' on, 'cv04' on, 'cv05' on, 'cv06' on, 'cv11' on, 'dnom' on, 'frac' on, 'ss01' on, 'ss03' on\",\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255)))\"},children:\"check\"})}),className:\"framer-utlau1\",fonts:[\"GF;Material Symbols Rounded-regular\"],layoutDependency:layoutDependency,layoutId:\"iaQJ4yQsP\",style:{\"--extracted-r6o4lv\":\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FcmrTn57Q,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a72ral\",\"data-styles-preset\":\"v6_GJUsmp\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"Support for multiple AI/ML frameworks and models\"})}),className:\"framer-15cxqr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C85ORw7_9\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Y76q34YJM,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fux04k\",\"data-framer-name\":\"Bullet Icon\",layoutDependency:layoutDependency,layoutId:\"PUEwHfjvF\",style:{backgroundColor:\"var(--token-e4009477-4d34-493c-98dc-0868b025e925, rgb(82, 99, 225))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgU3ltYm9scyBSb3VuZGVkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Material Symbols Rounded\", monospace',\"--framer-font-open-type-features\":\"'cv09' on, 'cv03' on, 'cv04' on, 'cv05' on, 'cv06' on, 'cv11' on, 'dnom' on, 'frac' on, 'ss01' on, 'ss03' on\",\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255)))\"},children:\"check\"})}),className:\"framer-mawz0j\",fonts:[\"GF;Material Symbols Rounded-regular\"],layoutDependency:layoutDependency,layoutId:\"Sdk0TWztG\",style:{\"--extracted-r6o4lv\":\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FcmrTn57Q,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a72ral\",\"data-styles-preset\":\"v6_GJUsmp\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"One-click deployment to any environment\"})}),className:\"framer-1m1359f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UJVxc48Dn\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Y76q34YJM,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CkShI.framer-zfb3ib, .framer-CkShI .framer-zfb3ib { display: block; }\",\".framer-CkShI.framer-144g6x5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 486px; }\",\".framer-CkShI .framer-1ajxhmi, .framer-CkShI .framer-fux04k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CkShI .framer-utlau1, .framer-CkShI .framer-mawz0j { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CkShI .framer-15cxqr, .framer-CkShI .framer-1m1359f { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CkShI.framer-144g6x5, .framer-CkShI .framer-1ajxhmi, .framer-CkShI .framer-fux04k { gap: 0px; } .framer-CkShI.framer-144g6x5 > *, .framer-CkShI .framer-1ajxhmi > *, .framer-CkShI .framer-fux04k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CkShI.framer-144g6x5 > :first-child, .framer-CkShI .framer-1ajxhmi > :first-child, .framer-CkShI .framer-fux04k > :first-child { margin-left: 0px; } .framer-CkShI.framer-144g6x5 > :last-child, .framer-CkShI .framer-1ajxhmi > :last-child, .framer-CkShI .framer-fux04k > :last-child { margin-right: 0px; } }\",\".framer-CkShI.framer-v-lvh8bh.framer-144g6x5 { gap: 14px; padding: 12px 0px 12px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CkShI.framer-v-lvh8bh.framer-144g6x5 { gap: 0px; } .framer-CkShI.framer-v-lvh8bh.framer-144g6x5 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-CkShI.framer-v-lvh8bh.framer-144g6x5 > :first-child { margin-left: 0px; } .framer-CkShI.framer-v-lvh8bh.framer-144g6x5 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 486\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bgRMFqNF1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Y76q34YJM\":\"text\",\"FcmrTn57Q\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerN0sZJWDCi=withCSS(Component,css,\"framer-CkShI\");export default FramerN0sZJWDCi;FramerN0sZJWDCi.displayName=\"Bullet List\";FramerN0sZJWDCi.defaultProps={height:40,width:486};addPropertyControls(FramerN0sZJWDCi,{variant:{options:[\"x5NxuPTBv\",\"bgRMFqNF1\"],optionTitles:[\"Bullet Default\",\"Bullet Variant\"],title:\"Variant\",type:ControlType.Enum},Y76q34YJM:{defaultValue:\"Support for multiple AI/ML frameworks and models\",displayTextArea:false,title:\"Text\",type:ControlType.String},FcmrTn57Q:{defaultValue:\"check\",displayTextArea:false,title:\"Icon\",type:ControlType.String}});addFonts(FramerN0sZJWDCi,[{explicitInter:true,fonts:[{family:\"Material Symbols Rounded\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/materialsymbolsrounded/v230/syl0-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjpZIvDmUSVOK7BDB_Qb9vUSzq3wzLK-P0J-V_Zs-QtQth3-jOcbTCVpeRL2w5rwZu2rIelXxeJKJBjAa8.woff2\",weight:\"400\"},{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN0sZJWDCi\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bgRMFqNF1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"40\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Y76q34YJM\\\":\\\"text\\\",\\\"FcmrTn57Q\\\":\\\"icon\\\"}\",\"framerIntrinsicWidth\":\"486\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N0sZJWDCi.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7BY9fKyzaCHTQ4yHmR2J/NUav1MUVVwnGCBq67C3l/sng2bpYBJ.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"lrBOgCO67\",\"XkCwyvF7W\",\"KEn1VElI9\",\"pNGqM5tP4\"];const serializationHash=\"framer-JTTOu\";const variantClassNames={KEn1VElI9:\"framer-v-1h14uom\",lrBOgCO67:\"framer-v-r8y15r\",pNGqM5tP4:\"framer-v-3myc0x\",XkCwyvF7W:\"framer-v-1g58t6f\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2,y:-4};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={\"Widget 01\":\"lrBOgCO67\",\"Widget 02\":\"XkCwyvF7W\",\"Widget 03\":\"KEn1VElI9\",\"Widget 04\":\"pNGqM5tP4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lrBOgCO67\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lrBOgCO67\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"XkCwyvF7W\",\"KEn1VElI9\",\"pNGqM5tP4\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"XkCwyvF7W\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"KEn1VElI9\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"pNGqM5tP4\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-r8y15r\",className,classNames),\"data-framer-name\":\"Widget 01\",layoutDependency:layoutDependency,layoutId:\"lrBOgCO67\",ref:refBinding,style:{backdropFilter:\"blur(15px)\",background:\"linear-gradient(180deg, rgba(240, 240, 239, 0.9) 0%, rgba(248, 248, 247, 0.7) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"inset 0px -2px 3px 0px rgba(67, 72, 84, 0.15), inset 0px 0px 1px 0px rgba(103, 108, 120, 0.13), 0px 12px 20px 0px rgba(15, 23, 41, 0.1)\",WebkitBackdropFilter:\"blur(15px)\",...style},...addPropertyOverrides({KEn1VElI9:{\"data-framer-name\":\"Widget 03\"},pNGqM5tP4:{\"data-framer-name\":\"Widget 04\"},XkCwyvF7W:{\"data-framer-name\":\"Widget 02\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e0vx0c\",\"data-framer-name\":\"widget\",layoutDependency:layoutDependency,layoutId:\"rzlqqlKO6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"Conversion\"})}),className:\"framer-1qdthvp\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"B05ll2iiv\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss02' on, 'ss03' on, 'cv01' on, 'cv03' on, 'cv04' on\",\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"2.3%\"})}),className:\"framer-ee4x1v\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ong_RXxXR\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-136kec\",\"data-styles-preset\":\"sng2bpYBJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122)))\"},children:\"Today\"})}),className:\"framer-lettwo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EJqrXtGSP\",style:{\"--extracted-r6o4lv\":\"var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-136kec\",\"data-styles-preset\":\"sng2bpYBJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"App\"})}),className:\"framer-cl9u4s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZLPLNVG6l\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-136kec\",\"data-styles-preset\":\"sng2bpYBJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"Mweb\"})}),className:\"framer-1hz6lh8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PaixQI0Vh\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-136kec\",\"data-styles-preset\":\"sng2bpYBJ\",children:\"Desktop\"})}),className:\"framer-1hu4k5u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FGgqAvAb0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15egaa1\",\"data-framer-name\":\"bar\",layoutDependency:layoutDependency,layoutId:\"RETYk_jeY\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wezcyg\",\"data-framer-name\":\"base\",layoutDependency:layoutDependency,layoutId:\"YyzMvu69g\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-65udvb\",\"data-framer-name\":\"filled\",layoutDependency:layoutDependency,layoutId:\"qS_Mqhwd1\",style:{background:\"linear-gradient(17deg, rgb(99, 102, 241) 0%, rgb(153, 147, 250) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0,0,0.25)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-esr2u\",\"data-framer-name\":\"bar\",layoutDependency:layoutDependency,layoutId:\"hMLbjnajB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bg6kxo\",\"data-framer-name\":\"base\",layoutDependency:layoutDependency,layoutId:\"Qc8hMvxi7\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gw4iyf\",\"data-framer-name\":\"filled\",layoutDependency:layoutDependency,layoutId:\"sbgUoHnMH\",style:{background:\"linear-gradient(17deg, rgb(99, 102, 241) 0%, rgb(153, 147, 250) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0,0,0.25)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dxcwq3\",\"data-framer-name\":\"bar\",layoutDependency:layoutDependency,layoutId:\"RRoiKrk5g\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ggiowo\",\"data-framer-name\":\"base\",layoutDependency:layoutDependency,layoutId:\"LyMQdIrq1\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dp1n5l\",\"data-framer-name\":\"filled\",layoutDependency:layoutDependency,layoutId:\"GFhT1pjwC\",style:{background:\"linear-gradient(17deg, rgb(99, 102, 241) 0%, rgb(153, 147, 250) 100%)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0,0,0.25)\"}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a2yuat\",\"data-framer-name\":\"Widget\",layoutDependency:layoutDependency,layoutId:\"KYpMXL18r\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"Page Metrics\"})}),className:\"framer-gxz33p\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"XtEYYfXDR\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yi2vth\",layoutDependency:layoutDependency,layoutId:\"gpjcbyF8M\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-49gujz\",\"data-framer-name\":\"header\",layoutDependency:layoutDependency,layoutId:\"XxNIaTSg6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"Performance\"})}),className:\"framer-1ixvbg1\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"l86i0VafK\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"100%\"})}),className:\"framer-1ihtp8n\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"RFGJR1z91\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mqhudc\",\"data-framer-name\":\"progress-bar\",layoutDependency:layoutDependency,layoutId:\"f2EpgLWiL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cd6hff\",layoutDependency:layoutDependency,layoutId:\"GN3b21RGv\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uwiuvy\",layoutDependency:layoutDependency,layoutId:\"xfw2PJY39\",style:{background:\"linear-gradient(104deg, rgb(99, 102, 241) 0%, rgb(153, 147, 250) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0,0,0.25)\"}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d6ugba\",\"data-framer-name\":\"header\",layoutDependency:layoutDependency,layoutId:\"RUfvzaJYm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"SEO\"})}),className:\"framer-ge33pz\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Q90wDrXnu\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"100%\"})}),className:\"framer-1c3huzt\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"cr3m3kqFR\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-161bblm\",\"data-framer-name\":\"progress-bar\",layoutDependency:layoutDependency,layoutId:\"nnL9sZ2Oz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p5wsad\",layoutDependency:layoutDependency,layoutId:\"suaPwMCOR\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b9d9is\",layoutDependency:layoutDependency,layoutId:\"k1rlIC89Y\",style:{background:\"linear-gradient(104deg, rgb(99, 102, 241) 0%, rgb(153, 147, 250) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0,0,0.25)\"}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pat2p0\",\"data-framer-name\":\"progress-bar\",layoutDependency:layoutDependency,layoutId:\"jPg4fyRAu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tg634h\",layoutDependency:layoutDependency,layoutId:\"lo1PSbWeU\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ymm0nq\",layoutDependency:layoutDependency,layoutId:\"AGw6dlXWU\",style:{background:\"linear-gradient(104deg, rgb(99, 102, 241) 0%, rgb(153, 147, 250) 100%)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"inset 0px 1px 1px 0px rgba(255, 255, 255, 0.2), inset 0px -1px 1px 0px rgba(0,0,0,0.25)\"}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ll7vrv\",\"data-framer-name\":\"header\",layoutDependency:layoutDependency,layoutId:\"akos1OXCp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"Accessibility\"})}),className:\"framer-112pmos\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"issYQLLXO\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82)))\"},children:\"100%\"})}),className:\"framer-19tf3oq\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"xxyROrDsM\",style:{\"--extracted-r6o4lv\":\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l75q0w-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JkCihqaxk-container\",nodeId:\"JkCihqaxk\",rendersWithMotion:true,scopeId:\"qw0MFgQPK\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-db4af5a5-24a9-45de-abcf-2c2a3687fe02, rgb(82, 82, 82))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThree\",id:\"JkCihqaxk\",layoutId:\"JkCihqaxk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gozmef\",\"data-framer-name\":\"Widget\",layoutDependency:layoutDependency,layoutId:\"sK5ytgckj\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"1:1 Experiences\"})}),className:\"framer-3smq8d\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"YHn27Y6_t\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gklwsx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"D3HyZNOWD-container\",nodeId:\"D3HyZNOWD\",rendersWithMotion:true,scopeId:\"qw0MFgQPK\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-88bf4da0-2a34-4f9a-ac19-f556fdc54df1, rgb(168, 162, 158))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleUpRight\",id:\"D3HyZNOWD\",layoutId:\"D3HyZNOWD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-119vumc\",layoutDependency:layoutDependency,layoutId:\"IeXMFflhW\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19gneyz\",layoutDependency:layoutDependency,layoutId:\"w4FKfQHyo\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wfijtk\",layoutDependency:layoutDependency,layoutId:\"ib3dFT1Zp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"High Intent?\"})}),className:\"framer-16yrsjv\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"zXrYqPyzu\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18fvmnr\",\"data-framer-name\":\"Elements/Avatar\",layoutDependency:layoutDependency,layoutId:\"UjmmWvfhh\",style:{background:\"linear-gradient(180deg, rgb(99, 102, 241) 0%, rgb(79, 70, 229) 100%)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2)\"},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ddzv5x-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"cHDmQABrz-container\",nodeId:\"cHDmQABrz\",rendersWithMotion:true,scopeId:\"qw0MFgQPK\",transformTemplate:transformTemplate3,children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"cHDmQABrz\",layoutId:\"cHDmQABrz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/mHcFMN4S2RovGHXHcpFT0mbgg4.jpeg\"},className:\"framer-1yq5sdc\",\"data-border\":true,\"data-framer-name\":\"Elements/Avatar\",layoutDependency:layoutDependency,layoutId:\"JRyeZ0_Ow\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},...addPropertyOverrides({KEn1VElI9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||217)-0-217)/2+0+0)+217-152+0+0+4),pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/mHcFMN4S2RovGHXHcpFT0mbgg4.jpeg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mrlbbj\",layoutDependency:layoutDependency,layoutId:\"VKRNg3uva\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ycpuf\",layoutDependency:layoutDependency,layoutId:\"s9v1lGT2J\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"1st Purchase?\"})}),className:\"framer-l7sc1j\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"BA26kZFIp\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ov6rja\",\"data-border\":true,\"data-framer-name\":\"Elements/Avatar\",layoutDependency:layoutDependency,layoutId:\"mjeUhFvde\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate2,whileHover:animation})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/D4YiRDSBEHzYFjok481u1WGaFwo.jpeg\"},className:\"framer-19w9gmc\",\"data-border\":true,\"data-framer-name\":\"Elements/Avatar\",layoutDependency:layoutDependency,layoutId:\"VeST3vS3T\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},...addPropertyOverrides({KEn1VElI9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||217)-0-217)/2+0+0)+217-152+0+46+4),pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/D4YiRDSBEHzYFjok481u1WGaFwo.jpeg\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-thcv5d\",layoutDependency:layoutDependency,layoutId:\"e5_x3J5Z9\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-90i6bo\",layoutDependency:layoutDependency,layoutId:\"lTneM0LOJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"Loyalty Member?\"})}),className:\"framer-1wjlvyv\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rE2d_MTKI\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11jgygm\",\"data-border\":true,\"data-framer-name\":\"Elements/Avatar\",layoutDependency:layoutDependency,layoutId:\"ZBbcIDEV_\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0.3)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate2,whileHover:animation})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/GF0gNvCewyWRIQCY50BC8LLMg.jpeg\"},className:\"framer-170ohqa\",\"data-border\":true,\"data-framer-name\":\"Elements/Avatar\",layoutDependency:layoutDependency,layoutId:\"sHhG2uH4G\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},...addPropertyOverrides({KEn1VElI9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||217)-0-217)/2+0+0)+217-152+0+92+4),pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/GF0gNvCewyWRIQCY50BC8LLMg.jpeg\"}}},baseVariant,gestureVariant)})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjmulk\",\"data-framer-name\":\"Widget\",layoutDependency:layoutDependency,layoutId:\"yZBRHMiGp\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"Deploy\"})}),className:\"framer-1888a8h\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"dor9vis81\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10vod0f\",layoutDependency:layoutDependency,layoutId:\"hCJk796Ej\",style:{backgroundColor:\"var(--token-e95330dd-7566-436b-a5d6-f5d23e189d5b, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12j3c6x\",layoutDependency:layoutDependency,layoutId:\"PX4_1fbGr\",style:{backgroundColor:\"rgb(75, 125, 246)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ariclb\",layoutDependency:layoutDependency,layoutId:\"naIc3LsS3\",style:{backgroundColor:\"rgb(207, 148, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13nx6zg\",layoutDependency:layoutDependency,layoutId:\"QK1ktiTZh\",style:{backgroundColor:\"rgb(128, 232, 204)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2crenk\",layoutDependency:layoutDependency,layoutId:\"jKRdTcO9r\",style:{backgroundColor:\"rgb(237, 121, 167)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ievup\",\"data-border\":true,\"data-framer-name\":\"row\",layoutDependency:layoutDependency,layoutId:\"Gm9_w7VA8\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cb366456-65ad-465e-adda-93cf5e6deb2c, rgb(226, 223, 223))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14n3xll\",layoutDependency:layoutDependency,layoutId:\"Hx2prcmsP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kvck0g\",layoutDependency:layoutDependency,layoutId:\"BVbmYSJIm\",style:{backgroundColor:\"rgb(75, 125, 246)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"LLM StandT2\"})}),className:\"framer-1dnbmq1\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"JNvanVErE\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"1,560\"})}),className:\"framer-cqshaq\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wdo0lviCe\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pxnxlh\",layoutDependency:layoutDependency,layoutId:\"aRNSeoAF8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-102kbnv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qY2wRXqwk-container\",nodeId:\"qY2wRXqwk\",rendersWithMotion:true,scopeId:\"qw0MFgQPK\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(102, 102, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretUp\",id:\"qY2wRXqwk\",layoutId:\"qY2wRXqwk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122)))\"},children:\"+19%\"})}),className:\"framer-oaevhb\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"LRANryEzj\",style:{\"--extracted-r6o4lv\":\"var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mi5l4q\",\"data-border\":true,\"data-framer-name\":\"row\",layoutDependency:layoutDependency,layoutId:\"lyJKzQutS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cb366456-65ad-465e-adda-93cf5e6deb2c, rgb(226, 223, 223))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yfsr1p\",layoutDependency:layoutDependency,layoutId:\"V2T2ZFMJ0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xbtart\",layoutDependency:layoutDependency,layoutId:\"jKKuQdG_G\",style:{backgroundColor:\"rgb(207, 148, 252)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"LLama 1.2\"})}),className:\"framer-1kdc0fs\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kvTe5Zzax\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"1,560\"})}),className:\"framer-1bufgx9\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"udkWKB2oa\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ui2hnc\",layoutDependency:layoutDependency,layoutId:\"M1ASYs6xT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x4jwv0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pLyQOAlNV-container\",nodeId:\"pLyQOAlNV\",rendersWithMotion:true,scopeId:\"qw0MFgQPK\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(102, 102, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretUp\",id:\"pLyQOAlNV\",layoutId:\"pLyQOAlNV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122)))\"},children:\"+11%\"})}),className:\"framer-jxalrb\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"XFHeWyDMA\",style:{\"--extracted-r6o4lv\":\"var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i3g4qp\",\"data-border\":true,\"data-framer-name\":\"row\",layoutDependency:layoutDependency,layoutId:\"UJ5NgwuwF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cb366456-65ad-465e-adda-93cf5e6deb2c, rgb(226, 223, 223))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-akg9vt\",layoutDependency:layoutDependency,layoutId:\"s5rDnwsiI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bm8q86\",layoutDependency:layoutDependency,layoutId:\"EWAGVkSLK\",style:{backgroundColor:\"rgb(142, 233, 208)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"Organic\"})}),className:\"framer-1llrzcn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"moIh5YYw0\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23)))\"},children:\"1,560\"})}),className:\"framer-kwbcuy\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"i78wyM0tR\",style:{\"--extracted-r6o4lv\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wugi49\",layoutDependency:layoutDependency,layoutId:\"R57klDkIn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m6380d-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sApr1PAlH-container\",nodeId:\"sApr1PAlH\",rendersWithMotion:true,scopeId:\"qw0MFgQPK\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(102, 102, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretUp\",id:\"sApr1PAlH\",layoutId:\"sApr1PAlH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122)))\"},children:\"+45%\"})}),className:\"framer-1m9vy8\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"pNeXUMjsU\",style:{\"--extracted-r6o4lv\":\"var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3em3wu\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Y_Uw2nYVX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-5200a1d1-e58c-409e-8cbf-62eaa9115c71, rgb(202, 196, 196))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122)))\"},children:\"This week\"})}),className:\"framer-1yulcqa\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"j773vjOEQ\",style:{\"--extracted-r6o4lv\":\"var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fwsv53-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"spJSsCaPS-container\",nodeId:\"spJSsCaPS\",rendersWithMotion:true,scopeId:\"qw0MFgQPK\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(122, 122, 122))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"spJSsCaPS\",layoutId:\"spJSsCaPS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JTTOu.framer-gnktkn, .framer-JTTOu .framer-gnktkn { display: block; }\",\".framer-JTTOu.framer-r8y15r { height: 150px; overflow: hidden; position: relative; width: 292px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-e0vx0c { flex: none; height: 111px; left: calc(49.657534246575366% - 251px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 111px / 2); width: 251px; }\",\".framer-JTTOu .framer-1qdthvp { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-ee4x1v { bottom: 21px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-lettwo { bottom: 1px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-cl9u4s { bottom: 1px; flex: none; height: auto; position: absolute; right: 8px; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-1hz6lh8 { bottom: 1px; flex: none; height: auto; position: absolute; right: 50px; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-1hu4k5u { bottom: 1px; flex: none; height: auto; left: 54%; position: absolute; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-15egaa1 { flex: none; height: 90px; overflow: hidden; position: absolute; right: 8px; top: 0px; width: 22px; }\",\".framer-JTTOu .framer-wezcyg, .framer-JTTOu .framer-1bg6kxo { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-65udvb { bottom: 0px; flex: none; height: 79px; left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-esr2u { flex: none; height: 90px; overflow: hidden; position: absolute; right: 56px; top: 0px; width: 22px; }\",\".framer-JTTOu .framer-gw4iyf { bottom: 0px; flex: none; height: 59px; left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-dxcwq3 { flex: none; height: 90px; left: calc(54.18326693227093% - 22px / 2); overflow: hidden; position: absolute; top: 0px; width: 22px; }\",\".framer-JTTOu .framer-1ggiowo { bottom: 0px; flex: none; left: -1px; overflow: hidden; position: absolute; right: 1px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-1dp1n5l { bottom: 0px; flex: none; height: 38px; left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-a2yuat { bottom: -1px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JTTOu .framer-gxz33p, .framer-JTTOu .framer-3smq8d { flex: none; height: auto; left: 20px; position: absolute; top: 20px; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-yi2vth { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 17px; overflow: visible; padding: 0px; position: absolute; top: 83px; width: 94%; }\",\".framer-JTTOu .framer-49gujz { flex: none; height: 26px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JTTOu .framer-1ixvbg1, .framer-JTTOu .framer-ge33pz, .framer-JTTOu .framer-112pmos { flex: none; height: auto; left: 0px; position: absolute; top: 4px; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-1ihtp8n, .framer-JTTOu .framer-1c3huzt, .framer-JTTOu .framer-19tf3oq { flex: none; height: auto; left: 215px; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-1mqhudc { flex: none; height: 10px; overflow: hidden; position: relative; width: 100%; }\",\".framer-JTTOu .framer-1cd6hff, .framer-JTTOu .framer-1uwiuvy, .framer-JTTOu .framer-1p5wsad, .framer-JTTOu .framer-1b9d9is, .framer-JTTOu .framer-1tg634h, .framer-JTTOu .framer-ymm0nq { bottom: 0px; flex: none; left: 1px; overflow: hidden; position: absolute; top: 0px; width: 248px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-1d6ugba, .framer-JTTOu .framer-ll7vrv { flex: none; height: 26px; overflow: hidden; position: relative; width: 261px; }\",\".framer-JTTOu .framer-161bblm, .framer-JTTOu .framer-1pat2p0 { flex: none; height: 10px; overflow: hidden; position: relative; width: 261px; }\",\".framer-JTTOu .framer-l75q0w-container { aspect-ratio: 0.9310344827586207 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 240px; position: absolute; top: 16px; width: 23px; }\",\".framer-JTTOu .framer-gozmef { bottom: -67px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 250px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JTTOu .framer-gklwsx-container { flex: none; height: 29px; position: absolute; right: 12px; top: 12px; width: 23px; }\",\".framer-JTTOu .framer-119vumc { align-content: center; align-items: center; bottom: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; width: 100%; }\",\".framer-JTTOu .framer-19gneyz, .framer-JTTOu .framer-mrlbbj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 6px 4px 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-wfijtk, .framer-JTTOu .framer-12ycpuf { flex: none; height: 37px; overflow: hidden; position: relative; width: 129px; }\",\".framer-JTTOu .framer-16yrsjv, .framer-JTTOu .framer-l7sc1j, .framer-JTTOu .framer-1wjlvyv { flex: none; height: auto; left: 32px; position: absolute; top: 49%; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-18fvmnr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 0px; overflow: visible; position: absolute; top: 49%; width: 22px; z-index: 1; }\",\".framer-JTTOu .framer-1ddzv5x-container { aspect-ratio: 0.9310344827586207 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); left: 50%; position: absolute; top: 55%; width: 15px; }\",\".framer-JTTOu .framer-1yq5sdc, .framer-JTTOu .framer-19w9gmc, .framer-JTTOu .framer-170ohqa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 32px; z-index: 1; }\",\".framer-JTTOu .framer-1ov6rja, .framer-JTTOu .framer-11jgygm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); left: 0px; overflow: visible; position: absolute; top: 49%; width: 22px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-JTTOu .framer-thcv5d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 6px 4px 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-90i6bo { flex: none; height: 37px; overflow: hidden; position: relative; width: 141px; }\",\".framer-JTTOu .framer-1xjmulk { bottom: -64px; flex: none; height: 213px; overflow: hidden; position: absolute; right: 16px; width: 276px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JTTOu .framer-1888a8h { flex: none; height: auto; left: 22px; position: absolute; top: 22px; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-10vod0f { flex: none; height: 6px; left: 22px; overflow: hidden; position: absolute; right: 21px; top: 70px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-12j3c6x { flex: none; height: 6px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 75px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-1ariclb { flex: none; height: 6px; left: 70px; overflow: hidden; position: absolute; top: 0px; width: 44px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-13nx6zg { flex: none; height: 6px; left: 138px; overflow: hidden; position: absolute; top: 0px; width: 95px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-2crenk { flex: none; height: 6px; overflow: hidden; position: absolute; right: 91px; top: 0px; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-9ievup { align-content: center; align-items: center; bottom: 86px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 22px; overflow: hidden; padding: 0px 0px 8px 0px; position: absolute; right: 22px; }\",\".framer-JTTOu .framer-14n3xll, .framer-JTTOu .framer-yfsr1p, .framer-JTTOu .framer-akg9vt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-JTTOu .framer-1kvck0g, .framer-JTTOu .framer-1xbtart, .framer-JTTOu .framer-1bm8q86 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); overflow: hidden; position: relative; width: 6px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-1dnbmq1, .framer-JTTOu .framer-1kdc0fs { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 78px; word-break: break-word; word-wrap: break-word; }\",\".framer-JTTOu .framer-cqshaq, .framer-JTTOu .framer-oaevhb, .framer-JTTOu .framer-1bufgx9, .framer-JTTOu .framer-jxalrb, .framer-JTTOu .framer-kwbcuy, .framer-JTTOu .framer-1m9vy8, .framer-JTTOu .framer-1yulcqa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JTTOu .framer-1pxnxlh, .framer-JTTOu .framer-ui2hnc, .framer-JTTOu .framer-wugi49 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-JTTOu .framer-102kbnv-container, .framer-JTTOu .framer-1x4jwv0-container, .framer-JTTOu .framer-1m6380d-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-JTTOu .framer-1mi5l4q { align-content: center; align-items: center; bottom: 56px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 22px; overflow: hidden; padding: 0px 0px 8px 0px; position: absolute; right: 22px; }\",\".framer-JTTOu .framer-1i3g4qp { align-content: center; align-items: center; bottom: 25px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 22px; overflow: hidden; padding: 0px 0px 8px 0px; position: absolute; right: 22px; }\",\".framer-JTTOu .framer-1llrzcn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80px; word-break: break-word; word-wrap: break-word; }\",\".framer-JTTOu .framer-3em3wu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 10px 8px 10px; position: absolute; right: 12px; top: 14px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-JTTOu .framer-fwsv53-container { flex: none; height: 11px; position: relative; width: 11px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JTTOu .framer-yi2vth, .framer-JTTOu .framer-119vumc, .framer-JTTOu .framer-19gneyz, .framer-JTTOu .framer-mrlbbj, .framer-JTTOu .framer-thcv5d, .framer-JTTOu .framer-14n3xll, .framer-JTTOu .framer-1pxnxlh, .framer-JTTOu .framer-yfsr1p, .framer-JTTOu .framer-ui2hnc, .framer-JTTOu .framer-akg9vt, .framer-JTTOu .framer-wugi49, .framer-JTTOu .framer-3em3wu { gap: 0px; } .framer-JTTOu .framer-yi2vth > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JTTOu .framer-yi2vth > :first-child, .framer-JTTOu .framer-119vumc > :first-child { margin-top: 0px; } .framer-JTTOu .framer-yi2vth > :last-child, .framer-JTTOu .framer-119vumc > :last-child { margin-bottom: 0px; } .framer-JTTOu .framer-119vumc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JTTOu .framer-19gneyz > *, .framer-JTTOu .framer-mrlbbj > * { margin: 0px; margin-left: calc(49px / 2); margin-right: calc(49px / 2); } .framer-JTTOu .framer-19gneyz > :first-child, .framer-JTTOu .framer-mrlbbj > :first-child, .framer-JTTOu .framer-thcv5d > :first-child, .framer-JTTOu .framer-14n3xll > :first-child, .framer-JTTOu .framer-1pxnxlh > :first-child, .framer-JTTOu .framer-yfsr1p > :first-child, .framer-JTTOu .framer-ui2hnc > :first-child, .framer-JTTOu .framer-akg9vt > :first-child, .framer-JTTOu .framer-wugi49 > :first-child, .framer-JTTOu .framer-3em3wu > :first-child { margin-left: 0px; } .framer-JTTOu .framer-19gneyz > :last-child, .framer-JTTOu .framer-mrlbbj > :last-child, .framer-JTTOu .framer-thcv5d > :last-child, .framer-JTTOu .framer-14n3xll > :last-child, .framer-JTTOu .framer-1pxnxlh > :last-child, .framer-JTTOu .framer-yfsr1p > :last-child, .framer-JTTOu .framer-ui2hnc > :last-child, .framer-JTTOu .framer-akg9vt > :last-child, .framer-JTTOu .framer-wugi49 > :last-child, .framer-JTTOu .framer-3em3wu > :last-child { margin-right: 0px; } .framer-JTTOu .framer-thcv5d > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-JTTOu .framer-14n3xll > *, .framer-JTTOu .framer-yfsr1p > *, .framer-JTTOu .framer-akg9vt > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-JTTOu .framer-1pxnxlh > *, .framer-JTTOu .framer-ui2hnc > *, .framer-JTTOu .framer-wugi49 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-JTTOu .framer-3em3wu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-JTTOu.framer-v-1g58t6f.framer-r8y15r, .framer-JTTOu.framer-v-1h14uom.framer-r8y15r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-JTTOu.framer-v-1g58t6f .framer-a2yuat { bottom: unset; height: 273px; left: unset; position: relative; right: unset; top: unset; width: 279px; }\",\".framer-JTTOu.framer-v-1g58t6f .framer-49gujz { order: 0; }\",\".framer-JTTOu.framer-v-1g58t6f .framer-1mqhudc { order: 1; }\",\".framer-JTTOu.framer-v-1g58t6f .framer-1d6ugba { order: 2; }\",\".framer-JTTOu.framer-v-1g58t6f .framer-161bblm { order: 3; }\",\".framer-JTTOu.framer-v-1g58t6f .framer-1pat2p0 { order: 5; }\",\".framer-JTTOu.framer-v-1g58t6f .framer-ll7vrv { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JTTOu.framer-v-1g58t6f.framer-r8y15r { gap: 0px; } .framer-JTTOu.framer-v-1g58t6f.framer-r8y15r > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-JTTOu.framer-v-1g58t6f.framer-r8y15r > :first-child { margin-top: 0px; } .framer-JTTOu.framer-v-1g58t6f.framer-r8y15r > :last-child { margin-bottom: 0px; } }\",\".framer-JTTOu.framer-v-1h14uom .framer-gozmef { bottom: unset; height: 217px; left: unset; position: relative; top: unset; }\",\".framer-JTTOu.framer-v-1h14uom .framer-18fvmnr, .framer-JTTOu.framer-v-1h14uom .framer-1ov6rja, .framer-JTTOu.framer-v-1h14uom .framer-11jgygm { height: var(--framer-aspect-ratio-supported, 22px); }\",\".framer-JTTOu.framer-v-1h14uom .framer-1ddzv5x-container { height: var(--framer-aspect-ratio-supported, 19px); }\",\".framer-JTTOu.framer-v-1h14uom .framer-1yq5sdc, .framer-JTTOu.framer-v-1h14uom .framer-19w9gmc, .framer-JTTOu.framer-v-1h14uom .framer-170ohqa { height: var(--framer-aspect-ratio-supported, 32px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JTTOu.framer-v-1h14uom.framer-r8y15r { gap: 0px; } .framer-JTTOu.framer-v-1h14uom.framer-r8y15r > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-JTTOu.framer-v-1h14uom.framer-r8y15r > :first-child { margin-top: 0px; } .framer-JTTOu.framer-v-1h14uom.framer-r8y15r > :last-child { margin-bottom: 0px; } }\",\".framer-JTTOu.framer-v-3myc0x.framer-r8y15r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; overflow: visible; padding: 0px; width: min-content; will-change: unset; }\",\".framer-JTTOu.framer-v-3myc0x .framer-1xjmulk { bottom: unset; position: relative; right: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JTTOu.framer-v-3myc0x.framer-r8y15r { gap: 0px; } .framer-JTTOu.framer-v-3myc0x.framer-r8y15r > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-JTTOu.framer-v-3myc0x.framer-r8y15r > :first-child { margin-top: 0px; } .framer-JTTOu.framer-v-3myc0x.framer-r8y15r > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-JTTOu[data-border=\"true\"]::after, .framer-JTTOu [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 150\n * @framerIntrinsicWidth 292\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"XkCwyvF7W\":{\"layout\":[\"auto\",\"auto\"]},\"KEn1VElI9\":{\"layout\":[\"auto\",\"auto\"]},\"pNGqM5tP4\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerqw0MFgQPK=withCSS(Component,css,\"framer-JTTOu\");export default Framerqw0MFgQPK;Framerqw0MFgQPK.displayName=\"Widget\";Framerqw0MFgQPK.defaultProps={height:150,width:292};addPropertyControls(Framerqw0MFgQPK,{variant:{options:[\"lrBOgCO67\",\"XkCwyvF7W\",\"KEn1VElI9\",\"pNGqM5tP4\"],optionTitles:[\"Widget 01\",\"Widget 02\",\"Widget 03\",\"Widget 04\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerqw0MFgQPK,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqw0MFgQPK\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XkCwyvF7W\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KEn1VElI9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pNGqM5tP4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"150\",\"framerIntrinsicWidth\":\"292\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qw0MFgQPK.map", "// Generated by Framer (34af854)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1WNCAs3HUN8OrQvZcsJp/QCd80hn49lncoGIlALmW/Zw0faTnYq.js\";import SectionBadge from\"https://framerusercontent.com/modules/1y0ZjrBHn2OACzINwNwO/PAFUNWQMGB1EHUd83Y9M/dD61QMzdz.js\";import BulletList from\"https://framerusercontent.com/modules/yN6aiDEhu8X4d6txEG0c/ka1j4djwYmPtUAEBci8d/N0sZJWDCi.js\";import Widget from\"https://framerusercontent.com/modules/pmgSNj8Nu4OvU1nCPVDb/n3F2k3EYFCrp9TNk1NKa/qw0MFgQPK.js\";const WidgetFonts=getFonts(Widget);const SectionBadgeFonts=getFonts(SectionBadge);const BulletListFonts=getFonts(BulletList);const MotionDivWithFX=withFX(motion.div);const WidgetControls=getPropertyControls(Widget);const cycleOrder=[\"ZRp_rX0EB\",\"Nmwo5K6Fr\",\"NbolFCxSi\"];const serializationHash=\"framer-SK2IQ\";const variantClassNames={NbolFCxSi:\"framer-v-g3g91y\",Nmwo5K6Fr:\"framer-v-pw4gjm\",ZRp_rX0EB:\"framer-v-1in9b8u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition1={delay:.2,duration:.5,ease:[.5,0,.3,1],type:\"tween\"};const transition2={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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Widget 01\":\"lrBOgCO67\",\"Widget 02\":\"XkCwyvF7W\",\"Widget 03\":\"KEn1VElI9\",\"Widget 04\":\"pNGqM5tP4\"};const humanReadableVariantMap={\"Left Image\":\"ZRp_rX0EB\",\"Right Image\":\"Nmwo5K6Fr\",Phone:\"NbolFCxSi\"};const getProps=({badge,badgeText,bullet1,bullet2,bullet3,height,icon,iconType,id,image,title,uIWidget,width,...props})=>{return{...props,BNCAggTc0:icon??props.BNCAggTc0??true,cPVOaI9RE:iconType??props.cPVOaI9RE??\"qr_code\",EuP_baee9:bullet2??props.EuP_baee9??\"Easy integration with existing tech stacks\",FPFADHvHM:bullet3??props.FPFADHvHM??\"Automated model training and optimization\",I8ag1XXCW:badge??props.I8ag1XXCW,IfjWk2MFN:image??props.IfjWk2MFN??{alt:\"\",src:\"https://framerusercontent.com/images/y5AAGwy2RNi8c6JKzzgtGhiV9tI.jpeg\",srcSet:\"https://framerusercontent.com/images/y5AAGwy2RNi8c6JKzzgtGhiV9tI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/y5AAGwy2RNi8c6JKzzgtGhiV9tI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y5AAGwy2RNi8c6JKzzgtGhiV9tI.jpeg 1280w\"},lklw7WgJQ:badgeText??props.lklw7WgJQ??\"FEATURE\",S_BafeDsd:bullet1??props.S_BafeDsd??\"Support for multiple AI/ML frameworks and models\",UZVIpq2pA:title??props.UZVIpq2pA??\"Advanced AI model integration. Access powerful frameworks for custom solutions.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ZRp_rX0EB\",yfrcUlUVE:humanReadableEnumMap[uIWidget]??uIWidget??props.yfrcUlUVE??\"lrBOgCO67\"};};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,BNCAggTc0,cPVOaI9RE,I8ag1XXCW,lklw7WgJQ,UZVIpq2pA,S_BafeDsd,EuP_baee9,FPFADHvHM,IfjWk2MFN,yfrcUlUVE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZRp_rX0EB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1in9b8u\",className,classNames),\"data-framer-name\":\"Left Image\",layoutDependency:layoutDependency,layoutId:\"ZRp_rX0EB\",ref:ref??ref1,style:{...style},...addPropertyOverrides({NbolFCxSi:{\"data-framer-name\":\"Phone\"},Nmwo5K6Fr:{\"data-framer-name\":\"Right Image\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||500)-0-544)/2)),pixelHeight:896,pixelWidth:1280,sizes:`min(max(${componentViewport?.width||\"100vw\"} * 0.55 - 60px, 1px), 500px)`,...toResponsiveImage(IfjWk2MFN)},className:\"framer-6nq06\",\"data-framer-name\":\"Visual\",layoutDependency:layoutDependency,layoutId:\"B8Ieq8jKp\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({NbolFCxSi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||832.5)-0-847.9)/2+0+0)),pixelHeight:896,pixelWidth:1280,sizes:`min(${componentViewport?.width||\"100vw\"}, 500px)`,...toResponsiveImage(IfjWk2MFN)}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,y:(componentViewport?.y||0)+(0+((componentViewport?.height||500)-0-544)/2)+544-174,...addPropertyOverrides({NbolFCxSi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||832.5)-0-847.9)/2+0+0)+544-174}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hsl15j-container\",layoutDependency:layoutDependency,layoutId:\"K9WdaLsIJ-container\",children:/*#__PURE__*/_jsx(Widget,{height:\"100%\",id:\"K9WdaLsIJ\",layoutId:\"K9WdaLsIJ\",variant:yfrcUlUVE,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11hydfq\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"bnJjPGS99\",children:[BNCAggTc0&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1llbyky\",\"data-framer-name\":\"Decorative Icon\",layoutDependency:layoutDependency,layoutId:\"D6Dbi_Iw9\",style:{backgroundColor:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgU3ltYm9scyBPdXRsaW5lZC0zMDA=\",\"--framer-font-family\":'\"Material Symbols Outlined\", monospace',\"--framer-font-open-type-features\":\"'cv09' on, 'cv03' on, 'cv04' on, 'cv05' on, 'cv06' on, 'cv11' on, 'dnom' on, 'frac' on, 'ss01' on, 'ss03' on\",\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(115, 115, 115)))\"},children:\"qr_code\"})}),className:\"framer-1y2th32\",fonts:[\"GF;Material Symbols Outlined-300\"],layoutDependency:layoutDependency,layoutId:\"W5InFSpQW\",style:{\"--extracted-r6o4lv\":\"var(--token-140dd8b3-2a12-43fe-ab75-5bbc1898bf13, rgb(115, 115, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:cPVOaI9RE,verticalAlignment:\"top\",withExternalLayout:true})}),I8ag1XXCW&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t2kz6b\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"U9EMUkzJv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||500)-0-263.9)/2)+0+83.9+0+0,...addPropertyOverrides({NbolFCxSi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||832.5)-0-847.9)/2+544+40)+0+83.9+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ggklv6-container\",layoutDependency:layoutDependency,layoutId:\"vVqNcsTiB-container\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"vVqNcsTiB\",KcLEJtN8o:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",kiJfQHZXf:lklw7WgJQ,layoutId:\"vVqNcsTiB\",RyDcwULLu:\"Description\",tCgBiZiij:false,variant:\"kH3M2CRhx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-pgull\",\"data-styles-preset\":\"Zw0faTnYq\",children:\"Advanced AI model integration. Access powerful frameworks for custom solutions.\"})}),className:\"framer-rchtpj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MY8Mh3NGH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UZVIpq2pA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kcmq44\",\"data-framer-name\":\"Bullet List\",layoutDependency:layoutDependency,layoutId:\"h9E0FWH6N\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(${componentViewport?.width||\"100vw\"} * 0.45)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||500)-0-263.9)/2)+0+197.9+0+0,...addPropertyOverrides({NbolFCxSi:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||832.5)-0-847.9)/2+544+40)+0+197.9+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wqlyx3-container\",layoutDependency:layoutDependency,layoutId:\"akOp_GdLo-container\",children:/*#__PURE__*/_jsx(BulletList,{FcmrTn57Q:\"check\",height:\"100%\",id:\"akOp_GdLo\",layoutId:\"akOp_GdLo\",style:{width:\"100%\"},variant:\"x5NxuPTBv\",width:\"100%\",Y76q34YJM:S_BafeDsd,...addPropertyOverrides({Nmwo5K6Fr:{variant:\"bgRMFqNF1\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(${componentViewport?.width||\"100vw\"} * 0.45)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||500)-0-263.9)/2)+0+197.9+0+40,...addPropertyOverrides({NbolFCxSi:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||832.5)-0-847.9)/2+544+40)+0+197.9+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-132exkb-container\",layoutDependency:layoutDependency,layoutId:\"LnfOkvMp7-container\",children:/*#__PURE__*/_jsx(BulletList,{FcmrTn57Q:\"check\",height:\"100%\",id:\"LnfOkvMp7\",layoutId:\"LnfOkvMp7\",style:{width:\"100%\"},variant:\"x5NxuPTBv\",width:\"100%\",Y76q34YJM:EuP_baee9,...addPropertyOverrides({Nmwo5K6Fr:{variant:\"bgRMFqNF1\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(${componentViewport?.width||\"100vw\"} * 0.45)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||500)-0-263.9)/2)+0+197.9+0+80,...addPropertyOverrides({NbolFCxSi:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||832.5)-0-847.9)/2+544+40)+0+197.9+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h280q3-container\",layoutDependency:layoutDependency,layoutId:\"yTuUYpxOn-container\",children:/*#__PURE__*/_jsx(BulletList,{FcmrTn57Q:\"check\",height:\"100%\",id:\"yTuUYpxOn\",layoutId:\"yTuUYpxOn\",style:{width:\"100%\"},variant:\"x5NxuPTBv\",width:\"100%\",Y76q34YJM:FPFADHvHM,...addPropertyOverrides({Nmwo5K6Fr:{variant:\"bgRMFqNF1\"}},baseVariant,gestureVariant)})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SK2IQ.framer-1ac7twn, .framer-SK2IQ .framer-1ac7twn { display: block; }\",\".framer-SK2IQ.framer-1in9b8u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1080px; }\",\".framer-SK2IQ .framer-6nq06 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 500px); justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SK2IQ .framer-hsl15j-container { bottom: 24px; flex: none; height: auto; left: 24px; position: absolute; width: auto; z-index: 1; }\",\".framer-SK2IQ .framer-11hydfq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-SK2IQ .framer-1llbyky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-SK2IQ .framer-1y2th32 { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SK2IQ .framer-1t2kz6b { 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: min-content; }\",\".framer-SK2IQ .framer-1ggklv6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SK2IQ .framer-rchtpj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SK2IQ .framer-kcmq44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SK2IQ .framer-wqlyx3-container, .framer-SK2IQ .framer-132exkb-container, .framer-SK2IQ .framer-1h280q3-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SK2IQ.framer-1in9b8u, .framer-SK2IQ .framer-6nq06, .framer-SK2IQ .framer-11hydfq, .framer-SK2IQ .framer-1llbyky, .framer-SK2IQ .framer-1t2kz6b, .framer-SK2IQ .framer-kcmq44 { gap: 0px; } .framer-SK2IQ.framer-1in9b8u > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-SK2IQ.framer-1in9b8u > :first-child, .framer-SK2IQ .framer-1llbyky > :first-child { margin-left: 0px; } .framer-SK2IQ.framer-1in9b8u > :last-child, .framer-SK2IQ .framer-1llbyky > :last-child { margin-right: 0px; } .framer-SK2IQ .framer-6nq06 > *, .framer-SK2IQ .framer-1t2kz6b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SK2IQ .framer-6nq06 > :first-child, .framer-SK2IQ .framer-11hydfq > :first-child, .framer-SK2IQ .framer-1t2kz6b > :first-child, .framer-SK2IQ .framer-kcmq44 > :first-child { margin-top: 0px; } .framer-SK2IQ .framer-6nq06 > :last-child, .framer-SK2IQ .framer-11hydfq > :last-child, .framer-SK2IQ .framer-1t2kz6b > :last-child, .framer-SK2IQ .framer-kcmq44 > :last-child { margin-bottom: 0px; } .framer-SK2IQ .framer-11hydfq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-SK2IQ .framer-1llbyky > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SK2IQ .framer-kcmq44 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-SK2IQ.framer-v-pw4gjm .framer-6nq06 { order: 1; }\",\".framer-SK2IQ.framer-v-pw4gjm .framer-hsl15j-container { left: unset; right: 24px; }\",\".framer-SK2IQ.framer-v-pw4gjm .framer-11hydfq { order: 0; }\",\".framer-SK2IQ.framer-v-g3g91y.framer-1in9b8u { flex-direction: column; gap: 40px; width: 400px; }\",\".framer-SK2IQ.framer-v-g3g91y .framer-6nq06 { flex: none; height: var(--framer-aspect-ratio-supported, 400px); width: 100%; }\",\".framer-SK2IQ.framer-v-g3g91y .framer-11hydfq { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SK2IQ.framer-v-g3g91y.framer-1in9b8u { gap: 0px; } .framer-SK2IQ.framer-v-g3g91y.framer-1in9b8u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SK2IQ.framer-v-g3g91y.framer-1in9b8u > :first-child { margin-top: 0px; } .framer-SK2IQ.framer-v-g3g91y.framer-1in9b8u > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 500\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Nmwo5K6Fr\":{\"layout\":[\"fixed\",\"auto\"]},\"NbolFCxSi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BNCAggTc0\":\"icon\",\"cPVOaI9RE\":\"iconType\",\"I8ag1XXCW\":\"badge\",\"lklw7WgJQ\":\"badgeText\",\"UZVIpq2pA\":\"title\",\"S_BafeDsd\":\"bullet1\",\"EuP_baee9\":\"bullet2\",\"FPFADHvHM\":\"bullet3\",\"IfjWk2MFN\":\"image\",\"yfrcUlUVE\":\"uIWidget\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZtfWhssp1=withCSS(Component,css,\"framer-SK2IQ\");export default FramerZtfWhssp1;FramerZtfWhssp1.displayName=\"Feature Card\";FramerZtfWhssp1.defaultProps={height:500,width:1080};addPropertyControls(FramerZtfWhssp1,{variant:{options:[\"ZRp_rX0EB\",\"Nmwo5K6Fr\",\"NbolFCxSi\"],optionTitles:[\"Left Image\",\"Right Image\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},BNCAggTc0:{defaultValue:true,title:\"Icon?\",type:ControlType.Boolean},cPVOaI9RE:{defaultValue:\"qr_code\",displayTextArea:false,title:\"Icon Type\",type:ControlType.String},I8ag1XXCW:{defaultValue:false,title:\"Badge?\",type:ControlType.Boolean},lklw7WgJQ:{defaultValue:\"FEATURE\",displayTextArea:false,title:\"Badge Text\",type:ControlType.String},UZVIpq2pA:{defaultValue:\"Advanced AI model integration. Access powerful frameworks for custom solutions.\",displayTextArea:false,title:\"Title\",type:ControlType.String},S_BafeDsd:{defaultValue:\"Support for multiple AI/ML frameworks and models\",displayTextArea:false,title:\"Bullet 1\",type:ControlType.String},EuP_baee9:{defaultValue:\"Easy integration with existing tech stacks\",displayTextArea:false,title:\"Bullet 2\",type:ControlType.String},FPFADHvHM:{defaultValue:\"Automated model training and optimization\",displayTextArea:false,title:\"Bullet 3\",type:ControlType.String},IfjWk2MFN:{__defaultAssetReference:\"data:framer/asset-reference,y5AAGwy2RNi8c6JKzzgtGhiV9tI.jpeg?originalFilename=visualelectric-1730796282719_1.jpeg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,y5AAGwy2RNi8c6JKzzgtGhiV9tI.jpeg?originalFilename=visualelectric-1730796282719_1.jpeg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},yfrcUlUVE:WidgetControls?.[\"variant\"]&&{...WidgetControls[\"variant\"],defaultValue:\"lrBOgCO67\",description:undefined,hidden:undefined,title:\"UI Widget\"}});addFonts(FramerZtfWhssp1,[{explicitInter:true,fonts:[{family:\"Material Symbols Outlined\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/materialsymbolsoutlined/v226/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDDxHOejbd5zrTgt.woff2\",weight:\"300\"},{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\"}]},...WidgetFonts,...SectionBadgeFonts,...BulletListFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZtfWhssp1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"BNCAggTc0\\\":\\\"icon\\\",\\\"cPVOaI9RE\\\":\\\"iconType\\\",\\\"I8ag1XXCW\\\":\\\"badge\\\",\\\"lklw7WgJQ\\\":\\\"badgeText\\\",\\\"UZVIpq2pA\\\":\\\"title\\\",\\\"S_BafeDsd\\\":\\\"bullet1\\\",\\\"EuP_baee9\\\":\\\"bullet2\\\",\\\"FPFADHvHM\\\":\\\"bullet3\\\",\\\"IfjWk2MFN\\\":\\\"image\\\",\\\"yfrcUlUVE\\\":\\\"uIWidget\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1080\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nmwo5K6Fr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NbolFCxSi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"500\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import StatsCard from\"#framer/local/canvasComponent/BgTuF5hVK/BgTuF5hVK.js\";import CarouselCard from\"#framer/local/canvasComponent/BP5sZ5VWQ/BP5sZ5VWQ.js\";import SectionBadge from\"#framer/local/canvasComponent/dD61QMzdz/dD61QMzdz.js\";import ElementsAdvantage from\"#framer/local/canvasComponent/gEzAw2dB9/gEzAw2dB9.js\";import Button from\"#framer/local/canvasComponent/leAJoivfU/leAJoivfU.js\";import BenefitCard from\"#framer/local/canvasComponent/N9Hg3dH7s/N9Hg3dH7s.js\";import ClickTabGallery from\"#framer/local/canvasComponent/Ntahob3uU/Ntahob3uU.js\";import DesktopNavbar from\"#framer/local/canvasComponent/NzahfG5K5/NzahfG5K5.js\";import FooterFooter from\"#framer/local/canvasComponent/RuBLZRy2w/RuBLZRy2w.js\";import MobileNavMobileNavbar2 from\"#framer/local/canvasComponent/vHj2Os9YH/vHj2Os9YH.js\";import FeatureCard from\"#framer/local/canvasComponent/ZtfWhssp1/ZtfWhssp1.js\";import*as sharedStyle4 from\"#framer/local/css/D7_ghLSzJ/D7_ghLSzJ.js\";import*as sharedStyle from\"#framer/local/css/hV56WgLQP/hV56WgLQP.js\";import*as sharedStyle3 from\"#framer/local/css/InOGC2jmJ/InOGC2jmJ.js\";import*as sharedStyle1 from\"#framer/local/css/ur7xjdWhR/ur7xjdWhR.js\";import*as sharedStyle2 from\"#framer/local/css/ZtWddl08v/ZtWddl08v.js\";import metadataProvider from\"#framer/local/webPageMetadata/xjSJgchBm/xjSJgchBm.js\";const DesktopNavbarFonts=getFonts(DesktopNavbar);const DesktopNavbarWithVariantAppearEffect=withVariantAppearEffect(DesktopNavbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const SectionBadgeFonts=getFonts(SectionBadge);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const BenefitCardFonts=getFonts(BenefitCard);const MotionDivWithFX=withFX(motion.div);const FeatureCardFonts=getFonts(FeatureCard);const ElementsAdvantageFonts=getFonts(ElementsAdvantage);const TickerFonts=getFonts(Ticker);const StatsCardFonts=getFonts(StatsCard);const ClickTabGalleryFonts=getFonts(ClickTabGallery);const MotionSectionWithFX=withFX(motion.section);const CarouselCardFonts=getFonts(CarouselCard);const SlideshowFonts=getFonts(Slideshow);const FooterFooterFonts=getFonts(FooterFooter);const MobileNavMobileNavbar2Fonts=getFonts(MobileNavMobileNavbar2);const MobileNavMobileNavbar2WithVariantAppearEffect=withVariantAppearEffect(MobileNavMobileNavbar2);const breakpoints={bMeXVpiq1:\"(min-width: 810px) and (max-width: 1199px)\",vCrzHSM4N:\"(max-width: 809px)\",YkM1eb4UX:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Pgk4K\";const variantClassNames={bMeXVpiq1:\"framer-v-i5zdi1\",vCrzHSM4N:\"framer-v-6f4fk2\",YkM1eb4UX:\"framer-v-31wzd6\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={bounce:.2,delay:.3,duration:.6,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:10,y:0};const transition2={bounce:.3,delay:.3,duration:1.5,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation4={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation4,startDelay:.5,tokenization:\"word\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={bounce:.1,delay:.5,duration:.7,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition5={delay:.1,duration:.5,ease:[.5,0,.3,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:5};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition6={delay:.2,duration:.5,ease:[.5,0,.3,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"YkM1eb4UX\",Phone:\"vCrzHSM4N\",Tablet:\"bMeXVpiq1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YkM1eb4UX\"};};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vCrzHSM4N\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"sxf5r7Swr\");const ref3=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"U84SoH8Iv\");const ref4=React.useRef(null);const elementId2=useRouteElementId(\"cSTgbRycn\");const elementId3=useRouteElementId(\"RlqEQBez2\");const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId4=useRouteElementId(\"wbXGWL3NE\");const elementId5=useRouteElementId(\"OtWFWvos3\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"sc7ABbXeR\");const ref8=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vCrzHSM4N\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"YkM1eb4UX\",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-31wzd6\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:32,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-atted1-container hidden-6f4fk2\",\"data-framer-appear-id\":\"atted1\",initial:animation1,layoutScroll:true,nodeId:\"AnrdmVpuQ\",optimized:true,rendersWithMotion:true,scopeId:\"xjSJgchBm\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(DesktopNavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"SjykPwKkQ\"},{ref:ref2,target:\"N7sTUKicy\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"AnrdmVpuQ\",layoutId:\"AnrdmVpuQ\",variant:\"e9gtcevtj\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ktyec\",\"data-framer-name\":\"Main Container\",children:[/*#__PURE__*/_jsx(MotionSectionWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1hogf3l\",\"data-framer-appear-id\":\"1hogf3l\",\"data-framer-name\":\"Section Hero\",id:elementId,initial:animation3,optimized:true,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sc1pl5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v4a7fm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{y:(componentViewport?.y||0)+0+0+0+0+10+0+120+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+0+0+0+16+0+140+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hz7nfh-container\",nodeId:\"jeiQ_JjtD\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"jeiQ_JjtD\",KcLEJtN8o:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",kiJfQHZXf:\"Meet Tectonic\",layoutId:\"jeiQ_JjtD\",RyDcwULLu:\"\",tCgBiZiij:true,variant:\"IMMNitVuB\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n1kgoh\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ndm05\",\"data-framer-name\":\"Span\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18h9lz3\",\"data-styles-preset\":\"hV56WgLQP\",children:\"Shopify\"})}),className:\"framer-15d3yd5\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-osrus5\",\"data-framer-name\":\"Span\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18h9lz3\",\"data-styles-preset\":\"hV56WgLQP\",style:{\"--framer-text-color\":\"rgba(99, 26, 255, 0.5)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(110deg, rgb(0, 145, 248) 0%, rgb(203, 91, 243) 52.0838%, rgb(242, 65, 109) 100%)\"},children:\"storefront\"})})}),className:\"framer-i0nr5y\",\"data-framer-appear-id\":\"i0nr5y\",fonts:[\"Inter\"],initial:animation6,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n5xgoh\",\"data-framer-name\":\"Span\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j9xbav\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18h9lz3\",\"data-styles-preset\":\"hV56WgLQP\",children:\"without limits\"})}),className:\"framer-uotiqu\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1miah8v\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-kc5c14\",\"data-styles-preset\":\"ur7xjdWhR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\"},children:\"Supercharge revenue growth with fully-customizable, blazing fast, and personalized shopping experiences across web and native apps\"})}),className:\"framer-oe1u2y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5txbk6\",\"data-framer-name\":\"Actions\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ebMnm5YHl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{width:`min(min(${componentViewport?.width||\"100vw\"} - 20px, 1280px) - 40px, 480px)`,y:(componentViewport?.y||0)+0+0+0+0+10+0+120+0+0+332.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+0+16+0+140+0+0+264.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7zei9z-container\",nodeId:\"tiUClMVnF\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{MEFCqDfcc:resolvedLinks[0]},vCrzHSM4N:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"tiUClMVnF\",Kam9auzrq:true,layoutId:\"tiUClMVnF\",MEFCqDfcc:\"https://calendly.com/neelesh-s/intro-connect\",MNUq27zYb:\"Get Started\",O_kyjW987:\"ArrowRight\",t6db2jrBD:\"ArrowRight\",tQ40fKerf:false,variant:\"aYi4wSARV\",width:\"100%\"})})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qbodwp hidden-6f4fk2\",\"data-framer-name\":\"gradient-spot\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kfgkp0 hidden-6f4fk2\",\"data-framer-name\":\"gradient-spot\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpjv3h\",\"data-framer-name\":\"Section Trust\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1w3758w\",\"data-framer-appear-id\":\"1w3758w\",\"data-framer-name\":\"Title\",initial:animation8,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{y:(componentViewport?.y||0)+0+0+0+586.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+0+0+594.4+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-166u6r7-container\",nodeId:\"zTOdoTjVD\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"zTOdoTjVD\",KcLEJtN8o:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",kiJfQHZXf:\"THE PROBLEM\",layoutId:\"zTOdoTjVD\",RyDcwULLu:\"AI Agents\",tCgBiZiij:false,variant:\"kH3M2CRhx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14zlkke\",\"data-framer-name\":\"Span\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ryyshi\",\"data-styles-preset\":\"ZtWddl08v\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-640244f0-bab0-4e5f-95da-ba6c2a413c9c, rgba(28, 25, 23, 0.5))\"},children:\"Growth-stage brands today are limited by\"})}),className:\"framer-10m1yac\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112pom2\",\"data-framer-name\":\"Cards Row\",id:elementId1,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+0+586.4+60+120.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max((${componentViewport?.width||\"100vw\"} - 208px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+594.4+80+156.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13g6kd6-container\",nodeId:\"nDc3LZRrv\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(BenefitCard,{bbZP9t5Tk:\"0px 40px 0px 0px\",height:\"100%\",id:\"nDc3LZRrv\",layoutId:\"nDc3LZRrv\",N1yWaPuqO:\"Bloated themes and too many apps drag down load times, driving customers away before they can browse.\",sfkbHe6sN:\"Site Speed\",style:{width:\"100%\"},uWCm7XLgN:\"more_time\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+0+586.4+60+120.6+0+124}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max((${componentViewport?.width||\"100vw\"} - 208px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+594.4+80+156.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ojcac-container\",nodeId:\"vzKdkQvCh\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(BenefitCard,{bbZP9t5Tk:\"0px 40px 0px 0px\",height:\"100%\",id:\"vzKdkQvCh\",layoutId:\"vzKdkQvCh\",N1yWaPuqO:\"Relying on a patchwork of third-party tools leads to data fragmentation and less actionable insights.\",sfkbHe6sN:\"Data Silos\",style:{width:\"100%\"},uWCm7XLgN:\"upgrade\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+0+586.4+60+120.6+0+248}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`max((${componentViewport?.width||\"100vw\"} - 208px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+594.4+80+156.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pfwgzc-container\",nodeId:\"qmDjPqWKG\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(BenefitCard,{bbZP9t5Tk:\"0px 40px 0px 0px\",height:\"100%\",id:\"qmDjPqWKG\",layoutId:\"qmDjPqWKG\",N1yWaPuqO:\"Reliance on manual, ad-hoc testing leads to slower cycles of ideation, launch, and iteration of experiments \",sfkbHe6sN:\"Limited Experimentation\",style:{width:\"100%\"},uWCm7XLgN:\"insert_chart\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1c6rb44\",\"data-framer-name\":\"Section Benefits\",id:elementId2,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n5v2ig\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cd2gd7\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{y:(componentViewport?.y||0)+0+0+0+1011+60+0+0+0+0+0},vCrzHSM4N:{y:(componentViewport?.y||0)+0+0+0+1175+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+0+0+1011+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i9ulm2-container\",nodeId:\"laZS_Ca4i\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"laZS_Ca4i\",KcLEJtN8o:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",kiJfQHZXf:\"THE TECTONIC SHIFT\",layoutId:\"laZS_Ca4i\",RyDcwULLu:\"AI Agents\",tCgBiZiij:false,variant:\"kH3M2CRhx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sto47v\",\"data-styles-preset\":\"InOGC2jmJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Storefront of the Future\"})}),className:\"framer-v0gno0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nllq54\",\"data-styles-preset\":\"D7_ghLSzJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\"},children:\"Tectonic is the AI native storefront with built-in growth apps, customer data platform, A/B testing, & AI agents to optimize shopping experiences 24x7.\"})}),className:\"framer-vrzgtw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13c4lib\",\"data-framer-name\":\"Cards Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+1011+60+0+0+288+0+0},vCrzHSM4N:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 480px)`,y:(componentViewport?.y||0)+0+0+0+1175+60+0+0+288+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+1011+80+0+0+288+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9rof49-container\",nodeId:\"QaVlF9W9m\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{variant:\"NbolFCxSi\"}},children:/*#__PURE__*/_jsx(FeatureCard,{BNCAggTc0:false,cPVOaI9RE:\"qr_code\",EuP_baee9:\"Consistent experience & branding\",FPFADHvHM:\"Fully custom on-brand look across every channel\",height:\"100%\",I8ag1XXCW:true,id:\"QaVlF9W9m\",IfjWk2MFN:addImageAlt({src:\"https://framerusercontent.com/images/DUQRb7C5Qiluwuui1cU79qUBmo.png\",srcSet:\"https://framerusercontent.com/images/DUQRb7C5Qiluwuui1cU79qUBmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/DUQRb7C5Qiluwuui1cU79qUBmo.png 902w\"},\"\"),layoutId:\"QaVlF9W9m\",lklw7WgJQ:\"UNIFIED\",S_BafeDsd:\"No-code builder for website and native mobile apps\",style:{width:\"100%\"},UZVIpq2pA:\"Blazing fast website + mobile apps\",variant:\"ZRp_rX0EB\",width:\"100%\",yfrcUlUVE:\"lrBOgCO67\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+1011+60+0+0+288+0+580},vCrzHSM4N:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 480px)`,y:(componentViewport?.y||0)+0+0+0+1175+60+0+0+288+0+580}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+1011+80+0+0+288+0+580,children:/*#__PURE__*/_jsx(Container,{className:\"framer-syzskj-container\",nodeId:\"JS_pgdhCR\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{variant:\"NbolFCxSi\"}},children:/*#__PURE__*/_jsx(FeatureCard,{BNCAggTc0:false,cPVOaI9RE:\"qr_code\",EuP_baee9:\"Reduce bounce and drop-offs\",FPFADHvHM:\"Convert more customers\",height:\"100%\",I8ag1XXCW:true,id:\"JS_pgdhCR\",IfjWk2MFN:addImageAlt({src:\"https://framerusercontent.com/images/RfvxTwyCE9wFvYnrdvQD9CYqM.png\",srcSet:\"https://framerusercontent.com/images/RfvxTwyCE9wFvYnrdvQD9CYqM.png?scale-down-to=1024 809w,https://framerusercontent.com/images/RfvxTwyCE9wFvYnrdvQD9CYqM.png?scale-down-to=2048 1618w,https://framerusercontent.com/images/RfvxTwyCE9wFvYnrdvQD9CYqM.png 1960w\"},\"\"),layoutId:\"JS_pgdhCR\",lklw7WgJQ:\"CONTINUOUS OPTIMIZATION\",S_BafeDsd:\"Unified data platform\",style:{width:\"100%\"},UZVIpq2pA:\"Insight to experiment instantly\",variant:\"Nmwo5K6Fr\",width:\"100%\",yfrcUlUVE:\"XkCwyvF7W\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+1011+60+0+0+288+0+1160},vCrzHSM4N:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 480px)`,y:(componentViewport?.y||0)+0+0+0+1175+60+0+0+288+0+1160}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+1011+80+0+0+288+0+1160,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ec2x2t-container\",nodeId:\"bm8cWCSil\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{variant:\"NbolFCxSi\"}},children:/*#__PURE__*/_jsx(FeatureCard,{BNCAggTc0:false,cPVOaI9RE:\"qr_code\",EuP_baee9:\"Automated personalization\",FPFADHvHM:\"Higher revenue\",height:\"100%\",I8ag1XXCW:true,id:\"bm8cWCSil\",IfjWk2MFN:addImageAlt({src:\"https://framerusercontent.com/images/9TfqZjrYzw3LdTcGqfAXzj9OTA.png\",srcSet:\"https://framerusercontent.com/images/9TfqZjrYzw3LdTcGqfAXzj9OTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/9TfqZjrYzw3LdTcGqfAXzj9OTA.png 902w\"},\"\"),layoutId:\"bm8cWCSil\",lklw7WgJQ:\"AI-NATIVE\",S_BafeDsd:\"Behavioral targeting\",style:{width:\"100%\"},UZVIpq2pA:\"Personalize every user touchpoint\",variant:\"ZRp_rX0EB\",width:\"100%\",yfrcUlUVE:\"KEn1VElI9\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uh9efg\",\"data-framer-name\":\"growth apps\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mqzy92\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{y:(componentViewport?.y||0)+0+0+0+3079+80+0+0+0},vCrzHSM4N:{y:(componentViewport?.y||0)+0+0+0+3243+40+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+0+0+3119+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15k5di-container\",nodeId:\"yj_kTTO1X\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"yj_kTTO1X\",KcLEJtN8o:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",kiJfQHZXf:\"INTEGRATED GROWTH STACK\",layoutId:\"yj_kTTO1X\",RyDcwULLu:\"AI Agents\",tCgBiZiij:false,variant:\"kH3M2CRhx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sto47v\",\"data-styles-preset\":\"InOGC2jmJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Every Growth App You'll Ever Need\"})}),className:\"framer-n7o4lz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yaeckb\",\"data-framer-name\":\"section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9884ud-container\",isModuleExternal:true,nodeId:\"kySoQMmjS\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{gap:40},vCrzHSM4N:{gap:16}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"kySoQMmjS\",layoutId:\"kySoQMmjS\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"222px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a0p83w-container\",inComponentSlot:true,nodeId:\"GI3Ci8MQx\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"GI3Ci8MQx\",layoutId:\"GI3Ci8MQx\",ovJvdDBRs:\"Product Customization\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"90.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a289xe-container\",inComponentSlot:true,nodeId:\"UAQKsuygG\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"UAQKsuygG\",layoutId:\"UAQKsuygG\",ovJvdDBRs:\"Blogs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"227px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q50496-container\",inComponentSlot:true,nodeId:\"ZSM_vL0zJ\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"ZSM_vL0zJ\",layoutId:\"ZSM_vL0zJ\",ovJvdDBRs:\"Size Recommendations\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"124.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qawld-container\",inComponentSlot:true,nodeId:\"sVP5KicjE\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"sVP5KicjE\",layoutId:\"sVP5KicjE\",ovJvdDBRs:\"Gift Cards\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"145px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vybwsd-container\",inComponentSlot:true,nodeId:\"GZC0a4MTQ\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"GZC0a4MTQ\",layoutId:\"GZC0a4MTQ\",ovJvdDBRs:\"Subscription\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"109.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1spdai8-container\",inComponentSlot:true,nodeId:\"gTol0hSre\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"gTol0hSre\",layoutId:\"gTol0hSre\",ovJvdDBRs:\"Bundles\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"108px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1utn1fk-container\",inComponentSlot:true,nodeId:\"mwdDzdSsZ\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"mwdDzdSsZ\",layoutId:\"mwdDzdSsZ\",ovJvdDBRs:\"Referral\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"169.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4dxy25-container\",inComponentSlot:true,nodeId:\"rflSzCv_j\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"rflSzCv_j\",layoutId:\"rflSzCv_j\",ovJvdDBRs:\"Video Shopping\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"177.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3tjz8y-container\",inComponentSlot:true,nodeId:\"HMuaElvNR\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"HMuaElvNR\",layoutId:\"HMuaElvNR\",ovJvdDBRs:\"1-Click Checkout\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"114px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ojntin-container\",inComponentSlot:true,nodeId:\"Fh8sRqerh\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"Fh8sRqerh\",layoutId:\"Fh8sRqerh\",ovJvdDBRs:\"Rewards\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eobjje-container\",isModuleExternal:true,nodeId:\"usVrrLe_Y\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{gap:40},vCrzHSM4N:{gap:30}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"usVrrLe_Y\",layoutId:\"usVrrLe_Y\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uqo5pn-container\",inComponentSlot:true,nodeId:\"CsySiqquX\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"CsySiqquX\",layoutId:\"CsySiqquX\",ovJvdDBRs:\"Promotions\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"190.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ln14kl-container\",inComponentSlot:true,nodeId:\"sMjkVdx2O\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"sMjkVdx2O\",layoutId:\"sMjkVdx2O\",ovJvdDBRs:\"Recommendations\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"113.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-twhkvx-container\",inComponentSlot:true,nodeId:\"hPkJh16RV\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"hPkJh16RV\",layoutId:\"hPkJh16RV\",ovJvdDBRs:\"Pop-ups\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"209.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nnomf5-container\",inComponentSlot:true,nodeId:\"puVn8eGm5\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"puVn8eGm5\",layoutId:\"puVn8eGm5\",ovJvdDBRs:\"Checkout Extensions\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"108.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t16zzh-container\",inComponentSlot:true,nodeId:\"CL41d7DiE\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"CL41d7DiE\",layoutId:\"CL41d7DiE\",ovJvdDBRs:\"Wishlist\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"196px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ihuhq-container\",inComponentSlot:true,nodeId:\"kYenAtLz2\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"kYenAtLz2\",layoutId:\"kYenAtLz2\",ovJvdDBRs:\"AI-powered Search\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"105.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ua0dyf-container\",inComponentSlot:true,nodeId:\"WMM3jSbG9\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"WMM3jSbG9\",layoutId:\"WMM3jSbG9\",ovJvdDBRs:\"Badges\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ywgb9l-container\",inComponentSlot:true,nodeId:\"BvZZXh2Xt\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"BvZZXh2Xt\",layoutId:\"BvZZXh2Xt\",ovJvdDBRs:\"Promotions\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ywgb9l-container\",inComponentSlot:true,nodeId:\"BvZZXh2Xt\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"BvZZXh2Xt\",layoutId:\"BvZZXh2Xt\",ovJvdDBRs:\"Promotions\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"83px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hieh9l-container\",inComponentSlot:true,nodeId:\"LqWx3okej\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(ElementsAdvantage,{height:\"100%\",id:\"LqWx3okej\",layoutId:\"LqWx3okej\",ovJvdDBRs:\"Quiz\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-16ftuj3\",\"data-framer-name\":\"Section Metrics\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lea7nm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v2w4ql\",\"data-framer-name\":\"Title + Badge\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{y:(componentViewport?.y||0)+0+0+0+3499+60+0+0+0+0+0},vCrzHSM4N:{y:(componentViewport?.y||0)+0+0+0+3589+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+0+0+3539+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fj49hu-container\",nodeId:\"jTIz0PSZc\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"jTIz0PSZc\",KcLEJtN8o:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",kiJfQHZXf:\"IMPACT\",layoutId:\"jTIz0PSZc\",RyDcwULLu:\"AI Agents\",tCgBiZiij:false,variant:\"kH3M2CRhx\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q38vse\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7r0zjb\",\"data-framer-name\":\"Span\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ryyshi\",\"data-styles-preset\":\"ZtWddl08v\",style:{\"--framer-text-alignment\":\"center\"},children:\"See Measurable\"})}),className:\"framer-1qiwdme\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bqvxr8\",\"data-framer-name\":\"Icon-big arrow\",fill:\"black\",intrinsicHeight:230,intrinsicWidth:232,svg:'<svg width=\"232\" height=\"230\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 37.682h167.674L2.747 202.608l26.645 26.645L194.318 64.327v131.058H232V41.069L190.931 0H36.594L0 36.594v1.088Z\" fill=\"url(#a)\"/><defs><linearGradient id=\"a\" x1=\"253\" y1=\"237.5\" x2=\"-25.515\" y2=\"-48.12\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0091F8\"/><stop offset=\".365\" stop-color=\"#C366F6\"/><stop offset=\".65\" stop-color=\"#F2416D\"/><stop offset=\"1\" stop-color=\"#F7AA62\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ryyshi\",\"data-styles-preset\":\"ZtWddl08v\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\"},children:\"ROI on Day 1\"})}),className:\"framer-55z29b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1glwx46\",\"data-framer-name\":\"Stats Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 48px) / 3, 1px), min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) / 2)`,y:(componentViewport?.y||0)+0+0+0+3499+60+0+0+179.2+0},vCrzHSM4N:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 480px)`,y:(componentViewport?.y||0)+0+0+0+3589+40+0+0+199.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:253,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) - 48px) / 3, 1px), min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) / 2)`,y:(componentViewport?.y||0)+0+0+0+3539+80+0+0+199.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dmoios-container\",nodeId:\"MjpCYtIPE\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(StatsCard,{b7QMQsnoo:\"Increase in Speed\",FWYaLA602:true,height:\"100%\",id:\"MjpCYtIPE\",l2dvoejJd:\"Cut load times, reduce bounce rates, and keep shoppers engaged from the moment they land.\",layoutId:\"MjpCYtIPE\",QrpKZvhaK:\"2.5x\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\",wsiICb0qb:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 48px) / 3, 1px), min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) / 2)`,y:(componentViewport?.y||0)+0+0+0+3499+60+0+0+179.2+0},vCrzHSM4N:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 480px)`,y:(componentViewport?.y||0)+0+0+0+3589+40+0+0+199.2+0+277}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:253,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) - 48px) / 3, 1px), min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) / 2)`,y:(componentViewport?.y||0)+0+0+0+3539+80+0+0+199.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15f38p4-container\",nodeId:\"Inkcv46D0\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(StatsCard,{b7QMQsnoo:\"Conversion Improvement\",FWYaLA602:true,height:\"100%\",id:\"Inkcv46D0\",l2dvoejJd:\"Our blazing fast storefront and AI driven personalization converts more shoppers, more often.\",layoutId:\"Inkcv46D0\",QrpKZvhaK:\">20%\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\",wsiICb0qb:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 48px) / 3, 1px), min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) / 2)`,y:(componentViewport?.y||0)+0+0+0+3499+60+0+0+179.2+0},vCrzHSM4N:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 480px)`,y:(componentViewport?.y||0)+0+0+0+3589+40+0+0+199.2+0+554}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:253,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) - 48px) / 3, 1px), min(${componentViewport?.width||\"100vw\"} - 120px, 1280px) / 2)`,y:(componentViewport?.y||0)+0+0+0+3539+80+0+0+199.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y9nsmb-container\",nodeId:\"dlPLbhPhB\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(StatsCard,{b7QMQsnoo:\"Higher AOV\",FWYaLA602:true,height:\"100%\",id:\"dlPLbhPhB\",l2dvoejJd:\"Automatically tailor upsells, cross-sells, and bundle offers to boost cart size and value.\",layoutId:\"dlPLbhPhB\",QrpKZvhaK:\"12%\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\",wsiICb0qb:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\"})})})})})]})]})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zzypo4\",\"data-framer-name\":\"Section Industries\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1180px)`,y:(componentViewport?.y||0)+0+0+0+4051.2+60+0},vCrzHSM4N:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1180px)`,y:(componentViewport?.y||0)+0+0+0+4695.2+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1180px)`,y:(componentViewport?.y||0)+0+0+0+4191.2+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aiofpd-container\",nodeId:\"J7tDGjf73\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{variant:\"yrs76fMWG\"}},children:/*#__PURE__*/_jsx(ClickTabGallery,{height:\"100%\",id:\"J7tDGjf73\",layoutId:\"J7tDGjf73\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"oldjY9EqQ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-jgofe6\",\"data-framer-name\":\"Section Features\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pe4e9a\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12zgr1v\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{y:(componentViewport?.y||0)+0+0+0+4651.2+60+0+0+0+0+0},vCrzHSM4N:{y:(componentViewport?.y||0)+0+0+0+5255.2+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+0+0+4791.2+80+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fusv9m-container\",nodeId:\"J1b7rfacF\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",id:\"J1b7rfacF\",KcLEJtN8o:\"var(--token-606d7061-76e4-4138-aecf-116413938c16, rgb(255, 255, 255))\",kiJfQHZXf:\"USECASES\",layoutId:\"J1b7rfacF\",RyDcwULLu:\"AI Agents\",tCgBiZiij:false,variant:\"kH3M2CRhx\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sysc2z\",\"data-framer-name\":\"Span\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ryyshi\",\"data-styles-preset\":\"ZtWddl08v\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b326cc1e-0b8c-4844-816c-3da047611d4e, rgb(28, 25, 23))\"},children:\"Solutions to Maximize Your Brand\u2019s Potential\"})}),className:\"framer-uf1pos\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1er1182\",\"data-framer-name\":\"Carousel\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q6e6f4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Z0UZIsLlc\",scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{itemAmount:2},vCrzHSM4N:{gap:16,itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:16,arrowPadding:0,arrowPaddingBottom:-60,arrowPaddingLeft:0,arrowPaddingRight:60,arrowPaddingTop:0,arrowPosition:\"bottom-left\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:15,overflow:true},gap:24,height:\"100%\",id:\"Z0UZIsLlc\",intervalControl:1.5,itemAmount:3,layoutId:\"Z0UZIsLlc\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LmMVtHQCG\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nnjt1k-container\",inComponentSlot:true,nodeId:\"dct_cfYYm\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(CarouselCard,{dcbKqT_kT:\"\",H4E0A1gFh:resolvedLinks1[0],height:\"100%\",id:\"dct_cfYYm\",IMaegV7Nw:addImageAlt({src:\"https://framerusercontent.com/images/6UVqIaib7eMrdwgbIpYqwtBbc8.jpeg\",srcSet:\"https://framerusercontent.com/images/6UVqIaib7eMrdwgbIpYqwtBbc8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/6UVqIaib7eMrdwgbIpYqwtBbc8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6UVqIaib7eMrdwgbIpYqwtBbc8.jpeg 1280w\"},\"\"),layoutId:\"dct_cfYYm\",M99s9t5eG:\"Build lasting customer relationships through post-purchase experiences that drive repeat purchases and increase lifetime value.\",mN74A50cg:\"Grow lifetime value\",style:{width:\"100%\"},variant:\"MF0BC1_Jo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"flBY3REDD\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-188l0xd-container\",inComponentSlot:true,nodeId:\"eY91UlIIE\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(CarouselCard,{dcbKqT_kT:\"\",H4E0A1gFh:resolvedLinks2[0],height:\"100%\",id:\"eY91UlIIE\",IMaegV7Nw:addImageAlt({src:\"https://framerusercontent.com/images/96mTp2O9liFW3hd6znsPvs1um8.jpg\",srcSet:\"https://framerusercontent.com/images/96mTp2O9liFW3hd6znsPvs1um8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/96mTp2O9liFW3hd6znsPvs1um8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/96mTp2O9liFW3hd6znsPvs1um8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/96mTp2O9liFW3hd6znsPvs1um8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/96mTp2O9liFW3hd6znsPvs1um8.jpg 6144w\"},\"\"),layoutId:\"eY91UlIIE\",M99s9t5eG:\"Use all of your data not just CDP data from all channels, unlocking insights to drive more engaging, personalized, and cross-channel experiences that truly resonate with your customers\",mN74A50cg:\"Understand customer journeys\",style:{width:\"100%\"},variant:\"MF0BC1_Jo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"igD1C24bc\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1himd33-container\",inComponentSlot:true,nodeId:\"jOMBLV3oK\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(CarouselCard,{dcbKqT_kT:\"\",H4E0A1gFh:resolvedLinks3[0],height:\"100%\",id:\"jOMBLV3oK\",IMaegV7Nw:addImageAlt({src:\"https://framerusercontent.com/images/wuJGSf8WODQxIC7whxpJzB3uHE.jpg\",srcSet:\"https://framerusercontent.com/images/wuJGSf8WODQxIC7whxpJzB3uHE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wuJGSf8WODQxIC7whxpJzB3uHE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wuJGSf8WODQxIC7whxpJzB3uHE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wuJGSf8WODQxIC7whxpJzB3uHE.jpg 3036w\"},\"\"),layoutId:\"jOMBLV3oK\",M99s9t5eG:\"Pay suppliers in any currency effortlessly. Convert from GBP at point of payment, or hold funds in our multi-currency accounts\",mN74A50cg:\"Personalize shopping experiences\",style:{width:\"100%\"},variant:\"MF0BC1_Jo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yN_b2bSxh\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vpg9e9-container\",inComponentSlot:true,nodeId:\"yKgo26Mxz\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(CarouselCard,{dcbKqT_kT:\"\",H4E0A1gFh:resolvedLinks4[0],height:\"100%\",id:\"yKgo26Mxz\",IMaegV7Nw:addImageAlt({src:\"https://framerusercontent.com/images/q5kBt1YXg8H4NzvkPT6iq5FwYk.jpg\",srcSet:\"https://framerusercontent.com/images/q5kBt1YXg8H4NzvkPT6iq5FwYk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q5kBt1YXg8H4NzvkPT6iq5FwYk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/q5kBt1YXg8H4NzvkPT6iq5FwYk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/q5kBt1YXg8H4NzvkPT6iq5FwYk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/q5kBt1YXg8H4NzvkPT6iq5FwYk.jpg 6048w\"},\"\"),layoutId:\"yKgo26Mxz\",M99s9t5eG:\"Pay your vendors up to 60 days later, with pre-approved credit line - so you have more cash on hand to invest where it matters.\",mN74A50cg:\"Run A/B tests\",style:{width:\"100%\"},variant:\"MF0BC1_Jo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A6QNvGUkM\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-79v2za-container\",inComponentSlot:true,nodeId:\"QBupWRgIQ\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(CarouselCard,{dcbKqT_kT:\"\",H4E0A1gFh:resolvedLinks5[0],height:\"100%\",id:\"QBupWRgIQ\",IMaegV7Nw:addImageAlt({src:\"https://framerusercontent.com/images/uEOqTN1CIZ7qaw1MadlZUb3VNMI.jpg\",srcSet:\"https://framerusercontent.com/images/uEOqTN1CIZ7qaw1MadlZUb3VNMI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uEOqTN1CIZ7qaw1MadlZUb3VNMI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uEOqTN1CIZ7qaw1MadlZUb3VNMI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uEOqTN1CIZ7qaw1MadlZUb3VNMI.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/uEOqTN1CIZ7qaw1MadlZUb3VNMI.jpg 5184w\"},\"\"),layoutId:\"QBupWRgIQ\",M99s9t5eG:\"Capture and retain visitor attention with lightning-fast page loads, intuitive navigation, and personalized content that keeps shoppers engaged from first click to checkout.\",mN74A50cg:\"Improve site speed\",style:{width:\"100%\"},variant:\"MF0BC1_Jo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Zw73hjEbt\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19yps8t-container\",inComponentSlot:true,nodeId:\"rFMwwlUhh\",rendersWithMotion:true,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(CarouselCard,{dcbKqT_kT:\"\",H4E0A1gFh:resolvedLinks6[0],height:\"100%\",id:\"rFMwwlUhh\",IMaegV7Nw:addImageAlt({src:\"https://framerusercontent.com/images/Nrkw8nOXoVJCQA6rkO160CvLYlk.jpg\",srcSet:\"https://framerusercontent.com/images/Nrkw8nOXoVJCQA6rkO160CvLYlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Nrkw8nOXoVJCQA6rkO160CvLYlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nrkw8nOXoVJCQA6rkO160CvLYlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nrkw8nOXoVJCQA6rkO160CvLYlk.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Nrkw8nOXoVJCQA6rkO160CvLYlk.jpg 6240w\"},\"\"),layoutId:\"rFMwwlUhh\",M99s9t5eG:\"Maximize the ROI of your marketing spend \",mN74A50cg:\"Lower acquisition costs\",style:{width:\"100%\"},variant:\"MF0BC1_Jo\",width:\"100%\"})})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{y:(componentViewport?.y||0)+0+0+0+5374.8},vCrzHSM4N:{y:(componentViewport?.y||0)+0+0+0+5976.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:516,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+5547.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mc54tr-container\",id:elementId6,nodeId:\"sc7ABbXeR\",ref:ref8,scopeId:\"xjSJgchBm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bMeXVpiq1:{variant:\"daEFjL7bB\"},vCrzHSM4N:{variant:\"IPphQokzR\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"sc7ABbXeR\",layoutId:\"sc7ABbXeR\",style:{width:\"100%\"},variant:\"k_J3f7P1P\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vCrzHSM4N:{height:72,width:\"92.9487vw\",y:15}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-zkhhqm-container hidden-31wzd6 hidden-i5zdi1\",\"data-framer-appear-id\":\"zkhhqm\",initial:animation1,layoutScroll:true,nodeId:\"D1ASZKKJm\",optimized:true,rendersWithMotion:true,scopeId:\"xjSJgchBm\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MobileNavMobileNavbar2WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"EID7nvBX_\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"D1ASZKKJm\",layoutId:\"D1ASZKKJm\",style:{width:\"100%\"},variant:\"Kn19u2Vbp\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Pgk4K.framer-1pfj7y3, .framer-Pgk4K .framer-1pfj7y3 { display: block; }\",\".framer-Pgk4K.framer-31wzd6 { 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: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Pgk4K .framer-atted1-container { flex: none; height: auto; left: 50%; position: fixed; top: 32px; transform: translateX(-50%); width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-Pgk4K .framer-11ktyec { align-content: center; align-items: center; background-color: var(--token-674a61d0-92f3-4f5f-96ab-e9c4b993d828, #f0f0ef); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1hogf3l { align-content: center; align-items: center; background-color: var(--token-674a61d0-92f3-4f5f-96ab-e9c4b993d828, #f0f0ef); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Pgk4K .framer-sc1pl5 { align-content: center; align-items: center; background-color: var(--token-606d7061-76e4-4138-aecf-116413938c16, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 140px 44px 108px 44px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Pgk4K .framer-v4a7fm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 75%; z-index: 2; }\",\".framer-Pgk4K .framer-1hz7nfh-container, .framer-Pgk4K .framer-7zei9z-container, .framer-Pgk4K .framer-166u6r7-container, .framer-Pgk4K .framer-i9ulm2-container, .framer-Pgk4K .framer-15k5di-container, .framer-Pgk4K .framer-fj49hu-container, .framer-Pgk4K .framer-fusv9m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Pgk4K .framer-1n1kgoh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Pgk4K .framer-12ndm05, .framer-Pgk4K .framer-osrus5, .framer-Pgk4K .framer-5txbk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Pgk4K .framer-15d3yd5, .framer-Pgk4K .framer-uotiqu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Pgk4K .framer-i0nr5y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Pgk4K .framer-1n5xgoh { 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: min-content; }\",\".framer-Pgk4K .framer-1j9xbav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Pgk4K .framer-1miah8v { 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-Pgk4K .framer-oe1u2y, .framer-Pgk4K .framer-vrzgtw { --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-Pgk4K .framer-1qbodwp { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(18, 129, 255, 0.11); filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 414px); left: -160px; overflow: hidden; position: absolute; top: -10px; width: 414px; z-index: 0; }\",\".framer-Pgk4K .framer-1kfgkp0 { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(237, 33, 173, 0.05); filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 476px); overflow: hidden; position: absolute; right: -163px; top: -144px; width: 476px; z-index: 0; }\",\".framer-Pgk4K .framer-hpjv3h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1w3758w { 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: 54%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Pgk4K .framer-14zlkke, .framer-Pgk4K .framer-yaeckb, .framer-Pgk4K .framer-1q38vse, .framer-Pgk4K .framer-sysc2z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-10m1yac, .framer-Pgk4K .framer-v0gno0, .framer-Pgk4K .framer-n7o4lz, .framer-Pgk4K .framer-55z29b, .framer-Pgk4K .framer-uf1pos { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-112pom2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-13g6kd6-container, .framer-Pgk4K .framer-7ojcac-container, .framer-Pgk4K .framer-1pfwgzc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Pgk4K .framer-1c6rb44 { align-content: center; align-items: center; background-color: var(--token-606d7061-76e4-4138-aecf-116413938c16, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 80px 60px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1n5v2ig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-cd2gd7 { 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: 70%; }\",\".framer-Pgk4K .framer-13c4lib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-9rof49-container, .framer-Pgk4K .framer-syzskj-container, .framer-Pgk4K .framer-1ec2x2t-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1uh9efg { align-content: center; align-items: center; background-color: var(--token-606d7061-76e4-4138-aecf-116413938c16, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1mqzy92 { 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: 54%; }\",\".framer-Pgk4K .framer-9884ud-container, .framer-Pgk4K .framer-eobjje-container { flex: none; height: 80px; max-width: 1280px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1a0p83w-container, .framer-Pgk4K .framer-1a289xe-container, .framer-Pgk4K .framer-q50496-container, .framer-Pgk4K .framer-9qawld-container, .framer-Pgk4K .framer-vybwsd-container, .framer-Pgk4K .framer-1spdai8-container, .framer-Pgk4K .framer-1utn1fk-container, .framer-Pgk4K .framer-4dxy25-container, .framer-Pgk4K .framer-3tjz8y-container, .framer-Pgk4K .framer-ojntin-container, .framer-Pgk4K .framer-1uqo5pn-container, .framer-Pgk4K .framer-1ln14kl-container, .framer-Pgk4K .framer-twhkvx-container, .framer-Pgk4K .framer-1nnomf5-container, .framer-Pgk4K .framer-1t16zzh-container, .framer-Pgk4K .framer-3ihuhq-container, .framer-Pgk4K .framer-1ua0dyf-container, .framer-Pgk4K .framer-1ywgb9l-container, .framer-Pgk4K .framer-1hieh9l-container { height: auto; position: relative; width: auto; }\",\".framer-Pgk4K .framer-16ftuj3 { align-content: center; align-items: center; background-color: var(--token-674a61d0-92f3-4f5f-96ab-e9c4b993d828, #f0f0ef); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1lea7nm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1v2w4ql { 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: 60%; }\",\".framer-Pgk4K .framer-7r0zjb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1qiwdme { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: none; flex: none; height: auto; position: relative; width: auto; }\",\".framer-Pgk4K .framer-1bqvxr8 { aspect-ratio: 1.008695652173913 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-Pgk4K .framer-1glwx46 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1dmoios-container, .framer-Pgk4K .framer-15f38p4-container, .framer-Pgk4K .framer-y9nsmb-container { flex: 1 0 0px; height: auto; max-width: 50%; position: relative; width: 1px; }\",\".framer-Pgk4K .framer-zzypo4 { align-content: center; align-items: center; background-color: var(--token-606d7061-76e4-4138-aecf-116413938c16, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 60px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-1aiofpd-container { flex: none; height: auto; max-width: 1180px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-jgofe6 { align-content: center; align-items: center; background-color: var(--token-674a61d0-92f3-4f5f-96ab-e9c4b993d828, #f0f0ef); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-pe4e9a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-12zgr1v { 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: 60%; }\",\".framer-Pgk4K .framer-1er1182 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-q6e6f4-container { aspect-ratio: 2.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); max-width: 1080px; position: relative; width: 100%; }\",\".framer-Pgk4K .framer-nnjt1k-container, .framer-Pgk4K .framer-188l0xd-container, .framer-Pgk4K .framer-1himd33-container, .framer-Pgk4K .framer-1vpg9e9-container, .framer-Pgk4K .framer-79v2za-container, .framer-Pgk4K .framer-19yps8t-container { height: auto; position: relative; width: 330px; }\",\".framer-Pgk4K .framer-mc54tr-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-Pgk4K .framer-zkhhqm-container { flex: none; height: auto; left: 50%; position: fixed; top: 15px; transform: translateX(-50%); width: 93%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Pgk4K.framer-31wzd6, .framer-Pgk4K .framer-11ktyec, .framer-Pgk4K .framer-1hogf3l, .framer-Pgk4K .framer-sc1pl5, .framer-Pgk4K .framer-v4a7fm, .framer-Pgk4K .framer-1n1kgoh, .framer-Pgk4K .framer-12ndm05, .framer-Pgk4K .framer-osrus5, .framer-Pgk4K .framer-1n5xgoh, .framer-Pgk4K .framer-1j9xbav, .framer-Pgk4K .framer-1miah8v, .framer-Pgk4K .framer-5txbk6, .framer-Pgk4K .framer-hpjv3h, .framer-Pgk4K .framer-1w3758w, .framer-Pgk4K .framer-14zlkke, .framer-Pgk4K .framer-112pom2, .framer-Pgk4K .framer-1c6rb44, .framer-Pgk4K .framer-1n5v2ig, .framer-Pgk4K .framer-cd2gd7, .framer-Pgk4K .framer-13c4lib, .framer-Pgk4K .framer-1uh9efg, .framer-Pgk4K .framer-1mqzy92, .framer-Pgk4K .framer-yaeckb, .framer-Pgk4K .framer-16ftuj3, .framer-Pgk4K .framer-1lea7nm, .framer-Pgk4K .framer-1v2w4ql, .framer-Pgk4K .framer-1q38vse, .framer-Pgk4K .framer-7r0zjb, .framer-Pgk4K .framer-1glwx46, .framer-Pgk4K .framer-zzypo4, .framer-Pgk4K .framer-jgofe6, .framer-Pgk4K .framer-pe4e9a, .framer-Pgk4K .framer-12zgr1v, .framer-Pgk4K .framer-sysc2z, .framer-Pgk4K .framer-1er1182 { gap: 0px; } .framer-Pgk4K.framer-31wzd6 > *, .framer-Pgk4K .framer-11ktyec > *, .framer-Pgk4K .framer-1n1kgoh > *, .framer-Pgk4K .framer-14zlkke > *, .framer-Pgk4K .framer-yaeckb > *, .framer-Pgk4K .framer-1q38vse > *, .framer-Pgk4K .framer-sysc2z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Pgk4K.framer-31wzd6 > :first-child, .framer-Pgk4K .framer-11ktyec > :first-child, .framer-Pgk4K .framer-1hogf3l > :first-child, .framer-Pgk4K .framer-sc1pl5 > :first-child, .framer-Pgk4K .framer-v4a7fm > :first-child, .framer-Pgk4K .framer-1n1kgoh > :first-child, .framer-Pgk4K .framer-1n5xgoh > :first-child, .framer-Pgk4K .framer-1miah8v > :first-child, .framer-Pgk4K .framer-hpjv3h > :first-child, .framer-Pgk4K .framer-1w3758w > :first-child, .framer-Pgk4K .framer-14zlkke > :first-child, .framer-Pgk4K .framer-1c6rb44 > :first-child, .framer-Pgk4K .framer-1n5v2ig > :first-child, .framer-Pgk4K .framer-cd2gd7 > :first-child, .framer-Pgk4K .framer-13c4lib > :first-child, .framer-Pgk4K .framer-1uh9efg > :first-child, .framer-Pgk4K .framer-1mqzy92 > :first-child, .framer-Pgk4K .framer-yaeckb > :first-child, .framer-Pgk4K .framer-16ftuj3 > :first-child, .framer-Pgk4K .framer-1lea7nm > :first-child, .framer-Pgk4K .framer-1v2w4ql > :first-child, .framer-Pgk4K .framer-1q38vse > :first-child, .framer-Pgk4K .framer-zzypo4 > :first-child, .framer-Pgk4K .framer-jgofe6 > :first-child, .framer-Pgk4K .framer-pe4e9a > :first-child, .framer-Pgk4K .framer-12zgr1v > :first-child, .framer-Pgk4K .framer-sysc2z > :first-child { margin-top: 0px; } .framer-Pgk4K.framer-31wzd6 > :last-child, .framer-Pgk4K .framer-11ktyec > :last-child, .framer-Pgk4K .framer-1hogf3l > :last-child, .framer-Pgk4K .framer-sc1pl5 > :last-child, .framer-Pgk4K .framer-v4a7fm > :last-child, .framer-Pgk4K .framer-1n1kgoh > :last-child, .framer-Pgk4K .framer-1n5xgoh > :last-child, .framer-Pgk4K .framer-1miah8v > :last-child, .framer-Pgk4K .framer-hpjv3h > :last-child, .framer-Pgk4K .framer-1w3758w > :last-child, .framer-Pgk4K .framer-14zlkke > :last-child, .framer-Pgk4K .framer-1c6rb44 > :last-child, .framer-Pgk4K .framer-1n5v2ig > :last-child, .framer-Pgk4K .framer-cd2gd7 > :last-child, .framer-Pgk4K .framer-13c4lib > :last-child, .framer-Pgk4K .framer-1uh9efg > :last-child, .framer-Pgk4K .framer-1mqzy92 > :last-child, .framer-Pgk4K .framer-yaeckb > :last-child, .framer-Pgk4K .framer-16ftuj3 > :last-child, .framer-Pgk4K .framer-1lea7nm > :last-child, .framer-Pgk4K .framer-1v2w4ql > :last-child, .framer-Pgk4K .framer-1q38vse > :last-child, .framer-Pgk4K .framer-zzypo4 > :last-child, .framer-Pgk4K .framer-jgofe6 > :last-child, .framer-Pgk4K .framer-pe4e9a > :last-child, .framer-Pgk4K .framer-12zgr1v > :last-child, .framer-Pgk4K .framer-sysc2z > :last-child { margin-bottom: 0px; } .framer-Pgk4K .framer-1hogf3l > *, .framer-Pgk4K .framer-16ftuj3 > *, .framer-Pgk4K .framer-zzypo4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Pgk4K .framer-sc1pl5 > *, .framer-Pgk4K .framer-1c6rb44 > *, .framer-Pgk4K .framer-13c4lib > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Pgk4K .framer-v4a7fm > *, .framer-Pgk4K .framer-jgofe6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Pgk4K .framer-12ndm05 > *, .framer-Pgk4K .framer-osrus5 > *, .framer-Pgk4K .framer-5txbk6 > *, .framer-Pgk4K .framer-7r0zjb > *, .framer-Pgk4K .framer-1er1182 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Pgk4K .framer-12ndm05 > :first-child, .framer-Pgk4K .framer-osrus5 > :first-child, .framer-Pgk4K .framer-1j9xbav > :first-child, .framer-Pgk4K .framer-5txbk6 > :first-child, .framer-Pgk4K .framer-112pom2 > :first-child, .framer-Pgk4K .framer-7r0zjb > :first-child, .framer-Pgk4K .framer-1glwx46 > :first-child, .framer-Pgk4K .framer-1er1182 > :first-child { margin-left: 0px; } .framer-Pgk4K .framer-12ndm05 > :last-child, .framer-Pgk4K .framer-osrus5 > :last-child, .framer-Pgk4K .framer-1j9xbav > :last-child, .framer-Pgk4K .framer-5txbk6 > :last-child, .framer-Pgk4K .framer-112pom2 > :last-child, .framer-Pgk4K .framer-7r0zjb > :last-child, .framer-Pgk4K .framer-1glwx46 > :last-child, .framer-Pgk4K .framer-1er1182 > :last-child { margin-right: 0px; } .framer-Pgk4K .framer-1n5xgoh > *, .framer-Pgk4K .framer-cd2gd7 > *, .framer-Pgk4K .framer-1mqzy92 > *, .framer-Pgk4K .framer-1v2w4ql > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Pgk4K .framer-1j9xbav > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Pgk4K .framer-1miah8v > *, .framer-Pgk4K .framer-1uh9efg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Pgk4K .framer-hpjv3h > *, .framer-Pgk4K .framer-1n5v2ig > *, .framer-Pgk4K .framer-1lea7nm > *, .framer-Pgk4K .framer-pe4e9a > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Pgk4K .framer-1w3758w > *, .framer-Pgk4K .framer-12zgr1v > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Pgk4K .framer-112pom2 > *, .framer-Pgk4K .framer-1glwx46 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (max-width: 809px) { .framer-Pgk4K.framer-31wzd6 { overflow: hidden; width: 390px; } .framer-Pgk4K .framer-11ktyec { order: 2; } .framer-Pgk4K .framer-1hogf3l { order: 0; padding: 10px; } .framer-Pgk4K .framer-sc1pl5 { padding: 120px 20px 64px 20px; } .framer-Pgk4K .framer-v4a7fm { max-width: 480px; width: 100%; } .framer-Pgk4K .framer-1n1kgoh, .framer-Pgk4K .framer-1n5xgoh, .framer-Pgk4K .framer-7zei9z-container, .framer-Pgk4K .framer-1w3758w, .framer-Pgk4K .framer-cd2gd7, .framer-Pgk4K .framer-1mqzy92, .framer-Pgk4K .framer-1v2w4ql, .framer-Pgk4K .framer-12zgr1v { width: 100%; } .framer-Pgk4K .framer-12ndm05 { flex-direction: column; gap: 0px; width: 100%; } .framer-Pgk4K .framer-1j9xbav, .framer-Pgk4K .framer-5txbk6 { flex-direction: column; width: 100%; } .framer-Pgk4K .framer-uotiqu { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Pgk4K .framer-hpjv3h { gap: 24px; order: 1; padding: 60px 20px 60px 20px; } .framer-Pgk4K .framer-112pom2, .framer-Pgk4K .framer-1glwx46 { flex-direction: column; } .framer-Pgk4K .framer-13g6kd6-container, .framer-Pgk4K .framer-7ojcac-container, .framer-Pgk4K .framer-1pfwgzc-container { flex: none; width: 100%; } .framer-Pgk4K .framer-1c6rb44 { order: 2; padding: 60px 20px 60px 20px; } .framer-Pgk4K .framer-1n5v2ig, .framer-Pgk4K .framer-1lea7nm { max-width: 480px; } .framer-Pgk4K .framer-1uh9efg { order: 3; padding: 40px; } .framer-Pgk4K .framer-n7o4lz { width: 388px; } .framer-Pgk4K .framer-yaeckb { width: 170%; } .framer-Pgk4K .framer-9884ud-container { height: 88px; } .framer-Pgk4K .framer-eobjje-container { height: 78px; } .framer-Pgk4K .framer-16ftuj3 { order: 4; padding: 40px 20px 60px 20px; } .framer-Pgk4K .framer-1dmoios-container, .framer-Pgk4K .framer-15f38p4-container, .framer-Pgk4K .framer-y9nsmb-container { flex: none; max-width: unset; width: 100%; } .framer-Pgk4K .framer-zzypo4 { order: 6; padding: 40px 20px 40px 20px; } .framer-Pgk4K .framer-jgofe6 { order: 7; padding: 60px 20px 120px 20px; } .framer-Pgk4K .framer-pe4e9a { gap: 40px; } .framer-Pgk4K .framer-1er1182 { padding: 0px 16px 0px 0px; } .framer-Pgk4K .framer-q6e6f4-container { aspect-ratio: 0.8641975308641975 / 1; height: var(--framer-aspect-ratio-supported, 387px); max-width: 405px; } .framer-Pgk4K .framer-mc54tr-container { order: 10; } .framer-Pgk4K .framer-zkhhqm-container { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Pgk4K .framer-12ndm05, .framer-Pgk4K .framer-1j9xbav, .framer-Pgk4K .framer-5txbk6, .framer-Pgk4K .framer-hpjv3h, .framer-Pgk4K .framer-112pom2, .framer-Pgk4K .framer-1glwx46, .framer-Pgk4K .framer-pe4e9a { gap: 0px; } .framer-Pgk4K .framer-12ndm05 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Pgk4K .framer-12ndm05 > :first-child, .framer-Pgk4K .framer-1j9xbav > :first-child, .framer-Pgk4K .framer-5txbk6 > :first-child, .framer-Pgk4K .framer-hpjv3h > :first-child, .framer-Pgk4K .framer-112pom2 > :first-child, .framer-Pgk4K .framer-1glwx46 > :first-child, .framer-Pgk4K .framer-pe4e9a > :first-child { margin-top: 0px; } .framer-Pgk4K .framer-12ndm05 > :last-child, .framer-Pgk4K .framer-1j9xbav > :last-child, .framer-Pgk4K .framer-5txbk6 > :last-child, .framer-Pgk4K .framer-hpjv3h > :last-child, .framer-Pgk4K .framer-112pom2 > :last-child, .framer-Pgk4K .framer-1glwx46 > :last-child, .framer-Pgk4K .framer-pe4e9a > :last-child { margin-bottom: 0px; } .framer-Pgk4K .framer-1j9xbav > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Pgk4K .framer-5txbk6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Pgk4K .framer-hpjv3h > *, .framer-Pgk4K .framer-112pom2 > *, .framer-Pgk4K .framer-1glwx46 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Pgk4K .framer-pe4e9a > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Pgk4K.framer-31wzd6 { width: 810px; } .framer-Pgk4K .framer-1hogf3l { overflow: hidden; } .framer-Pgk4K .framer-sc1pl5 { padding: 140px 24px 108px 24px; } .framer-Pgk4K .framer-1qbodwp { height: var(--framer-aspect-ratio-supported, 328px); left: -45px; top: 76px; width: 328px; } .framer-Pgk4K .framer-1kfgkp0 { height: var(--framer-aspect-ratio-supported, 377px); right: -48px; top: -30px; width: 377px; } .framer-Pgk4K .framer-1c6rb44, .framer-Pgk4K .framer-16ftuj3, .framer-Pgk4K .framer-zzypo4 { padding: 60px 40px 60px 40px; } .framer-Pgk4K .framer-cd2gd7 { order: 0; } .framer-Pgk4K .framer-13c4lib { order: 1; } .framer-Pgk4K .framer-1lea7nm { gap: 40px; } .framer-Pgk4K .framer-jgofe6 { padding: 60px 40px 100px 40px; } .framer-Pgk4K .framer-q6e6f4-container { aspect-ratio: 1.7936117936117937 / 1; height: var(--framer-aspect-ratio-supported, 407px); max-width: 800px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Pgk4K .framer-1lea7nm { gap: 0px; } .framer-Pgk4K .framer-1lea7nm > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Pgk4K .framer-1lea7nm > :first-child { margin-top: 0px; } .framer-Pgk4K .framer-1lea7nm > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6231.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vCrzHSM4N\":{\"layout\":[\"fixed\",\"auto\"]},\"bMeXVpiq1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"sxf5r7Swr\":{\"pattern\":\":sxf5r7Swr\",\"name\":\"hero\"},\"U84SoH8Iv\":{\"pattern\":\":U84SoH8Iv\",\"name\":\"benefits-bottom\"},\"cSTgbRycn\":{\"pattern\":\":cSTgbRycn\",\"name\":\"benefits\"},\"RlqEQBez2\":{\"pattern\":\":RlqEQBez2\",\"name\":\"metrics\"},\"wbXGWL3NE\":{\"pattern\":\":wbXGWL3NE\",\"name\":\"industries\"},\"OtWFWvos3\":{\"pattern\":\":OtWFWvos3\",\"name\":\"features\"},\"sc7ABbXeR\":{\"pattern\":\":sc7ABbXeR\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerxjSJgchBm=withCSS(Component,css,\"framer-Pgk4K\");export default FramerxjSJgchBm;FramerxjSJgchBm.displayName=\"Design Explorations\";FramerxjSJgchBm.defaultProps={height:6231.5,width:1200};addFonts(FramerxjSJgchBm,[{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\"}]},...DesktopNavbarFonts,...SectionBadgeFonts,...ButtonFonts,...BenefitCardFonts,...FeatureCardFonts,...ElementsAdvantageFonts,...TickerFonts,...StatsCardFonts,...ClickTabGalleryFonts,...CarouselCardFonts,...SlideshowFonts,...FooterFooterFonts,...MobileNavMobileNavbar2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxjSJgchBm\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vCrzHSM4N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bMeXVpiq1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"sxf5r7Swr\\\":{\\\"pattern\\\":\\\":sxf5r7Swr\\\",\\\"name\\\":\\\"hero\\\"},\\\"U84SoH8Iv\\\":{\\\"pattern\\\":\\\":U84SoH8Iv\\\",\\\"name\\\":\\\"benefits-bottom\\\"},\\\"cSTgbRycn\\\":{\\\"pattern\\\":\\\":cSTgbRycn\\\",\\\"name\\\":\\\"benefits\\\"},\\\"RlqEQBez2\\\":{\\\"pattern\\\":\\\":RlqEQBez2\\\",\\\"name\\\":\\\"metrics\\\"},\\\"wbXGWL3NE\\\":{\\\"pattern\\\":\\\":wbXGWL3NE\\\",\\\"name\\\":\\\"industries\\\"},\\\"OtWFWvos3\\\":{\\\"pattern\\\":\\\":OtWFWvos3\\\",\\\"name\\\":\\\"features\\\"},\\\"sc7ABbXeR\\\":{\\\"pattern\\\":\\\":sc7ABbXeR\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicHeight\":\"6231.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "bGColor", "description", "description1", "height", "id", "number", "title", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "QrpKZvhaK", "b7QMQsnoo", "FWYaLA602", "l2dvoejJd", "wsiICb0qb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "MotionDivWithFX", "RichText2", "css", "FramerBgTuF5hVK", "withCSS", "BgTuF5hVK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ovJvdDBRs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "RichText2", "css", "FramergEzAw2dB9", "withCSS", "gEzAw2dB9_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "text", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Y76q34YJM", "FcmrTn57Q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText2", "css", "FramerN0sZJWDCi", "withCSS", "N0sZJWDCi_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "Framerqw0MFgQPK", "withCSS", "qw0MFgQPK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "WidgetFonts", "getFonts", "qw0MFgQPK_default", "SectionBadgeFonts", "dD61QMzdz_default", "BulletListFonts", "N0sZJWDCi_default", "MotionDivWithFX", "withFX", "motion", "WidgetControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "badge", "badgeText", "bullet1", "bullet2", "bullet3", "height", "icon", "iconType", "id", "image", "title", "uIWidget", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BNCAggTc0", "cPVOaI9RE", "I8ag1XXCW", "lklw7WgJQ", "UZVIpq2pA", "S_BafeDsd", "EuP_baee9", "FPFADHvHM", "IfjWk2MFN", "yfrcUlUVE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "FramerZtfWhssp1", "withCSS", "ZtfWhssp1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "DesktopNavbarFonts", "getFonts", "NzahfG5K5_default", "DesktopNavbarWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "SectionBadgeFonts", "dD61QMzdz_default", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonFonts", "leAJoivfU_default", "MotionSectionWithOptimizedAppearEffect", "motion", "MotionDivWithOptimizedAppearEffect", "BenefitCardFonts", "N9Hg3dH7s_default", "MotionDivWithFX", "withFX", "FeatureCardFonts", "ZtfWhssp1_default", "ElementsAdvantageFonts", "gEzAw2dB9_default", "TickerFonts", "Ticker", "StatsCardFonts", "BgTuF5hVK_default", "ClickTabGalleryFonts", "Ntahob3uU_default", "MotionSectionWithFX", "CarouselCardFonts", "BP5sZ5VWQ_default", "SlideshowFonts", "Slideshow", "FooterFooterFonts", "RuBLZRy2w_default", "MobileNavMobileNavbar2Fonts", "vHj2Os9YH_default", "MobileNavMobileNavbar2WithVariantAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "textEffect", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "animation9", "addImageAlt", "image", "alt", "transition6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "ref1", "ref2", "elementId", "useRouteElementId", "ref3", "router", "useRouter", "elementId1", "ref4", "elementId2", "elementId3", "ref5", "ref6", "elementId4", "elementId5", "ref7", "elementId6", "ref8", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "SVG", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FramerxjSJgchBm", "withCSS", "xjSJgchBm_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
