{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/lRLPib7wmvFn4Erx8ZEm/IQqJ09fLpYRoofd3cVPH/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (c76752e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import Button from\"https://framerusercontent.com/modules/YlKU53CdDss9o1Y3l19z/0whb5n5y2kIiM1vdG8DN/NLuCNm8M5.js\";import Footer from\"#framer/local/canvasComponent/sCvnwBifQ/sCvnwBifQ.js\";import Navbar from\"#framer/local/canvasComponent/zcYDwn9ex/zcYDwn9ex.js\";import*as sharedStyle3 from\"#framer/local/css/DppQPO9Pi/DppQPO9Pi.js\";import*as sharedStyle4 from\"#framer/local/css/RAdIA8PP8/RAdIA8PP8.js\";import*as sharedStyle from\"#framer/local/css/UI0J1O4Qq/UI0J1O4Qq.js\";import*as sharedStyle2 from\"#framer/local/css/uXEMACo6I/uXEMACo6I.js\";import*as sharedStyle1 from\"#framer/local/css/x76qG8uxu/x76qG8uxu.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonFonts=getFonts(Button);const FooterFonts=getFonts(Footer);const ContainerWithFX=withFX(Container);const breakpoints={jFwI82QFb:\"(max-width: 809px)\",kK3BPw99M:\"(min-width: 1920px)\",NDqyS5Bi1:\"(min-width: 810px) and (max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1280px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bkZg9\";const variantClassNames={jFwI82QFb:\"framer-v-ne6mos\",kK3BPw99M:\"framer-v-n91xig\",NDqyS5Bi1:\"framer-v-x4b41r\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={delay:.1,duration:2.1,ease:[.98,.27,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={delay:0,duration:6,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition4={delay:.7,duration:.7,ease:[1,.17,.48,.93],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-30};const transition5={delay:.7,duration:.7,ease:[.9,.1,.56,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:-30};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={delay:1,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition8={damping:60,delay:.65,mass:.8,stiffness:500,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:50};const transition9={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition10={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Full Resolution\":\"kK3BPw99M\",Desktop:\"WQLkyLRf1\",Phone:\"jFwI82QFb\",Tablet:\"NDqyS5Bi1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"FZ6Jzi5SK\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"SD5wpzlcI\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"NDqyS5Bi1\",\"jFwI82QFb\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"kbJf4mFck\");const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-fdda1afd-f6f4-4243-912c-50a95b7a4366, rgb(250, 250, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6p7rq\",\"data-framer-name\":\"navbar\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1280px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vyp8ge-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{qZwa8JthJ:resolvedLinks[2],style:{width:\"100%\"}},kK3BPw99M:{qZwa8JthJ:resolvedLinks[3]},NDqyS5Bi1:{qZwa8JthJ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"qhuOqMxNN\",layoutId:\"qhuOqMxNN\",qZwa8JthJ:resolvedLinks[0],style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uex0ha\",\"data-framer-name\":\"hero-section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-174xhyf\",\"data-framer-name\":\"mesh+lines\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9u8728\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jpwnvh\",\"data-framer-name\":\"Blur, Rotate\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:.8,className:\"framer-1ibt9zd\",\"data-framer-name\":\"Conic\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qr3rfw\",\"data-framer-name\":\"Blur, Rotate\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hr18x0\",\"data-framer-name\":\"Conic\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-om1ftv\",\"data-framer-name\":\"Blur, Rotate, Blend\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l6bpng\",\"data-framer-name\":\"Conic\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ji8bi6\",\"data-framer-name\":\"Content\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hcq9cc\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qwe4fh\",\"data-framer-name\":\"rec+head\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4rqc2l\",\"data-framer-name\":\"Headlines\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-pg3tfb\",\"data-styles-preset\":\"UI0J1O4Qq\",style:{\"--framer-text-color\":\"var(--token-32abb542-758d-4148-ab17-beace5424478, rgb(38, 38, 42))\"},children:\"Financial Data, Simplified\"})}),className:\"framer-1hr8ria\",\"data-framer-name\":\"Heading1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tbmrmw\",\"data-framer-name\":\"Text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wculq\",\"data-styles-preset\":\"x76qG8uxu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-86f8913c-1cff-48dc-8550-1278c6481212, rgb(48, 48, 54))\"},children:\"From pricing feeds to alternative data, let AI agents transform your datasets into actionable insights\"})}),className:\"framer-1dre7py\",\"data-framer-name\":\"Body1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7lqujv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qrreto-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FWy5X4L7t\",isMixedBorderRadius:false,layoutId:\"FWy5X4L7t\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/SW9dKfwrhVfOMJN5fsASsGtOx8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:1,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jd1ioa\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-k14g62\",\"data-framer-appear-id\":\"k14g62\",\"data-framer-name\":\"Features\",initial:animation11,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-66kxi1\",\"data-styles-preset\":\"uXEMACo6I\",style:{\"--framer-text-alignment\":\"center\"},children:\"How it works\"})}),className:\"framer-1bbxigo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1giuk49\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+802+59.999999999999886+0+114+0+0),pixelHeight:600,pixelWidth:1106,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=512 512w,https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png 1106w\"}},NDqyS5Bi1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:600,pixelWidth:1106,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=512 512w,https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png 1106w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:600,pixelWidth:1106,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=512 512w,https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/thwLtuc1NZJNwpMwqLgOqb1TL8.png 1106w\"},className:\"framer-17cn2c5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h49htn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Build charts with public data\"})})}),className:\"framer-alp41m\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[\"Start with our chart visualization tool that transforms public datasets into insights including market correlations, asset screening, risk exposure and more. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Users can download the charts or resultant data to use for their own needs: powerpoint presentations, infographics, social media posts, etc\"]})}),className:\"framer-xv4isg\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aemasa\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a47d3o\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3e29w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Build agents for your data\"})}),className:\"framer-n7hj94\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Want more data or connect your reference data, market data, etc? Institutions can use our Python SDK or agent builder to connect their own data pipelines to their agents\"})}),className:\"framer-1rcwo2o\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+802+59.999999999999886+0+739.8+0+0),pixelHeight:800,pixelWidth:2144,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oDw0cfTtlx83kAYHPtA4hJRbqs.png?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:800,pixelWidth:2144,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oDw0cfTtlx83kAYHPtA4hJRbqs.png?scale-down-to=2048\"},className:\"framer-62iajw\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sghy2s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+802+59.999999999999886+0+1379.6+0+0),pixelHeight:600,pixelWidth:965,positionX:\"right\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png\",srcSet:\"https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png 965w\"}},NDqyS5Bi1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:600,pixelWidth:965,positionX:\"right\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png\",srcSet:\"https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png 965w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:600,pixelWidth:965,positionX:\"right\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png\",srcSet:\"https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MPyeiBtHjgu4VRYZsQo9XKSNf8.png 965w\"},className:\"framer-gzgm0u\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8q5hd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Financial Data Transformation as a Service\"})})}),className:\"framer-1iu0gci\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1et94tu\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Whether you'd like to build your factor risk models, portfolio optimization tool or asset screener, with Avanzai you can use your own data and transform your data in minutes not weeks.\"})}),className:\"framer-67upv7\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1erf8t1\",\"data-framer-name\":\"Industry\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32abb542-758d-4148-ab17-beace5424478, rgb(38, 38, 42))\"},children:\"Use cases\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32abb542-758d-4148-ab17-beace5424478, rgb(38, 38, 42))\"},children:\"Use cases\"})}),className:\"framer-1hk22a\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ke2qa4\",\"data-framer-name\":\"cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ix7o2v\",\"data-border\":true,\"data-framer-name\":\"card1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uoxsaz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ye1ltq\",\"data-framer-name\":\"Frame\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 338 162\"><g transform=\"translate(-19.831 0)\" id=\"ss9657345974_1\"><path d=\"M 20.744 162.913 L 20.744 0.913 L 357.585 0.913 L 357.585 162.913 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss9657345974_3\"><path d=\"M 2.963 141.256 L 174.841 141.256\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 204.475 111.622 L 334.866 111.622\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 2.963 80.012 L 225.713 80.012\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 0 111.622 L 222.75 111.622\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 222.75 80.012 L 374.378 80.012\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 316.097 7.902 L 316.097 152.122\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 284.487 35.56 L 284.487 153.603\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 242.012 7.408 L 242.012 111.622\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 4.939 44.451 L 343.756 44.451\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 131.378 13.829 L 131.378 110.634\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 173.853 44.451 L 173.853 141.256\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 43.463 0 L 43.463 153.11\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 86.927 45.438 L 86.927 149.158\" fill=\"transparent\" stroke-width=\"1.97561\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 86.927 83.47 C 88.836 83.47 90.384 81.922 90.384 80.012 C 90.384 78.103 88.836 76.555 86.927 76.555 C 85.017 76.555 83.469 78.103 83.469 80.012 C 83.469 81.922 85.017 83.47 86.927 83.47 Z\" fill=\"rgb(64,124,255)\" opacity=\"0.7\"></path><path d=\"M 43.483 47.908 C 45.392 47.908 46.94 46.361 46.94 44.451 C 46.94 42.542 45.392 40.994 43.483 40.994 C 41.573 40.994 40.025 42.542 40.025 44.451 C 40.025 46.361 41.573 47.908 43.483 47.908 Z\" fill=\"rgb(64,124,255)\" opacity=\"0.7\"></path><path d=\"M 42.969 144.22 C 44.879 144.22 46.427 142.672 46.427 140.762 C 46.427 138.853 44.879 137.305 42.969 137.305 C 41.06 137.305 39.512 138.853 39.512 140.762 C 39.512 142.672 41.06 144.22 42.969 144.22 Z\" fill=\"rgb(64,124,255)\" opacity=\"0.7\"></path><path d=\"M 316.097 47.908 C 318.007 47.908 319.555 46.361 319.555 44.451 C 319.555 42.542 318.007 40.994 316.097 40.994 C 314.188 40.994 312.64 42.542 312.64 44.451 C 312.64 46.361 314.188 47.908 316.097 47.908 Z\" fill=\"rgb(64,124,255)\" opacity=\"0.7\"></path><path d=\"M 284.488 83.47 C 286.397 83.47 287.945 81.922 287.945 80.012 C 287.945 78.103 286.397 76.555 284.488 76.555 C 282.578 76.555 281.03 78.103 281.03 80.012 C 281.03 81.922 282.578 83.47 284.488 83.47 Z\" fill=\"rgb(64,124,255)\" opacity=\"0.7\"></path></g></g></svg>',svgContentId:9657345974,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ls4h2y\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xgim50\",\"data-framer-name\":\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-64d4hw\",\"data-styles-preset\":\"DppQPO9Pi\",style:{\"--framer-text-color\":\"var(--token-06b8906a-7808-4dfa-ac27-a436985f8eb1, rgb(12, 12, 13))\"},children:\"Macro Analysis\"})}),className:\"framer-115haf7\",\"data-framer-name\":\"Heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wtso0h\",\"data-framer-name\":\"Text\",id:\"1wtso0h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlibxu\",\"data-styles-preset\":\"RAdIA8PP8\",style:{\"--framer-text-color\":\"var(--token-7971df22-6c6f-4d4d-8825-e41e051e90ef, rgb(130, 130, 137))\"},children:\"Chart relationships and shifting dynamics between thousands of assets spanning the Russell 1000, major indices, ETFs, commodities, currencies, and crypto to identify regime shifts\"})}),className:\"framer-rmwglo\",\"data-framer-name\":\"Body3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1msb2rn\",\"data-border\":true,\"data-framer-name\":\"card2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvzqpq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dwf34a\",\"data-framer-name\":\"Frame\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 338 162\"><g transform=\"translate(14.853 11.948)\" id=\"ss10442127138_1\"><path d=\"M 287.661 0.892 L 13.051 0.892 C 9.778 0.892 7.124 3.545 7.124 6.818 L 7.124 135.233 C 7.124 138.507 9.778 141.16 13.051 141.16 L 287.661 141.16 C 290.935 141.16 293.588 138.507 293.588 135.233 L 293.588 6.818 C 293.588 3.545 290.935 0.892 287.661 0.892 Z\" fill=\"transparent\" stroke-width=\"0.987805\" stroke=\"rgb(228,228,231)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 274.872 24.599 L 235.516 24.599 C 233.879 24.599 232.553 25.925 232.553 27.562 L 232.553 65.099 C 232.553 66.735 233.879 68.062 235.516 68.062 L 274.872 68.062 C 276.509 68.062 277.835 66.735 277.835 65.099 L 277.835 27.562 C 277.835 25.925 276.509 24.599 274.872 24.599 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 274.872 80.903 L 235.516 80.903 C 233.879 80.903 232.553 82.23 232.553 83.867 L 232.553 121.404 C 232.553 123.04 233.879 124.367 235.516 124.367 L 274.872 124.367 C 276.509 124.367 277.835 123.04 277.835 121.404 L 277.835 83.867 C 277.835 82.23 276.509 80.903 274.872 80.903 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 209.625 49.294 L 21.941 49.294 C 20.305 49.294 18.978 50.621 18.978 52.257 C 18.978 53.894 20.305 55.221 21.941 55.221 L 209.625 55.221 C 211.261 55.221 212.588 53.894 212.588 52.257 C 212.588 50.621 211.261 49.294 209.625 49.294 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 60.466 39.416 L 21.941 39.416 C 20.305 39.416 18.978 40.743 18.978 42.379 C 18.978 44.016 20.305 45.343 21.941 45.343 L 60.466 45.343 C 62.102 45.343 63.429 44.016 63.429 42.379 C 63.429 40.743 62.102 39.416 60.466 39.416 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 198.759 107.574 L 21.941 107.574 C 20.305 107.574 18.978 108.901 18.978 110.538 C 18.978 112.175 20.305 113.501 21.941 113.501 L 198.759 113.501 C 200.396 113.501 201.722 112.175 201.722 110.538 C 201.722 108.901 200.396 107.574 198.759 107.574 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 118.747 119.428 L 21.941 119.428 C 20.305 119.428 18.978 120.755 18.978 122.391 C 18.978 124.028 20.305 125.355 21.941 125.355 L 118.747 125.355 C 120.383 125.355 121.71 124.028 121.71 122.391 C 121.71 120.755 120.383 119.428 118.747 119.428 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 60.466 96.709 L 21.941 96.709 C 20.305 96.709 18.978 98.036 18.978 99.673 C 18.978 101.309 20.305 102.636 21.941 102.636 L 60.466 102.636 C 62.102 102.636 63.429 101.309 63.429 99.673 C 63.429 98.036 62.102 96.709 60.466 96.709 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 95.039 63.123 L 21.941 63.123 C 20.305 63.123 18.978 64.45 18.978 66.086 C 18.978 67.723 20.305 69.05 21.941 69.05 L 95.039 69.05 C 96.676 69.05 98.003 67.723 98.003 66.086 C 98.003 64.45 96.676 63.123 95.039 63.123 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 185.917 73.989 L 21.941 73.989 C 20.305 73.989 18.978 75.316 18.978 76.953 C 18.978 78.589 20.305 79.916 21.941 79.916 L 185.917 79.916 C 187.554 79.916 188.881 78.589 188.881 76.953 C 188.881 75.316 187.554 73.989 185.917 73.989 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 111.832 83.867 L 21.941 83.867 C 20.305 83.867 18.978 85.194 18.978 86.831 C 18.978 88.467 20.305 89.794 21.941 89.794 L 111.832 89.794 C 113.469 89.794 114.795 88.467 114.795 86.831 C 114.795 85.194 113.469 83.867 111.832 83.867 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 197.771 24.599 L 22.929 24.599 C 20.747 24.599 18.978 26.368 18.978 28.55 C 18.978 30.732 20.747 32.501 22.929 32.501 L 197.771 32.501 C 199.953 32.501 201.722 30.732 201.722 28.55 C 201.722 26.368 199.953 24.599 197.771 24.599 Z\" fill=\"rgb(228,228,231)\"></path><path d=\"M 23.913 13.731 C 23.913 12.641 23.029 11.758 21.939 11.758 C 20.849 11.758 19.966 12.641 19.966 13.731 L 19.966 13.736 C 19.966 14.825 20.849 15.709 21.939 15.709 C 23.029 15.709 23.913 14.825 23.913 13.736 Z\" fill=\"rgb(63,63,70)\" opacity=\"0.55\"></path><path d=\"M 31.815 13.731 C 31.815 12.641 30.931 11.758 29.842 11.758 C 28.752 11.758 27.868 12.641 27.868 13.731 L 27.868 13.736 C 27.868 14.825 28.752 15.709 29.842 15.709 C 30.931 15.709 31.815 14.825 31.815 13.736 Z\" fill=\"rgb(63,63,70)\" opacity=\"0.55\"></path><path d=\"M 39.717 13.731 C 39.717 12.641 38.834 11.758 37.744 11.758 C 36.654 11.758 35.771 12.641 35.771 13.731 L 35.771 13.736 C 35.771 14.825 36.654 15.709 37.744 15.709 C 38.834 15.709 39.717 14.825 39.717 13.736 Z\" fill=\"rgb(63,63,70)\" opacity=\"0.55\"></path><path d=\"M 0.49 126.01 L 3.793 123.884 L 3.806 123.875 C 4.093 123.695 4.455 123.687 4.751 123.851 L 8.259 125.762 C 8.553 125.926 8.737 126.235 8.74 126.572 L 8.74 126.588 L 8.714 130.432 C 8.717 130.78 8.542 131.105 8.25 131.294 L 4.881 133.473 L 4.867 133.482 C 4.578 133.668 4.211 133.68 3.91 133.514 L 0.481 131.614 C 0.179 131.446 -0.006 131.124 0 130.778 L 0 130.761 L 0.014 126.852 C 0.02 126.51 0.199 126.192 0.49 126.01 Z\" fill=\"rgb(0,220,130)\"></path><path d=\"M 285.122 4.606 L 292.403 0.287 C 293.058 -0.09 293.863 -0.096 294.525 0.271 L 294.562 0.292 L 302.628 4.693 L 302.665 4.714 C 303.323 5.079 303.744 5.76 303.778 6.512 L 304.026 14.797 C 304.061 15.544 303.688 16.236 303.048 16.617 L 295.621 21.045 C 294.962 21.438 294.144 21.45 293.474 21.078 L 293.434 21.056 L 285.548 16.685 L 285.508 16.663 C 284.833 16.289 284.408 15.582 284.396 14.81 L 284.114 6.385 C 284.101 5.648 284.484 4.974 285.122 4.606 Z\" fill=\"rgb(0,220,130)\"></path></g></svg>',svgContentId:10442127138,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2lxhv7\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 1\"></svg>',svgContentId:10410244904,withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n97ogg\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8tp6tw\",\"data-framer-name\":\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-64d4hw\",\"data-styles-preset\":\"DppQPO9Pi\",style:{\"--framer-text-color\":\"var(--token-06b8906a-7808-4dfa-ac27-a436985f8eb1, rgb(12, 12, 13))\"},children:[\"Instrument Screening \",/*#__PURE__*/_jsx(\"br\",{}),\"and Ranking\"]})}),className:\"framer-1opwk7p\",\"data-framer-name\":\"Heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1akl37k\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlibxu\",\"data-styles-preset\":\"RAdIA8PP8\",style:{\"--framer-text-color\":\"var(--token-7971df22-6c6f-4d4d-8825-e41e051e90ef, rgb(130, 130, 137))\"},children:\"Filter and rank assets using customizable technical and fundamental criteria  to surface the most promising opportunities. \"})}),className:\"framer-1ukmv9u\",\"data-framer-name\":\"Body3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yn5wpe\",\"data-border\":true,\"data-framer-name\":\"card3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yjpumv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-21eoix\",\"data-framer-name\":\"Frame\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 338 162\"><g transform=\"translate(16.878 7.408)\" id=\"ss8748838416_1\"><g transform=\"translate(253.866 88.903)\" id=\"ss8748838416_2\"><path d=\"M 43.463 21.731 C 43.463 9.729 33.734 0 21.732 0 C 9.73 0 0 9.729 0 21.731 C 0 33.733 9.73 43.463 21.732 43.463 C 33.734 43.463 43.463 33.733 43.463 21.731 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.987805\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 23.592 36.054 L 22.706 34.696 C 23.19 34.029 23.41 33.192 23.323 32.357 C 23.236 31.522 22.847 30.756 22.238 30.215 C 21.214 29.312 20.512 28.068 20.249 26.688 C 17.64 30.621 18.994 32.79 20.249 34.714 L 19.329 36.054 C 17.583 35.707 16.015 34.705 14.915 33.233 C 13.815 31.761 13.257 29.918 13.344 28.046 C 13.344 28.046 12.994 24.236 17.156 20.514 C 17.156 20.514 21.87 15.91 20.232 12.506 L 21.418 11.359 C 23.229 12.699 24.615 14.584 25.393 16.768 C 26.172 18.952 26.307 21.334 25.782 23.601 C 26.179 23.193 26.497 22.708 26.718 22.172 L 28.173 22.048 C 28.29 22.26 31.249 27.217 29.661 31.398 C 29.095 32.644 28.244 33.723 27.184 34.536 C 26.125 35.349 24.891 35.87 23.592 36.054 Z M 20.249 23.795 L 21.703 24.483 C 21.626 25.287 21.724 26.1 21.99 26.859 C 22.257 27.617 22.685 28.301 23.241 28.857 C 23.957 29.408 24.5 30.174 24.799 31.055 C 25.097 31.936 25.137 32.891 24.912 33.796 C 25.604 33.541 26.238 33.14 26.778 32.619 C 27.319 32.097 27.753 31.466 28.056 30.763 C 28.624 28.615 28.378 26.319 27.37 24.36 C 27.054 24.901 26.594 25.334 26.047 25.603 C 25.501 25.873 24.892 25.968 24.294 25.876 L 23.709 24.677 C 24.441 23.006 24.691 21.144 24.426 19.325 C 24.162 17.505 23.395 15.808 22.222 14.446 C 21.987 18.186 18.359 21.643 18.243 21.837 C 14.781 24.941 15.016 27.817 15.016 27.94 C 14.95 29.03 15.163 30.117 15.63 31.091 C 16.097 32.065 16.803 32.889 17.674 33.479 C 16.688 31.009 16.688 28.046 20.298 23.795 Z\" fill=\"rgb(24,24,27)\"></path></g><g><defs><linearGradient id=\"idss8748838416_5g861289524\" x1=\"1\" x2=\"0\" y1=\"0.3120410343840635\" y2=\"0.6879589656159365\"><stop offset=\"0\" stop-color=\"rgb(244,244,245)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(244,244,245,0.34)\" stop-opacity=\"0.34\"></stop></linearGradient></defs><path d=\"M 148.622 87.592 C 148.622 90.834 145.533 93.592 142.122 93.592 L 114.91 93.588 L 114.91 93.565 L 96.978 93.565 C 96.721 93.565 96.465 93.573 96.211 93.588 L 95.841 93.588 L 95.841 93.615 C 89.552 94.16 84.626 99.186 84.626 105.306 L 84.625 111.53 L 84.636 111.53 C 84.478 114.638 81.776 117.112 78.467 117.112 L 29.14 117.112 L 29.14 122.982 L 78.467 122.982 C 85.289 122.982 90.819 117.726 90.819 111.242 L 90.82 105.019 L 90.809 105.019 C 90.958 102.081 93.378 99.71 96.436 99.459 L 142.122 99.592 C 148.944 99.592 154.622 94.075 154.622 87.592 L 154.622 81.592 L 148.622 81.592 Z\" fill=\"url(#idss8748838416_5g861289524)\"></path></g><g><defs><linearGradient id=\"idss8748838416_6g861289603\" x1=\"5.551115123125783e-17\" x2=\"1\" y1=\"0.5972026781743196\" y2=\"0.4027973218256804\"><stop offset=\"0\" stop-color=\"rgb(244,244,245)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(244,244,245,0.34)\" stop-opacity=\"0.34\"></stop></linearGradient></defs><path d=\"M 186.702 32.84 C 186.544 29.719 183.834 27.236 180.514 27.236 L 161.543 27.236 L 161.543 27.131 L 161.056 27.131 C 157.635 27.131 154.861 29.769 154.861 33.024 L 154.622 85.592 L 148.622 85.592 L 148.666 33.024 C 148.666 26.515 154.213 21.238 161.056 21.238 L 176.092 21.238 L 176.092 21.343 L 180.514 21.343 C 187.357 21.343 192.904 26.619 192.904 33.129 L 192.905 39.376 L 192.895 39.376 C 193.053 42.496 195.763 44.98 199.082 44.98 L 216.067 44.98 L 216.067 44.958 L 231.103 44.958 C 234.524 44.958 237.297 42.32 237.297 39.065 L 237.297 32.818 L 243.494 32.818 L 243.493 39.065 C 243.493 45.574 237.945 50.851 231.103 50.851 L 217.07 50.851 L 217.07 50.872 L 199.082 50.872 C 192.24 50.872 186.692 45.596 186.692 39.087 L 186.691 32.84 Z\" fill=\"url(#idss8748838416_6g861289603)\"></path></g><g><defs><linearGradient id=\"idss8748838416_7g-861289610\" x1=\"1\" x2=\"0\" y1=\"0.6820773582994835\" y2=\"0.3179226417005166\"><stop offset=\"0\" stop-color=\"rgb(244,244,245)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(244,244,245,0.34)\" stop-opacity=\"0.34\"></stop></linearGradient></defs><path d=\"M 62.976 52.156 C 62.976 55.398 65.741 58.026 69.152 58.026 L 94.504 58.026 L 94.504 58.004 L 112.437 58.004 C 112.694 58.004 112.95 58.012 113.203 58.026 L 113.574 58.026 L 113.574 58.053 C 119.862 58.598 124.788 63.625 124.788 69.744 L 124.789 75.968 L 124.779 75.968 C 124.937 79.076 127.638 81.55 130.947 81.55 L 154.622 81.592 L 154.622 87.592 L 130.947 87.42 C 124.126 87.42 118.596 82.164 118.596 75.68 L 118.595 69.457 L 118.606 69.457 C 118.457 66.52 116.037 64.149 112.978 63.896 L 69.152 63.896 C 62.33 63.896 56.8 58.64 56.8 52.156 L 56.799 45.933 L 62.976 45.933 Z\" fill=\"url(#idss8748838416_7g-861289610)\"></path></g><g><defs><linearGradient id=\"idss8748838416_8g861289650\" x1=\"0\" x2=\"1\" y1=\"0.11507870480606325\" y2=\"0.8849212951939367\"><stop offset=\"0\" stop-color=\"rgb(244,244,245)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(244,244,245,0.34)\" stop-opacity=\"0.34\"></stop></linearGradient></defs><path d=\"M 271.895 82.249 C 271.895 79.04 269.133 76.438 265.726 76.438 L 152.622 75.592 L 152.622 69.592 L 265.726 70.628 C 272.54 70.628 278.066 75.831 278.066 82.249 L 278.067 88.408 L 271.895 88.409 Z\" fill=\"url(#idss8748838416_8g861289650)\"></path></g><g transform=\"translate(38.524 3.951)\" id=\"ss8748838416_9\"><path d=\"M 44.451 22.226 C 44.451 9.951 34.5 0 22.226 0 C 9.951 0 0 9.951 0 22.226 C 0 34.501 9.951 44.451 22.226 44.451 C 34.5 44.451 44.451 34.501 44.451 22.226 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.987805\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 14.323 32.762 L 19.802 16.838 L 18.722 14.323 L 16.957 14.323 L 16.957 11.689 L 19.591 11.689 C 20.145 11.689 20.619 12.031 20.816 12.518 L 28.363 30.128 L 30.128 30.128 L 30.128 32.762 L 27.494 32.762 C 26.927 32.762 26.453 32.406 26.269 31.919 L 21.343 20.447 L 17.115 32.762 Z\" fill=\"rgb(24,24,27)\"></path></g><g transform=\"translate(220.281 0)\" id=\"ss8748838416_12\"><path d=\"M 39.512 19.756 C 39.512 8.845 30.667 0 19.756 0 C 8.845 0 0 8.845 0 19.756 C 0 30.667 8.845 39.512 19.756 39.512 C 30.667 39.512 39.512 30.667 39.512 19.756 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.987805\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g><path d=\"M 248.981 19.395 C 249.172 19.506 249.398 19.537 249.61 19.481 C 249.824 19.426 250.006 19.289 250.117 19.1 C 250.229 18.912 250.259 18.687 250.203 18.476 C 250.148 18.265 250.01 18.084 249.82 17.974 L 249.815 17.973 L 247.97 16.916 L 249.924 15.791 C 250.321 15.561 249.486 14.138 249.09 14.368 L 247.136 15.493 L 247.136 13.378 C 247.136 12.917 245.469 12.917 245.469 13.378 L 245.469 16.427 L 242.817 17.945 L 241.259 17.077 L 241.259 14.028 L 243.937 12.497 C 244.335 12.267 243.5 10.844 243.104 11.074 L 241.259 12.131 L 241.259 9.895 C 241.259 9.434 239.591 9.434 239.591 9.895 L 239.591 12.131 L 237.746 11.074 C 237.349 10.844 236.517 12.28 236.912 12.497 L 239.591 14.028 L 239.591 17.077 L 238.032 17.945 L 235.394 16.427 L 235.394 13.35 C 235.394 12.889 233.727 12.889 233.727 13.35 L 233.727 15.465 L 231.772 14.34 C 231.376 14.11 230.543 15.546 230.938 15.763 L 232.893 16.888 L 231.047 17.945 C 230.651 18.175 231.485 19.598 231.88 19.368 L 234.56 17.837 L 237.212 19.354 L 237.212 21.13 L 234.56 22.66 L 231.88 21.13 C 231.484 20.9 230.652 22.336 231.047 22.553 L 232.893 23.609 L 230.938 24.734 C 230.542 24.964 231.377 26.387 231.772 26.157 L 233.727 25.032 L 233.727 27.147 C 233.727 27.608 235.394 27.608 235.394 27.147 L 235.394 24.07 L 238.045 22.553 L 239.604 23.42 L 239.604 26.469 L 236.924 28 C 236.528 28.23 237.363 29.653 237.758 29.423 L 239.604 28.367 L 239.604 30.606 C 239.604 31.066 241.271 31.066 241.271 30.606 L 241.271 28.369 L 243.117 29.426 C 243.513 29.656 244.345 28.22 243.95 28.003 L 241.271 26.472 L 241.271 23.42 L 242.829 22.553 L 245.481 24.07 L 245.481 27.147 C 245.481 27.608 247.149 27.608 247.149 27.147 L 247.149 25.032 L 249.103 26.157 C 249.5 26.387 250.332 24.951 249.936 24.734 L 247.983 23.609 L 249.828 22.553 C 250.224 22.323 249.389 20.9 248.994 21.13 L 246.301 22.66 L 243.65 21.143 L 243.65 19.368 L 246.315 17.85 Z M 242.269 21.319 L 241.435 21.78 L 241.258 21.874 L 240.424 22.335 L 239.59 21.874 L 239.412 21.78 L 238.579 21.319 L 238.579 19.192 L 239.412 18.731 L 239.59 18.637 L 240.424 18.176 L 241.258 18.637 L 241.435 18.731 L 242.269 19.192 L 242.269 20.357 Z\" fill=\"rgb(24,24,27)\"></path><g transform=\"translate(0 97.793)\" id=\"ss8748838416_15\"><path d=\"M 38.524 19.262 C 38.524 8.624 29.9 0 19.262 0 C 8.624 0 0 8.624 0 19.262 C 0 29.901 8.624 38.525 19.262 38.525 C 29.9 38.525 38.524 29.901 38.524 19.262 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.987805\" stroke=\"rgb(244,244,245)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 19.26 8.288 C 19.551 8.288 19.83 8.404 20.036 8.609 C 20.242 8.815 20.357 9.094 20.357 9.386 L 20.357 12.678 C 20.357 12.969 20.242 13.248 20.036 13.454 C 19.83 13.66 19.551 13.776 19.26 13.776 C 18.969 13.776 18.69 13.66 18.484 13.454 C 18.278 13.248 18.162 12.969 18.162 12.678 L 18.162 9.386 C 18.162 9.094 18.278 8.815 18.484 8.609 C 18.69 8.404 18.969 8.288 19.26 8.288 Z M 19.26 24.751 C 19.551 24.751 19.83 24.867 20.036 25.073 C 20.242 25.279 20.357 25.558 20.357 25.848 L 20.357 29.142 C 20.357 29.432 20.242 29.712 20.036 29.917 C 19.83 30.124 19.551 30.239 19.26 30.239 C 18.969 30.239 18.69 30.124 18.484 29.917 C 18.278 29.712 18.162 29.432 18.162 29.142 L 18.162 25.848 C 18.162 25.558 18.278 25.279 18.484 25.073 C 18.69 24.867 18.969 24.751 19.26 24.751 Z M 30.235 19.264 C 30.235 19.554 30.12 19.834 29.914 20.039 C 29.708 20.246 29.429 20.361 29.138 20.361 L 25.845 20.361 C 25.554 20.361 25.275 20.246 25.069 20.039 C 24.863 19.834 24.748 19.554 24.748 19.264 C 24.748 18.972 24.863 18.693 25.069 18.487 C 25.275 18.282 25.554 18.166 25.845 18.166 L 29.138 18.166 C 29.429 18.166 29.708 18.282 29.914 18.487 C 30.12 18.693 30.235 18.972 30.235 19.264 Z M 13.772 19.264 C 13.772 19.554 13.656 19.834 13.451 20.039 C 13.245 20.246 12.965 20.361 12.674 20.361 L 9.382 20.361 C 9.091 20.361 8.811 20.246 8.606 20.039 C 8.4 19.834 8.284 19.554 8.284 19.264 C 8.284 18.972 8.4 18.693 8.606 18.487 C 8.811 18.282 9.091 18.166 9.382 18.166 L 12.674 18.166 C 12.965 18.166 13.245 18.282 13.451 18.487 C 13.656 18.693 13.772 18.972 13.772 19.264 Z M 27.021 27.024 C 26.815 27.23 26.536 27.346 26.245 27.346 C 25.954 27.346 25.674 27.23 25.469 27.024 L 23.141 24.697 C 22.941 24.489 22.83 24.213 22.833 23.924 C 22.835 23.637 22.951 23.361 23.154 23.158 C 23.358 22.954 23.633 22.839 23.921 22.837 C 24.208 22.834 24.486 22.944 24.693 23.145 L 27.021 25.471 C 27.123 25.573 27.204 25.694 27.259 25.828 C 27.314 25.961 27.342 26.103 27.342 26.248 C 27.342 26.392 27.314 26.535 27.259 26.668 C 27.204 26.802 27.123 26.922 27.021 27.024 Z M 15.379 15.383 C 15.173 15.588 14.894 15.704 14.603 15.704 C 14.312 15.704 14.033 15.588 13.827 15.383 L 11.5 13.055 C 11.294 12.85 11.178 12.57 11.178 12.28 C 11.178 11.989 11.294 11.709 11.499 11.504 C 11.705 11.297 11.984 11.182 12.276 11.182 C 12.567 11.182 12.846 11.297 13.052 11.503 L 15.379 13.831 C 15.585 14.036 15.7 14.316 15.7 14.606 C 15.7 14.898 15.585 15.177 15.379 15.383 Z M 11.5 27.024 C 11.294 26.818 11.179 26.539 11.179 26.249 C 11.179 25.957 11.294 25.679 11.5 25.472 L 13.828 23.145 C 13.929 23.04 14.05 22.956 14.184 22.899 C 14.318 22.841 14.462 22.811 14.608 22.809 C 14.754 22.808 14.898 22.836 15.033 22.891 C 15.168 22.946 15.29 23.028 15.393 23.131 C 15.496 23.234 15.578 23.356 15.633 23.492 C 15.688 23.626 15.716 23.771 15.715 23.916 C 15.714 24.063 15.683 24.207 15.626 24.34 C 15.568 24.474 15.485 24.595 15.38 24.697 L 13.053 27.024 C 12.951 27.127 12.83 27.208 12.697 27.263 C 12.564 27.318 12.421 27.346 12.276 27.346 C 12.132 27.346 11.989 27.318 11.856 27.263 C 11.723 27.208 11.602 27.127 11.5 27.024 Z M 23.141 15.383 C 22.935 15.177 22.819 14.898 22.819 14.606 C 22.819 14.316 22.935 14.036 23.141 13.831 L 25.468 11.503 C 25.673 11.297 25.953 11.181 26.244 11.181 C 26.535 11.181 26.814 11.296 27.02 11.503 C 27.226 11.708 27.342 11.988 27.342 12.278 C 27.342 12.569 27.226 12.849 27.021 13.054 L 24.693 15.383 C 24.487 15.588 24.208 15.704 23.917 15.704 C 23.626 15.704 23.347 15.588 23.141 15.383 Z\" fill=\"rgb(24,24,27)\"></path></g></g></svg>',svgContentId:8748838416,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dogzqw\",\"data-framer-name\":\"txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-og9bfq\",\"data-framer-name\":\"Headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-64d4hw\",\"data-styles-preset\":\"DppQPO9Pi\",style:{\"--framer-text-color\":\"var(--token-06b8906a-7808-4dfa-ac27-a436985f8eb1, rgb(12, 12, 13))\"},children:[\"Risk Analytics & \",/*#__PURE__*/_jsx(\"br\",{}),\"Factor Modeling\"]})}),className:\"framer-yjegjl\",\"data-framer-name\":\"Heading4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v3o06f\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlibxu\",\"data-styles-preset\":\"RAdIA8PP8\",style:{\"--framer-text-color\":\"var(--token-7971df22-6c6f-4d4d-8825-e41e051e90ef, rgb(130, 130, 137))\"},children:\"Measure cross-asset risks through stress testing and scenario analysis while building validated multi-factor models with automated feature selection and risk decomposition.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlibxu\",\"data-styles-preset\":\"RAdIA8PP8\",style:{\"--framer-text-color\":\"var(--token-7971df22-6c6f-4d4d-8825-e41e051e90ef, rgb(130, 130, 137))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-18tz4wd\",\"data-framer-name\":\"Body3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-swl2dj hidden-x4b41r hidden-ne6mos\",\"data-framer-name\":\"Pricing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ihvmjv\",\"data-framer-name\":\"Container\",id:elementId2,ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-66kxi1\",\"data-styles-preset\":\"uXEMACo6I\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-06b8906a-7808-4dfa-ac27-a436985f8eb1, rgb(12, 12, 13))\"},children:\"Simple Pricing For Your Needs\"})}),className:\"framer-1l5rxr6\",\"data-framer-name\":\"Heading2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18pen5w\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-64d4hw\",\"data-styles-preset\":\"DppQPO9Pi\",children:\"Professional\"})}),className:\"framer-1i2ksfm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ebf7eg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb63d21e-2930-4a00-8ef1-606d72b7b50f, rgb(51, 51, 51))\"},children:\"$29.99\"})}),className:\"framer-1yd828w\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"p/month\"})}),className:\"framer-4y6ur\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4cgo6\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rq03cr\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kbun44\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ja6ai0\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wlro6x\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"10 free queries to start \"})}),className:\"framer-1lglh58\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oduni9\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1janqoz\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Download resultant data\"})}),className:\"framer-1nesnwj\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yhncdf\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ztaptg\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Universe includes: \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Russell 1000 equities, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"major indices, ETFs, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"commodities, currencies, and \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"crypto.\"})]}),className:\"framer-6dbu95\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6vup2c\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7pnl74\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Scraper agent for any \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"additional data\"})]}),className:\"framer-mfwl81\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"jwbeHu3He\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1oodcy0 framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Get Started\"})}),className:\"framer-1ytqc0x\",fonts:[\"GF;Inter-700\"],id:\"1ytqc0x\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref5,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1ytqc0x\",offsetX:16.499999155290425,offsetY:26.687500864558388,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation14,className:\"framer-1m6qc7s\",exit:animation13,initial:animation8,ref:ref6,role:\"dialog\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/bebe568a-77ab-4b54-bcf5-55a0dda79a66/submit\",className:\"framer-1pf3pp7\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-12szxhu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Name\"})}),className:\"framer-751vqs\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1conh52\",inputName:\"Name\",placeholder:\"Jane Smith\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1tvmbct\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Organization\"})}),className:\"framer-op37sg\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-16vfztw\",inputName:\"Organization\",placeholder:\"ABC Capital\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1x79in0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Work Email\"})}),className:\"framer-1mditi6\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-88uik1\",inputName:\"Work Email\",placeholder:\"jane@email.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-i86p0q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Demo Interest\"})}),className:\"framer-1h4jmc5\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-fy16w2\",inputName:\"Demo Interest\",placeholder:\"I would like to see how Avanzai can help us with...\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rjz57e-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"RbNFrb3F9\",layoutId:\"RbNFrb3F9\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"zNkuqWxeD\",success:\"kkGSMI0fp\"},\"Rg61MhywJ\"),width:\"100%\"})})})]})})})})})]})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-172o07w\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-64d4hw\",\"data-styles-preset\":\"DppQPO9Pi\",children:\"Enterprise\"})}),className:\"framer-wl9h4b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cf6n0x\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Purchase credits for agents \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"trained on your data\"})]}),className:\"framer-cqlrr9\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pkgqfh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v1uca\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-f1k4rs\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Snowflake AI agents\"})}),className:\"framer-1lux39u\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ao148\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-i9if6l\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Replace any dataset with your\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"own\"})]}),className:\"framer-sl9w33\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ey443m\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gx326\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Snowflake & Databricks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Integration\"})]}),className:\"framer-8ors09\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fa08jv\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-psplms\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Python SDK\"})}),className:\"framer-hhfj1g\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nlhxyz\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-anbxjl\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Private Cloud\"})}),className:\"framer-1my3fu\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"a_gbGP2fX\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ag8fes framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Book Demo\"})}),className:\"framer-g0wazb\",fonts:[\"GF;Inter-700\"],id:\"g0wazb\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref7,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"g0wazb\",offsetX:16.499999155290425,offsetY:26.687500864558388,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation14,className:\"framer-1clz3kh\",exit:animation13,initial:animation8,ref:ref8,role:\"dialog\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/1ee46826-76ba-45ef-bfd3-8f8eb4e9f31d/submit\",className:\"framer-7in0vh\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-14ra4mc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Name\"})}),className:\"framer-v80cf8\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-3b2497\",inputName:\"Name\",placeholder:\"Jane Smith\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-n0xsx8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Organization\"})}),className:\"framer-1i328w4\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-fgeatc\",inputName:\"Organization\",placeholder:\"ABC Capital\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1asbbny\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Work Email\"})}),className:\"framer-cak9oz\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-10t7l4z\",inputName:\"Work Email\",placeholder:\"jane@email.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1hl4nq0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Demo Interest\"})}),className:\"framer-eo8knd\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-16fkcis\",inputName:\"Demo Interest\",placeholder:\"I would like to see how Avanzai can help us with...\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14xbmaa-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"bvkENVp0d\",layoutId:\"bvkENVp0d\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"zNkuqWxeD\",success:\"kkGSMI0fp\"},\"Rg61MhywJ\"),width:\"100%\"})})})]})})})})})]})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{y:(componentViewport?.y||0)+0+4281}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:294,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sgho0m-container\",id:\"sgho0m\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jFwI82QFb:{variant:\"bHNYG5ds8\"},NDqyS5Bi1:{variant:\"DVlFfBGnn\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"LKViplb36\",layoutId:\"LKViplb36\",style:{width:\"100%\"},variant:\"Ng7l_68uh\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bkZg9.framer-lux5qc, .framer-bkZg9 .framer-lux5qc { display: block; }\",\".framer-bkZg9.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-fdda1afd-f6f4-4243-912c-50a95b7a4366, #fafafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-bkZg9 .framer-v6p7rq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-bkZg9 .framer-1vyp8ge-container { flex: 1 0 0px; height: auto; max-width: 1280px; position: relative; width: 1px; }\",\".framer-bkZg9 .framer-uex0ha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-bkZg9 .framer-174xhyf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 92%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-bkZg9 .framer-9u8728 { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1jpwnvh { -webkit-filter: blur(70px); aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(70px); flex: none; height: var(--framer-aspect-ratio-supported, 400px); left: 50%; overflow: visible; position: absolute; top: 57%; transform: translate(-50%, -50%); width: 400px; }\",\".framer-bkZg9 .framer-1ibt9zd { background: conic-gradient(from 0deg at 50% 50%, #ff0080 0deg, rgb(238, 0, 255) 54.89161972682219deg, #00a6ff 106.69924423399361deg, #4797ff 162deg, #04f 252.00000000000003deg, #ff8000 306.00000000000006deg, rgb(255, 0, 204) 360deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: 0px; flex: none; left: 0px; opacity: 0.8; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-qr3rfw { -webkit-filter: blur(32px); aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(32px); flex: none; height: var(--framer-aspect-ratio-supported, 300px); left: 50%; overflow: visible; position: absolute; top: 57%; transform: translate(-50%, -50%); width: 300px; }\",\".framer-bkZg9 .framer-1hr18x0 { background: conic-gradient(from 0deg at 50% 50%, #ffffff 0deg, rgb(18, 180, 230) 180deg, rgb(220, 76, 252) 360deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-om1ftv { -webkit-filter: blur(32px); aspect-ratio: 1 / 1; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; filter: blur(32px); flex: none; height: var(--framer-aspect-ratio-supported, 300px); left: 50%; mix-blend-mode: overlay; overflow: visible; position: absolute; top: 57%; transform: translate(-50%, -50%); width: 300px; }\",\".framer-bkZg9 .framer-1l6bpng { background: conic-gradient(from 0deg at 50% 50%, #a6efff 0deg, rgb(18, 173, 230) 180deg, rgb(76, 99, 252) 360deg); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-1ji8bi6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 836px; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; z-index: 10; }\",\".framer-bkZg9 .framer-hcq9cc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1qwe4fh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-4rqc2l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1hr8ria, .framer-bkZg9 .framer-rmwglo, .framer-bkZg9 .framer-1ukmv9u, .framer-bkZg9 .framer-18tz4wd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-1tbmrmw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-bkZg9 .framer-1dre7py { flex: 1 0 0px; height: auto; max-width: 790px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-7lqujv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 69%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 86%; }\",\".framer-bkZg9 .framer-qrreto-container { flex: none; height: 373px; position: relative; width: 703px; }\",\".framer-bkZg9 .framer-1jd1ioa { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 38px 0px 38px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-k14g62 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bkZg9 .framer-1bbxigo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 923px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-1giuk49, .framer-bkZg9 .framer-1sghy2s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-17cn2c5, .framer-bkZg9 .framer-62iajw, .framer-bkZg9 .framer-gzgm0u { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-1h49htn, .framer-bkZg9 .framer-1s8q5hd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-bkZg9 .framer-alp41m, .framer-bkZg9 .framer-n7hj94 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-xv4isg { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 458px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-1aemasa, .framer-bkZg9 .framer-1et94tu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 40px; min-width: 108px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bkZg9 .framer-a47d3o { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-b3e29w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-bkZg9 .framer-1rcwo2o, .framer-bkZg9 .framer-67upv7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-1iu0gci { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 442px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-1erf8t1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 33px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1hk22a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 510px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-ke2qa4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-ix7o2v, .framer-bkZg9 .framer-1yn5wpe { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 4.987576484680176px 17.356765747070312px 0px rgba(30, 35, 41, 0.02), 0px 16.75223159790039px 58.297767639160156px 0px rgba(30, 35, 41, 0.03576643392443657), 0px 75px 261px 0px rgba(30, 35, 41, 0.05999999865889549); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 396px; justify-content: flex-start; overflow: hidden; padding: 20px 20px 30px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-1uoxsaz, .framer-bkZg9 .framer-pvzqpq, .framer-bkZg9 .framer-yjpumv { flex: none; height: 162px; overflow: hidden; position: relative; width: 338px; }\",\".framer-bkZg9 .framer-ye1ltq, .framer-bkZg9 .framer-dwf34a, .framer-bkZg9 .framer-21eoix { flex: none; height: 162px; left: 0px; position: absolute; top: 0px; width: 338px; }\",\".framer-bkZg9 .framer-ls4h2y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-xgim50, .framer-bkZg9 .framer-og9bfq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bkZg9 .framer-115haf7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 296px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-1wtso0h, .framer-bkZg9 .framer-1v3o06f, .framer-bkZg9 .framer-ja6ai0, .framer-bkZg9 .framer-1oduni9, .framer-bkZg9 .framer-1yhncdf, .framer-bkZg9 .framer-6vup2c, .framer-bkZg9 .framer-v1uca, .framer-bkZg9 .framer-5ao148, .framer-bkZg9 .framer-ey443m, .framer-bkZg9 .framer-fa08jv, .framer-bkZg9 .framer-nlhxyz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1msb2rn { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 4.987576484680176px 17.356765747070312px 0px rgba(30, 35, 41, 0.02), 0px 16.75223159790039px 58.297767639160156px 0px rgba(30, 35, 41, 0.03576643392443657), 0px 75px 261px 0px rgba(30, 35, 41, 0.05999999865889549); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: 396px; justify-content: flex-start; overflow: hidden; padding: 20px 20px 30px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-2lxhv7 { flex: none; height: 1px; left: 78px; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 4px; }\",\".framer-bkZg9 .framer-1n97ogg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-8tp6tw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-bkZg9 .framer-1opwk7p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-1akl37k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1dogzqw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-yjegjl, .framer-bkZg9 .framer-751vqs, .framer-bkZg9 .framer-op37sg, .framer-bkZg9 .framer-1mditi6, .framer-bkZg9 .framer-1h4jmc5, .framer-bkZg9 .framer-v80cf8, .framer-bkZg9 .framer-1i328w4, .framer-bkZg9 .framer-cak9oz, .framer-bkZg9 .framer-eo8knd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bkZg9 .framer-swl2dj { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: flex-start; overflow: visible; padding: 77px 40px 77px 40px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1ihvmjv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1397.38px; overflow: visible; padding: 0px; position: relative; width: 1160px; }\",\".framer-bkZg9 .framer-1l5rxr6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1118px; word-break: break-word; word-wrap: break-word; }\",\".framer-bkZg9 .framer-18pen5w { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 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); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: 476px; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 290px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-1i2ksfm, .framer-bkZg9 .framer-4y6ur, .framer-bkZg9 .framer-1lglh58, .framer-bkZg9 .framer-1nesnwj, .framer-bkZg9 .framer-6dbu95, .framer-bkZg9 .framer-mfwl81, .framer-bkZg9 .framer-1ytqc0x, .framer-bkZg9 .framer-wl9h4b, .framer-bkZg9 .framer-cqlrr9, .framer-bkZg9 .framer-1lux39u, .framer-bkZg9 .framer-sl9w33, .framer-bkZg9 .framer-8ors09, .framer-bkZg9 .framer-hhfj1g, .framer-bkZg9 .framer-1my3fu, .framer-bkZg9 .framer-g0wazb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bkZg9 .framer-1ebf7eg, .framer-bkZg9 .framer-c4cgo6 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bkZg9 .framer-1yd828w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 48px; position: relative; white-space: pre; width: auto; }\",\".framer-bkZg9 .framer-1rq03cr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-height: 21px; min-width: 56px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bkZg9 .framer-1kbun44 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 3px 0px 3px 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-1wlro6x, .framer-bkZg9 .framer-1janqoz, .framer-bkZg9 .framer-ztaptg, .framer-bkZg9 .framer-7pnl74, .framer-bkZg9 .framer-f1k4rs, .framer-bkZg9 .framer-i9if6l, .framer-bkZg9 .framer-gx326, .framer-bkZg9 .framer-psplms, .framer-bkZg9 .framer-anbxjl { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-bkZg9 .framer-1oodcy0, .framer-bkZg9 .framer-ag8fes { align-content: center; align-items: center; background-color: #f2f2f2; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-bkZg9 .framer-1m6qc7s, .framer-bkZg9 .framer-1clz3kh { background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 599px; overflow: hidden; position: relative; width: 437px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-1pf3pp7, .framer-bkZg9 .framer-7in0vh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 48%; overflow: hidden; padding: 20px; position: absolute; top: 48%; transform: translate(-50%, -50%); width: 280px; }\",\".framer-bkZg9 .framer-12szxhu, .framer-bkZg9 .framer-1tvmbct, .framer-bkZg9 .framer-1x79in0, .framer-bkZg9 .framer-i86p0q, .framer-bkZg9 .framer-14ra4mc, .framer-bkZg9 .framer-n0xsx8, .framer-bkZg9 .framer-1asbbny, .framer-bkZg9 .framer-1hl4nq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-bkZg9 .framer-1conh52, .framer-bkZg9 .framer-16vfztw, .framer-bkZg9 .framer-88uik1, .framer-bkZg9 .framer-3b2497, .framer-bkZg9 .framer-fgeatc, .framer-bkZg9 .framer-10t7l4z { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }','.framer-bkZg9 .framer-fy16w2, .framer-bkZg9 .framer-16fkcis { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-bkZg9 .framer-rjz57e-container, .framer-bkZg9 .framer-14xbmaa-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-172o07w { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 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); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: 476px; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 290px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bkZg9 .framer-1cf6n0x { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 13px 0px 13px 0px; position: relative; width: min-content; }\",\".framer-bkZg9 .framer-pkgqfh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 18px 0px 18px 0px; position: relative; width: 100%; }\",\".framer-bkZg9 .framer-sgho0m-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bkZg9.framer-72rtr7, .framer-bkZg9 .framer-v6p7rq, .framer-bkZg9 .framer-uex0ha, .framer-bkZg9 .framer-174xhyf, .framer-bkZg9 .framer-1ji8bi6, .framer-bkZg9 .framer-hcq9cc, .framer-bkZg9 .framer-1qwe4fh, .framer-bkZg9 .framer-4rqc2l, .framer-bkZg9 .framer-1tbmrmw, .framer-bkZg9 .framer-7lqujv, .framer-bkZg9 .framer-1jd1ioa, .framer-bkZg9 .framer-k14g62, .framer-bkZg9 .framer-1giuk49, .framer-bkZg9 .framer-17cn2c5, .framer-bkZg9 .framer-1h49htn, .framer-bkZg9 .framer-1aemasa, .framer-bkZg9 .framer-a47d3o, .framer-bkZg9 .framer-b3e29w, .framer-bkZg9 .framer-62iajw, .framer-bkZg9 .framer-1sghy2s, .framer-bkZg9 .framer-gzgm0u, .framer-bkZg9 .framer-1s8q5hd, .framer-bkZg9 .framer-1et94tu, .framer-bkZg9 .framer-1erf8t1, .framer-bkZg9 .framer-ke2qa4, .framer-bkZg9 .framer-ix7o2v, .framer-bkZg9 .framer-ls4h2y, .framer-bkZg9 .framer-xgim50, .framer-bkZg9 .framer-1wtso0h, .framer-bkZg9 .framer-1msb2rn, .framer-bkZg9 .framer-1n97ogg, .framer-bkZg9 .framer-8tp6tw, .framer-bkZg9 .framer-1akl37k, .framer-bkZg9 .framer-1yn5wpe, .framer-bkZg9 .framer-1dogzqw, .framer-bkZg9 .framer-og9bfq, .framer-bkZg9 .framer-1v3o06f, .framer-bkZg9 .framer-swl2dj, .framer-bkZg9 .framer-1ihvmjv, .framer-bkZg9 .framer-18pen5w, .framer-bkZg9 .framer-1ebf7eg, .framer-bkZg9 .framer-c4cgo6, .framer-bkZg9 .framer-1rq03cr, .framer-bkZg9 .framer-1kbun44, .framer-bkZg9 .framer-ja6ai0, .framer-bkZg9 .framer-1oduni9, .framer-bkZg9 .framer-1yhncdf, .framer-bkZg9 .framer-6vup2c, .framer-bkZg9 .framer-1oodcy0, .framer-bkZg9 .framer-1pf3pp7, .framer-bkZg9 .framer-12szxhu, .framer-bkZg9 .framer-1tvmbct, .framer-bkZg9 .framer-1x79in0, .framer-bkZg9 .framer-i86p0q, .framer-bkZg9 .framer-172o07w, .framer-bkZg9 .framer-1cf6n0x, .framer-bkZg9 .framer-pkgqfh, .framer-bkZg9 .framer-v1uca, .framer-bkZg9 .framer-5ao148, .framer-bkZg9 .framer-ey443m, .framer-bkZg9 .framer-fa08jv, .framer-bkZg9 .framer-nlhxyz, .framer-bkZg9 .framer-ag8fes, .framer-bkZg9 .framer-7in0vh, .framer-bkZg9 .framer-14ra4mc, .framer-bkZg9 .framer-n0xsx8, .framer-bkZg9 .framer-1asbbny, .framer-bkZg9 .framer-1hl4nq0 { gap: 0px; } .framer-bkZg9.framer-72rtr7 > *, .framer-bkZg9 .framer-uex0ha > *, .framer-bkZg9 .framer-1ji8bi6 > *, .framer-bkZg9 .framer-ix7o2v > *, .framer-bkZg9 .framer-1n97ogg > *, .framer-bkZg9 .framer-1yn5wpe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bkZg9.framer-72rtr7 > :first-child, .framer-bkZg9 .framer-uex0ha > :first-child, .framer-bkZg9 .framer-1ji8bi6 > :first-child, .framer-bkZg9 .framer-hcq9cc > :first-child, .framer-bkZg9 .framer-1qwe4fh > :first-child, .framer-bkZg9 .framer-k14g62 > :first-child, .framer-bkZg9 .framer-17cn2c5 > :first-child, .framer-bkZg9 .framer-1h49htn > :first-child, .framer-bkZg9 .framer-b3e29w > :first-child, .framer-bkZg9 .framer-62iajw > :first-child, .framer-bkZg9 .framer-gzgm0u > :first-child, .framer-bkZg9 .framer-1s8q5hd > :first-child, .framer-bkZg9 .framer-1erf8t1 > :first-child, .framer-bkZg9 .framer-ix7o2v > :first-child, .framer-bkZg9 .framer-ls4h2y > :first-child, .framer-bkZg9 .framer-1msb2rn > :first-child, .framer-bkZg9 .framer-1n97ogg > :first-child, .framer-bkZg9 .framer-1yn5wpe > :first-child, .framer-bkZg9 .framer-1dogzqw > :first-child, .framer-bkZg9 .framer-swl2dj > :first-child, .framer-bkZg9 .framer-18pen5w > :first-child, .framer-bkZg9 .framer-1kbun44 > :first-child, .framer-bkZg9 .framer-1pf3pp7 > :first-child, .framer-bkZg9 .framer-12szxhu > :first-child, .framer-bkZg9 .framer-1tvmbct > :first-child, .framer-bkZg9 .framer-1x79in0 > :first-child, .framer-bkZg9 .framer-i86p0q > :first-child, .framer-bkZg9 .framer-172o07w > :first-child, .framer-bkZg9 .framer-pkgqfh > :first-child, .framer-bkZg9 .framer-7in0vh > :first-child, .framer-bkZg9 .framer-14ra4mc > :first-child, .framer-bkZg9 .framer-n0xsx8 > :first-child, .framer-bkZg9 .framer-1asbbny > :first-child, .framer-bkZg9 .framer-1hl4nq0 > :first-child { margin-top: 0px; } .framer-bkZg9.framer-72rtr7 > :last-child, .framer-bkZg9 .framer-uex0ha > :last-child, .framer-bkZg9 .framer-1ji8bi6 > :last-child, .framer-bkZg9 .framer-hcq9cc > :last-child, .framer-bkZg9 .framer-1qwe4fh > :last-child, .framer-bkZg9 .framer-k14g62 > :last-child, .framer-bkZg9 .framer-17cn2c5 > :last-child, .framer-bkZg9 .framer-1h49htn > :last-child, .framer-bkZg9 .framer-b3e29w > :last-child, .framer-bkZg9 .framer-62iajw > :last-child, .framer-bkZg9 .framer-gzgm0u > :last-child, .framer-bkZg9 .framer-1s8q5hd > :last-child, .framer-bkZg9 .framer-1erf8t1 > :last-child, .framer-bkZg9 .framer-ix7o2v > :last-child, .framer-bkZg9 .framer-ls4h2y > :last-child, .framer-bkZg9 .framer-1msb2rn > :last-child, .framer-bkZg9 .framer-1n97ogg > :last-child, .framer-bkZg9 .framer-1yn5wpe > :last-child, .framer-bkZg9 .framer-1dogzqw > :last-child, .framer-bkZg9 .framer-swl2dj > :last-child, .framer-bkZg9 .framer-18pen5w > :last-child, .framer-bkZg9 .framer-1kbun44 > :last-child, .framer-bkZg9 .framer-1pf3pp7 > :last-child, .framer-bkZg9 .framer-12szxhu > :last-child, .framer-bkZg9 .framer-1tvmbct > :last-child, .framer-bkZg9 .framer-1x79in0 > :last-child, .framer-bkZg9 .framer-i86p0q > :last-child, .framer-bkZg9 .framer-172o07w > :last-child, .framer-bkZg9 .framer-pkgqfh > :last-child, .framer-bkZg9 .framer-7in0vh > :last-child, .framer-bkZg9 .framer-14ra4mc > :last-child, .framer-bkZg9 .framer-n0xsx8 > :last-child, .framer-bkZg9 .framer-1asbbny > :last-child, .framer-bkZg9 .framer-1hl4nq0 > :last-child { margin-bottom: 0px; } .framer-bkZg9 .framer-v6p7rq > *, .framer-bkZg9 .framer-174xhyf > *, .framer-bkZg9 .framer-4rqc2l > *, .framer-bkZg9 .framer-1tbmrmw > *, .framer-bkZg9 .framer-7lqujv > *, .framer-bkZg9 .framer-1jd1ioa > *, .framer-bkZg9 .framer-xgim50 > *, .framer-bkZg9 .framer-1wtso0h > *, .framer-bkZg9 .framer-8tp6tw > *, .framer-bkZg9 .framer-1akl37k > *, .framer-bkZg9 .framer-og9bfq > *, .framer-bkZg9 .framer-1v3o06f > *, .framer-bkZg9 .framer-ja6ai0 > *, .framer-bkZg9 .framer-1oduni9 > *, .framer-bkZg9 .framer-1yhncdf > *, .framer-bkZg9 .framer-6vup2c > *, .framer-bkZg9 .framer-1oodcy0 > *, .framer-bkZg9 .framer-v1uca > *, .framer-bkZg9 .framer-5ao148 > *, .framer-bkZg9 .framer-ey443m > *, .framer-bkZg9 .framer-fa08jv > *, .framer-bkZg9 .framer-nlhxyz > *, .framer-bkZg9 .framer-ag8fes > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bkZg9 .framer-v6p7rq > :first-child, .framer-bkZg9 .framer-174xhyf > :first-child, .framer-bkZg9 .framer-4rqc2l > :first-child, .framer-bkZg9 .framer-1tbmrmw > :first-child, .framer-bkZg9 .framer-7lqujv > :first-child, .framer-bkZg9 .framer-1jd1ioa > :first-child, .framer-bkZg9 .framer-1giuk49 > :first-child, .framer-bkZg9 .framer-1aemasa > :first-child, .framer-bkZg9 .framer-a47d3o > :first-child, .framer-bkZg9 .framer-1sghy2s > :first-child, .framer-bkZg9 .framer-1et94tu > :first-child, .framer-bkZg9 .framer-ke2qa4 > :first-child, .framer-bkZg9 .framer-xgim50 > :first-child, .framer-bkZg9 .framer-1wtso0h > :first-child, .framer-bkZg9 .framer-8tp6tw > :first-child, .framer-bkZg9 .framer-1akl37k > :first-child, .framer-bkZg9 .framer-og9bfq > :first-child, .framer-bkZg9 .framer-1v3o06f > :first-child, .framer-bkZg9 .framer-1ihvmjv > :first-child, .framer-bkZg9 .framer-1ebf7eg > :first-child, .framer-bkZg9 .framer-c4cgo6 > :first-child, .framer-bkZg9 .framer-1rq03cr > :first-child, .framer-bkZg9 .framer-ja6ai0 > :first-child, .framer-bkZg9 .framer-1oduni9 > :first-child, .framer-bkZg9 .framer-1yhncdf > :first-child, .framer-bkZg9 .framer-6vup2c > :first-child, .framer-bkZg9 .framer-1oodcy0 > :first-child, .framer-bkZg9 .framer-1cf6n0x > :first-child, .framer-bkZg9 .framer-v1uca > :first-child, .framer-bkZg9 .framer-5ao148 > :first-child, .framer-bkZg9 .framer-ey443m > :first-child, .framer-bkZg9 .framer-fa08jv > :first-child, .framer-bkZg9 .framer-nlhxyz > :first-child, .framer-bkZg9 .framer-ag8fes > :first-child { margin-left: 0px; } .framer-bkZg9 .framer-v6p7rq > :last-child, .framer-bkZg9 .framer-174xhyf > :last-child, .framer-bkZg9 .framer-4rqc2l > :last-child, .framer-bkZg9 .framer-1tbmrmw > :last-child, .framer-bkZg9 .framer-7lqujv > :last-child, .framer-bkZg9 .framer-1jd1ioa > :last-child, .framer-bkZg9 .framer-1giuk49 > :last-child, .framer-bkZg9 .framer-1aemasa > :last-child, .framer-bkZg9 .framer-a47d3o > :last-child, .framer-bkZg9 .framer-1sghy2s > :last-child, .framer-bkZg9 .framer-1et94tu > :last-child, .framer-bkZg9 .framer-ke2qa4 > :last-child, .framer-bkZg9 .framer-xgim50 > :last-child, .framer-bkZg9 .framer-1wtso0h > :last-child, .framer-bkZg9 .framer-8tp6tw > :last-child, .framer-bkZg9 .framer-1akl37k > :last-child, .framer-bkZg9 .framer-og9bfq > :last-child, .framer-bkZg9 .framer-1v3o06f > :last-child, .framer-bkZg9 .framer-1ihvmjv > :last-child, .framer-bkZg9 .framer-1ebf7eg > :last-child, .framer-bkZg9 .framer-c4cgo6 > :last-child, .framer-bkZg9 .framer-1rq03cr > :last-child, .framer-bkZg9 .framer-ja6ai0 > :last-child, .framer-bkZg9 .framer-1oduni9 > :last-child, .framer-bkZg9 .framer-1yhncdf > :last-child, .framer-bkZg9 .framer-6vup2c > :last-child, .framer-bkZg9 .framer-1oodcy0 > :last-child, .framer-bkZg9 .framer-1cf6n0x > :last-child, .framer-bkZg9 .framer-v1uca > :last-child, .framer-bkZg9 .framer-5ao148 > :last-child, .framer-bkZg9 .framer-ey443m > :last-child, .framer-bkZg9 .framer-fa08jv > :last-child, .framer-bkZg9 .framer-nlhxyz > :last-child, .framer-bkZg9 .framer-ag8fes > :last-child { margin-right: 0px; } .framer-bkZg9 .framer-hcq9cc > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-bkZg9 .framer-1qwe4fh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bkZg9 .framer-k14g62 > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-bkZg9 .framer-1giuk49 > *, .framer-bkZg9 .framer-a47d3o > *, .framer-bkZg9 .framer-1sghy2s > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-bkZg9 .framer-17cn2c5 > *, .framer-bkZg9 .framer-b3e29w > *, .framer-bkZg9 .framer-62iajw > *, .framer-bkZg9 .framer-gzgm0u > *, .framer-bkZg9 .framer-1pf3pp7 > *, .framer-bkZg9 .framer-7in0vh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-bkZg9 .framer-1h49htn > *, .framer-bkZg9 .framer-1s8q5hd > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-bkZg9 .framer-1aemasa > *, .framer-bkZg9 .framer-1et94tu > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-bkZg9 .framer-1erf8t1 > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } .framer-bkZg9 .framer-ke2qa4 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-bkZg9 .framer-ls4h2y > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-bkZg9 .framer-1msb2rn > *, .framer-bkZg9 .framer-18pen5w > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-bkZg9 .framer-1dogzqw > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bkZg9 .framer-swl2dj > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-bkZg9 .framer-1ihvmjv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-bkZg9 .framer-1ebf7eg > *, .framer-bkZg9 .framer-c4cgo6 > *, .framer-bkZg9 .framer-1rq03cr > *, .framer-bkZg9 .framer-1cf6n0x > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-bkZg9 .framer-1kbun44 > *, .framer-bkZg9 .framer-12szxhu > *, .framer-bkZg9 .framer-1tvmbct > *, .framer-bkZg9 .framer-1x79in0 > *, .framer-bkZg9 .framer-i86p0q > *, .framer-bkZg9 .framer-pkgqfh > *, .framer-bkZg9 .framer-14ra4mc > *, .framer-bkZg9 .framer-n0xsx8 > *, .framer-bkZg9 .framer-1asbbny > *, .framer-bkZg9 .framer-1hl4nq0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bkZg9 .framer-172o07w > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-bkZg9[data-border=\"true\"]::after, .framer-bkZg9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1279px) { .framer-bkZg9.framer-72rtr7 { width: 810px; } .framer-bkZg9 .framer-v6p7rq { -webkit-backdrop-filter: blur(11px); backdrop-filter: blur(11px); order: 0; } .framer-bkZg9 .framer-1vyp8ge-container { z-index: 1; } .framer-bkZg9 .framer-uex0ha { order: 1; padding: 80px 50px 80px 50px; } .framer-bkZg9 .framer-174xhyf { height: 100%; order: 1; overflow: visible; top: calc(50.00000000000002% - 100% / 2); } .framer-bkZg9 .framer-9u8728 { overflow: visible; } .framer-bkZg9 .framer-1ji8bi6 { order: 2; padding: 0px 60px 0px 60px; } .framer-bkZg9 .framer-1tbmrmw { width: 100%; } .framer-bkZg9 .framer-7lqujv { flex-direction: column; } .framer-bkZg9 .framer-1jd1ioa { order: 2; padding: 60px 40px 60px 40px; } .framer-bkZg9 .framer-17cn2c5, .framer-bkZg9 .framer-62iajw, .framer-bkZg9 .framer-gzgm0u { height: var(--framer-aspect-ratio-supported, 271px); } .framer-bkZg9 .framer-xv4isg { width: 322px; } .framer-bkZg9 .framer-1iu0gci { width: 326px; } .framer-bkZg9 .framer-1erf8t1 { order: 3; padding: 40px 60px 80px 60px; } .framer-bkZg9 .framer-ke2qa4 { flex-wrap: wrap; gap: 16px; } .framer-bkZg9 .framer-ix7o2v, .framer-bkZg9 .framer-1msb2rn { height: 372px; min-width: 256px; } .framer-bkZg9 .framer-ls4h2y { min-width: 256px; } .framer-bkZg9 .framer-1yn5wpe { flex: none; height: 372px; min-width: 256px; width: 337px; } .framer-bkZg9 .framer-sgho0m-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bkZg9 .framer-7lqujv, .framer-bkZg9 .framer-ke2qa4 { gap: 0px; } .framer-bkZg9 .framer-7lqujv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bkZg9 .framer-7lqujv > :first-child { margin-top: 0px; } .framer-bkZg9 .framer-7lqujv > :last-child { margin-bottom: 0px; } .framer-bkZg9 .framer-ke2qa4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bkZg9 .framer-ke2qa4 > :first-child { margin-left: 0px; } .framer-bkZg9 .framer-ke2qa4 > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-bkZg9.framer-72rtr7 { width: 320px; } .framer-bkZg9 .framer-v6p7rq { -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); order: 0; } .framer-bkZg9 .framer-1vyp8ge-container { max-width: unset; } .framer-bkZg9 .framer-uex0ha { order: 1; padding: 60px 0px 0px 0px; } .framer-bkZg9 .framer-174xhyf { height: 100%; order: 1; top: -10px; } .framer-bkZg9 .framer-1jpwnvh { -webkit-filter: blur(44px); filter: blur(44px); height: var(--framer-aspect-ratio-supported, 280px); width: 280px; } .framer-bkZg9 .framer-qr3rfw, .framer-bkZg9 .framer-om1ftv { -webkit-filter: blur(22px); filter: blur(22px); height: var(--framer-aspect-ratio-supported, 200px); width: 200px; } .framer-bkZg9 .framer-1ji8bi6 { gap: 48px; height: 651px; order: 2; padding: 0px 30px 0px 30px; z-index: 1; } .framer-bkZg9 .framer-hcq9cc { gap: 32px; } .framer-bkZg9 .framer-1tbmrmw, .framer-bkZg9 .framer-xgim50 { width: 100%; } .framer-bkZg9 .framer-7lqujv { flex-direction: column; height: 39%; } .framer-bkZg9 .framer-qrreto-container { height: 81%; width: 102%; } .framer-bkZg9 .framer-1jd1ioa { gap: 20px; order: 2; padding: 60px 20px 60px 20px; } .framer-bkZg9 .framer-k14g62 { gap: 60px; } .framer-bkZg9 .framer-1bbxigo { width: 117%; } .framer-bkZg9 .framer-1giuk49, .framer-bkZg9 .framer-a47d3o, .framer-bkZg9 .framer-1sghy2s { flex-direction: column; } .framer-bkZg9 .framer-17cn2c5, .framer-bkZg9 .framer-gzgm0u { flex: none; height: var(--framer-aspect-ratio-supported, 167px); width: 100%; } .framer-bkZg9 .framer-1h49htn, .framer-bkZg9 .framer-1s8q5hd, .framer-bkZg9 .framer-ix7o2v, .framer-bkZg9 .framer-1yn5wpe { flex: none; width: 100%; } .framer-bkZg9 .framer-alp41m { width: 303px; } .framer-bkZg9 .framer-xv4isg, .framer-bkZg9 .framer-1rcwo2o, .framer-bkZg9 .framer-67upv7 { width: 277px; } .framer-bkZg9 .framer-b3e29w { flex: none; order: 1; width: 100%; } .framer-bkZg9 .framer-n7hj94 { width: 305px; } .framer-bkZg9 .framer-62iajw { flex: none; height: var(--framer-aspect-ratio-supported, 167px); order: 0; width: 100%; } .framer-bkZg9 .framer-1iu0gci { width: 269px; } .framer-bkZg9 .framer-1erf8t1 { align-content: flex-start; align-items: flex-start; gap: 60px; justify-content: flex-start; max-width: unset; order: 3; padding: 60px 30px 60px 30px; } .framer-bkZg9 .framer-1hk22a { order: 0; width: 88%; } .framer-bkZg9 .framer-ke2qa4 { flex-direction: column; flex-wrap: wrap; gap: 16px; justify-content: flex-start; order: 2; } .framer-bkZg9 .framer-115haf7 { flex: 1 0 0px; width: 1px; } .framer-bkZg9 .framer-1msb2rn { flex: none; height: min-content; width: 100%; } .framer-bkZg9 .framer-sgho0m-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bkZg9 .framer-1ji8bi6, .framer-bkZg9 .framer-hcq9cc, .framer-bkZg9 .framer-7lqujv, .framer-bkZg9 .framer-1jd1ioa, .framer-bkZg9 .framer-k14g62, .framer-bkZg9 .framer-1giuk49, .framer-bkZg9 .framer-a47d3o, .framer-bkZg9 .framer-1sghy2s, .framer-bkZg9 .framer-1erf8t1, .framer-bkZg9 .framer-ke2qa4 { gap: 0px; } .framer-bkZg9 .framer-1ji8bi6 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-bkZg9 .framer-1ji8bi6 > :first-child, .framer-bkZg9 .framer-hcq9cc > :first-child, .framer-bkZg9 .framer-7lqujv > :first-child, .framer-bkZg9 .framer-k14g62 > :first-child, .framer-bkZg9 .framer-1giuk49 > :first-child, .framer-bkZg9 .framer-a47d3o > :first-child, .framer-bkZg9 .framer-1sghy2s > :first-child, .framer-bkZg9 .framer-1erf8t1 > :first-child, .framer-bkZg9 .framer-ke2qa4 > :first-child { margin-top: 0px; } .framer-bkZg9 .framer-1ji8bi6 > :last-child, .framer-bkZg9 .framer-hcq9cc > :last-child, .framer-bkZg9 .framer-7lqujv > :last-child, .framer-bkZg9 .framer-k14g62 > :last-child, .framer-bkZg9 .framer-1giuk49 > :last-child, .framer-bkZg9 .framer-a47d3o > :last-child, .framer-bkZg9 .framer-1sghy2s > :last-child, .framer-bkZg9 .framer-1erf8t1 > :last-child, .framer-bkZg9 .framer-ke2qa4 > :last-child { margin-bottom: 0px; } .framer-bkZg9 .framer-hcq9cc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bkZg9 .framer-7lqujv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bkZg9 .framer-1jd1ioa > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-bkZg9 .framer-1jd1ioa > :first-child { margin-left: 0px; } .framer-bkZg9 .framer-1jd1ioa > :last-child { margin-right: 0px; } .framer-bkZg9 .framer-k14g62 > *, .framer-bkZg9 .framer-1erf8t1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-bkZg9 .framer-1giuk49 > *, .framer-bkZg9 .framer-a47d3o > *, .framer-bkZg9 .framer-1sghy2s > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-bkZg9 .framer-ke2qa4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\",\"@media (min-width: 1920px) { .framer-bkZg9.framer-72rtr7 { width: 1920px; } .framer-bkZg9 .framer-v6p7rq { order: 0; } .framer-bkZg9 .framer-uex0ha { order: 1; } .framer-bkZg9 .framer-1jd1ioa { order: 2; } .framer-bkZg9 .framer-17cn2c5, .framer-bkZg9 .framer-62iajw, .framer-bkZg9 .framer-gzgm0u { height: var(--framer-aspect-ratio-supported, 167px); } .framer-bkZg9 .framer-1erf8t1 { order: 3; padding: 33px 30px 120px 30px; } .framer-bkZg9 .framer-ke2qa4 { height: 335px; } .framer-bkZg9 .framer-swl2dj { order: 7; } .framer-bkZg9 .framer-sgho0m-container { order: 12; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4200.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NDqyS5Bi1\":{\"layout\":[\"fixed\",\"auto\"]},\"jFwI82QFb\":{\"layout\":[\"fixed\",\"auto\"]},\"kK3BPw99M\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"FZ6Jzi5SK\":{\"pattern\":\":FZ6Jzi5SK\",\"name\":\"signup\"},\"SD5wpzlcI\":{\"pattern\":\":SD5wpzlcI\",\"name\":\"features\"},\"kbJf4mFck\":{\"pattern\":\":kbJf4mFck\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-bkZg9\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4200.5,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{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_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...NavbarFonts,...VideoFonts,...ButtonFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerScrollSections\":\"{\\\"FZ6Jzi5SK\\\":{\\\"pattern\\\":\\\":FZ6Jzi5SK\\\",\\\"name\\\":\\\"signup\\\"},\\\"SD5wpzlcI\\\":{\\\"pattern\\\":\\\":SD5wpzlcI\\\",\\\"name\\\":\\\"features\\\"},\\\"kbJf4mFck\\\":{\\\"pattern\\\":\\\":kbJf4mFck\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4200.5\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NDqyS5Bi1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jFwI82QFb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kK3BPw99M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavbarFonts", "getFonts", "zcYDwn9ex_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ButtonFonts", "NLuCNm8M5_default", "FooterFonts", "sCvnwBifQ_default", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "transition7", "animation10", "animation11", "transition8", "animation12", "transition9", "animation13", "animation14", "formVariants", "form", "variants", "currentVariant", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition10", "animation15", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed", "elementId2", "ref4", "ref5", "ref6", "ref7", "ref8", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "SVG", "Link", "l", "AnimatePresence", "Floating", "FormContainer", "formState", "FormPlainTextInput2", "overlay1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
