{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/ySbNs0Af5noj8neyuxl8/NjO5DosapMxzc9BhpAve/hF6_NNiKO.js", "ssg:https://framerusercontent.com/modules/Qqj9G0PHVL8L7465ejBS/gF6ADlb2gS2dIknC8OtK/U9Fd2JP5p.js", "ssg:https://framerusercontent.com/modules/XE20hTuKPECElAjQ5zpj/ZJEB3QzxqOk4nkANrDXK/JhbyeWsmh.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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 transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (27ad407)\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 Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/siVnUuXr29HU5p4OD8Ie/e9khmV8VsyG6XLN1RmIL/vJ6utUCcx.js\";const MaterialFonts=getFonts(Material);const serializationHash=\"framer-jQ1Wf\";const variantClassNames={oSS6vIExm:\"framer-v-8sgj8f\"};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 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 getProps=({company,height,id,image,name1,position,text,width,...props})=>{return{...props,fjnuaWZtT:company??props.fjnuaWZtT??\"Company\",GKKDAluWm:text??props.GKKDAluWm??\"Leo is fantastic. A GenAI assistant that leverages the organizational knowledge for designing products.\",JPwIrZiYC:name1??props.JPwIrZiYC??\"Javier Arca\",P0JT7qzaa:position??props.P0JT7qzaa??\"Head of Mechanical Design\",Qy1wBTYwJ:image??props.Qy1wBTYwJ??{pixelHeight:640,pixelWidth:700,src:\"https://framerusercontent.com/images/Ve9XUcUdSPuEUcxifFToP061E9E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ve9XUcUdSPuEUcxifFToP061E9E.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ve9XUcUdSPuEUcxifFToP061E9E.png 700w\"}};};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,Qy1wBTYwJ,JPwIrZiYC,P0JT7qzaa,GKKDAluWm,fjnuaWZtT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"oSS6vIExm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8sgj8f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"oSS6vIExm\",ref:refBinding,style:{backgroundColor:\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11h1uxt\",layoutDependency:layoutDependency,layoutId:\"WAYLWifoZ\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+3),pixelHeight:100,pixelWidth:100,sizes:\"70px\",...toResponsiveImage(Qy1wBTYwJ)},className:\"framer-wah6lj\",layoutDependency:layoutDependency,layoutId:\"ZbOjb6WZt\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13xdtwh\",layoutDependency:layoutDependency,layoutId:\"SnSejuk5A\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1856ot7\",layoutDependency:layoutDependency,layoutId:\"HoUUzt1OP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-fc4c22a3-8be0-4b6f-86a5-21a00ee8a1b4, rgb(80, 74, 84)))\"},children:\"Javier Arca\"})}),className:\"framer-wbt4uw\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"nYQizoawI\",style:{\"--extracted-a0htzi\":\"var(--token-fc4c22a3-8be0-4b6f-86a5-21a00ee8a1b4, rgb(80, 74, 84))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:JPwIrZiYC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Head of Mechanical Design\"})}),className:\"framer-fibxl6\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"omvtLqkzX\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:P0JT7qzaa,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 153, 153))\"},children:\"Head of Mechanical Design\"})}),className:\"framer-s75c8z\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"Ladwa0K5Q\",style:{\"--extracted-r6o4lv\":\"rgb(153, 153, 153)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:fjnuaWZtT,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ioppni\",layoutDependency:layoutDependency,layoutId:\"NA7R_Rv2v\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17hfshw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Fn5jmKHJt-container\",nodeId:\"Fn5jmKHJt\",rendersWithMotion:true,scopeId:\"hF6_NNiKO\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-19a1b5fe-7182-4018-8393-9586cd880d27, rgb(255, 188, 111))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"StarRate\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Fn5jmKHJt\",layoutId:\"Fn5jmKHJt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4b31f0-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"t3JQ90N8N-container\",nodeId:\"t3JQ90N8N\",rendersWithMotion:true,scopeId:\"hF6_NNiKO\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-19a1b5fe-7182-4018-8393-9586cd880d27, rgb(255, 188, 111))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"StarRate\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"t3JQ90N8N\",layoutId:\"t3JQ90N8N\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lcf4tf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XhWhl67YN-container\",nodeId:\"XhWhl67YN\",rendersWithMotion:true,scopeId:\"hF6_NNiKO\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-19a1b5fe-7182-4018-8393-9586cd880d27, rgb(255, 188, 111))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"StarRate\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"XhWhl67YN\",layoutId:\"XhWhl67YN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uv4ada-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nI5hIAxhz-container\",nodeId:\"nI5hIAxhz\",rendersWithMotion:true,scopeId:\"hF6_NNiKO\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-19a1b5fe-7182-4018-8393-9586cd880d27, rgb(255, 188, 111))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"StarRate\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"nI5hIAxhz\",layoutId:\"nI5hIAxhz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4fcu39-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nzQ4ymKMi-container\",nodeId:\"nzQ4ymKMi\",rendersWithMotion:true,scopeId:\"hF6_NNiKO\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-19a1b5fe-7182-4018-8393-9586cd880d27, rgb(255, 188, 111))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"StarRate\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"nzQ4ymKMi\",layoutId:\"nzQ4ymKMi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gqvumw\",\"data-styles-preset\":\"vJ6utUCcx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)))\"},children:\"Leo is fantastic. A GenAI assistant that leverages the organizational knowledge for designing products.\"})}),className:\"framer-wutaob\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rfjsK8kja\",style:{\"--extracted-r6o4lv\":\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43))\",\"--framer-paragraph-spacing\":\"0px\"},text:GKKDAluWm,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jQ1Wf.framer-6a6t0b, .framer-jQ1Wf .framer-6a6t0b { display: block; }\",\".framer-jQ1Wf.framer-8sgj8f { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 219px; justify-content: flex-start; padding: 16px; position: relative; width: 310px; }\",\".framer-jQ1Wf .framer-11h1uxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jQ1Wf .framer-wah6lj { flex: none; height: 64px; overflow: hidden; position: relative; width: 70px; }\",\".framer-jQ1Wf .framer-13xdtwh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jQ1Wf .framer-1856ot7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jQ1Wf .framer-wbt4uw, .framer-jQ1Wf .framer-fibxl6, .framer-jQ1Wf .framer-s75c8z { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-jQ1Wf .framer-ioppni { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jQ1Wf .framer-17hfshw-container, .framer-jQ1Wf .framer-4b31f0-container, .framer-jQ1Wf .framer-1lcf4tf-container, .framer-jQ1Wf .framer-uv4ada-container, .framer-jQ1Wf .framer-4fcu39-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-jQ1Wf .framer-wutaob { flex: none; height: 67px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 219\n * @framerIntrinsicWidth 310\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Qy1wBTYwJ\":\"image\",\"JPwIrZiYC\":\"name1\",\"P0JT7qzaa\":\"position\",\"GKKDAluWm\":\"text\",\"fjnuaWZtT\":\"company\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhF6_NNiKO=withCSS(Component,css,\"framer-jQ1Wf\");export default FramerhF6_NNiKO;FramerhF6_NNiKO.displayName=\"Card Testimony\";FramerhF6_NNiKO.defaultProps={height:219,width:310};addPropertyControls(FramerhF6_NNiKO,{Qy1wBTYwJ:{__defaultAssetReference:\"data:framer/asset-reference,Ve9XUcUdSPuEUcxifFToP061E9E.png?originalFilename=javier.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},JPwIrZiYC:{defaultValue:\"Javier Arca\",displayTextArea:false,title:\"Name\",type:ControlType.String},P0JT7qzaa:{defaultValue:\"Head of Mechanical Design\",displayTextArea:false,title:\"Position\",type:ControlType.String},GKKDAluWm:{defaultValue:\"Leo is fantastic. A GenAI assistant that leverages the organizational knowledge for designing products.\",displayTextArea:true,title:\"Text\",type:ControlType.String},fjnuaWZtT:{defaultValue:\"Company\",displayTextArea:false,title:\"Company\",type:ControlType.String}});addFonts(FramerhF6_NNiKO,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.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\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhF6_NNiKO\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Qy1wBTYwJ\\\":\\\"image\\\",\\\"JPwIrZiYC\\\":\\\"name1\\\",\\\"P0JT7qzaa\\\":\\\"position\\\",\\\"GKKDAluWm\\\":\\\"text\\\",\\\"fjnuaWZtT\\\":\\\"company\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"219\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"310\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hF6_NNiKO.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,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/4hIKXq3FQWzo4mJ66Bfc/luxH3uwBdj64qfJgOf1W/XmdWBAziH.js\";const enabledGestures={b9okiK2rT:{hover:true}};const cycleOrder=[\"b9okiK2rT\",\"qNQMytbUz\",\"asH_HKzxU\"];const serializationHash=\"framer-0gRBg\";const variantClassNames={asH_HKzxU:\"framer-v-pm1vcd\",b9okiK2rT:\"framer-v-d9nkq4\",qNQMytbUz:\"framer-v-1dmynn7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Hover Image\":\"b9okiK2rT\",Mobile:\"asH_HKzxU\",Tablet:\"qNQMytbUz\"};const getProps=({height,id,image,shot,text,width,...props})=>{return{...props,r0sZUCxq2:text??props.r0sZUCxq2??\"Centralize and activate your engineering knowledge.  Leo pulls from standards, textbooks, and your internal documents \u2014 specs, testing data, past design decisions \u2014 to give answers that reflect how your company actually works. This reduces mistakes, speeds up onboarding, and ensures consistency across teams.\",R149b_pXs:image??props.R149b_pXs??{pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/sSckmKmzeLQYUZuaXRVUbnmY2K8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sSckmKmzeLQYUZuaXRVUbnmY2K8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sSckmKmzeLQYUZuaXRVUbnmY2K8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sSckmKmzeLQYUZuaXRVUbnmY2K8.jpg 1920w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"b9okiK2rT\",W2fqzvWW8:shot??props.W2fqzvWW8??{alt:\"\",pixelHeight:869,pixelWidth:1546,src:\"https://framerusercontent.com/images/Rtbm00faejZxF0RXXhBDgARc2cc.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Rtbm00faejZxF0RXXhBDgARc2cc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Rtbm00faejZxF0RXXhBDgARc2cc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rtbm00faejZxF0RXXhBDgARc2cc.jpg 1546w\"}};};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,R149b_pXs,r0sZUCxq2,W2fqzvWW8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b9okiK2rT\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"b9okiK2rT-hover\")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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d9nkq4\",className,classNames),\"data-framer-name\":\"Hover Image\",layoutDependency:layoutDependency,layoutId:\"b9okiK2rT\",ref:refBinding,style:{...style},...addPropertyOverrides({\"b9okiK2rT-hover\":{\"data-framer-name\":undefined},asH_HKzxU:{\"data-framer-name\":\"Mobile\"},qNQMytbUz:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||563)-0-563)/2+0+0)),pixelHeight:1080,pixelWidth:1920,sizes:\"1000px\",...toResponsiveImage(R149b_pXs)},className:\"framer-1vebtkd\",\"data-framer-name\":\"Leochat\",layoutDependency:layoutDependency,layoutId:\"bYRrkSxbk\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({asH_HKzxU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||202.683)-0-(Math.max(0,((componentViewport?.height||202.683)-0-0)/1)*1+0))/2+0+0)),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${Math.max(0,((componentViewport?.height||202.683)-0-0)/1)*1} * 1.7778)`,...toResponsiveImage(R149b_pXs)}},qNQMytbUz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||337.8)-0-(Math.max(0,((componentViewport?.height||337.8)-0-0)/1)*1+0))/2+0+0)),pixelHeight:1080,pixelWidth:1920,sizes:`calc(${Math.max(0,((componentViewport?.height||337.8)-0-0)/1)*1} * 1.7778)`,...toResponsiveImage(R149b_pXs)}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:869,intrinsicWidth:1546,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||563)-0-563)/2+0+0)+79.8922),pixelHeight:869,pixelWidth:1546,sizes:\"800px\",...toResponsiveImage(W2fqzvWW8)},className:\"framer-1kc8bvf\",\"data-framer-name\":\"16 Leo_AI_GIFs_01-_HQ\",layoutDependency:layoutDependency,layoutId:\"XGEBjDYn5\",transformTemplate:transformTemplate1,...addPropertyOverrides({asH_HKzxU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:869,intrinsicWidth:1546,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||202.683)-0-(Math.max(0,((componentViewport?.height||202.683)-0-0)/1)*1+0))/2+0+0)+(Math.max(0,((componentViewport?.height||202.683)-0-0)/1)*1*.4983151028946683-89.9335)),pixelHeight:869,pixelWidth:1546,sizes:\"280px\",...toResponsiveImage(W2fqzvWW8)}},qNQMytbUz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:869,intrinsicWidth:1546,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||337.8)-0-(Math.max(0,((componentViewport?.height||337.8)-0-0)/1)*1+0))/2+0+0)+(Math.max(0,((componentViewport?.height||337.8)-0-0)/1)*1*.5002960331557137-112.4165)),pixelHeight:869,pixelWidth:1546,sizes:\"480px\",...toResponsiveImage(W2fqzvWW8)}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19mt34k\",layoutDependency:layoutDependency,layoutId:\"pVQ8Pe7_P\",style:{background:\"linear-gradient(180deg, rgba(34, 28, 43, 0) 0%, rgb(45, 39, 53) 61.7117117117117%)\"},transformTemplate:transformTemplate2,children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2dk2bh\",\"data-styles-preset\":\"XmdWBAziH\",children:\"Centralize and activate your engineering knowledge.  Leo pulls from standards, textbooks, and your internal documents \u2014 specs, testing data, past design decisions \u2014 to give answers that reflect how your company actually works. This reduces mistakes, speeds up onboarding, and ensures consistency across teams.\"})}),className:\"framer-183g8vt\",\"data-framer-name\":\"Built by Mechanical Engineers for Mechanical Engineers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PsccipTi3\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:r0sZUCxq2,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0gRBg.framer-1xd3cvx, .framer-0gRBg .framer-1xd3cvx { display: block; }\",\".framer-0gRBg.framer-d9nkq4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 563px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-0gRBg .framer-1vebtkd { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); overflow: visible; position: relative; width: 1000px; }\",\".framer-0gRBg .framer-1kc8bvf { aspect-ratio: 1.7790563866513234 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 800px; }\",\".framer-0gRBg .framer-19mt34k { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 129px; overflow: visible; padding: 80px 24px 24px 24px; position: absolute; width: 100%; }\",\".framer-0gRBg .framer-183g8vt { 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-0gRBg.framer-d9nkq4, .framer-0gRBg .framer-19mt34k { gap: 0px; } .framer-0gRBg.framer-d9nkq4 > *, .framer-0gRBg .framer-19mt34k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0gRBg.framer-d9nkq4 > :first-child, .framer-0gRBg .framer-19mt34k > :first-child { margin-top: 0px; } .framer-0gRBg.framer-d9nkq4 > :last-child, .framer-0gRBg .framer-19mt34k > :last-child { margin-bottom: 0px; } }\",\".framer-0gRBg.framer-v-1dmynn7.framer-d9nkq4 { aspect-ratio: 1.7761989342806395 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 338px); width: 600px; }\",\".framer-0gRBg.framer-v-1dmynn7 .framer-1vebtkd { flex: 1 0 0px; height: 1px; width: var(--framer-aspect-ratio-supported, 601px); }\",\".framer-0gRBg.framer-v-1dmynn7 .framer-1kc8bvf { height: var(--framer-aspect-ratio-supported, 270px); left: 50%; top: 50%; width: 480px; }\",\".framer-0gRBg.framer-v-pm1vcd.framer-d9nkq4 { aspect-ratio: 1.7761989342806395 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 203px); width: 360px; }\",\".framer-0gRBg.framer-v-pm1vcd .framer-1vebtkd { flex: 1 0 0px; height: 1px; width: var(--framer-aspect-ratio-supported, 360px); }\",\".framer-0gRBg.framer-v-pm1vcd .framer-1kc8bvf { height: var(--framer-aspect-ratio-supported, 157px); left: 50%; top: 50%; width: 280px; }\",\".framer-0gRBg.framer-v-d9nkq4.hover .framer-1vebtkd { overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-0gRBg.framer-v-d9nkq4.hover .framer-19mt34k { min-height: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 563\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qNQMytbUz\":{\"layout\":[\"fixed\",\"fixed\"]},\"asH_HKzxU\":{\"layout\":[\"fixed\",\"fixed\"]},\"tU0whAfmy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"R149b_pXs\":\"image\",\"r0sZUCxq2\":\"text\",\"W2fqzvWW8\":\"shot\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerU9Fd2JP5p=withCSS(Component,css,\"framer-0gRBg\");export default FramerU9Fd2JP5p;FramerU9Fd2JP5p.displayName=\"Hover Image\";FramerU9Fd2JP5p.defaultProps={height:563,width:1e3};addPropertyControls(FramerU9Fd2JP5p,{variant:{options:[\"b9okiK2rT\",\"qNQMytbUz\",\"asH_HKzxU\"],optionTitles:[\"Hover Image\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},R149b_pXs:{__defaultAssetReference:\"data:framer/asset-reference,sSckmKmzeLQYUZuaXRVUbnmY2K8.jpg?originalFilename=leo-gradient.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},r0sZUCxq2:{defaultValue:\"Centralize and activate your engineering knowledge.  Leo pulls from standards, textbooks, and your internal documents \u2014 specs, testing data, past design decisions \u2014 to give answers that reflect how your company actually works. This reduces mistakes, speeds up onboarding, and ensures consistency across teams.\",displayTextArea:true,title:\"Text\",type:ControlType.String},W2fqzvWW8:{__defaultAssetReference:\"data:framer/asset-reference,Rtbm00faejZxF0RXXhBDgARc2cc.jpg?originalFilename=16_Leo_AI_GIFs_01-_HQ.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,Rtbm00faejZxF0RXXhBDgARc2cc.jpg?originalFilename=16_Leo_AI_GIFs_01-_HQ.jpg&preferredSize=auto\"},title:\"Shot\",type:ControlType.ResponsiveImage}});addFonts(FramerU9Fd2JP5p,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerU9Fd2JP5p\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"563\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"R149b_pXs\\\":\\\"image\\\",\\\"r0sZUCxq2\\\":\\\"text\\\",\\\"W2fqzvWW8\\\":\\\"shot\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qNQMytbUz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"asH_HKzxU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tU0whAfmy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./U9Fd2JP5p.map", "// Generated by Framer (de5a9b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Nav from\"#framer/local/canvasComponent/gWw56_gTO/gWw56_gTO.js\";import CardTestimony from\"#framer/local/canvasComponent/hF6_NNiKO/hF6_NNiKO.js\";import Btn from\"#framer/local/canvasComponent/jCpH_4vlx/jCpH_4vlx.js\";import HoverImage from\"#framer/local/canvasComponent/U9Fd2JP5p/U9Fd2JP5p.js\";import Footer2025 from\"#framer/local/canvasComponent/wuGzBlrr6/wuGzBlrr6.js\";import*as sharedStyle3 from\"#framer/local/css/a7drgFLau/a7drgFLau.js\";import*as sharedStyle1 from\"#framer/local/css/cYPf5t8Q6/cYPf5t8Q6.js\";import*as sharedStyle5 from\"#framer/local/css/r0xpSrC7j/r0xpSrC7j.js\";import*as sharedStyle2 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle4 from\"#framer/local/css/VEld5BMka/VEld5BMka.js\";import*as sharedStyle from\"#framer/local/css/Xt9hD2A_s/Xt9hD2A_s.js\";import metadataProvider from\"#framer/local/webPageMetadata/JhbyeWsmh/JhbyeWsmh.js\";const NavFonts=getFonts(Nav);const NavWithVariantAppearEffect=withVariantAppearEffect(Nav);const ContainerWithFX=withFX(Container);const BtnFonts=getFonts(Btn);const TickerFonts=getFonts(Ticker);const CardTestimonyFonts=getFonts(CardTestimony);const HeroFonts=getFonts(Hero);const MaterialFonts=getFonts(Material);const HoverImageFonts=getFonts(HoverImage);const Footer2025Fonts=getFonts(Footer2025);const breakpoints={BRaKlDjdm:\"(max-width: 599px)\",CpMCoy0GB:\"(min-width: 1200px) and (max-width: 1439px)\",eJ67jPrGX:\"(min-width: 600px) and (max-width: 1199px)\",LlMFdmgEb:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-EUfJW\";const variantClassNames={BRaKlDjdm:\"framer-v-13a7hci\",CpMCoy0GB:\"framer-v-q10gqh\",eJ67jPrGX:\"framer-v-g4a2m8\",LlMFdmgEb:\"framer-v-zjihyb\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"LlMFdmgEb\",laptop:\"CpMCoy0GB\",Phone:\"BRaKlDjdm\",Tablet:\"eJ67jPrGX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"CpMCoy0GB\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"KF9W4t4K7\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"BRaKlDjdm\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"eJ67jPrGX\",\"BRaKlDjdm\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"CpMCoy0GB\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-q10gqh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ozjtl1-container\",layoutScroll:true,nodeId:\"enPc9kEcl\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{__framer__scrollDirection:{direction:\"up\",target:\"nLT9FPEsZ\"},variant:\"nLT9FPEsZ\"},eJ67jPrGX:{__framer__scrollDirection:{direction:\"up\",target:\"vSH7CXahN\"},variant:\"vSH7CXahN\"}},children:/*#__PURE__*/_jsx(NavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"up\",target:\"FCEz73hzB\"},__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"enPc9kEcl\",layoutId:\"enPc9kEcl\",style:{width:\"100%\"},variant:\"zjVZcBG1A\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1e3,pixelWidth:1720,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/nfccnAkvzMNm1yFycQkQOHsM9f4.png\",srcSet:\"https://framerusercontent.com/images/nfccnAkvzMNm1yFycQkQOHsM9f4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nfccnAkvzMNm1yFycQkQOHsM9f4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nfccnAkvzMNm1yFycQkQOHsM9f4.png 1720w\"},className:\"framer-1wgxegz\",\"data-framer-name\":\"hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awxydk\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Mechanical Engineering Copilot\"})}),fonts:[\"Inter-Bold\"]},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgQm9sZA==\",\"--framer-font-family\":'\"Satoshi Bold\", \"Satoshi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\"},children:\"Mechanical Engineering Copilot\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-color\":\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"32px\"},children:\"Real answers, Real parts, Real concepts\"})]})}),fonts:[\"CUSTOM;Satoshi Bold\",\"FS;Satoshi-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"66px\",\"--framer-letter-spacing\":\"-0.05em\"},children:\"Mechanical Engineering Copilot\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"66px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"Real answers, Real parts, Real concepts\"]})}),className:\"framer-1oeh5pv\",\"data-framer-name\":\"The world's first engineering design copilot.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Real answers, Real parts, Real concepts\"})}),className:\"framer-9lwrg3 hidden-q10gqh hidden-g4a2m8 hidden-zjihyb\",\"data-framer-name\":\"The world's first engineering design copilot.\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{y:(componentViewport?.y||0)+0+0+64+130},eJ67jPrGX:{y:(componentViewport?.y||0)+0+0+120+150}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+0+200+542,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kx6sbv-container\",nodeId:\"MR1nFbYpA\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Btn,{e0Cu0yFrS:\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(58, 95, 226))\",H8ANJHfJ2:false,height:\"100%\",id:\"MR1nFbYpA\",layoutId:\"MR1nFbYpA\",nq0AUeP5p:\"Get Started with Leo\",TZDNXoi5J:\"rgb(242, 238, 232)\",variant:\"F2M7QaoVQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f32ue6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fz3kxp\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Trusted by Mechanical Engineers at\"})}),className:\"framer-1w8gd9t\",\"data-framer-name\":\"Trusted by Mechanical Engineers at\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bf21ni-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DLslg_M0A\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:40,height:\"100%\",hoverFactor:1,id:\"DLslg_M0A\",layoutId:\"DLslg_M0A\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11qv90k\",\"data-framer-name\":\"Scania\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 117 32\"><path d=\"M 16.729 3.381 C 20.393 3.381 24.033 2.933 27.549 2.038 L 27.993 1.926 L 28.325 2.237 C 30.842 4.585 32.569 7.618 33.334 11.011 L 33.432 11.459 L 33.111 11.794 C 28.029 17.077 24.303 23.601 22.342 30.636 L 22.219 31.084 L 21.775 31.22 C 20.14 31.725 18.438 31.98 16.728 31.978 C 15.026 31.978 13.324 31.717 11.67 31.195 L 11.239 31.059 L 11.115 30.625 C 9.141 23.601 5.416 17.09 0.321 11.795 L 0 11.459 L 0.099 11.012 C 0.864 7.632 2.615 4.587 5.157 2.213 L 5.49 1.902 L 5.934 2.014 C 9.537 2.921 13.163 3.381 16.729 3.381 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 2.023 14.814 C 2.023 10.85 3.553 7.134 6.329 4.338 C 9.105 1.542 12.793 0 16.717 0 C 20.652 0 24.341 1.541 27.117 4.338 C 29.893 7.134 31.422 10.85 31.422 14.814 C 31.422 22.968 24.822 29.617 16.717 29.617 C 12.793 29.617 9.105 28.075 6.329 25.279 C 3.553 22.482 2.023 18.767 2.023 14.814 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 5.858 3.35 C 4.772 4.396 3.839 5.591 3.087 6.9 C 2.341 8.199 1.785 9.599 1.434 11.057 C 3.976 13.73 6.19 16.7 8.028 19.905 C 9.852 23.088 11.285 26.482 12.295 30.014 C 12.981 30.216 13.681 30.373 14.388 30.482 C 15.151 30.6 15.932 30.664 16.729 30.664 C 17.541 30.664 18.333 30.604 19.103 30.488 C 19.795 30.384 20.479 30.233 21.151 30.037 C 22.163 26.495 23.597 23.091 25.422 19.897 C 27.254 16.694 29.462 13.726 31.998 11.056 C 31.297 8.127 29.779 5.462 27.624 3.374 C 24.059 4.258 20.4 4.705 16.729 4.705 C 14.813 4.705 12.923 4.576 11.062 4.333 C 9.31 4.105 7.573 3.777 5.858 3.35 Z M 2.284 6.431 C 3.124 4.968 4.177 3.64 5.408 2.492 L 5.594 2.318 L 5.837 2.38 C 7.596 2.828 9.38 3.171 11.179 3.408 C 13.019 3.649 14.873 3.769 16.729 3.769 C 20.41 3.77 24.077 3.311 27.646 2.404 L 27.889 2.342 L 28.075 2.516 C 30.524 4.815 32.227 7.806 32.961 11.096 L 33.016 11.342 L 32.842 11.523 C 30.285 14.186 28.065 17.156 26.229 20.367 C 24.4 23.568 22.971 26.985 21.975 30.539 L 21.907 30.784 L 21.664 30.86 C 20.871 31.107 20.06 31.293 19.238 31.416 C 18.419 31.54 17.582 31.602 16.729 31.602 C 15.887 31.602 15.058 31.535 14.249 31.41 C 13.414 31.279 12.589 31.087 11.782 30.835 L 11.539 30.759 L 11.47 30.515 C 10.477 26.97 9.05 23.564 7.221 20.375 C 5.379 17.162 3.152 14.189 0.59 11.523 L 0.417 11.342 L 0.473 11.096 C 0.838 9.457 1.448 7.884 2.284 6.431 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 2.396 14.814 C 2.391 10.986 3.9 7.312 6.59 4.608 C 9.272 1.895 12.916 0.372 16.716 0.376 C 20.675 0.376 24.258 1.991 26.852 4.604 C 29.445 7.217 31.049 10.826 31.049 14.814 C 31.053 18.643 29.541 22.314 26.848 25.015 C 24.164 27.726 20.517 29.247 16.716 29.241 C 12.917 29.246 9.273 27.724 6.591 25.014 C 3.901 22.312 2.392 18.641 2.396 14.814 Z M 7.249 5.267 C 4.733 7.797 3.323 11.233 3.328 14.814 C 3.323 18.393 4.735 21.825 7.25 24.351 C 9.758 26.885 13.164 28.307 16.716 28.303 C 20.271 28.308 23.681 26.887 26.193 24.353 C 28.709 21.826 30.121 18.393 30.117 14.814 C 30.122 11.233 28.71 7.797 26.193 5.267 C 23.682 2.732 20.271 1.309 16.716 1.314 C 13.164 1.309 9.756 2.732 7.249 5.267 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 16.408 10.216 C 15.421 10.216 14.508 10.403 14.15 10.912 C 14.15 10.912 13.755 11.285 13.681 11.608 C 13.681 11.608 11.153 9.88 10.363 13.634 C 10.363 13.634 11.893 12.527 12.769 13.248 C 12.769 13.248 13.213 13.882 14.027 14.093 C 15.137 14.392 15.014 14.615 15.063 14.851 C 15.063 14.851 14.916 15.199 13.953 15.808 C 13.004 16.429 12.46 16.131 11.585 15.846 C 11.585 15.846 11.523 17.15 13.263 17.126 C 13.263 17.126 13.547 17.15 13.891 17.114 C 13.891 17.114 11.806 17.995 12.596 20.158 C 12.596 20.158 13.312 19.287 14.102 19.088 C 14.102 19.088 11.844 21.673 14.83 24.197 C 14.83 24.197 14.83 21.885 15.681 21.177 C 15.681 21.177 16.15 23.015 16.001 24.022 C 16.001 24.022 15.964 24.905 15.692 25.365 C 15.692 25.365 19.233 25.29 18.222 21.002 C 18.222 21.002 19.641 21.487 19.344 23.438 C 19.344 23.438 22.527 21.835 20.43 18.542 C 20.43 18.542 21.627 18.542 21.997 19.983 C 21.997 19.983 23.699 17.335 20.886 14.812 C 20.886 14.812 21.947 14.552 22.527 15.434 C 22.527 15.434 22.453 13.421 20.566 12.439 C 20.134 12.202 20.813 11.506 20.64 11.121 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 18.604 11.757 C 18.604 11.757 19.752 10.29 21.466 10.489 C 21.466 10.489 20.986 12.652 19.097 13.05 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 12.922 14.597 C 12.605 14.506 12.27 14.493 11.946 14.558 C 10.41 14.951 9.225 14.654 8.533 14.361 C 8.624 14.495 8.727 14.617 8.841 14.696 L 8.853 14.704 L 8.86 14.709 C 9.681 15.413 10.532 15.158 11.399 14.898 C 11.898 14.75 12.403 14.599 12.922 14.597 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 17.209 8.924 C 17.506 9.42 17.987 10.079 18.592 10.079 C 19.208 10.079 19.579 9.806 19.875 9.309 C 19.702 9.334 19.653 9.334 19.48 9.284 C 19.097 9.147 18.912 8.762 18.986 8.265 C 19.11 7.831 19.541 7.581 19.961 7.706 C 20.109 7.756 20.233 7.831 20.319 7.929 C 20.215 7.736 20.188 7.509 20.245 7.296 C 20.368 6.861 20.874 6.512 21.318 6.587 L 19.591 10.875 L 13.891 10.875 L 12.152 6.785 C 12.584 6.711 13.09 7.059 13.213 7.494 C 13.275 7.705 13.238 7.867 13.139 8.041 C 13.226 7.941 13.362 7.755 13.497 7.705 C 13.917 7.581 14.398 7.954 14.522 8.376 C 14.596 8.873 14.435 9.184 14.052 9.32 C 13.879 9.359 13.732 9.333 13.559 9.308 C 13.855 9.805 14.299 10.079 14.916 10.079 C 15.521 10.079 15.965 9.42 16.261 8.923 C 16.125 9.021 15.96 9.074 15.792 9.072 C 15.581 9.072 15.378 8.986 15.229 8.834 C 15.081 8.682 14.999 8.477 15.002 8.264 C 15.002 7.816 15.348 7.443 15.792 7.443 C 15.928 7.443 16.076 7.481 16.187 7.555 C 16.032 7.4 15.943 7.191 15.94 6.971 C 15.939 6.759 16.022 6.555 16.169 6.403 C 16.317 6.252 16.519 6.166 16.729 6.163 C 17.173 6.163 17.531 6.524 17.531 6.971 C 17.531 7.194 17.42 7.418 17.272 7.568 C 17.396 7.493 17.531 7.443 17.679 7.443 C 18.124 7.443 18.469 7.816 18.469 8.264 C 18.469 8.711 18.124 9.072 17.679 9.072 C 17.506 9.072 17.209 8.924 17.209 8.924 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 111.933 9.813 L 104.778 9.813 L 101.029 19.141 L 101.041 9.801 L 96.228 9.801 L 96.228 22.334 L 104.648 22.334 L 105.405 20.427 L 111.412 20.427 L 112.276 22.334 L 116.97 22.334 Z M 90.587 16.544 L 85.501 9.801 L 79.399 9.801 L 79.399 19.105 L 75.568 9.812 L 68.509 9.812 L 65.552 17.258 L 61.141 17.258 C 60.774 18.818 59.935 19.509 58.409 19.509 C 56.659 19.509 55.476 18.198 55.476 16.245 C 55.476 13.707 56.469 12.397 58.374 12.397 C 59.935 12.397 60.822 13.1 61.093 14.565 L 66.097 14.565 L 66.109 14.374 C 66.109 11.348 63.07 9.359 58.446 9.359 C 53.502 9.359 51.161 11.301 50.758 15.756 C 50.05 14.982 48.89 14.375 48.015 14.304 L 46.146 14.137 L 43.391 14.089 C 42.209 14.065 41.534 13.648 41.534 12.945 C 41.534 12.147 42.22 11.706 43.473 11.706 C 44.916 11.706 45.495 12.242 45.495 13.564 L 50.758 13.564 L 50.758 13.397 C 50.758 10.812 48.275 9.382 43.769 9.382 C 38.767 9.382 36.319 10.764 36.319 13.563 C 36.319 15.958 38.117 17.244 41.558 17.34 L 43.604 17.388 C 45.106 17.435 45.78 17.804 45.78 18.603 C 45.78 19.281 44.834 19.924 43.853 19.924 C 42.138 19.924 41.239 19.328 41.239 18.208 L 35.787 18.208 L 35.787 18.328 C 35.787 21.044 38.508 22.532 43.451 22.532 C 48.217 22.532 50.558 21.485 51.315 18.996 C 52.84 21.616 54.827 22.569 58.694 22.569 C 61.154 22.569 62.43 22.223 64.028 21.055 L 63.518 22.331 L 68.166 22.331 L 69.017 20.377 L 75.119 20.377 L 75.936 22.307 L 83.906 22.307 L 83.906 14.885 L 89.571 22.331 L 95.211 22.331 L 95.211 9.813 L 90.588 9.813 L 90.588 16.544 Z M 106.694 17.283 L 108.337 13.136 L 110.205 17.259 Z M 70.294 17.283 L 71.95 13.005 L 73.841 17.283 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:10692266114,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14zrals\",\"data-framer-name\":\"Hp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 16 32 C 15.841 32 15.683 31.997 15.525 31.993 L 18.794 23.006 L 23.294 23.006 C 24.084 23.006 24.951 22.399 25.222 21.657 L 28.769 11.913 C 29.349 10.318 28.436 9.012 26.738 9.012 L 20.495 9.012 L 15.257 23.406 L 15.255 23.406 L 12.285 31.566 C 5.24 29.891 0 23.558 0 16 C 0 8.66 4.942 2.476 11.68 0.591 L 8.616 9.012 L 8.615 9.012 L 3.521 23.006 L 6.912 23.006 L 11.244 11.115 L 13.793 11.115 L 9.461 23.006 L 12.851 23.007 L 16.887 11.913 C 17.468 10.318 16.554 9.012 14.858 9.012 L 12.008 9.012 L 15.281 0.017 C 15.519 0.006 15.759 0 16 0 C 24.837 0 32 7.163 32 16 C 32 24.837 24.837 32 16 32 Z M 25.681 11.107 L 23.133 11.107 L 19.565 20.896 L 22.113 20.896 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:12781733156,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1x4n81b\",\"data-framer-name\":\"MIT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 101 24\"><g transform=\"translate(51.476 0.058)\"><path d=\"M 5.501 0 L 5.501 5.122 L 4.309 5.122 L 4.387 1.473 L 4.401 0.958 L 4.358 1.139 C 4.295 1.429 4.288 1.465 4.231 1.683 L 3.294 5.122 L 2.222 5.122 L 1.318 1.828 L 1.1 0.914 C 1.121 1.32 1.121 1.407 1.142 1.894 L 1.206 5.122 L 0 5.122 L 0 0 L 1.819 0 L 2.581 2.873 L 2.757 3.693 C 2.828 3.337 2.835 3.301 2.891 3.062 L 3.688 0 L 5.501 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(57.773 1.291)\"><path d=\"M 0.155 1.175 C 0.176 0.914 0.212 0.603 0.543 0.334 C 0.882 0.058 1.319 0 1.749 0 C 2.201 0 3.294 0.109 3.294 1.088 L 3.294 3.294 C 3.294 3.7 3.315 3.758 3.4 3.889 L 2.334 3.889 L 2.334 3.54 C 2.06 3.751 1.749 3.99 1.206 3.99 C 0.359 3.99 0 3.366 0 2.837 C 0 2.227 0.473 1.879 0.776 1.749 C 1.072 1.618 1.77 1.487 2.229 1.4 L 2.229 1.197 C 2.214 1.023 2.201 0.733 1.812 0.733 C 1.333 0.733 1.269 1.037 1.241 1.175 Z M 1.53 2.314 C 1.347 2.387 1.065 2.496 1.065 2.786 C 1.065 2.967 1.22 3.17 1.474 3.17 C 1.608 3.17 1.735 3.12 1.848 3.047 C 2.207 2.815 2.222 2.467 2.229 2.075 L 1.53 2.314\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(61.56 1.269)\"><path d=\"M 0.684 2.634 C 0.98 2.931 1.347 3.156 1.756 3.156 C 2.017 3.156 2.412 3.069 2.412 2.786 C 2.412 2.655 2.334 2.605 2.271 2.568 C 2.109 2.481 1.855 2.459 1.643 2.423 C 1.476 2.395 1.311 2.356 1.149 2.307 C 0.924 2.241 0.698 2.148 0.536 1.98 C 0.374 1.814 0.261 1.553 0.261 1.27 C 0.261 0.646 0.782 0 1.812 0 C 2.68 0 3.202 0.385 3.456 0.566 L 2.786 1.204 C 2.44 0.929 2.116 0.827 1.862 0.827 C 1.439 0.827 1.34 1.001 1.34 1.11 C 1.34 1.328 1.573 1.371 1.925 1.436 C 2.666 1.574 3.526 1.777 3.526 2.677 C 3.526 3.569 2.652 4.005 1.784 4.005 C 0.762 4.005 0.233 3.497 0 3.272 L 0.684 2.634\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(65.235 1.269)\"><path d=\"M 0.684 2.634 C 0.98 2.931 1.347 3.156 1.756 3.156 C 2.017 3.156 2.412 3.069 2.412 2.786 C 2.412 2.655 2.334 2.605 2.271 2.568 C 2.108 2.481 1.854 2.459 1.643 2.423 C 1.477 2.395 1.312 2.356 1.15 2.307 C 0.924 2.241 0.698 2.148 0.536 1.98 C 0.374 1.814 0.261 1.553 0.261 1.27 C 0.261 0.646 0.783 0 1.812 0 C 2.68 0 3.202 0.385 3.456 0.566 L 2.786 1.204 C 2.44 0.929 2.116 0.827 1.862 0.827 C 1.439 0.827 1.34 1.001 1.34 1.11 C 1.34 1.328 1.573 1.371 1.925 1.436 C 2.666 1.574 3.526 1.777 3.526 2.677 C 3.526 3.569 2.652 4.005 1.784 4.005 C 0.762 4.005 0.233 3.497 0 3.272 L 0.684 2.634\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(69.233 1.291)\"><path d=\"M 0.155 1.175 C 0.176 0.914 0.212 0.603 0.543 0.334 C 0.882 0.058 1.319 0 1.749 0 C 2.201 0 3.294 0.109 3.294 1.088 L 3.294 3.294 C 3.294 3.7 3.315 3.758 3.399 3.889 L 2.334 3.889 L 2.334 3.54 C 2.06 3.751 1.749 3.99 1.206 3.99 C 0.359 3.99 0 3.366 0 2.837 C 0 2.227 0.472 1.879 0.776 1.749 C 1.072 1.618 1.77 1.487 2.229 1.4 L 2.229 1.197 C 2.214 1.023 2.201 0.733 1.812 0.733 C 1.333 0.733 1.269 1.037 1.241 1.175 Z M 1.53 2.314 C 1.347 2.387 1.065 2.496 1.065 2.786 C 1.065 2.967 1.22 3.17 1.474 3.17 C 1.608 3.17 1.735 3.12 1.848 3.047 C 2.207 2.815 2.222 2.467 2.229 2.075 L 1.53 2.314\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(73.267 1.291)\"><path d=\"M 3.462 2.996 C 3.329 3.214 3.18 3.453 2.884 3.671 C 2.575 3.894 2.205 4.013 1.827 4.012 C 1.121 4.012 0 3.577 0 2.031 C 0 0.929 0.62 0 1.848 0 C 2.256 0 2.955 0.116 3.42 0.907 L 2.616 1.378 C 2.553 1.241 2.482 1.11 2.306 0.979 C 2.186 0.894 2.043 0.849 1.897 0.849 C 1.312 0.849 1.114 1.538 1.114 1.995 C 1.114 2.496 1.354 3.127 1.932 3.127 C 1.989 3.127 2.256 3.127 2.482 2.865 C 2.574 2.757 2.609 2.67 2.645 2.561 L 3.462 2.996\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(76.901 0.051)\"><path d=\"M 1.086 0 L 1.086 1.741 C 1.241 1.582 1.559 1.24 2.144 1.24 C 2.412 1.24 2.708 1.32 2.927 1.509 C 3.251 1.792 3.307 2.147 3.307 2.64 L 3.307 5.129 L 2.228 5.129 L 2.228 3.148 C 2.228 2.844 2.221 2.698 2.179 2.568 C 2.073 2.227 1.784 2.191 1.671 2.191 C 1.481 2.191 1.318 2.285 1.227 2.408 C 1.086 2.604 1.086 2.916 1.086 3.243 L 1.086 5.129 L 0 5.129 L 0 0 L 1.086 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(81.133 1.392)\"><path d=\"M 2.228 0 L 3.315 0 L 3.315 3.787 L 2.228 3.787 L 2.228 3.425 C 2.122 3.548 2.059 3.62 1.862 3.722 C 1.646 3.837 1.406 3.896 1.163 3.896 C 0.924 3.896 0.479 3.86 0.225 3.497 C 0.035 3.222 0 2.996 0 2.38 L 0 0 L 1.093 0 L 1.093 2.35 C 1.093 2.518 1.093 2.684 1.177 2.8 C 1.241 2.887 1.389 2.989 1.608 2.989 C 1.671 2.989 1.82 2.989 1.981 2.895 C 2.214 2.75 2.222 2.561 2.228 2.358 L 2.228 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(84.926 1.269)\"><path d=\"M 0.684 2.634 C 0.981 2.931 1.347 3.156 1.757 3.156 C 2.017 3.156 2.412 3.069 2.412 2.786 C 2.412 2.655 2.335 2.605 2.271 2.568 C 2.109 2.481 1.855 2.459 1.644 2.423 C 1.477 2.395 1.312 2.356 1.15 2.307 C 0.924 2.241 0.699 2.148 0.536 1.98 C 0.374 1.814 0.261 1.553 0.261 1.27 C 0.261 0.646 0.783 0 1.813 0 C 2.68 0 3.203 0.385 3.456 0.566 L 2.786 1.204 C 2.44 0.929 2.116 0.827 1.862 0.827 C 1.439 0.827 1.34 1.001 1.34 1.11 C 1.34 1.328 1.573 1.371 1.926 1.436 C 2.666 1.574 3.526 1.777 3.526 2.677 C 3.526 3.569 2.652 4.005 1.785 4.005 C 0.762 4.005 0.233 3.497 0 3.272 L 0.684 2.634\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(88.841 1.269)\"><path d=\"M 3.696 2.945 C 3.568 3.142 3.441 3.33 3.251 3.511 C 2.933 3.816 2.454 4.049 1.862 4.049 C 0.768 4.049 0 3.33 0 2.089 C 0 1.175 0.437 0 1.89 0 C 2.108 0 2.743 0.022 3.216 0.544 C 3.696 1.073 3.724 1.814 3.737 2.241 L 1.107 2.241 C 1.1 2.713 1.361 3.185 1.946 3.185 C 2.538 3.185 2.743 2.786 2.877 2.517 Z M 2.616 1.545 C 2.595 1.386 2.567 1.175 2.412 1.008 C 2.278 0.871 2.073 0.798 1.883 0.798 C 1.622 0.798 1.438 0.929 1.333 1.045 C 1.184 1.212 1.149 1.386 1.114 1.545 L 2.616 1.545\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(92.804 0.297)\"><path d=\"M 0.536 0 L 1.615 0 L 1.615 1.183 L 2.327 1.183 L 2.327 1.865 L 1.608 1.865 L 1.608 3.57 C 1.601 3.802 1.601 3.997 1.89 3.997 L 2.278 3.983 L 2.278 4.853 C 2.045 4.89 1.904 4.912 1.707 4.912 C 1.333 4.912 0.924 4.89 0.691 4.542 C 0.543 4.317 0.536 4.048 0.536 3.685 L 0.536 1.858 L 0 1.858 L 0 1.175 L 0.536 1.175 L 0.536 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(95.018 0.297)\"><path d=\"M 0.536 0 L 1.615 0 L 1.615 1.183 L 2.327 1.183 L 2.327 1.865 L 1.608 1.865 L 1.608 3.57 C 1.601 3.802 1.601 3.997 1.89 3.997 L 2.278 3.983 L 2.278 4.853 C 2.045 4.89 1.904 4.912 1.707 4.912 C 1.333 4.912 0.924 4.89 0.691 4.542 C 0.543 4.317 0.536 4.048 0.536 3.685 L 0.536 1.858 L 0 1.858 L 0 1.175 L 0.536 1.175 L 0.536 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(97.423 1.269)\"><path d=\"M 0.684 2.634 C 0.98 2.931 1.347 3.156 1.756 3.156 C 2.017 3.156 2.412 3.069 2.412 2.786 C 2.412 2.655 2.334 2.605 2.271 2.568 C 2.109 2.481 1.855 2.459 1.644 2.423 C 1.477 2.395 1.312 2.356 1.15 2.307 C 0.924 2.241 0.699 2.148 0.536 1.98 C 0.374 1.814 0.261 1.553 0.261 1.27 C 0.261 0.646 0.783 0 1.813 0 C 2.68 0 3.202 0.385 3.456 0.566 L 2.785 1.204 C 2.44 0.929 2.116 0.827 1.862 0.827 C 1.439 0.827 1.34 1.001 1.34 1.11 C 1.34 1.328 1.573 1.371 1.926 1.436 C 2.666 1.574 3.526 1.777 3.526 2.677 C 3.526 3.569 2.652 4.005 1.785 4.005 C 0.762 4.005 0.233 3.497 0 3.272 L 0.684 2.634\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(51.468 8.764)\"><path d=\"M 1.241 5.122 L 0 5.122 L 0 0 L 1.241 0 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(53.697 10.004)\"><path d=\"M 1.093 0.435 C 1.199 0.319 1.269 0.232 1.46 0.138 C 1.673 0.048 1.9 0.001 2.13 0 C 2.348 0 2.595 0.044 2.786 0.152 C 3.174 0.363 3.272 0.704 3.272 1.291 L 3.272 3.882 L 2.194 3.882 L 2.194 1.748 C 2.194 1.407 2.186 1.284 2.144 1.183 C 2.059 0.979 1.869 0.892 1.657 0.892 C 1.086 0.892 1.086 1.364 1.086 1.836 L 1.086 3.882 L 0 3.882 L 0 0.102 L 1.093 0.102 L 1.093 0.435\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(57.448 9.975)\"><path d=\"M 0.684 2.633 C 0.981 2.931 1.347 3.156 1.756 3.156 C 2.017 3.156 2.412 3.069 2.412 2.786 C 2.412 2.655 2.334 2.604 2.271 2.569 C 2.109 2.481 1.855 2.459 1.644 2.423 C 1.477 2.395 1.312 2.356 1.15 2.307 C 0.924 2.242 0.699 2.147 0.536 1.981 C 0.374 1.814 0.261 1.553 0.261 1.27 C 0.261 0.646 0.783 0 1.813 0 C 2.68 0 3.202 0.385 3.456 0.566 L 2.786 1.204 C 2.44 0.929 2.116 0.827 1.862 0.827 C 1.439 0.827 1.34 1.001 1.34 1.11 C 1.34 1.328 1.573 1.371 1.926 1.436 C 2.666 1.574 3.526 1.777 3.526 2.677 C 3.526 3.569 2.652 4.005 1.785 4.005 C 0.762 4.005 0.233 3.497 0 3.272 L 0.684 2.633\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(61.215 9.003)\"><path d=\"M 0.536 0 L 1.615 0 L 1.615 1.183 L 2.327 1.183 L 2.327 1.865 L 1.608 1.865 L 1.608 3.57 C 1.601 3.802 1.601 3.997 1.89 3.997 L 2.278 3.983 L 2.278 4.854 C 2.045 4.89 1.904 4.912 1.707 4.912 C 1.333 4.912 0.924 4.89 0.691 4.542 C 0.543 4.317 0.536 4.048 0.536 3.686 L 0.536 1.857 L 0 1.857 L 0 1.175 L 0.536 1.175 L 0.536 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(64.127 8.757)\"><path d=\"M 0 0 L 1.072 0 L 1.072 0.863 L 0 0.863 Z M 0 1.335 L 1.072 1.335 L 1.072 5.13 L 0 5.13 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(65.77 9.003)\"><path d=\"M 0.536 0 L 1.615 0 L 1.615 1.183 L 2.328 1.183 L 2.328 1.865 L 1.608 1.865 L 1.608 3.57 C 1.601 3.802 1.601 3.997 1.89 3.997 L 2.278 3.983 L 2.278 4.854 C 2.046 4.89 1.904 4.912 1.707 4.912 C 1.333 4.912 0.924 4.89 0.691 4.542 C 0.543 4.317 0.536 4.048 0.536 3.686 L 0.536 1.857 L 0 1.857 L 0 1.175 L 0.536 1.175 L 0.536 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(68.641 10.098)\"><path d=\"M 2.229 0 L 3.315 0 L 3.315 3.787 L 2.229 3.787 L 2.229 3.424 C 2.123 3.548 2.059 3.62 1.862 3.722 C 1.646 3.836 1.407 3.896 1.164 3.896 C 0.924 3.896 0.48 3.86 0.226 3.497 C 0.035 3.221 0 2.996 0 2.38 L 0 0 L 1.093 0 L 1.093 2.351 C 1.093 2.517 1.093 2.685 1.178 2.8 C 1.242 2.888 1.39 2.989 1.608 2.989 C 1.671 2.989 1.82 2.989 1.982 2.895 C 2.215 2.75 2.222 2.561 2.229 2.358 L 2.229 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(72.527 9.003)\"><path d=\"M 0.536 0 L 1.615 0 L 1.615 1.183 L 2.327 1.183 L 2.327 1.865 L 1.608 1.865 L 1.608 3.57 C 1.601 3.802 1.601 3.997 1.89 3.997 L 2.278 3.983 L 2.278 4.854 C 2.045 4.89 1.904 4.912 1.706 4.912 C 1.333 4.912 0.924 4.89 0.691 4.542 C 0.543 4.317 0.536 4.048 0.536 3.686 L 0.536 1.857 L 0 1.857 L 0 1.175 L 0.536 1.175 L 0.536 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(75.172 9.975)\"><path d=\"M 3.695 2.946 C 3.568 3.141 3.441 3.33 3.251 3.511 C 2.933 3.816 2.454 4.048 1.862 4.048 C 0.768 4.048 0 3.33 0 2.089 C 0 1.175 0.437 0 1.89 0 C 2.108 0 2.743 0.022 3.216 0.544 C 3.695 1.074 3.724 1.814 3.737 2.242 L 1.107 2.242 C 1.1 2.714 1.361 3.185 1.946 3.185 C 2.538 3.185 2.743 2.786 2.877 2.517 Z M 2.616 1.545 C 2.595 1.386 2.566 1.175 2.412 1.008 C 2.277 0.871 2.073 0.798 1.882 0.798 C 1.622 0.798 1.438 0.929 1.333 1.045 C 1.184 1.212 1.149 1.386 1.114 1.545 L 2.616 1.545\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(81.194 9.977)\"><path d=\"M 3.956 2.008 C 3.956 2.965 3.421 4.017 1.982 4.017 C 0.945 4.017 0 3.407 0 2.008 C 0 0.846 0.712 -0.075 2.123 0.005 C 3.625 0.092 3.956 1.318 3.956 2.008 M 1.277 1.26 C 1.143 1.478 1.093 1.739 1.093 2 C 1.093 2.602 1.376 3.131 1.982 3.131 C 2.567 3.131 2.856 2.646 2.856 2.051 C 2.856 1.63 2.758 1.303 2.553 1.101 C 2.328 0.883 2.074 0.875 1.918 0.89 C 1.608 0.912 1.425 1.02 1.277 1.26\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(85.446 8.69)\"><path d=\"M 0.585 1.031 C 0.585 0.842 0.599 0.588 0.741 0.385 C 0.875 0.197 1.178 0 1.686 0 C 1.904 0 2.123 0.037 2.334 0.066 L 2.334 0.9 L 2.073 0.9 C 1.664 0.9 1.643 0.987 1.65 1.495 L 2.377 1.495 L 2.377 2.177 L 1.658 2.177 L 1.658 5.195 L 0.578 5.195 L 0.578 2.177 L 0 2.177 L 0 1.495 L 0.585 1.495 L 0.585 1.031\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(50.199 17.462)\"><path d=\"M 0 0 L 3.837 0 L 3.837 1.016 L 2.546 1.016 L 2.546 5.129 L 1.298 5.129 L 1.298 1.016 L 0 1.016 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(53.762 18.681)\"><path d=\"M 3.696 2.945 C 3.569 3.141 3.442 3.33 3.251 3.511 C 2.934 3.816 2.454 4.048 1.862 4.048 C 0.769 4.048 0 3.33 0 2.089 C 0 1.175 0.437 0 1.89 0 C 2.109 0 2.743 0.022 3.216 0.544 C 3.696 1.074 3.724 1.814 3.738 2.242 L 1.107 2.242 C 1.1 2.713 1.361 3.185 1.946 3.185 C 2.539 3.185 2.743 2.786 2.877 2.518 Z M 2.617 1.545 C 2.595 1.385 2.567 1.175 2.412 1.008 C 2.278 0.871 2.073 0.798 1.883 0.798 C 1.622 0.798 1.439 0.929 1.333 1.045 C 1.185 1.212 1.15 1.385 1.114 1.545 L 2.617 1.545\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(57.881 18.703)\"><path d=\"M 3.463 2.996 C 3.329 3.214 3.181 3.453 2.884 3.671 C 2.602 3.874 2.243 4.012 1.826 4.012 C 1.121 4.012 0 3.577 0 2.032 C 0 0.928 0.621 0 1.848 0 C 2.256 0 2.955 0.116 3.42 0.907 L 2.616 1.378 C 2.553 1.241 2.482 1.11 2.306 0.979 C 2.186 0.894 2.043 0.849 1.897 0.849 C 1.312 0.849 1.114 1.538 1.114 1.995 C 1.114 2.496 1.354 3.127 1.932 3.127 C 1.989 3.127 2.256 3.127 2.482 2.866 C 2.574 2.757 2.609 2.67 2.645 2.561 L 3.463 2.996\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(61.514 17.462)\"><path d=\"M 1.086 0 L 1.086 1.741 C 1.241 1.582 1.559 1.241 2.144 1.241 C 2.412 1.241 2.708 1.32 2.927 1.509 C 3.251 1.792 3.307 2.147 3.307 2.641 L 3.307 5.129 L 2.228 5.129 L 2.228 3.149 C 2.228 2.844 2.221 2.699 2.179 2.569 C 2.073 2.227 1.784 2.191 1.671 2.191 C 1.481 2.191 1.318 2.285 1.227 2.409 C 1.086 2.604 1.086 2.916 1.086 3.243 L 1.086 5.129 L 0 5.129 L 0 0 L 1.086 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(65.788 18.71)\"><path d=\"M 1.093 0.435 C 1.199 0.319 1.269 0.232 1.46 0.138 C 1.673 0.048 1.9 0.001 2.13 0 C 2.348 0 2.596 0.043 2.786 0.153 C 3.174 0.363 3.272 0.704 3.272 1.292 L 3.272 3.881 L 2.193 3.881 L 2.193 1.748 C 2.193 1.407 2.186 1.284 2.144 1.183 C 2.059 0.979 1.869 0.892 1.658 0.892 C 1.086 0.892 1.086 1.364 1.086 1.835 L 1.086 3.881 L 0 3.881 L 0 0.102 L 1.093 0.102 L 1.093 0.435\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(69.78 18.684)\"><path d=\"M 3.956 2.007 C 3.956 2.964 3.42 4.016 1.982 4.016 C 0.945 4.016 0 3.407 0 2.007 C 0 0.846 0.712 -0.075 2.123 0.005 C 3.625 0.092 3.956 1.318 3.956 2.007 M 1.277 1.26 C 1.142 1.477 1.093 1.738 1.093 2 C 1.093 2.602 1.375 3.132 1.982 3.132 C 2.567 3.132 2.856 2.645 2.856 2.051 C 2.856 1.63 2.758 1.303 2.553 1.1 C 2.327 0.883 2.074 0.875 1.918 0.889 C 1.608 0.912 1.424 1.02 1.277 1.26\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(74.441 17.47)\"><path d=\"M 1.086 5.122 L 0 5.122 L 0 0 L 1.086 0 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(76.247 18.684)\"><path d=\"M 3.956 2.007 C 3.956 2.964 3.42 4.016 1.981 4.016 C 0.945 4.016 0 3.407 0 2.007 C 0 0.846 0.712 -0.075 2.123 0.005 C 3.625 0.092 3.956 1.318 3.956 2.007 M 1.277 1.26 C 1.143 1.477 1.093 1.738 1.093 2 C 1.093 2.602 1.375 3.132 1.981 3.132 C 2.567 3.132 2.856 2.645 2.856 2.051 C 2.856 1.63 2.758 1.303 2.553 1.1 C 2.327 0.883 2.073 0.875 1.919 0.889 C 1.608 0.912 1.425 1.02 1.277 1.26\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(80.647 18.739)\"><path d=\"M 2.497 3.352 C 2.285 3.497 2.024 3.671 1.524 3.671 C 1.22 3.671 0.924 3.591 0.684 3.424 C 0.19 3.098 0 2.51 0 1.857 C 0 1.095 0.346 0 1.566 0 C 2.13 0 2.391 0.254 2.553 0.414 L 2.553 0.058 L 3.569 0.058 L 3.569 3.7 C 3.554 4.114 3.541 4.6 3.005 4.919 C 2.631 5.151 2.081 5.209 1.749 5.209 C 1.016 5.209 0.536 4.948 0.339 4.737 C 0.05 4.44 0.056 4.056 0.056 3.852 L 1.178 3.852 C 1.192 4.02 1.206 4.259 1.495 4.396 C 1.566 4.433 1.672 4.469 1.841 4.469 C 2.497 4.469 2.497 4.07 2.497 3.758 Z M 1.122 1.85 C 1.122 2.17 1.143 2.829 1.813 2.829 C 2.363 2.829 2.49 2.387 2.49 1.85 C 2.49 1.669 2.475 1.292 2.356 1.11 C 2.271 0.972 2.074 0.82 1.763 0.834 C 1.249 0.856 1.122 1.313 1.122 1.85\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(84.688 18.804)\"><path d=\"M 3.526 0 L 2.229 4.092 C 2.144 4.338 2.066 4.571 1.883 4.781 C 1.629 5.064 1.382 5.078 1.1 5.086 L 0.317 5.086 L 0.317 4.201 L 0.698 4.201 C 0.875 4.193 1.15 4.193 1.15 3.925 C 1.15 3.831 1.121 3.736 1.1 3.657 L 0 0 L 1.156 0 L 1.763 2.713 L 2.369 0 L 3.526 0\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(0.051 0.057)\"><path d=\"M 30.173 7.134 L 34.796 7.134 L 34.796 22.529 L 30.173 22.529 Z M 15.086 0 L 19.709 0 L 19.709 22.528 L 15.086 22.528 Z M 0 0 L 4.623 0 L 4.623 22.528 L 0 22.528 Z M 7.543 0 L 12.166 0 L 12.166 15.395 L 7.543 15.395 Z M 30.142 0 L 42.339 0 L 42.339 4.506 L 30.142 4.506 Z M 22.599 0 L 27.253 0 L 27.253 4.506 L 22.599 4.506 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g><g transform=\"translate(22.689 7.168)\"><path d=\"M 0 0 L 4.623 0 L 4.623 15.394 L 0 15.394 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g></svg>',svgContentId:9059710767,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zerics\",\"data-framer-name\":\"Philips\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 131 24\"><path d=\"M 13.304 8.867 C 13.304 11.855 11.857 13.879 8.193 13.879 L 7.036 13.879 L 7.036 4.361 C 7.447 4.338 7.832 4.338 8.193 4.338 C 11.662 4.338 13.304 5.976 13.304 8.867 M 9.543 18.024 C 16.098 18.024 20.243 14.649 20.243 8.771 C 20.242 2.313 15.808 0 8.579 0 C 5.783 0 2.409 0.192 0 0.481 L 0 23.519 L 7.036 23.519 L 7.036 18.024 Z M 103.816 8.867 C 103.816 11.855 102.371 13.879 98.707 13.879 L 97.553 13.879 L 97.553 4.361 C 97.961 4.338 98.346 4.338 98.707 4.338 C 102.176 4.338 103.816 5.976 103.816 8.867 M 100.059 18.024 C 106.609 18.024 110.756 14.649 110.756 8.771 C 110.756 2.313 106.323 0 99.093 0 C 96.298 0 92.922 0.192 90.512 0.481 L 90.512 23.519 L 97.552 23.519 L 97.552 18.024 Z M 119.912 6.361 C 119.912 5.108 121.167 4.529 123.189 4.529 C 125.407 4.529 127.818 5.011 129.456 5.689 L 128.878 0.675 C 127.046 0.289 125.407 0 122.42 0 C 116.732 0 112.877 2.242 112.877 6.941 C 112.877 15.035 123.868 13.398 123.868 17.157 C 123.868 18.601 122.806 19.372 120.202 19.372 C 117.892 19.372 114.323 18.601 112.203 17.542 L 112.976 22.844 C 115.095 23.615 117.986 24 120.301 24 C 126.179 24 131 22.071 131 16.287 C 131 8.579 119.912 10.024 119.912 6.361 M 85.213 0.481 L 78.177 0.481 L 78.177 23.519 L 85.213 23.519 Z M 56.679 0.481 L 49.643 0.481 L 49.643 23.519 L 56.679 23.519 Z M 68.921 18.891 L 68.921 0.481 L 61.884 0.481 L 61.884 23.519 L 74.61 23.519 L 75.669 18.891 Z M 44.438 0.481 L 37.401 0.481 L 37.401 9.638 L 30.075 9.638 L 30.075 0.481 L 23.037 0.481 L 23.037 23.519 L 30.075 23.519 L 30.075 14.457 L 37.401 14.457 L 37.401 23.519 L 44.437 23.519 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:11269810804,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a6zv7b\",\"data-framer-name\":\"Elbit Systems\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90.77 32\"><path d=\"M 52.418 26.763 C 50.072 26.763 48.673 27.56 47.21 28.54 C 46.799 28.814 46.405 29.088 46.009 29.345 C 45.552 29.644 45.093 29.92 44.62 30.159 C 43.582 30.682 42.381 31.073 40.925 31.073 L 4.199 31.094 L 62.568 4.087 L 88.579 26.763 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 63.032 0.906 L 4.933 28.842 L 40.919 28.82 C 45.029 28.82 46.414 24.513 52.412 24.513 L 89.864 24.513 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 3.562 13.795 C 3.177 13.795 2.78 14.137 2.642 14.759 L 0.906 21.295 L 7.53 21.295 L 7.915 19.721 L 3.812 19.721 L 4.221 18.225 L 7.714 18.225 L 8.078 16.652 L 4.658 16.652 L 5.006 15.371 L 8.873 15.371 L 9.261 13.8 Z M 10.131 13.798 L 8.324 21.294 L 10.565 21.294 L 12.372 13.798 Z M 20.576 13.798 L 20.245 15.175 L 22.486 15.175 L 22.817 13.798 Z M 13.307 13.799 L 11.501 21.294 L 13.872 21.294 C 16.178 21.294 18.504 20.197 18.947 18.359 C 19.205 17.291 18.757 15.792 16.404 15.792 L 15.069 15.792 L 15.548 13.799 Z M 33.686 13.8 C 31.484 13.8 30.746 14.867 30.592 15.511 C 30.421 16.222 30.876 16.735 31.375 17.275 L 32.808 18.808 L 32.927 18.923 C 32.967 18.965 33.01 19.01 33.045 19.058 C 33.115 19.154 33.169 19.273 33.135 19.412 C 33.085 19.62 32.83 19.683 32.622 19.708 C 32.399 19.733 32.154 19.721 32.022 19.721 L 29.809 19.721 L 29.998 21.295 L 32.913 21.295 C 35.114 21.295 35.852 20.226 36.008 19.582 C 36.178 18.872 35.723 18.358 35.209 17.828 L 33.727 16.286 L 33.609 16.169 C 33.566 16.127 33.527 16.083 33.491 16.035 C 33.421 15.939 33.368 15.819 33.402 15.679 C 33.45 15.473 33.706 15.41 33.913 15.386 C 34.136 15.359 34.382 15.371 34.515 15.371 L 36.024 15.371 L 36.516 13.8 Z M 26.142 13.806 L 23.752 14.496 L 23.44 15.791 L 22.904 15.791 L 22.584 17.121 L 23.118 17.121 L 22.508 19.656 C 22.198 20.938 22.98 21.294 24.285 21.294 L 25.329 21.294 L 26.2 19.918 L 25.387 19.918 C 24.853 19.898 24.752 19.643 24.828 19.329 L 25.361 17.121 L 26.617 17.121 L 26.937 15.791 L 25.682 15.791 Z M 51.661 14.176 L 49.299 14.676 L 49.032 15.791 L 48.497 15.791 L 48.175 17.121 L 48.711 17.121 L 48.1 19.656 C 47.79 20.938 48.572 21.294 49.877 21.294 L 50.921 21.294 L 51.792 19.918 L 50.977 19.918 C 50.445 19.898 50.344 19.643 50.42 19.329 L 50.953 17.121 L 52.209 17.121 L 52.529 15.791 L 51.272 15.791 Z M 56.271 15.661 C 53.72 15.661 52.746 16.552 52.424 18.07 C 52.155 19.341 53.093 21.293 55.46 21.293 L 56.977 21.293 L 57.804 19.918 L 57.005 19.918 C 56.195 19.954 55.712 19.843 55.482 19.767 C 55.46 19.76 55.445 19.739 55.445 19.715 C 55.445 19.691 55.463 19.668 55.493 19.663 C 56.96 19.338 58.241 18.795 58.56 17.627 C 58.814 16.705 58.72 15.661 56.271 15.661 Z M 36.381 15.78 L 37.682 20.721 L 36.313 22.654 C 36.031 22.995 35.857 23.144 35.688 23.238 L 37.629 23.248 C 37.906 23.248 38.376 23.027 38.575 22.741 L 43.407 15.781 L 40.946 15.781 L 39.296 18.59 L 38.811 15.78 Z M 20.095 15.791 L 18.77 21.294 L 21.01 21.294 L 22.337 15.791 Z M 45.435 15.791 C 43.846 15.791 43.262 16.68 43.176 17.036 C 43.064 17.502 43.284 17.86 43.59 18.243 L 44.361 19.227 C 44.4 19.279 44.467 19.356 44.52 19.436 C 44.572 19.516 44.63 19.625 44.604 19.73 C 44.58 19.827 44.501 19.876 44.424 19.902 C 44.345 19.929 44.248 19.938 44.154 19.94 C 43.97 19.943 43.769 19.919 43.682 19.919 L 42.447 19.919 L 42.655 21.294 L 45.019 21.294 C 46.155 21.294 46.999 20.642 47.162 19.966 C 47.274 19.505 47.07 19.11 46.768 18.741 L 45.949 17.739 L 45.901 17.678 C 45.883 17.652 45.864 17.628 45.849 17.602 C 45.815 17.548 45.785 17.474 45.805 17.392 C 45.863 17.147 46.127 17.121 46.61 17.121 L 47.487 17.121 L 47.805 15.791 Z M 59.62 15.791 L 58.294 21.294 L 60.473 21.294 L 61.468 17.167 L 63.046 17.167 L 62.052 21.294 L 64.231 21.294 L 65.225 17.167 L 65.667 17.167 C 66.718 17.187 66.723 17.392 66.563 18.167 L 65.808 21.294 L 67.988 21.294 L 68.814 17.87 C 69.16 16.436 68.73 15.791 66.718 15.791 Z M 71.764 15.791 C 70.175 15.791 69.591 16.68 69.505 17.036 C 69.393 17.502 69.613 17.86 69.918 18.243 L 70.689 19.227 C 70.728 19.279 70.796 19.356 70.849 19.436 C 70.9 19.516 70.958 19.625 70.933 19.73 C 70.91 19.827 70.831 19.876 70.753 19.902 C 70.674 19.929 70.099 19.919 70.011 19.919 L 68.776 19.919 L 68.983 21.294 L 71.348 21.294 C 72.485 21.294 73.328 20.642 73.491 19.966 C 73.602 19.505 73.399 19.11 73.096 18.741 L 72.279 17.739 L 72.23 17.678 C 72.211 17.652 72.192 17.628 72.177 17.602 C 72.145 17.548 72.113 17.474 72.133 17.392 C 72.192 17.147 72.455 17.121 72.939 17.121 L 73.816 17.121 L 74.133 15.791 Z M 75.214 15.808 L 75.134 16.205 L 75.563 16.205 L 75.127 18.309 L 75.72 18.309 L 76.153 16.205 L 76.586 16.205 L 76.666 15.808 Z M 77.126 15.808 L 76.343 18.309 L 76.845 18.309 L 77.274 16.852 C 77.322 16.692 77.34 16.539 77.34 16.539 L 77.347 16.539 C 77.347 16.539 77.347 16.692 77.361 16.852 L 77.489 18.309 L 77.784 18.309 L 78.515 16.852 C 78.565 16.751 78.609 16.646 78.646 16.539 L 78.654 16.539 C 78.654 16.539 78.624 16.695 78.606 16.852 L 78.428 18.309 L 78.97 18.309 L 79.222 15.808 L 78.646 15.808 L 77.929 17.241 C 77.856 17.386 77.817 17.51 77.817 17.51 L 77.809 17.51 C 77.809 17.51 77.817 17.386 77.806 17.241 L 77.704 15.808 Z M 56.089 16.993 C 56.599 16.993 56.57 17.257 56.502 17.514 C 56.341 18.05 55.302 18.451 54.603 18.51 C 54.449 18.139 54.7 16.993 56.089 16.993 Z M 14.737 17.168 L 15.564 17.168 C 15.945 17.168 16.822 17.54 16.616 18.395 C 16.4 19.287 15.374 19.805 14.172 19.918 L 14.071 19.928 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:8971172138,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-34h0kq\",\"data-framer-name\":\"Toyota\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 146 24\"><path d=\"M 17.287 22.758 C 15.355 21.551 13.931 17.384 13.931 12.432 C 13.931 12.25 13.932 12.071 13.937 11.892 L 13.938 11.894 C 8.563 11.052 4.68 8.743 4.58 6.012 L 4.565 6.044 C 3.25 7.675 2.499 9.56 2.499 11.569 C 2.499 17.48 9.003 22.323 17.253 22.752 Z M 0.014 12 C 0.014 5.387 8.264 0.024 18.442 0.024 C 28.62 0.024 36.87 5.387 36.87 12 C 36.87 18.614 28.62 23.977 18.442 23.977 C 8.264 23.977 0.014 18.614 0.014 12 Z M 18.442 1.752 C 20.408 1.752 22.079 4.726 22.698 8.875 L 22.7 8.868 C 26.523 8.275 29.199 6.905 29.199 5.311 C 29.199 3.173 24.383 1.441 18.442 1.441 C 12.503 1.441 7.687 3.173 7.687 5.311 C 7.687 6.905 10.362 8.274 14.185 8.868 L 14.187 8.875 C 14.807 4.726 16.478 1.752 18.442 1.752 Z M 19.632 22.751 C 27.882 22.323 34.387 17.48 34.387 11.568 C 34.387 9.56 33.635 7.674 32.321 6.044 L 32.305 6.011 C 32.206 8.742 28.322 11.051 22.947 11.893 L 22.949 11.891 C 22.953 12.07 22.954 12.249 22.954 12.431 C 22.954 17.383 21.529 21.55 19.598 22.757 Z M 18.442 9.182 C 19.295 9.183 20.148 9.147 20.998 9.074 L 20.997 9.074 C 20.59 6.415 19.6 4.538 18.443 4.538 C 17.287 4.538 16.298 6.415 15.889 9.074 L 15.889 9.074 C 16.738 9.147 17.59 9.183 18.442 9.182 Z M 18.442 19.031 C 19.922 19.031 21.129 15.96 21.193 12.109 L 21.201 12.111 C 19.366 12.28 17.52 12.28 15.685 12.111 L 15.693 12.109 C 15.757 15.96 16.963 19.031 18.442 19.031 Z M 94.049 12 C 94.049 6.945 98.158 2.847 103.224 2.847 C 108.293 2.847 112.401 6.945 112.401 12 C 112.401 17.056 108.292 21.153 103.224 21.153 C 98.158 21.153 94.049 17.056 94.049 12 Z M 103.224 17.797 C 106.054 17.797 108.349 15.201 108.349 11.999 C 108.349 8.798 106.054 6.202 103.224 6.202 C 100.395 6.202 98.101 8.798 98.101 11.999 C 98.101 15.202 100.395 17.797 103.224 17.797 Z M 122.812 6.66 L 122.812 20.738 L 118.946 20.738 L 118.946 6.66 L 118.959 6.66 L 113.553 6.66 L 113.553 3.478 L 128.205 3.478 L 128.205 6.66 Z M 132.882 16.855 L 132.879 16.858 L 131.396 20.739 L 126.88 20.739 L 134.018 3.478 L 138.83 3.478 L 145.967 20.739 L 141.452 20.739 L 139.969 16.858 L 139.964 16.855 Z M 136.424 13.941 L 138.857 13.941 L 138.856 13.942 L 136.44 7.625 L 136.407 7.625 L 133.992 13.942 L 133.991 13.941 Z M 51.547 6.66 L 51.547 20.738 L 47.681 20.738 L 47.681 6.66 L 47.695 6.66 L 42.288 6.66 L 42.288 3.478 L 56.94 3.478 L 56.94 6.66 Z M 57.93 12 C 57.93 6.945 62.038 2.847 67.106 2.847 C 72.173 2.847 76.282 6.945 76.282 12 C 76.282 17.056 72.173 21.153 67.106 21.153 C 62.038 21.153 57.93 17.056 57.93 12 Z M 67.106 17.797 C 69.935 17.797 72.23 15.201 72.23 11.999 C 72.23 8.798 69.935 6.202 67.106 6.202 C 64.277 6.202 61.982 8.798 61.982 11.999 C 61.982 15.202 64.277 17.797 67.106 17.797 Z M 85.165 20.738 L 87.125 20.738 L 87.125 14.184 L 93.87 3.478 L 89.355 3.478 L 85.165 10.733 L 80.975 3.478 L 76.46 3.478 L 83.205 14.184 L 83.205 20.738 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:8591085487,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8t7yli\",\"data-framer-name\":\"Lg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 16.004 31.996 C 24.838 31.996 32 24.834 32 16 C 32 7.166 24.838 0.004 16.004 0.004 C 7.169 0.004 0.008 7.166 0.008 16 C 0.008 24.834 7.169 31.996 16.004 31.996 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 19.899 21.629 L 16.586 21.629 L 16.586 9.109 L 15.358 9.109 L 15.358 22.865 L 16.586 22.865 L 16.586 22.857 L 19.899 22.857 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 28.167 16.512 L 19.918 16.512 L 19.918 15.284 L 29.375 15.284 C 29.388 15.521 29.394 15.759 29.394 16 C 29.394 23.396 23.399 29.39 16.003 29.39 C 8.608 29.39 2.613 23.396 2.613 16 C 2.613 8.604 8.608 2.61 16.004 2.61 C 16.199 2.61 16.393 2.614 16.587 2.622 L 16.585 3.841 C 16.392 3.832 16.198 3.828 16.004 3.828 C 9.282 3.828 3.831 9.278 3.831 16 C 3.831 22.723 9.281 28.172 16.004 28.172 C 22.543 28.172 27.878 23.016 28.164 16.547 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 11.009 12.816 C 12.048 12.816 12.891 11.973 12.891 10.934 C 12.891 9.895 12.048 9.052 11.009 9.052 C 9.97 9.052 9.127 9.895 9.127 10.934 C 9.127 11.973 9.97 12.816 11.009 12.816 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:11814747249,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3uus3z\",\"data-framer-name\":\"Lockheed\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 77 32\"><path d=\"M 76.941 12.527 L 63.166 12.527 C 64.973 5.766 66.608 0.032 66.608 0.032 C 66.608 0.032 60.41 6.622 54.899 12.527 L 0.313 12.527 C -0.029 12.527 -0.029 12.699 0.313 12.699 C 0.486 12.699 53.866 13.64 53.866 13.64 C 49.561 18.175 47.236 20.743 47.152 20.829 C 46.979 21 47.152 21.086 47.323 20.915 C 47.409 20.829 50.51 18.003 54.899 13.64 L 61.701 13.725 C 61.27 15.694 60.928 17.491 60.41 19.631 C 52.059 24.081 38.456 31.355 38.456 31.355 C 38.283 31.441 38.37 31.613 38.543 31.527 C 38.628 31.441 51.284 25.108 60.151 20.657 C 58.689 27.247 57.741 31.781 57.741 31.867 C 57.656 31.953 57.828 32.039 57.915 31.867 C 57.915 31.781 59.204 27.247 61.1 20.228 C 69.019 16.208 76.941 12.527 76.941 12.527 Z M 56.019 12.527 C 60.151 8.504 63.595 5.252 63.595 5.252 C 63.595 5.252 62.993 8.076 61.961 12.527 Z M 62.821 13.726 L 71.086 13.897 C 71.086 13.897 66.954 16.122 61.357 19.117 C 61.874 17.234 62.303 15.609 62.821 13.726 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:9253605931,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12zo6jd\",\"data-framer-name\":\"Mobileye\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 160 31\"><path d=\"M 26.65 4.46 L 15.59 4.46 L 7.81 12.05 L 11.09 12.05 C 13.04 12.06 14.06 13.36 14.06 15.4 L 14.06 27.13 L 21.87 27.13 L 21.87 12.05 L 25.15 12.05 C 27.1 12.06 28.12 13.36 28.12 15.4 L 28.12 27.13 L 35.93 27.13 L 35.93 13.43 C 35.93 7.95 32.85 4.46 26.65 4.46 M 0 19.66 L 0 27.12 L 7.81 27.12 L 7.81 12.05 Z M 0 4.46 L 7.81 4.46 L 7.81 12.05 L 0 12.05 Z M 46.69 12.04 C 47.62 10.85 48.9 10.11 50.62 10.11 C 52.63 10.11 54.07 10.99 54.89 12.37 C 55.85 10.99 57.41 10.11 59.47 10.11 C 62.89 10.11 64.73 12.59 64.73 15.57 L 64.73 23.76 L 62.41 23.76 L 62.41 15.71 C 62.41 13.59 61.31 12.13 59.13 12.13 C 56.95 12.13 55.71 13.76 55.71 15.85 L 55.71 23.76 L 53.42 23.76 L 53.42 15.71 C 53.42 13.59 52.32 12.13 50.14 12.13 C 47.96 12.13 46.72 13.76 46.72 15.85 L 46.72 23.76 L 44.43 23.76 L 44.43 10.44 L 46.69 10.44 Z M 78.94 17.11 C 78.94 14.3 76.88 12.04 74.16 12.04 C 71.44 12.04 69.41 14.25 69.41 17.14 C 69.41 20.03 71.47 22.21 74.19 22.21 C 76.91 22.21 78.94 20 78.94 17.11 M 67.06 17.14 C 67.06 13.17 70.14 10.08 74.21 10.08 C 78.28 10.08 81.28 13.14 81.28 17.11 C 81.28 21.08 78.2 24.17 74.13 24.17 C 70.06 24.17 67.06 21.11 67.06 17.14 M 90.76 22.11 C 93.45 22.11 95.48 20.24 95.48 17.12 C 95.48 14 93.47 12.13 90.84 12.13 C 88.21 12.13 85.98 14.25 85.98 17.18 C 85.98 20.11 88.13 22.12 90.76 22.12 M 83.78 4.47 L 86.07 4.47 L 86.07 12.51 C 87.26 11.05 89.07 10.14 91.07 10.14 C 94.72 10.14 97.83 12.81 97.83 17.06 C 97.83 21.31 94.58 24.06 90.96 24.06 C 89.04 24.06 87.23 23.21 86.04 21.77 L 86.04 23.76 L 83.78 23.76 L 83.78 4.46 Z M 102.71 23.76 L 100.39 23.76 L 100.39 10.44 L 102.71 10.44 Z M 102.82 8.43 L 100.28 8.43 L 100.28 5.98 L 102.82 5.98 Z M 106.08 4.46 L 108.4 4.46 L 108.4 23.76 L 106.08 23.76 Z M 113.38 16.18 L 122.37 16.18 C 122.03 13.59 120.31 12.02 117.99 12.02 C 115.67 12.02 113.78 13.54 113.38 16.18 M 122.82 19.99 L 124.21 21.23 C 122.68 23.16 120.65 24.18 118.02 24.18 C 113.95 24.18 111.01 21.28 111.01 17.15 C 111.01 13.02 114.06 10.12 117.97 10.12 C 121.88 10.12 124.7 12.82 124.7 16.99 C 124.7 17.35 124.64 17.79 124.62 17.93 L 113.4 17.93 C 113.71 20.63 115.77 22.29 118.23 22.29 C 119.95 22.29 121.51 21.6 122.84 20 M 136.53 10.44 L 132.12 21.03 L 127.7 10.44 L 125.19 10.44 L 130.96 23.65 L 128.61 28.72 L 130.98 28.72 L 138.93 10.44 Z M 141.77 16.18 L 150.76 16.18 C 150.42 13.59 148.7 12.02 146.38 12.02 C 144.06 12.02 142.17 13.54 141.77 16.18 M 151.21 19.99 L 152.6 21.23 C 151.07 23.16 149.04 24.18 146.41 24.18 C 142.34 24.18 139.4 21.28 139.4 17.15 C 139.4 13.02 142.45 10.12 146.36 10.12 C 150.27 10.12 153.09 12.82 153.09 16.99 C 153.09 17.35 153.03 17.79 153.01 17.93 L 141.79 17.93 C 142.1 20.63 144.16 22.29 146.62 22.29 C 148.34 22.29 149.9 21.6 151.23 20 M 160 12.64 L 159.57 12.64 L 159.57 10.58 L 158.83 11.96 L 158.46 11.96 L 157.72 10.56 L 157.72 12.64 L 157.29 12.64 L 157.29 10.15 L 157.95 10.15 L 158.66 11.47 L 159.35 10.15 L 160.01 10.15 L 160.01 12.64 Z M 154.72 10.15 L 156.97 10.15 L 156.97 10.56 L 156.05 10.56 L 156.05 12.64 L 155.62 12.64 L 155.62 10.56 L 154.71 10.56 L 154.71 10.15 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:11755268772,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ctl00f\",\"data-framer-name\":\"Visiativ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 24\"><g transform=\"translate(-0.001 0)\"><path d=\"M 0.001 0 L 140.001 0 L 140.001 24 L 0.001 24 Z\" fill=\"transparent\"></path><path d=\"M 4.147 17.085 C 4.694 17.294 5.223 17.531 5.773 17.703 C 7.329 18.185 8.891 18.281 10.444 17.673 C 11.72 17.174 12.679 16.29 13.468 15.199 C 14.146 14.268 14.643 13.243 15.147 12.219 C 17.119 8.231 19.087 4.239 21.054 0.243 C 21.138 0.07 21.229 -0.001 21.432 0 C 23.886 0.008 26.341 0 28.798 0 L 29.06 0 C 29.045 0.06 29.025 0.118 29.002 0.176 C 26.146 5.996 23.288 11.816 20.428 17.634 C 19.726 19.059 18.909 20.423 17.811 21.582 C 16.004 23.48 13.772 24.262 11.17 23.915 C 8.758 23.594 7.017 22.227 5.667 20.296 C 5.016 19.346 4.513 18.303 4.176 17.203 C 4.164 17.164 4.154 17.125 4.147 17.085 Z M 85.234 11.741 C 85.498 10.484 86.212 9.367 87.243 8.599 C 88.355 7.757 89.637 7.354 91.004 7.194 C 92.467 7.023 93.923 7.055 95.344 7.495 C 97.65 8.206 98.93 9.789 99.269 12.145 C 99.336 12.647 99.369 13.152 99.366 13.659 C 99.378 15.299 99.366 16.94 99.372 18.58 C 99.372 19.322 99.737 19.689 100.484 19.708 L 101.1 19.708 L 101.1 23.139 C 101.086 23.149 101.072 23.166 101.059 23.165 C 100.012 23.151 98.959 23.261 97.92 23.046 C 96.731 22.801 95.915 22.132 95.547 20.96 C 95.538 20.931 95.524 20.903 95.498 20.837 C 95.382 20.985 95.282 21.114 95.18 21.24 C 94.285 22.354 93.107 22.986 91.71 23.213 C 90.477 23.414 89.246 23.395 88.042 23.027 C 86.619 22.589 85.478 21.782 84.899 20.377 C 84.002 18.204 84.637 15.648 87.195 14.451 C 88.226 13.983 89.332 13.705 90.462 13.629 C 92.063 13.5 93.661 13.399 95.267 13.286 C 95.369 12.175 94.848 11.133 93.932 10.749 C 92.887 10.295 91.696 10.32 90.671 10.816 C 90.054 11.1 89.687 11.602 89.514 12.285 Z M 95.3 16.046 L 95.096 16.046 C 94.165 16.13 93.232 16.211 92.301 16.299 C 91.531 16.371 90.757 16.427 90.032 16.731 C 89.555 16.932 89.119 17.193 88.903 17.69 C 88.536 18.529 89 19.51 89.904 19.862 C 91.658 20.537 93.74 19.824 94.707 18.209 C 95.108 17.559 95.313 16.808 95.3 16.046 Z M 73.678 11.565 L 69.741 12.07 C 69.589 11.801 69.474 11.525 69.297 11.299 C 68.892 10.774 68.315 10.527 67.677 10.43 C 66.786 10.288 65.906 10.282 65.083 10.728 C 64.793 10.878 64.572 11.132 64.463 11.439 C 64.269 11.981 64.441 12.453 64.948 12.725 C 65.635 13.092 66.401 13.195 67.148 13.35 C 68.362 13.602 69.583 13.833 70.786 14.133 C 71.549 14.331 72.245 14.727 72.804 15.282 C 73.65 16.109 73.958 17.141 73.907 18.289 C 73.81 20.497 72.647 22 70.634 22.785 C 68.26 23.708 65.842 23.678 63.482 22.698 C 61.951 22.062 60.901 20.939 60.451 19.314 C 60.397 19.121 60.363 18.928 60.313 18.698 L 64.305 18.186 C 64.369 18.356 64.421 18.531 64.499 18.694 C 64.841 19.409 65.454 19.795 66.191 19.981 C 67.051 20.196 67.918 20.207 68.765 19.901 C 69.187 19.749 69.541 19.495 69.735 19.077 C 70.085 18.309 69.821 17.614 68.984 17.313 C 68.322 17.073 67.621 16.933 66.93 16.78 C 65.782 16.523 64.618 16.333 63.482 16.034 C 62.573 15.808 61.76 15.296 61.165 14.573 C 60.375 13.608 60.215 12.48 60.432 11.292 C 60.746 9.576 61.833 8.478 63.39 7.8 C 64.805 7.184 66.298 7.055 67.826 7.147 C 68.763 7.19 69.686 7.392 70.553 7.747 C 72.25 8.461 73.303 9.708 73.678 11.565 Z M 33.397 7.356 L 37.752 7.356 C 37.945 7.356 38.012 7.421 38.071 7.589 C 39.28 11.021 40.493 14.45 41.708 17.878 C 41.737 17.959 41.77 18.039 41.82 18.167 C 42.131 17.289 42.426 16.459 42.721 15.628 C 43.669 12.949 44.617 10.269 45.562 7.588 C 45.623 7.416 45.694 7.356 45.881 7.357 C 47.214 7.366 48.547 7.357 49.878 7.357 L 50.126 7.357 C 50.011 7.661 49.906 7.936 49.8 8.212 C 47.911 13.121 46.023 18.031 44.137 22.941 C 44.069 23.118 43.993 23.186 43.794 23.184 C 42.43 23.175 41.065 23.175 39.701 23.184 C 39.556 23.206 39.419 23.113 39.386 22.971 C 37.418 17.843 35.447 12.716 33.474 7.59 C 33.446 7.518 33.428 7.452 33.397 7.356 Z M 123.287 7.356 L 124.433 7.356 C 125.492 7.356 126.549 7.363 127.606 7.356 C 127.823 7.356 127.905 7.423 127.975 7.624 C 129.179 11.048 130.388 14.47 131.602 17.889 C 131.629 17.964 131.662 18.036 131.713 18.163 C 132.998 14.534 134.265 10.954 135.534 7.37 L 140.002 7.37 C 139.972 7.467 139.952 7.544 139.922 7.622 L 134.023 22.957 C 133.959 23.123 133.884 23.189 133.697 23.188 C 132.324 23.179 130.951 23.179 129.579 23.188 C 129.442 23.207 129.313 23.12 129.281 22.985 C 127.31 17.85 125.336 12.716 123.359 7.583 C 123.337 7.514 123.32 7.452 123.287 7.356 Z M 108.926 10.973 L 108.926 17.497 C 108.929 17.778 108.956 18.058 109.005 18.335 C 109.111 18.939 109.478 19.32 110.084 19.418 C 110.508 19.473 110.934 19.502 111.362 19.506 C 111.715 19.519 112.068 19.506 112.436 19.506 L 112.436 23.15 C 112.399 23.16 112.362 23.168 112.325 23.172 C 111.154 23.158 109.981 23.186 108.814 23.117 C 107.612 23.046 106.524 22.645 105.72 21.686 C 105.189 21.07 104.87 20.301 104.81 19.491 C 104.725 18.209 104.721 16.922 104.708 15.636 C 104.692 14.165 104.708 12.693 104.708 11.222 C 104.708 11.151 104.701 11.081 104.698 10.986 L 102.178 10.986 L 102.178 7.356 L 102.428 7.356 C 103.017 7.343 103.606 7.344 104.195 7.312 C 104.668 7.286 105.03 7.035 105.135 6.576 C 105.262 5.973 105.355 5.364 105.414 4.75 C 105.451 4.411 105.42 4.063 105.42 3.704 L 108.918 3.704 L 108.918 7.352 L 113.122 7.352 L 113.122 10.978 Z M 15.157 0.024 C 15.131 0.095 15.115 0.156 15.089 0.211 C 13.742 2.986 12.394 5.761 11.045 8.535 C 10.617 9.44 10.026 10.258 9.3 10.948 C 8.054 12.106 6.601 12.527 4.926 12.164 C 3.714 11.91 2.636 11.224 1.895 10.234 C 0.934 8.985 0.471 7.515 0 5.998 C 0.097 6.035 0.163 6.056 0.223 6.083 C 1.05 6.454 1.895 6.768 2.807 6.845 C 4.164 6.96 5.275 6.473 5.968 5.301 C 6.601 4.232 7.121 3.095 7.675 1.982 C 7.966 1.392 8.234 0.788 8.504 0.187 C 8.559 0.065 8.616 -0.005 8.768 0 C 10.843 0.005 12.918 0.005 14.993 0 C 15.048 0.005 15.103 0.014 15.156 0.024 Z M 52.724 7.363 L 56.913 7.363 L 56.913 23.154 L 52.724 23.154 Z M 120.674 23.16 L 116.492 23.16 L 116.492 7.372 L 120.674 7.372 Z M 81.363 7.363 L 81.363 23.151 L 77.179 23.151 L 77.179 7.363 L 81.363 7.363 Z M 54.816 4.822 C 53.978 4.802 53.28 4.533 52.75 3.87 C 51.845 2.732 52.346 0.891 53.73 0.409 C 54.572 0.12 55.438 0.103 56.232 0.567 C 57.027 1.032 57.401 1.742 57.34 2.643 C 57.274 3.615 56.753 4.298 55.831 4.632 C 55.513 4.752 55.156 4.762 54.816 4.822 Z M 118.591 4.754 C 117.767 4.79 117.077 4.539 116.55 3.895 C 115.609 2.743 116.065 0.931 117.465 0.403 C 118.316 0.084 119.199 0.086 120.012 0.558 C 120.737 0.977 121.109 1.647 121.113 2.474 C 121.117 3.301 120.74 3.972 120.02 4.422 C 119.589 4.678 119.09 4.794 118.591 4.754 Z M 79.263 4.741 C 78.439 4.79 77.733 4.541 77.217 3.873 C 76.684 3.187 76.576 2.416 76.905 1.624 C 77.233 0.831 77.835 0.362 78.692 0.25 C 79.346 0.165 79.996 0.168 80.6 0.497 C 81.474 0.966 81.939 1.947 81.75 2.919 C 81.654 3.399 81.404 3.835 81.039 4.162 C 80.673 4.49 80.212 4.691 79.722 4.735 C 79.57 4.749 79.416 4.741 79.263 4.741 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g></svg>',svgContentId:8798954964,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bojf4x\",\"data-framer-name\":\"Intel\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 81 32\"><path d=\"M 0.964 1.067 L 6.726 1.067 L 6.726 6.831 L 0.964 6.831 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 6.583 31.097 L 6.583 10.338 L 1.128 10.338 L 1.128 31.097 Z M 42.838 31.303 L 42.838 26.215 C 42.038 26.215 41.361 26.174 40.869 26.092 C 40.295 26.01 39.864 25.805 39.577 25.518 C 39.29 25.231 39.106 24.821 39.003 24.287 C 38.921 23.774 38.88 23.097 38.88 22.277 L 38.88 15.015 L 42.838 15.015 L 42.838 10.338 L 38.88 10.338 L 38.88 2.236 L 33.405 2.236 L 33.405 22.318 C 33.405 24.021 33.548 25.456 33.835 26.605 C 34.123 27.733 34.615 28.656 35.291 29.354 C 35.968 30.051 36.87 30.544 37.957 30.851 C 39.065 31.159 40.459 31.303 42.12 31.303 Z M 74.171 31.097 L 74.171 0.636 L 68.696 0.636 L 68.696 31.097 Z M 28.135 12.369 C 26.617 10.728 24.485 9.908 21.778 9.908 C 20.465 9.908 19.276 10.174 18.189 10.708 C 17.123 11.241 16.2 11.979 15.482 12.923 L 15.175 13.313 L 15.175 10.338 L 9.782 10.338 L 9.782 31.097 L 15.216 31.097 L 15.216 20.041 L 15.216 20.8 L 15.216 20.431 C 15.277 18.482 15.749 17.046 16.651 16.123 C 17.615 15.138 18.784 14.646 20.117 14.646 C 21.696 14.646 22.906 15.138 23.705 16.082 C 24.485 17.026 24.895 18.359 24.895 20.062 L 24.895 31.077 L 30.411 31.077 L 30.411 19.303 C 30.431 16.349 29.652 14.01 28.135 12.369 Z M 65.866 20.677 C 65.866 19.179 65.6 17.785 65.087 16.472 C 64.554 15.179 63.816 14.031 62.893 13.046 C 61.95 12.062 60.822 11.303 59.509 10.749 C 58.197 10.195 56.741 9.928 55.162 9.928 C 53.665 9.928 52.25 10.215 50.938 10.769 C 49.625 11.344 48.477 12.103 47.513 13.067 C 46.549 14.031 45.77 15.179 45.216 16.492 C 44.642 17.805 44.376 19.221 44.376 20.718 C 44.376 22.215 44.642 23.631 45.175 24.944 C 45.709 26.256 46.467 27.405 47.411 28.369 C 48.354 29.333 49.523 30.113 50.876 30.667 C 52.23 31.241 53.727 31.528 55.326 31.528 C 59.961 31.528 62.831 29.415 64.554 27.446 L 60.617 24.451 C 59.796 25.436 57.828 26.769 55.367 26.769 C 53.829 26.769 52.558 26.421 51.594 25.703 C 50.63 25.005 49.974 24.021 49.625 22.81 L 49.564 22.626 L 65.866 22.626 Z M 49.605 18.769 C 49.605 17.251 51.348 14.605 55.101 14.585 C 58.853 14.585 60.617 17.231 60.617 18.749 Z M 80.405 28.39 C 80.303 28.144 80.159 27.938 79.975 27.754 C 79.79 27.569 79.585 27.426 79.339 27.323 C 79.093 27.221 78.826 27.159 78.56 27.159 C 78.273 27.159 78.027 27.221 77.781 27.323 C 77.534 27.426 77.329 27.569 77.145 27.754 C 76.96 27.938 76.817 28.144 76.714 28.39 C 76.612 28.636 76.55 28.903 76.55 29.169 C 76.55 29.456 76.612 29.703 76.714 29.949 C 76.817 30.195 76.96 30.4 77.145 30.585 C 77.329 30.769 77.534 30.913 77.781 31.015 C 78.027 31.118 78.293 31.179 78.56 31.179 C 78.847 31.179 79.093 31.118 79.339 31.015 C 79.585 30.913 79.79 30.769 79.975 30.585 C 80.159 30.4 80.303 30.195 80.405 29.949 C 80.508 29.703 80.569 29.436 80.569 29.169 C 80.569 28.903 80.508 28.636 80.405 28.39 Z M 80.077 29.826 C 79.995 30.031 79.872 30.215 79.729 30.359 C 79.585 30.503 79.401 30.626 79.195 30.708 C 78.99 30.79 78.785 30.831 78.539 30.831 C 78.314 30.831 78.088 30.79 77.883 30.708 C 77.678 30.626 77.493 30.503 77.35 30.359 C 77.206 30.215 77.083 30.031 77.001 29.826 C 76.919 29.621 76.878 29.415 76.878 29.169 C 76.878 28.944 76.919 28.718 77.001 28.513 C 77.083 28.308 77.206 28.123 77.35 27.979 C 77.493 27.836 77.678 27.713 77.883 27.631 C 78.088 27.549 78.293 27.508 78.539 27.508 C 78.765 27.508 78.99 27.549 79.195 27.631 C 79.401 27.713 79.585 27.836 79.729 27.979 C 79.872 28.123 79.995 28.308 80.077 28.513 C 80.159 28.718 80.2 28.923 80.2 29.169 C 80.221 29.415 80.159 29.621 80.077 29.826 Z M 78.929 29.333 C 79.093 29.313 79.216 29.251 79.318 29.149 C 79.421 29.046 79.483 28.903 79.483 28.697 C 79.483 28.472 79.421 28.308 79.277 28.185 C 79.154 28.062 78.929 28 78.662 28 L 77.76 28 L 77.76 30.318 L 78.191 30.318 L 78.191 29.374 L 78.498 29.374 L 79.072 30.318 L 79.524 30.318 Z M 78.703 29.005 L 78.191 29.005 L 78.191 28.349 L 78.703 28.349 C 78.765 28.349 78.826 28.369 78.888 28.39 C 78.949 28.41 78.99 28.451 79.011 28.492 C 79.031 28.533 79.052 28.595 79.052 28.677 C 79.052 28.759 79.031 28.821 79.011 28.862 C 78.97 28.903 78.929 28.944 78.888 28.964 C 78.826 28.985 78.765 29.005 78.703 29.005 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:10802146727,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mt4yno\",\"data-framer-name\":\"General-electric\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><g transform=\"translate(0.773 0.764)\"><path d=\"M 14.065 0.048 C 16.971 -0.189 19.944 0.455 22.497 1.862 C 26.85 4.208 29.934 8.783 30.372 13.721 C 30.702 16.764 30.052 19.9 28.572 22.576 C 27.091 25.272 24.773 27.505 22.014 28.87 C 19.849 29.962 17.412 30.513 14.988 30.46 C 11.666 30.432 8.378 29.243 5.777 27.181 C 3.54 25.406 1.809 23 0.861 20.303 C -0.616 16.156 -0.181 11.362 2.073 7.574 C 3.586 4.947 5.92 2.811 8.648 1.496 C 10.344 0.684 12.189 0.182 14.065 0.048 M 11.372 1.496 C 8.751 2.203 6.303 3.746 4.749 5.999 C 3.701 7.48 3.099 9.234 2.79 11.009 C 2.643 12.117 2.582 13.326 3.136 14.338 C 3.392 14.841 3.84 15.221 4.06 15.743 C 4.27 16.206 4.121 16.833 3.669 17.097 C 3.246 17.401 2.647 17.284 2.265 16.968 C 1.712 16.535 1.478 15.828 1.36 15.161 C 1.127 13.659 1.43 12.139 1.813 10.688 C 1.513 10.813 1.557 11.228 1.444 11.491 C 0.789 14.029 0.794 16.742 1.511 19.267 C 2.189 21.678 3.573 23.918 5.57 25.453 C 7.075 26.643 8.919 27.32 10.785 27.687 C 11.911 27.876 13.135 27.952 14.19 27.439 C 14.713 27.177 15.104 26.721 15.617 26.443 C 16.048 26.219 16.61 26.292 16.947 26.648 C 17.337 27.037 17.344 27.703 17.027 28.138 C 16.684 28.604 16.133 28.863 15.589 29.013 C 14.388 29.314 13.132 29.179 11.93 28.96 C 11.49 28.89 11.073 28.695 10.624 28.696 C 10.864 28.934 11.217 28.976 11.528 29.068 C 13.886 29.65 16.389 29.653 18.752 29.089 C 21.47 28.435 24.042 26.905 25.656 24.588 C 26.703 23.149 27.279 21.43 27.635 19.703 C 27.824 18.427 27.92 16.986 27.146 15.874 C 26.785 15.343 26.206 14.832 26.322 14.124 C 26.371 13.461 27.113 13.042 27.722 13.258 C 28.517 13.516 28.89 14.369 29.052 15.125 C 29.362 16.692 29.054 18.302 28.64 19.819 C 28.749 19.802 28.815 19.741 28.84 19.637 C 29.554 17.409 29.678 15.006 29.266 12.707 C 28.793 10.012 27.548 7.384 25.476 5.554 C 24.232 4.419 22.699 3.62 21.079 3.178 C 19.729 2.777 18.268 2.499 16.875 2.844 C 16.189 2.994 15.656 3.475 15.107 3.878 C 14.642 4.237 13.898 4.261 13.478 3.817 C 13.1 3.415 13.135 2.75 13.46 2.326 C 13.894 1.756 14.61 1.492 15.293 1.369 C 16.383 1.206 17.496 1.313 18.572 1.527 C 18.998 1.601 19.396 1.797 19.831 1.829 C 19.741 1.754 19.653 1.67 19.539 1.634 C 16.909 0.785 14.031 0.753 11.372 1.496 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 11.732 6.886 C 12.32 6.577 13.071 6.484 13.67 6.811 C 14.15 7.085 14.338 7.68 14.29 8.205 C 14.205 9.247 13.701 10.209 13.068 11.023 C 12.383 11.85 11.539 12.583 10.528 12.976 C 10.605 13.299 10.849 13.643 11.214 13.641 C 11.855 13.664 12.41 13.26 12.87 12.858 C 13.201 12.606 13.218 12.167 13.373 11.812 C 13.598 11.257 13.904 10.665 14.463 10.385 C 14.725 10.245 15.126 10.218 15.307 10.498 C 15.504 10.875 15.325 11.307 15.135 11.648 C 14.876 12.143 14.466 12.531 14.14 12.977 C 14.018 13.391 13.995 13.826 13.988 14.255 C 14.44 14.055 14.846 13.77 15.273 13.522 C 16.014 13.043 16.784 12.596 17.472 12.041 C 17.552 11.773 17.443 11.481 17.456 11.203 C 17.413 9.855 17.88 8.473 18.798 7.476 C 19.37 6.874 20.23 6.449 21.071 6.661 C 21.576 6.753 21.972 7.163 22.114 7.645 C 22.294 8.373 22.044 9.134 21.661 9.754 C 21.002 10.786 20.043 11.574 19.072 12.299 C 19.201 12.622 19.386 12.988 19.735 13.108 C 20.235 13.013 20.744 12.876 21.255 12.978 C 21.597 13.049 22.008 13.152 22.176 13.493 C 22.33 13.826 22.035 14.166 21.731 14.27 C 21.085 14.48 20.401 14.361 19.742 14.311 C 18.957 14.499 18.274 15.018 17.785 15.65 C 17.025 16.649 16.79 17.971 16.955 19.196 C 17.113 20.212 17.623 21.236 18.521 21.789 C 19.531 22.435 20.987 22.298 21.825 21.425 C 22.615 20.61 22.864 19.312 22.424 18.265 C 22.237 17.805 21.836 17.412 21.334 17.334 C 20.747 17.201 20.049 17.583 19.964 18.207 C 19.879 18.687 20.216 19.084 20.5 19.427 C 20.72 19.655 20.746 20.074 20.473 20.27 C 20.05 20.559 19.464 20.356 19.128 20.021 C 18.297 19.201 18.323 17.721 19.119 16.883 C 20.131 15.723 22.145 15.701 23.179 16.844 C 24.285 18.069 24.425 20.032 23.574 21.437 C 22.936 22.539 21.785 23.335 20.52 23.514 C 19.144 23.718 17.658 23.282 16.691 22.262 C 14.8 20.336 14.83 16.949 16.634 14.976 C 17.117 14.398 17.754 13.987 18.393 13.606 C 18.255 13.42 18.11 13.238 17.963 13.057 C 16.721 13.957 15.423 14.775 14.086 15.527 C 13.86 15.61 13.901 15.883 13.868 16.075 C 13.749 17.72 13.609 19.434 12.791 20.904 C 12.237 21.942 11.401 22.894 10.279 23.321 C 9.39 23.657 8.314 23.686 7.498 23.146 C 6.716 22.656 6.361 21.677 6.421 20.786 C 6.545 19.652 7.19 18.628 8.01 17.858 C 9.136 16.83 10.5 16.119 11.839 15.414 C 12.112 15.262 12.409 15.147 12.652 14.95 C 12.742 14.705 12.756 14.441 12.781 14.184 C 12.087 14.603 11.21 14.941 10.411 14.619 C 9.758 14.367 9.352 13.743 9.144 13.103 C 8.528 13.037 7.909 12.791 7.516 12.294 C 6.831 11.473 6.788 10.225 7.283 9.3 C 7.448 8.966 7.82 8.787 8.183 8.809 C 8.254 8.953 8.386 9.095 8.338 9.269 C 8.23 9.869 8.019 10.493 8.218 11.101 C 8.317 11.517 8.661 11.849 9.088 11.906 C 9.179 10.921 9.371 9.933 9.834 9.048 C 10.27 8.188 10.865 7.353 11.732 6.886 M 12.311 7.849 C 11.727 8.247 11.371 8.882 11.064 9.5 C 10.733 10.197 10.466 10.946 10.436 11.724 C 10.659 11.625 10.87 11.496 11.051 11.331 C 11.782 10.695 12.421 9.937 12.85 9.063 C 13 8.747 13.131 8.388 13.045 8.034 C 12.934 7.747 12.546 7.671 12.311 7.849 M 19.869 8.153 C 19.187 8.948 18.812 10.002 18.823 11.049 C 19.593 10.414 20.303 9.669 20.781 8.786 C 20.919 8.504 21.1 8.043 20.752 7.837 C 20.435 7.673 20.077 7.913 19.869 8.153 M 9.518 18.31 C 8.847 18.913 8.193 19.615 7.949 20.505 C 7.832 20.983 7.805 21.586 8.206 21.942 C 8.63 22.329 9.268 22.214 9.757 22.03 C 10.701 21.666 11.271 20.753 11.655 19.865 C 12.102 18.763 12.38 17.589 12.493 16.404 C 11.421 16.9 10.421 17.551 9.518 18.31 Z\" fill=\"var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, rgb(34, 28, 43)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></g><g transform=\"translate(0 0)\"><path d=\"M 14.842 0.045 C 17.999 -0.196 21.221 0.542 23.961 2.126 C 26.153 3.39 28.049 5.173 29.421 7.301 C 31.124 9.903 32.026 13.018 31.999 16.128 C 31.979 19.377 30.945 22.616 29.054 25.262 C 27.137 27.976 24.349 30.067 21.203 31.136 C 18.408 32.103 15.346 32.255 12.463 31.609 C 9.439 30.935 6.63 29.345 4.482 27.114 C 2.204 24.755 0.663 21.685 0.192 18.438 C -0.271 15.544 0.112 12.527 1.242 9.827 C 2.291 7.316 4 5.09 6.139 3.411 C 8.618 1.455 11.691 0.263 14.842 0.045 M 14.838 0.812 C 12.963 0.947 11.118 1.449 9.422 2.26 C 6.693 3.575 4.36 5.712 2.846 8.338 C 0.593 12.126 0.157 16.92 1.635 21.068 C 2.582 23.764 4.313 26.17 6.551 27.945 C 9.151 30.008 12.439 31.196 15.761 31.224 C 18.186 31.277 20.623 30.726 22.787 29.635 C 25.546 28.269 27.864 26.037 29.345 23.341 C 30.826 20.664 31.475 17.529 31.146 14.486 C 30.708 9.548 27.623 4.972 23.27 2.626 C 20.717 1.219 17.745 0.576 14.838 0.812 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 12.145 2.26 C 14.805 1.517 17.682 1.549 20.312 2.398 C 20.426 2.434 20.514 2.518 20.604 2.593 C 20.17 2.562 19.772 2.365 19.345 2.292 C 18.27 2.077 17.156 1.971 16.066 2.133 C 15.384 2.256 14.667 2.52 14.234 3.09 C 13.908 3.514 13.873 4.179 14.251 4.581 C 14.671 5.025 15.416 5.001 15.881 4.642 C 16.43 4.239 16.963 3.759 17.648 3.609 C 19.042 3.264 20.503 3.541 21.852 3.942 C 23.473 4.384 25.006 5.184 26.249 6.318 C 28.321 8.148 29.567 10.777 30.039 13.471 C 30.451 15.771 30.328 18.174 29.614 20.401 C 29.589 20.506 29.522 20.567 29.414 20.583 C 29.828 19.066 30.135 17.456 29.826 15.89 C 29.663 15.134 29.291 14.281 28.495 14.023 C 27.886 13.807 27.145 14.226 27.095 14.888 C 26.979 15.597 27.558 16.107 27.919 16.638 C 28.694 17.75 28.598 19.192 28.409 20.467 C 28.053 22.194 27.476 23.913 26.43 25.352 C 24.815 27.67 22.243 29.2 19.525 29.853 C 17.163 30.418 14.66 30.414 12.301 29.833 C 11.991 29.74 11.638 29.698 11.397 29.461 C 11.847 29.46 12.264 29.655 12.704 29.724 C 13.905 29.943 15.162 30.078 16.362 29.778 C 16.907 29.628 17.458 29.369 17.8 28.903 C 18.117 28.467 18.111 27.801 17.721 27.413 C 17.384 27.057 16.822 26.983 16.39 27.208 C 15.878 27.485 15.486 27.942 14.963 28.204 C 13.908 28.716 12.684 28.641 11.559 28.451 C 9.693 28.085 7.849 27.408 6.344 26.217 C 4.346 24.682 2.962 22.443 2.285 20.031 C 1.567 17.506 1.562 14.793 2.217 12.255 C 2.33 11.992 2.287 11.577 2.586 11.452 C 2.203 12.903 1.901 14.423 2.134 15.925 C 2.252 16.593 2.486 17.299 3.038 17.733 C 3.421 18.049 4.019 18.165 4.443 17.861 C 4.894 17.597 5.043 16.971 4.834 16.507 C 4.613 15.985 4.165 15.605 3.909 15.103 C 3.355 14.09 3.416 12.882 3.563 11.773 C 3.872 9.998 4.475 8.244 5.522 6.763 C 7.077 4.51 9.524 2.968 12.145 2.26 M 12.505 7.651 C 11.639 8.118 11.043 8.952 10.607 9.813 C 10.144 10.697 9.952 11.685 9.862 12.67 C 9.434 12.613 9.09 12.281 8.991 11.865 C 8.792 11.257 9.003 10.633 9.111 10.033 C 9.16 9.859 9.027 9.717 8.957 9.574 C 8.593 9.551 8.222 9.73 8.056 10.064 C 7.561 10.989 7.605 12.238 8.289 13.059 C 8.682 13.556 9.302 13.801 9.918 13.867 C 10.126 14.507 10.532 15.132 11.184 15.383 C 11.983 15.705 12.86 15.368 13.554 14.948 C 13.529 15.205 13.516 15.469 13.426 15.715 C 13.182 15.911 12.885 16.026 12.612 16.178 C 11.273 16.884 9.909 17.594 8.783 18.622 C 7.963 19.392 7.319 20.416 7.195 21.55 C 7.135 22.442 7.49 23.42 8.271 23.91 C 9.087 24.451 10.163 24.421 11.053 24.085 C 12.174 23.658 13.011 22.706 13.564 21.668 C 14.382 20.198 14.522 18.484 14.641 16.839 C 14.674 16.647 14.633 16.374 14.86 16.291 C 16.196 15.54 17.495 14.722 18.736 13.821 C 18.883 14.002 19.028 14.184 19.166 14.371 C 18.527 14.752 17.89 15.163 17.408 15.74 C 15.603 17.713 15.573 21.1 17.465 23.026 C 18.432 24.047 19.918 24.483 21.294 24.279 C 22.558 24.099 23.709 23.303 24.347 22.201 C 25.198 20.797 25.059 18.833 23.953 17.608 C 22.918 16.465 20.904 16.487 19.893 17.648 C 19.097 18.485 19.071 19.965 19.901 20.785 C 20.238 21.121 20.824 21.324 21.246 21.035 C 21.519 20.838 21.493 20.419 21.273 20.191 C 20.989 19.848 20.653 19.451 20.738 18.971 C 20.823 18.348 21.52 17.966 22.107 18.098 C 22.61 18.176 23.011 18.569 23.198 19.029 C 23.638 20.076 23.388 21.374 22.598 22.189 C 21.761 23.062 20.304 23.2 19.294 22.553 C 18.397 22.001 17.886 20.977 17.729 19.96 C 17.563 18.735 17.798 17.414 18.558 16.415 C 19.048 15.782 19.73 15.263 20.515 15.075 C 21.175 15.126 21.858 15.245 22.504 15.034 C 22.808 14.93 23.104 14.59 22.949 14.257 C 22.782 13.916 22.371 13.814 22.029 13.742 C 21.517 13.641 21.008 13.777 20.508 13.873 C 20.159 13.753 19.975 13.386 19.845 13.063 C 20.816 12.338 21.775 11.55 22.435 10.518 C 22.818 9.899 23.067 9.138 22.887 8.409 C 22.745 7.927 22.35 7.517 21.845 7.425 C 21.004 7.213 20.143 7.638 19.572 8.24 C 18.653 9.237 18.187 10.619 18.229 11.967 C 18.217 12.245 18.325 12.537 18.246 12.805 C 17.557 13.36 16.788 13.807 16.046 14.286 C 15.62 14.534 15.214 14.819 14.761 15.019 C 14.769 14.59 14.791 14.155 14.914 13.741 C 15.24 13.295 15.65 12.908 15.909 12.413 C 16.098 12.071 16.277 11.639 16.08 11.262 C 15.899 10.982 15.499 11.01 15.237 11.149 C 14.678 11.429 14.371 12.021 14.146 12.576 C 13.991 12.931 13.974 13.371 13.643 13.622 C 13.183 14.024 12.628 14.429 11.988 14.405 C 11.622 14.407 11.379 14.063 11.301 13.74 C 12.313 13.347 13.157 12.615 13.841 11.787 C 14.475 10.973 14.979 10.012 15.064 8.969 C 15.111 8.444 14.923 7.85 14.444 7.575 C 13.844 7.248 13.093 7.341 12.505 7.651 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 13.084 8.614 C 13.319 8.436 13.707 8.511 13.818 8.798 C 13.904 9.152 13.774 9.511 13.623 9.827 C 13.195 10.701 12.555 11.459 11.824 12.095 C 11.644 12.261 11.433 12.389 11.209 12.488 C 11.239 11.711 11.506 10.961 11.837 10.264 C 12.145 9.646 12.5 9.011 13.084 8.614 Z M 20.643 8.917 C 20.851 8.677 21.209 8.438 21.526 8.601 C 21.874 8.807 21.692 9.268 21.555 9.551 C 21.076 10.433 20.366 11.178 19.597 11.813 C 19.585 10.766 19.96 9.712 20.643 8.917 Z M 10.292 19.075 C 11.194 18.316 12.195 17.664 13.266 17.169 C 13.153 18.353 12.876 19.527 12.428 20.63 C 12.044 21.517 11.474 22.431 10.531 22.794 C 10.041 22.978 9.403 23.093 8.98 22.707 C 8.578 22.351 8.606 21.747 8.723 21.27 C 8.966 20.379 9.621 19.677 10.292 19.075 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></g></svg>',svgContentId:10261932884,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ed5jbi\",\"data-framer-name\":\"Bosch\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 24\"><path d=\"M 11.959 0 C 5.36 0 0 5.379 0 12 C 0 18.621 5.36 24 11.959 24 C 18.557 24 23.917 18.621 23.917 12 C 23.917 5.379 18.557 0 11.959 0 Z M 11.959 22.797 C 6.019 22.797 1.198 17.947 1.198 12 C 1.198 6.053 6.019 1.203 11.959 1.203 C 17.898 1.203 22.719 6.053 22.719 12 C 22.719 17.947 17.898 22.797 11.959 22.797 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 16.226 4.308 C 16.186 4.282 16.134 4.269 16.081 4.269 C 15.923 4.269 15.804 4.388 15.804 4.546 L 15.804 8.3 C 15.804 8.432 15.699 8.537 15.567 8.537 L 8.324 8.537 C 8.192 8.537 8.1 8.432 8.087 8.3 L 8.087 4.546 C 8.087 4.493 8.073 4.454 8.047 4.401 C 7.968 4.269 7.797 4.229 7.665 4.308 C 4.992 5.96 3.372 8.828 3.372 12 C 3.372 15.172 4.992 18.04 7.691 19.692 C 7.731 19.718 7.784 19.731 7.836 19.731 C 7.994 19.731 8.113 19.612 8.113 19.454 L 8.113 15.7 C 8.113 15.568 8.218 15.476 8.35 15.463 L 15.594 15.463 C 15.725 15.463 15.831 15.568 15.831 15.7 L 15.831 19.454 C 15.831 19.507 15.844 19.546 15.87 19.599 C 15.949 19.731 16.12 19.771 16.252 19.692 C 18.952 18.04 20.572 15.172 20.572 12 C 20.572 8.828 18.926 5.96 16.226 4.308 Z M 6.717 16.705 L 6.756 17.154 L 6.467 16.797 C 4.241 13.982 4.241 10.004 6.467 7.189 L 6.717 6.872 L 6.756 6.833 L 6.717 7.295 C 6.677 7.665 6.664 8.048 6.664 8.432 L 6.664 15.555 C 6.664 15.938 6.69 16.322 6.717 16.705 Z M 15.804 13.797 C 15.804 13.93 15.699 14.035 15.567 14.035 L 8.324 14.035 C 8.192 14.035 8.1 13.93 8.087 13.797 L 8.087 10.203 C 8.087 10.07 8.192 9.965 8.324 9.965 L 15.567 9.965 C 15.699 9.965 15.804 10.07 15.804 10.203 Z M 17.437 16.797 L 17.148 17.154 L 17.187 16.705 C 17.227 16.335 17.24 15.952 17.24 15.568 L 17.24 8.432 C 17.24 8.048 17.227 7.665 17.187 7.295 L 17.174 7.097 L 17.161 6.885 L 17.161 6.833 L 17.437 7.189 C 18.517 8.537 19.11 10.256 19.11 11.987 C 19.11 13.718 18.517 15.449 17.437 16.797 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path><path d=\"M 41.96 11.789 C 41.895 11.762 41.816 11.736 41.816 11.656 C 41.816 11.604 41.842 11.564 41.895 11.537 C 41.987 11.498 44.265 10.678 44.265 7.982 C 44.265 4.982 42.25 3.198 38.852 3.198 L 30.621 3.198 L 30.621 20.828 L 39.603 20.828 C 42.224 20.828 45.042 18.965 45.042 15.965 C 45.042 13.097 42.882 12.093 41.96 11.789 Z M 34.77 6.806 C 34.77 6.74 34.822 6.687 34.888 6.687 L 38.154 6.687 C 39.234 6.687 39.972 7.414 39.972 8.498 C 39.972 9.344 39.313 10.256 38.075 10.256 L 34.888 10.256 C 34.822 10.256 34.77 10.203 34.77 10.137 Z M 38.154 17.352 L 34.888 17.352 C 34.822 17.352 34.77 17.3 34.77 17.233 L 34.77 13.718 C 34.77 13.652 34.822 13.599 34.888 13.599 L 38.075 13.599 C 39.643 13.599 40.538 14.273 40.538 15.463 C 40.538 16.692 39.708 17.352 38.154 17.352 Z M 72.845 10.216 L 72.213 10.084 C 70.79 9.78 69.407 9.396 69.407 8.167 C 69.407 6.938 70.553 6.383 71.686 6.383 C 73.016 6.383 74.333 6.978 75.334 8.009 L 77.942 5.419 C 76.822 4.176 74.833 2.749 71.62 2.749 C 67.748 2.749 65.14 4.956 65.14 8.247 C 65.14 11.722 67.866 13.031 70.158 13.52 L 70.777 13.652 C 73.003 14.128 74.056 14.485 74.056 15.753 C 74.056 16.89 73.042 17.643 71.541 17.643 C 69.776 17.643 68.209 16.863 67.024 15.396 L 64.35 18.026 C 65.772 19.718 67.656 21.251 71.594 21.251 C 74.952 21.251 78.363 19.295 78.363 15.542 C 78.35 11.696 75.742 10.824 72.845 10.216 Z M 107.548 3.198 L 107.548 9.648 C 107.548 9.714 107.496 9.767 107.43 9.767 L 102.03 9.767 C 101.964 9.767 101.912 9.714 101.912 9.648 L 101.912 3.198 L 97.486 3.198 L 97.486 20.828 L 101.912 20.828 L 101.912 13.903 C 101.912 13.837 101.964 13.784 102.03 13.784 L 107.43 13.784 C 107.496 13.784 107.548 13.837 107.548 13.903 L 107.548 20.828 L 112 20.828 L 112 3.198 Z M 88.583 17.22 C 86.595 17.22 84.448 15.555 84.448 11.894 C 84.448 8.551 86.463 6.806 88.452 6.806 C 89.9 6.806 90.914 7.414 91.718 8.762 L 95.116 6.502 C 93.377 3.938 91.31 2.775 88.425 2.775 C 82.775 2.775 80.246 7.361 80.246 11.894 C 80.246 17.405 83.592 21.251 88.373 21.251 C 91.929 21.251 93.548 19.943 95.247 17.524 L 91.823 15.211 C 91.059 16.454 90.23 17.22 88.583 17.22 Z M 54.986 2.749 C 50.152 2.749 46.913 6.463 46.913 12 C 46.913 17.537 50.152 21.251 54.986 21.251 C 59.819 21.251 63.059 17.537 63.059 12 C 63.059 6.463 59.819 2.749 54.986 2.749 Z M 54.986 17.22 C 52.615 17.22 51.087 15.172 51.087 12 C 51.087 8.841 52.615 6.806 54.986 6.806 C 57.37 6.806 58.911 8.841 58.911 12 C 58.911 15.172 57.37 17.22 54.986 17.22 Z\" fill=\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243)) /* {&quot;name&quot;:&quot;Leo White&quot;} */\"></path></svg>',svgContentId:12059920288,withExternalLayout:true})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ciy9j\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s1yn4x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"G1wj0hv4m\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:16,height:\"100%\",hoverFactor:1,id:\"G1wj0hv4m\",layoutId:\"G1wj0hv4m\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6jtkoa-container\",\"data-framer-name\":\"Jon Hirschtick\",inComponentSlot:true,name:\"Jon Hirschtick\",nodeId:\"F3y_bbRPB\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(CardTestimony,{fjnuaWZtT:\"Onshape by PTC\",GKKDAluWm:\"It's been great to see the power of Leo AI's engineering being used by Onshape by PTC customers! And it's only going to get better with upcoming direct integration between our systems\",height:\"100%\",id:\"F3y_bbRPB\",JPwIrZiYC:\"Jon Hirschtick\",layoutId:\"F3y_bbRPB\",name:\"Jon Hirschtick\",P0JT7qzaa:\"Chief Evangelist at PTC\",Qy1wBTYwJ:addImageAlt({pixelHeight:642,pixelWidth:700,src:\"https://framerusercontent.com/images/ImfM4I83oZqT7vyN5wSXphKnycE.png\",srcSet:\"https://framerusercontent.com/images/ImfM4I83oZqT7vyN5wSXphKnycE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ImfM4I83oZqT7vyN5wSXphKnycE.png 700w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ftmaeg-container\",\"data-framer-name\":\"Bertrand\",inComponentSlot:true,name:\"Bertrand\",nodeId:\"pnEQzWCoc\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(CardTestimony,{fjnuaWZtT:\"Visiativ\",GKKDAluWm:\"It's going to change the way people are developing products by massively impacting the engineering process.\",height:\"100%\",id:\"pnEQzWCoc\",JPwIrZiYC:\"Bertrand Sicot\",layoutId:\"pnEQzWCoc\",name:\"Bertrand\",P0JT7qzaa:\"Deputy CEO\",Qy1wBTYwJ:addImageAlt({pixelHeight:640,pixelWidth:700,src:\"https://framerusercontent.com/images/Uv08avAl9KdWKcC1GJeThfeikHo.png\",srcSet:\"https://framerusercontent.com/images/Uv08avAl9KdWKcC1GJeThfeikHo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Uv08avAl9KdWKcC1GJeThfeikHo.png 700w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r7w9s-container\",\"data-framer-name\":\"Chen\",inComponentSlot:true,name:\"Chen\",nodeId:\"S6HKxvI0u\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(CardTestimony,{fjnuaWZtT:\"Zutacore\",GKKDAluWm:\"I use it for most of the ideas and engineers use it for calculations. We hope Leo will help us get competitive advantages\",height:\"100%\",id:\"S6HKxvI0u\",JPwIrZiYC:\"Chen Gabay\",layoutId:\"S6HKxvI0u\",name:\"Chen\",P0JT7qzaa:\"Senior Mechanical Engineer\",Qy1wBTYwJ:addImageAlt({pixelHeight:640,pixelWidth:700,src:\"https://framerusercontent.com/images/f5xkjo0OC9IBe59TxdawV0DpUL0.png\",srcSet:\"https://framerusercontent.com/images/f5xkjo0OC9IBe59TxdawV0DpUL0.png?scale-down-to=512 512w,https://framerusercontent.com/images/f5xkjo0OC9IBe59TxdawV0DpUL0.png 700w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18i8325-container\",\"data-framer-name\":\"Harel\",inComponentSlot:true,name:\"Harel\",nodeId:\"znpCv3ylF\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(CardTestimony,{fjnuaWZtT:\"Oberman Design\",GKKDAluWm:\"Amazing! Leo AI and CAD Editor, two softwares that changed the world of design and engineering.\",height:\"100%\",id:\"znpCv3ylF\",JPwIrZiYC:\"Harel Oberman\",layoutId:\"znpCv3ylF\",name:\"Harel\",P0JT7qzaa:\"Industrial & Product Design\",Qy1wBTYwJ:addImageAlt({pixelHeight:642,pixelWidth:700,src:\"https://framerusercontent.com/images/lYKVpV2F5pO0kRBD3Bknvz8F8k.png\",srcSet:\"https://framerusercontent.com/images/lYKVpV2F5pO0kRBD3Bknvz8F8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/lYKVpV2F5pO0kRBD3Bknvz8F8k.png 700w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t70pvo-container\",\"data-framer-name\":\"Ben\",inComponentSlot:true,name:\"Ben\",nodeId:\"ltviS4Z8M\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(CardTestimony,{fjnuaWZtT:\"ERC Systems\",GKKDAluWm:\"I tried Leo AI and was really impressed. As an engineer focusing on early stage developments, I love the ability to turn my CAD ideas/ sketches in more realistic renders.\",height:\"100%\",id:\"ltviS4Z8M\",JPwIrZiYC:\"Benedikt Dreyer\",layoutId:\"ltviS4Z8M\",name:\"Ben\",P0JT7qzaa:\"Aerospace Engineer\",Qy1wBTYwJ:addImageAlt({pixelHeight:640,pixelWidth:700,src:\"https://framerusercontent.com/images/hK6IsPCuHI29XdB4oix0gr1GVM.png\",srcSet:\"https://framerusercontent.com/images/hK6IsPCuHI29XdB4oix0gr1GVM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hK6IsPCuHI29XdB4oix0gr1GVM.png 700w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kdr5wh-container\",\"data-framer-name\":\"Bashary\",inComponentSlot:true,name:\"Bashary\",nodeId:\"pvbjjX4Hk\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(CardTestimony,{fjnuaWZtT:\"Elbit Systems\",GKKDAluWm:\"Leo gave me a variety of mechanisms that meet my requirements, it gave me ideas that were new to me, that I wouldn't think of otherwise.\",height:\"100%\",id:\"pvbjjX4Hk\",JPwIrZiYC:\"Adi Bashary\",layoutId:\"pvbjjX4Hk\",name:\"Bashary\",P0JT7qzaa:\"R&D Team Leader\",Qy1wBTYwJ:addImageAlt({pixelHeight:640,pixelWidth:700,src:\"https://framerusercontent.com/images/axmAxph0yrjWxzlzPEA9lwz1LM.png\",srcSet:\"https://framerusercontent.com/images/axmAxph0yrjWxzlzPEA9lwz1LM.png?scale-down-to=512 512w,https://framerusercontent.com/images/axmAxph0yrjWxzlzPEA9lwz1LM.png 700w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"310px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ixdtq2-container\",\"data-framer-name\":\"Rabinovich\",inComponentSlot:true,name:\"Rabinovich\",nodeId:\"eHcTXY3eo\",rendersWithMotion:true,scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(CardTestimony,{fjnuaWZtT:\"Tenova Advanced Technologies\",GKKDAluWm:\"I asked Leo about a lead screw and a lead nut in different ways and his answers were really good \uD83D\uDC4F Within 2 questions and 5 mins, I got the answers I needed.\",height:\"100%\",id:\"eHcTXY3eo\",JPwIrZiYC:\"Yehezkel Rabinovich\",layoutId:\"eHcTXY3eo\",name:\"Rabinovich\",P0JT7qzaa:\"Lead Development Engineer\",Qy1wBTYwJ:addImageAlt({pixelHeight:640,pixelWidth:700,src:\"https://framerusercontent.com/images/XAlQNC06T8atos3twhgsglrX1E.png\",srcSet:\"https://framerusercontent.com/images/XAlQNC06T8atos3twhgsglrX1E.png?scale-down-to=512 512w,https://framerusercontent.com/images/XAlQNC06T8atos3twhgsglrX1E.png 700w\"},\"\"),style:{width:\"100%\"},width:\"100%\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-6gqj9z\",\"data-styles-preset\":\"Xt9hD2A_s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sK7zTS5cl\"},motionChild:true,nodeId:\"Sfk8g49WH\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bsus9d\",\"data-styles-preset\":\"cYPf5t8Q6\",children:\"View More From our Users\"})})})}),className:\"framer-17yr1qa\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f1cp3v\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j9u911\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iuenl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Leverage your organization's data. Design faster\u2014with confidence.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Leverage your organization's data. Design faster\u2014with confidence.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Leverage your organization's data. Design faster\u2014with confidence.\"})}),className:\"framer-11w831l\",\"data-framer-name\":\"The AI design assistant\\u2028boosting engineers work.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1madmif\",\"data-framer-name\":\"a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pu5ryq\",\"data-framer-name\":\"Frame 5379\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yymd6n\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8e88vv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"t96ts7fpX\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChatBubbleLeft\",id:\"t96ts7fpX\",layoutId:\"t96ts7fpX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Knows Engineering\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Knows Engineering\"})}),className:\"framer-o7vady\",\"data-framer-name\":\"Get AI-based answers in real time\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Get accurate answers to technical questions from reliable sources \u2014 no misinformation, no broken links.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Get accurate answers to technical questions from reliable sources \u2014 no misinformation, no broken links.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Get accurate answers to technical questions from reliable sources \u2014 no misinformation, no broken links.\"})}),className:\"framer-1vie00q\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l7t1zy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":aurzBXDqa\",webPageId:\"mC5Yz6ias\"},motionChild:true,nodeId:\"AhVgvWGFa\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":aurzBXDqa\",webPageId:\"mC5Yz6ias\"},motionChild:true,nodeId:\"AhVgvWGFa\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":aurzBXDqa\",webPageId:\"mC5Yz6ias\"},motionChild:true,nodeId:\"AhVgvWGFa\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})}),className:\"framer-1q3qutb\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7qvtsk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GitDvMUKQ\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"GitDvMUKQ\",layoutId:\"GitDvMUKQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{y:(componentViewport?.y||0)+0+812+50+296+0+251},eJ67jPrGX:{height:295,y:(componentViewport?.y||0)+0+1036+40+380+0+284},LlMFdmgEb:{width:`min(${componentViewport?.width||\"100vw\"} - 400px, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1080,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+1532+40+416+0+332,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p6isw7-container\",nodeId:\"qcqWuV42q\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{variant:\"asH_HKzxU\"},eJ67jPrGX:{variant:\"qNQMytbUz\"}},children:/*#__PURE__*/_jsx(HoverImage,{height:\"100%\",id:\"qcqWuV42q\",layoutId:\"qcqWuV42q\",r0sZUCxq2:\"Centralize and activate your engineering knowledge. Leo draws from standards, textbooks, and your internal documents \u2014 including specifications, test data, and past design decisions \u2014 to provide answers tailored to how your company works. This reduces errors, accelerates onboarding, and promotes consistency across teams.\",style:{height:\"100%\",width:\"100%\"},variant:\"b9okiK2rT\",W2fqzvWW8:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/m1D4rW50POzRBYWVAApE00w7h6I.gif\",srcSet:\"https://framerusercontent.com/images/m1D4rW50POzRBYWVAApE00w7h6I.gif?scale-down-to=512 512w,https://framerusercontent.com/images/m1D4rW50POzRBYWVAApE00w7h6I.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/m1D4rW50POzRBYWVAApE00w7h6I.gif 1920w\"},\"\"),width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Centralize and activate your engineering knowledge.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Leo draws from standards, textbooks, and your internal documents \u2014 including specs, test data, and past design decisions \u2014 to provide answers tailored to how your company works. This reduces errors, accelerates onboarding, and promotes consistency across teams.\"]})}),fonts:[\"FS;Satoshi-medium\",\"FS;Satoshi-bold\"]},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Centralize and activate your engineering knowledge.\"}),/*#__PURE__*/_jsx(\"br\",{}),\"Leo draws from standards, textbooks, and your internal documents \u2014 including specifications, test data, and past design decisions \u2014 to provide answers tailored to how your company works. This reduces errors, accelerates onboarding, and promotes consistency across teams.\"]})}),fonts:[\"FS;Satoshi-medium\",\"FS;Satoshi-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Centralize and activate your engineering knowledge.  Leo pulls from standards, textbooks, and your internal documents \u2014 specs, testing data, past design decisions \u2014 to give answers that reflect how your company actually works. This reduces mistakes, speeds up onboarding, and ensures consistency across teams.\"})}),className:\"framer-tpctr hidden-q10gqh hidden-zjihyb\",\"data-framer-name\":\"Built by Mechanical Engineers for Mechanical Engineers.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ff9rld\",\"data-framer-name\":\"a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jsus6z\",\"data-framer-name\":\"Frame 5379\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vnz8vu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t43m08-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iBmr8Wkh1\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Variable\",id:\"iBmr8Wkh1\",layoutId:\"iBmr8Wkh1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Problem Solving\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Problem Solving\"})}),className:\"framer-e69k88\",\"data-framer-name\":\"Get AI-based answers in real time\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Handle everything from quick conversions to multi-step mechanical calculations.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Handle everything from quick conversions to multi-step mechanical calculations.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Handle everything from quick conversions to multi-step mechanical calculations.\"})}),className:\"framer-1p70m3w\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-135sn8f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":HmAVk7EZO\",webPageId:\"mC5Yz6ias\"},motionChild:true,nodeId:\"WWoo7tR1P\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":HmAVk7EZO\",webPageId:\"mC5Yz6ias\"},motionChild:true,nodeId:\"WWoo7tR1P\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":HmAVk7EZO\",webPageId:\"mC5Yz6ias\"},motionChild:true,nodeId:\"WWoo7tR1P\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})}),className:\"framer-oz7wlf\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gy50ww-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cUxGD8KQ3\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"cUxGD8KQ3\",layoutId:\"cUxGD8KQ3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+812+50+1867+0+251},eJ67jPrGX:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+1036+40+1219+0+284}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:563,width:\"1000px\",y:(componentViewport?.y||0)+0+1532+40+1908+0+332,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ufosgh-container\",nodeId:\"G3MJI7Tgq\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{variant:\"asH_HKzxU\"},eJ67jPrGX:{variant:\"qNQMytbUz\"}},children:/*#__PURE__*/_jsx(HoverImage,{height:\"100%\",id:\"G3MJI7Tgq\",layoutId:\"G3MJI7Tgq\",r0sZUCxq2:\"Ask Leo about materials, mechanics, coatings, or design tradeoffs and receive accurate, context-aware answers with links to trusted sources \u2014 so you can verify and move forward with confidence. Leo also supports calculations, from simple unit conversions to complex structural analyses.\",R149b_pXs:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/qJzQL9zwfAjN4AIm91fyeOXDgQ.jpg\",srcSet:\"https://framerusercontent.com/images/qJzQL9zwfAjN4AIm91fyeOXDgQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qJzQL9zwfAjN4AIm91fyeOXDgQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qJzQL9zwfAjN4AIm91fyeOXDgQ.jpg 1920w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"b9okiK2rT\",W2fqzvWW8:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/puNOaxq8g40m4ljJ915KA5ox6E0.gif\",srcSet:\"https://framerusercontent.com/images/puNOaxq8g40m4ljJ915KA5ox6E0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/puNOaxq8g40m4ljJ915KA5ox6E0.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/puNOaxq8g40m4ljJ915KA5ox6E0.gif 1920w\"},\"\"),width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Ask Leo about materials, mechanics, coatings, or design tradeoffs, and receive accurate, context-aware answers with links to trusted sources \u2014 so you can verify and move forward with confidence. Leo also supports calculations, from simple unit conversions to complex structural analyses.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Ask Leo about materials, mechanics, coatings, or design tradeoffs and receive accurate, context-aware answers with links to trusted sources \u2014 so you can verify and move forward with confidence. Leo also supports calculations, from simple unit conversions to complex structural analyses.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Ask Leo questions about materials, mechanics, coatings, or design tradeoffs \u2014 and get accurate, context-aware answers with links to trusted sources so you can verify and move forward with confidence. It also handles calculations \u2014 from quick unit conversions to complex structural analyses.\"})}),className:\"framer-696ygz hidden-q10gqh hidden-zjihyb\",\"data-framer-name\":\"Built by Mechanical Engineers for Mechanical Engineers.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cirjti\",\"data-framer-name\":\"a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fp63k\",\"data-framer-name\":\"Frame 5379\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uf28x7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v6kj32-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xkOoh0F45\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"MagnifyingGlass\",id:\"xkOoh0F45\",layoutId:\"xkOoh0F45\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Find Components\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Find Components\"})}),className:\"framer-1nayv4g\",\"data-framer-name\":\"Get AI-based answers in real time\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Search and filter standard parts using natural language and intent.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Search and filter standard parts using natural language and intent.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Search and filter standard parts using natural language and intent.\"})}),className:\"framer-19acpbo\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kxh4xs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":FbtWXPEHo\",webPageId:\"w5o76uNiU\"},motionChild:true,nodeId:\"W0RS02vO0\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":FbtWXPEHo\",webPageId:\"w5o76uNiU\"},motionChild:true,nodeId:\"W0RS02vO0\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":FbtWXPEHo\",webPageId:\"w5o76uNiU\"},motionChild:true,nodeId:\"W0RS02vO0\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})}),className:\"framer-1q2ditz\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ux74d9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UWpSxbplq\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"UWpSxbplq\",layoutId:\"UWpSxbplq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Turn decades of tribal knowledge and legacy data into usable insights \u2014 eliminating hidden parts, duplicated purchases, and redundant work. Leo connects with CAD models, descriptions, and historical context to surface what\u2019s already been designed, bought, or approved.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Turn decades of tribal knowledge and legacy data into usable insights \u2014 eliminating hidden parts, duplicated purchases, and redundant work. Leo connects with CAD models, descriptions, and historical context to surface what\u2019s already been designed, bought, or approved.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Make decades of tribal knowledge and legacy data usable \u2014 no more hidden parts, duplicated purchases, or engineers reinventing the wheel. Leo taps into CAD models, descriptions, and historical context to surface what\u2019s already been designed, bought, or approved.\"})}),className:\"framer-nj3v8v hidden-q10gqh hidden-zjihyb\",\"data-framer-name\":\"Built by Mechanical Engineers for Mechanical Engineers.\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+812+50+2921+0+251},eJ67jPrGX:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+1036+40+2326+0+284}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:563,width:\"1000px\",y:(componentViewport?.y||0)+0+1532+40+2883+0+332,children:/*#__PURE__*/_jsx(Container,{className:\"framer-swo0pz-container\",nodeId:\"BAx4LGjan\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{variant:\"asH_HKzxU\"},eJ67jPrGX:{variant:\"qNQMytbUz\"}},children:/*#__PURE__*/_jsx(HoverImage,{height:\"100%\",id:\"BAx4LGjan\",layoutId:\"BAx4LGjan\",r0sZUCxq2:\"Turn decades of tribal knowledge and legacy data into usable insights \u2014 eliminating hidden parts, duplicated purchases, and redundant work. Leo connects with CAD models, descriptions, and historical context to surface what\u2019s already been designed, bought, or approved.\",R149b_pXs:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/wf6o5u8gFEdcMyKOi21q4IYlZIQ.jpg\",srcSet:\"https://framerusercontent.com/images/wf6o5u8gFEdcMyKOi21q4IYlZIQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wf6o5u8gFEdcMyKOi21q4IYlZIQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wf6o5u8gFEdcMyKOi21q4IYlZIQ.jpg 1920w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"b9okiK2rT\",W2fqzvWW8:addImageAlt({pixelHeight:972,pixelWidth:1728,src:\"https://framerusercontent.com/images/P3aqVVALswe6ON5VsEHvQTfS9M.gif\",srcSet:\"https://framerusercontent.com/images/P3aqVVALswe6ON5VsEHvQTfS9M.gif?scale-down-to=512 512w,https://framerusercontent.com/images/P3aqVVALswe6ON5VsEHvQTfS9M.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3aqVVALswe6ON5VsEHvQTfS9M.gif 1728w\"},\"\"),width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3fvf5r\",\"data-framer-name\":\"a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-29eq38\",\"data-framer-name\":\"Frame 5379\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oslumh\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-knjb9r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PWEcmIEet\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"LightBulb\",id:\"PWEcmIEet\",layoutId:\"PWEcmIEet\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Brainstorm Ideas\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Brainstorm Ideas\"})}),className:\"framer-e00f05\",\"data-framer-name\":\"Get AI-based answers in real time\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:[\"Collaborate and visualize new concepts instantly.\",/*#__PURE__*/_jsx(\"br\",{}),\"CCut down weeks of back-and-forth into minutes with on-demand ideas and visualizations \u2014 helping you explore more, faster.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:[\"Collaborate and visualize new concepts instantly.\",/*#__PURE__*/_jsx(\"br\",{}),\"Cut down weeks of back-and-forth into minutes with on-demand ideas and visualizations \u2014 helping you explore more, faster.\"]})}),className:\"framer-gr0nx2\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bn1qgw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ELITHvttU\",webPageId:\"nvUYtiItU\"},motionChild:true,nodeId:\"up20SutWD\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ELITHvttU\",webPageId:\"nvUYtiItU\"},motionChild:true,nodeId:\"up20SutWD\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":ELITHvttU\",webPageId:\"nvUYtiItU\"},motionChild:true,nodeId:\"up20SutWD\",openInNewTab:false,relValues:[],scopeId:\"JhbyeWsmh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Learn More\"})})})}),className:\"framer-1lr9580\",\"data-framer-name\":\"Ask Leo any technical question you have about material properties, coating, thermal treatments, formulas, and code, and get accurate answers supported with references from more than 1M reliable engineering books, standards, and data sheets. Leo will open the source in the relevant page for you, saving you scrolling time.\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qdecax-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KkGSlE948\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-9bbb4977-f94f-4cb4-96bf-8ea428f6acd4, rgb(102, 124, 231))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"KkGSlE948\",layoutId:\"KkGSlE948\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+812+50+3975+0+273.5},eJ67jPrGX:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+1036+40+3433+0+299}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:563,width:\"1000px\",y:(componentViewport?.y||0)+0+1532+40+3858+0+302,children:/*#__PURE__*/_jsx(Container,{className:\"framer-niqswt-container\",nodeId:\"OYXn0bUoP\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{variant:\"asH_HKzxU\"},eJ67jPrGX:{variant:\"qNQMytbUz\"}},children:/*#__PURE__*/_jsx(HoverImage,{height:\"100%\",id:\"OYXn0bUoP\",layoutId:\"OYXn0bUoP\",r0sZUCxq2:\"Collaborate and visualize new concepts instantly.\\n\\nCut down weeks of back-and-forth into minutes with on-demand ideas and visualizations \u2014 helping you explore more, faster.\",R149b_pXs:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/SFB5zYdlVVBj6H8UMRmkjdyZpY.jpg\",srcSet:\"https://framerusercontent.com/images/SFB5zYdlVVBj6H8UMRmkjdyZpY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SFB5zYdlVVBj6H8UMRmkjdyZpY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SFB5zYdlVVBj6H8UMRmkjdyZpY.jpg 1920w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"b9okiK2rT\",W2fqzvWW8:addImageAlt({pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/5tYWT3RLtTqq6ZMOdAW0t2wd4.gif\",srcSet:\"https://framerusercontent.com/images/5tYWT3RLtTqq6ZMOdAW0t2wd4.gif?scale-down-to=512 512w,https://framerusercontent.com/images/5tYWT3RLtTqq6ZMOdAW0t2wd4.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/5tYWT3RLtTqq6ZMOdAW0t2wd4.gif 1920w\"},\"\"),width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{y:(componentViewport?.y||0)+0+812+50+4891.5},eJ67jPrGX:{y:(componentViewport?.y||0)+0+1036+40+4395}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+1532+40+4803,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kfo0er-container\",nodeId:\"AeldhL0wB\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(Btn,{e0Cu0yFrS:\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(58, 95, 226))\",H8ANJHfJ2:false,height:\"100%\",id:\"AeldhL0wB\",layoutId:\"AeldhL0wB\",nq0AUeP5p:\"Get Started with Leo\",TZDNXoi5J:\"rgb(242, 238, 232)\",variant:\"F2M7QaoVQ\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gtefhh\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t7yf83\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c249bu\",\"data-framer-name\":\"Frame 5372\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f8lh2r\",\"data-styles-preset\":\"a7drgFLau\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"Leverage your tribal knowledge with the power of AI.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f8lh2r\",\"data-styles-preset\":\"a7drgFLau\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"Leverage your tribal knowledge with the power of AI.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f8lh2r\",\"data-styles-preset\":\"a7drgFLau\",style:{\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"Leverage your tribal knowledge with the power of AI.\"})}),className:\"framer-1344nh0\",\"data-framer-name\":\"10K+ Engineers adopted Leo\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Integrate your legacy data with Leo.\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Integrate your legacy data with Leo.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Integrate your legacy data with Leo.\"})}),className:\"framer-otysmt\",\"data-framer-name\":\"10K+ Engineers adopted Leo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qm3ogk\",\"data-framer-name\":\"Frame 5372\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ourxrp\",\"data-styles-preset\":\"r0xpSrC7j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"900K+ Sources \"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ourxrp\",\"data-styles-preset\":\"r0xpSrC7j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"900K+ Sources \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ourxrp\",\"data-styles-preset\":\"r0xpSrC7j\",style:{\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"900K+ Sources \"})}),className:\"framer-1mzbxb3\",\"data-framer-name\":\"10K+ Engineers adopted Leo\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Technical Expertise\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Technical Expertise\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Technical Expertise\"})}),className:\"framer-rhni95\",\"data-framer-name\":\"10K+ Engineers adopted Leo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ekzwde\",\"data-framer-name\":\"Frame 5372\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ourxrp\",\"data-styles-preset\":\"r0xpSrC7j\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"360K+\"})})},eJ67jPrGX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ourxrp\",\"data-styles-preset\":\"r0xpSrC7j\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"360K+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ourxrp\",\"data-styles-preset\":\"r0xpSrC7j\",style:{\"--framer-text-color\":\"var(--token-9b2315ad-437d-4a62-9266-4ab5906aeec6, rgb(59, 96, 226))\"},children:\"360K+\"})}),className:\"framer-1003zyq\",\"data-framer-name\":\"10K+ Engineers adopted Leo\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Concepts & engineering decisions made using Leo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yri3i7\",\"data-styles-preset\":\"VEld5BMka\",style:{\"--framer-text-color\":\"var(--token-7c3eb0da-817b-459b-88cb-3919417aabd0, rgb(248, 247, 243))\"},children:\"Concepts & engineering decisions made using Leo\"})}),className:\"framer-4uksta\",\"data-framer-name\":\"10K+ Engineers adopted Leo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{y:(componentViewport?.y||0)+0+7160.5},eJ67jPrGX:{y:(componentViewport?.y||0)+0+6588}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:523,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6868,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1scbco2-container\",nodeId:\"oCh7nqK0o\",scopeId:\"JhbyeWsmh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BRaKlDjdm:{variant:\"c9HRiJhVx\"},eJ67jPrGX:{variant:\"G6ACjC96k\"},LlMFdmgEb:{variant:\"N3ZmoOXvo\"}},children:/*#__PURE__*/_jsx(Footer2025,{height:\"100%\",id:\"oCh7nqK0o\",layoutId:\"oCh7nqK0o\",style:{width:\"100%\"},variant:\"mj65y6kHx\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EUfJW.framer-1ws34eq, .framer-EUfJW .framer-1ws34eq { display: block; }\",\".framer-EUfJW.framer-q10gqh { align-content: center; align-items: center; background-color: var(--token-f7fbf682-8e45-400a-abfc-7d3ceb203e09, #221c2b); 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-EUfJW .framer-ozjtl1-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-EUfJW .framer-1wgxegz { 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: visible; padding: 200px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-awxydk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EUfJW .framer-1oeh5pv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 899px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-9lwrg3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-kx6sbv-container, .framer-EUfJW .framer-kfo0er-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EUfJW .framer-f32ue6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-fz3kxp { 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: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-1w8gd9t { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1026px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-bf21ni-container { flex: none; height: 56px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-11qv90k { height: 32px; position: relative; width: 117px; }\",\".framer-EUfJW .framer-14zrals, .framer-EUfJW .framer-8t7yli, .framer-EUfJW .framer-mt4yno { height: 32px; position: relative; width: 32px; }\",\".framer-EUfJW .framer-1x4n81b { height: 24px; position: relative; width: 101px; }\",\".framer-EUfJW .framer-zerics { height: 24px; position: relative; width: 131px; }\",\".framer-EUfJW .framer-1a6zv7b { height: 32px; position: relative; width: 91px; }\",\".framer-EUfJW .framer-34h0kq { height: 24px; position: relative; width: 146px; }\",\".framer-EUfJW .framer-3uus3z { height: 32px; position: relative; width: 77px; }\",\".framer-EUfJW .framer-12zo6jd { height: 31px; position: relative; width: 160px; }\",\".framer-EUfJW .framer-ctl00f { height: 24px; position: relative; width: 140px; }\",\".framer-EUfJW .framer-bojf4x { height: 32px; position: relative; width: 81px; }\",\".framer-EUfJW .framer-ed5jbi { height: 24px; position: relative; width: 112px; }\",\".framer-EUfJW .framer-17ciy9j { 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 0px 0px 40px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-1s1yn4x-container { flex: none; height: 220px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-6jtkoa-container { height: 219px; position: relative; width: 310px; }\",\".framer-EUfJW .framer-1ftmaeg-container, .framer-EUfJW .framer-r7w9s-container, .framer-EUfJW .framer-18i8325-container, .framer-EUfJW .framer-t70pvo-container, .framer-EUfJW .framer-1kdr5wh-container, .framer-EUfJW .framer-1ixdtq2-container { height: auto; position: relative; width: 310px; }\",\".framer-EUfJW .framer-17yr1qa, .framer-EUfJW .framer-o7vady, .framer-EUfJW .framer-1q3qutb, .framer-EUfJW .framer-e69k88, .framer-EUfJW .framer-oz7wlf, .framer-EUfJW .framer-1nayv4g, .framer-EUfJW .framer-1q2ditz, .framer-EUfJW .framer-e00f05, .framer-EUfJW .framer-1lr9580 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EUfJW .framer-1f1cp3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-j9u911 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-1iuenl { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-11w831l { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 916px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-1madmif, .framer-EUfJW .framer-1ff9rld, .framer-EUfJW .framer-1cirjti, .framer-EUfJW .framer-3fvf5r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-1pu5ryq, .framer-EUfJW .framer-jsus6z, .framer-EUfJW .framer-15fp63k, .framer-EUfJW .framer-29eq38 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-1yymd6n, .framer-EUfJW .framer-1vnz8vu, .framer-EUfJW .framer-1uf28x7, .framer-EUfJW .framer-oslumh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EUfJW .framer-8e88vv-container, .framer-EUfJW .framer-t43m08-container, .framer-EUfJW .framer-v6kj32-container, .framer-EUfJW .framer-knjb9r-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-EUfJW .framer-1vie00q, .framer-EUfJW .framer-1p70m3w, .framer-EUfJW .framer-19acpbo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 640px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-1l7t1zy, .framer-EUfJW .framer-135sn8f, .framer-EUfJW .framer-kxh4xs, .framer-EUfJW .framer-bn1qgw { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-7qvtsk-container, .framer-EUfJW .framer-1gy50ww-container, .framer-EUfJW .framer-ux74d9-container, .framer-EUfJW .framer-1qdecax-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-EUfJW .framer-p6isw7-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); position: relative; width: 100%; }\",\".framer-EUfJW .framer-tpctr, .framer-EUfJW .framer-696ygz, .framer-EUfJW .framer-nj3v8v, .framer-EUfJW .framer-otysmt, .framer-EUfJW .framer-4uksta { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-1ufosgh-container, .framer-EUfJW .framer-swo0pz-container, .framer-EUfJW .framer-niqswt-container { flex: none; height: 563px; position: relative; width: 1000px; }\",\".framer-EUfJW .framer-gr0nx2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 680px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-1gtefhh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 50px 40px 50px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-t7yf83 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EUfJW .framer-c249bu, .framer-EUfJW .framer-qm3ogk, .framer-EUfJW .framer-1ekzwde { align-content: center; align-items: center; background-color: var(--token-bb12186c-6d43-4c08-a93b-89ce5e26cd54, #170e20); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 40px 60px 69px 0px rgba(19, 12, 26, 0.38); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 316px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EUfJW .framer-1344nh0, .framer-EUfJW .framer-1mzbxb3 { --framer-paragraph-spacing: 0px; flex: none; height: 120px; position: relative; white-space: pre-wrap; width: 298px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-rhni95 { --framer-paragraph-spacing: 0px; flex: none; height: 60px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-1003zyq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 298px; word-break: break-word; word-wrap: break-word; }\",\".framer-EUfJW .framer-1scbco2-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 600px) and (max-width: 1199px) { .framer-EUfJW.framer-q10gqh { width: 600px; } .framer-EUfJW .framer-1wgxegz { padding: 120px 0px 96px 0px; } .framer-EUfJW .framer-1oeh5pv { order: 0; width: 487px; } .framer-EUfJW .framer-1f1cp3v { gap: 100px; justify-content: center; padding: 40px 40px 100px 40px; } .framer-EUfJW .framer-j9u911 { align-content: flex-start; align-items: flex-start; gap: 20px; } .framer-EUfJW .framer-11w831l, .framer-EUfJW .framer-1vie00q, .framer-EUfJW .framer-1p70m3w, .framer-EUfJW .framer-19acpbo, .framer-EUfJW .framer-gr0nx2 { width: 100%; } .framer-EUfJW .framer-1pu5ryq, .framer-EUfJW .framer-15fp63k { order: 0; } .framer-EUfJW .framer-8e88vv-container, .framer-EUfJW .framer-t43m08-container, .framer-EUfJW .framer-v6kj32-container, .framer-EUfJW .framer-knjb9r-container { height: 32px; width: 32px; } .framer-EUfJW .framer-p6isw7-container { height: var(--framer-aspect-ratio-supported, 293px); order: 1; } .framer-EUfJW .framer-tpctr, .framer-EUfJW .framer-nj3v8v { order: 2; } .framer-EUfJW .framer-1ufosgh-container { aspect-ratio: 1.7761989342806395 / 1; height: var(--framer-aspect-ratio-supported, 292px); width: 100%; } .framer-EUfJW .framer-swo0pz-container { aspect-ratio: 1.7761989342806395 / 1; height: var(--framer-aspect-ratio-supported, 293px); order: 1; width: 100%; } .framer-EUfJW .framer-niqswt-container { aspect-ratio: 1.7761989342806395 / 1; height: var(--framer-aspect-ratio-supported, 293px); width: 100%; } .framer-EUfJW .framer-1gtefhh { padding: 40px; } .framer-EUfJW .framer-t7yf83 { flex-direction: column; gap: 20px; } .framer-EUfJW .framer-c249bu, .framer-EUfJW .framer-qm3ogk, .framer-EUfJW .framer-1ekzwde { flex: none; gap: 24px; height: 280px; justify-content: center; padding: 48px; width: 100%; } .framer-EUfJW .framer-1344nh0, .framer-EUfJW .framer-1mzbxb3 { height: auto; width: 100%; } .framer-EUfJW .framer-1003zyq { white-space: pre; width: auto; }}\",\"@media (max-width: 599px) { .framer-EUfJW.framer-q10gqh { overflow: hidden; width: 390px; } .framer-EUfJW .framer-ozjtl1-container, .framer-EUfJW .framer-15fp63k { order: 0; } .framer-EUfJW .framer-1wgxegz { gap: 56px; order: 1; padding: 64px 0px 80px 0px; } .framer-EUfJW .framer-awxydk { gap: 16px; order: 0; width: 357px; } .framer-EUfJW .framer-1oeh5pv { width: 350px; } .framer-EUfJW .framer-kx6sbv-container, .framer-EUfJW .framer-bf21ni-container { order: 1; } .framer-EUfJW .framer-f32ue6, .framer-EUfJW .framer-nj3v8v { order: 2; } .framer-EUfJW .framer-fz3kxp { padding: 0px; } .framer-EUfJW .framer-1w8gd9t { order: 0; white-space: pre; width: auto; } .framer-EUfJW .framer-1f1cp3v { justify-content: center; order: 2; padding: 50px 40px 100px 40px; } .framer-EUfJW .framer-j9u911 { align-content: flex-start; align-items: flex-start; } .framer-EUfJW .framer-11w831l, .framer-EUfJW .framer-1vie00q, .framer-EUfJW .framer-1p70m3w, .framer-EUfJW .framer-19acpbo, .framer-EUfJW .framer-gr0nx2 { width: 100%; } .framer-EUfJW .framer-1yymd6n, .framer-EUfJW .framer-1vnz8vu, .framer-EUfJW .framer-1uf28x7, .framer-EUfJW .framer-oslumh { gap: 8px; } .framer-EUfJW .framer-8e88vv-container, .framer-EUfJW .framer-t43m08-container, .framer-EUfJW .framer-v6kj32-container, .framer-EUfJW .framer-knjb9r-container { height: 24px; width: 24px; } .framer-EUfJW .framer-p6isw7-container { height: var(--framer-aspect-ratio-supported, 175px); } .framer-EUfJW .framer-1ufosgh-container, .framer-EUfJW .framer-niqswt-container { aspect-ratio: 1.7761989342806395 / 1; height: var(--framer-aspect-ratio-supported, 174px); width: 100%; } .framer-EUfJW .framer-swo0pz-container { aspect-ratio: 1.7761989342806395 / 1; height: var(--framer-aspect-ratio-supported, 174px); order: 1; width: 100%; } .framer-EUfJW .framer-1gtefhh { order: 3; padding: 60px 30px 60px 30px; } .framer-EUfJW .framer-t7yf83 { flex-direction: column; gap: 31px; } .framer-EUfJW .framer-c249bu, .framer-EUfJW .framer-qm3ogk, .framer-EUfJW .framer-1ekzwde { flex: none; gap: 50px; height: min-content; justify-content: center; width: 100%; } .framer-EUfJW .framer-otysmt { width: 186px; } .framer-EUfJW .framer-rhni95, .framer-EUfJW .framer-4uksta { width: 225px; } .framer-EUfJW .framer-1scbco2-container { order: 4; }}\",\"@media (min-width: 1440px) { .framer-EUfJW.framer-q10gqh { width: 1440px; } .framer-EUfJW .framer-1f1cp3v { padding: 40px 200px 40px 200px; } .framer-EUfJW .framer-1gtefhh { padding: 40px 80px 40px 80px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5867\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eJ67jPrGX\":{\"layout\":[\"fixed\",\"auto\"]},\"BRaKlDjdm\":{\"layout\":[\"fixed\",\"auto\"]},\"LlMFdmgEb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"KF9W4t4K7\":{\"pattern\":\":KF9W4t4K7\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerJhbyeWsmh=withCSS(Component,css,\"framer-EUfJW\");export default FramerJhbyeWsmh;FramerJhbyeWsmh.displayName=\"Page\";FramerJhbyeWsmh.defaultProps={height:5867,width:1200};addFonts(FramerJhbyeWsmh,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/V6nhwkmEcIhl99DDGgN3ORL7l18.otf\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]},...NavFonts,...BtnFonts,...TickerFonts,...CardTestimonyFonts,...HeroFonts,...MaterialFonts,...HoverImageFonts,...Footer2025Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJhbyeWsmh\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"KF9W4t4K7\\\":{\\\"pattern\\\":\\\":KF9W4t4K7\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"5867\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eJ67jPrGX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BRaKlDjdm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LlMFdmgEb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MaterialFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "company", "height", "id", "image", "name1", "position", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "Qy1wBTYwJ", "JPwIrZiYC", "P0JT7qzaa", "GKKDAluWm", "fjnuaWZtT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "css", "FramerhF6_NNiKO", "withCSS", "hF6_NNiKO_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "shot", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "R149b_pXs", "r0sZUCxq2", "W2fqzvWW8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerU9Fd2JP5p", "withCSS", "U9Fd2JP5p_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavFonts", "getFonts", "gWw56_gTO_default", "NavWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "BtnFonts", "jCpH_4vlx_default", "TickerFonts", "Ticker", "CardTestimonyFonts", "hF6_NNiKO_default", "HeroFonts", "Icon", "MaterialFonts", "HoverImageFonts", "U9Fd2JP5p_default", "Footer2025Fonts", "wuGzBlrr6_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "RichText", "SVG", "Link", "css", "FramerJhbyeWsmh", "withCSS", "JhbyeWsmh_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
