{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/K9XZikamzRg8diOTO0v6/apAlDVjalusFOdVIu0Oh/BlurCycle_Prod.js", "ssg:https://framerusercontent.com/modules/bH02x0BFi5qHY2gmWjcE/Y9fXSyxuudvUmsTE12sa/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";const MAX_SPEED=20;const defaultTransition={stiffness:100,damping:20,mass:1};/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function BlurCycle({text,speed,delay,font,userSelect,color,tag,loop,alignment}){const Tag=tag;const content=text.split(\", \").map(phrase=>phrase.replace(/\\s+/g,\" \").trim());const[iteration,setIteration]=useState(0);const[isFirstRender,setIsFirstRender]=useState(true);const speedFormatted=(MAX_SPEED-speed+1)/20*5;const delayFormattedMs=delay*1e3;const speedFormattedMs=speedFormatted*1e3;const MAX_BLUR=parseInt(font.fontSize)*.2||4.8;useEffect(()=>{const interval=setInterval(async()=>{if(iteration<content.length-1){setIteration(prev=>prev+1);}else if(loop){setIteration(0);}},speedFormattedMs+delayFormattedMs);return()=>clearInterval(interval);},[iteration,loop]);useEffect(()=>{setIsFirstRender(false);},[]);return /*#__PURE__*/_jsxs(\"div\",{style:{userSelect:userSelect?\"auto\":\"none\",position:\"relative\",display:\"flex\",flexDirection:\"row\",overflow:\"visible\",width:\"calc(100% + 10px)\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\"},children:[/*#__PURE__*/_jsx(Tag,{\"aria-hidden\":true,style:{fontSize:\"24px\",...font,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",pointerEvents:\"none\",opacity:0,whiteSpace:\"pre-wrap\",width:\"100%\",textAlign:alignment},children:content.reduce((longest,current)=>current.length>longest.length?current:longest)}),RenderTarget.current()===RenderTarget.canvas&&/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",whiteSpace:\"pre-wrap\",position:\"absolute\",top:0,left:0,width:\"100%\",textAlign:alignment},children:content[0]}),RenderTarget.current()!==RenderTarget.canvas&&/*#__PURE__*/_jsx(_Fragment,{children:content.map((phrase,phraseIndex)=>{// Calculate the absolute index for each character up front\nlet charIndex=0;const segments=phrase.split(/(\\s+|\\b)/).map(segment=>({text:segment,chars:segment.split(\"\").map(char=>({char,originalIndex:charIndex++}))}));return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,overflow:\"visible\",width:\"100%\",textAlign:alignment},children:/*#__PURE__*/_jsx(AnimatePresence,{mode:\"sync\",children:iteration===phraseIndex&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexWrap:\"wrap\",width:\"100%\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\",gap:0},children:segments.map((segment,segmentIndex)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"inline-flex\",flexWrap:\"nowrap\",whiteSpace:\"pre\"},children:segment.chars.map(({char,originalIndex})=>{const itemTransition={hidden:{opacity:0,filter:`blur(${MAX_BLUR}px)`,zIndex:1,transition:{...defaultTransition,duration:speedFormatted/2,delay:speedFormatted/2*.5}},show:{opacity:1,filter:\"blur(0px)\",zIndex:1,transition:{...defaultTransition,duration:speedFormatted/2,delay:speedFormatted/2*.5+originalIndex/(phrase.length-1)*(speedFormatted/3)}},exit:{opacity:0,filter:`blur(${MAX_BLUR/60}px)`,zIndex:0,transition:{...defaultTransition,duration:speedFormatted/2}}};return /*#__PURE__*/_jsx(motion.div,{variants:itemTransition,initial:isFirstRender?\"show\":\"hidden\",animate:\"show\",exit:\"exit\",style:{display:\"inline-block\"},children:/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",opacity:1},children:char})},phrase+originalIndex);})},segmentIndex))})})},phraseIndex);})})]});}BlurCycle.displayName=\"Blur Cycle\";addPropertyControls(BlurCycle,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"to learn Framer, to build websites\",description:\"Divide phrases with a comma (,) if you want to display them separately.\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:MAX_SPEED/2,min:1,max:MAX_SPEED},delay:{type:ControlType.Number,title:\"Delay\",defaultValue:1,min:0,max:10},font:{title:\"Font\",type:ControlType.Font,controls:\"extended\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#999\"},alignment:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Alignment\",defaultValue:\"left\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"]},userSelect:{title:\"User Select\",type:ControlType.Boolean,defaultValue:false},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},loop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BlurCycle\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BlurCycle_Prod.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/WtTwrQcMhFJpd4DOJv98/Cookies.js\";import BlurCycle from\"https://framerusercontent.com/modules/K9XZikamzRg8diOTO0v6/apAlDVjalusFOdVIu0Oh/BlurCycle_Prod.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/RLfsHd78NBd0kbafA9hd/Lottie.js\";import AIKitIconBig from\"#framer/local/canvasComponent/dqmYjVsb1/dqmYjVsb1.js\";import AIKitNav from\"#framer/local/canvasComponent/FgbzfpRtw/FgbzfpRtw.js\";import AIKitButton from\"#framer/local/canvasComponent/Iv7Whv_D9/Iv7Whv_D9.js\";import AIKitTestimonial from\"#framer/local/canvasComponent/j35hGfHpy/j35hGfHpy.js\";import AIKitBadge from\"#framer/local/canvasComponent/KoyqF9kGY/KoyqF9kGY.js\";import AIKitAvatar from\"#framer/local/canvasComponent/l859ckd8N/l859ckd8N.js\";import ButtonFill from\"#framer/local/canvasComponent/wdQxdszl5/wdQxdszl5.js\";import AIKitFooterSimple from\"#framer/local/canvasComponent/xxrl4saDl/xxrl4saDl.js\";import{withHighlightColor3}from\"#framer/local/codeFile/nTMHH3j/Scroll_Animation.js\";import*as sharedStyle2 from\"#framer/local/css/bNWIfpA4K/bNWIfpA4K.js\";import*as sharedStyle3 from\"#framer/local/css/g94j1NQXp/g94j1NQXp.js\";import*as sharedStyle6 from\"#framer/local/css/GgzepgGuj/GgzepgGuj.js\";import*as sharedStyle1 from\"#framer/local/css/IOy3OP8Hi/IOy3OP8Hi.js\";import*as sharedStyle from\"#framer/local/css/nmhD1gwBv/nmhD1gwBv.js\";import*as sharedStyle4 from\"#framer/local/css/pxyaDqgen/pxyaDqgen.js\";import*as sharedStyle5 from\"#framer/local/css/zLSRjRJdP/zLSRjRJdP.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const AIKitNavFonts=getFonts(AIKitNav);const AIKitBadgeFonts=getFonts(AIKitBadge);const BlurCycleFonts=getFonts(BlurCycle);const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ImageWithFX=withFX(Image);const RichTextWithHighlightColor31cgx0ag=withCodeBoundaryForOverrides(RichText,{nodeId:\"gm7mgvn_Q\",override:withHighlightColor3,scopeId:\"augiA20Il\"});const AIKitButtonFonts=getFonts(AIKitButton);const LottieFonts=getFonts(Lottie);const AIKitAvatarFonts=getFonts(AIKitAvatar);const AIKitTestimonialFonts=getFonts(AIKitTestimonial);const AIKitIconBigFonts=getFonts(AIKitIconBig);const ButtonFillFonts=getFonts(ButtonFill);const AIKitFooterSimpleFonts=getFonts(AIKitFooterSimple);const CookieBannerFonts=getFonts(CookieBanner);const breakpoints={ITQFdwOHH:\"(max-width: 809px)\",tTiabLNor:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2DoAT\";const variantClassNames={ITQFdwOHH:\"framer-v-lr3eb8\",tTiabLNor:\"framer-v-162mg2v\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:60,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 transition3={delay:0,duration:80,ease:[0,0,1,1],type:\"tween\"};const animation3={opacity:1,rotate:-360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={delay:0,duration:50,ease:[0,0,1,1],type:\"tween\"};const transition5={delay:0,duration:100,ease:[0,0,1,1],type:\"tween\"};const transition6={delay:0,duration:40,ease:[0,0,1,1],type:\"tween\"};const transition7={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={backgroundColor:\"rgba(140, 69, 255, 0.3)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition8={bounce:.2,delay:0,duration:4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"ITQFdwOHH\",Tablet:\"tTiabLNor\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ITQFdwOHH\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ITQFdwOHH\")return true;return false;};const elementId=useRouteElementId(\"g7N4_vjuA\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"gm7mgvn_Q\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"CBQdDcAWT\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"ioasiEqtw\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"ftfWhUciA\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"yPZkCAVqv\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"Dow2cB35H\");const ref7=React.useRef(null);const router=useRouter();const elementId7=useRouteElementId(\"aW6eM5Wd3\");const ref8=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"tTiabLNor\",\"ITQFdwOHH\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-46bmxe-container\",nodeId:\"xaGoeLm2R\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{variant:\"f_6O496Ht\"},tTiabLNor:{variant:\"f_6O496Ht\"}},children:/*#__PURE__*/_jsx(AIKitNav,{height:\"100%\",id:\"xaGoeLm2R\",layoutId:\"xaGoeLm2R\",style:{width:\"100%\"},variant:\"eTL_lIPt6\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-acwe03\",\"data-framer-name\":\"Hero-Slider\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mjz4a8\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8bvkdb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1tp3w-container\",nodeId:\"LJYWtfzaN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitBadge,{height:\"100%\",id:\"LJYWtfzaN\",KvUUiyKUR:false,layoutId:\"LJYWtfzaN\",loAxgB08g:\"New\",LyfG9WPrX:\"rgb(225, 201, 255)\",NqN_nLBRj:true,RKRIewHmu:\"We're about to change Corporate Innovation\",width:\"100%\",xIk8kOqJV:\"100px\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v3qvq9\",\"data-framer-name\":\"Text Slider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bjqnhj\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-414jku\",\"data-framer-name\":\"Words\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ovglx3 hidden-lr3eb8\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"The\"})}),className:\"framer-1xkohig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bo3jg5 hidden-lr3eb8\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"first\"})}),className:\"framer-vtmvlz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6wfl1a hidden-lr3eb8\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"AI-Native\"})}),className:\"framer-1u6ll25\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4k3izs hidden-lr3eb8\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"System\"})}),className:\"framer-84d1wj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-r0z6k5 hidden-lr3eb8\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"for\"})}),className:\"framer-ytzmus\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3frapo hidden-72rtr7 hidden-162mg2v\",\"data-framer-name\":\"Phone\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1btyhzu\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"The\"})}),className:\"framer-l50lai\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h0ftuc\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"first\"})}),className:\"framer-1vjpjrf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t8qho\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"AI-Native\"})}),className:\"framer-1n9u3ql\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w98o34\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"System\"})}),className:\"framer-1eq9g0e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sws3sz\",\"data-framer-name\":\"Word\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",children:\"for\"})}),className:\"framer-1tqxtpm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-79jyak-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TWmQvTQOO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{font:{fontFamily:'\"Founders Grotesk Semibold\", \"Founders Grotesk Semibold Placeholder\", sans-serif',fontSize:\"32px\",letterSpacing:\"-0.03em\",lineHeight:\"1.1em\"},style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(BlurCycle,{alignment:\"center\",color:\"rgb(255, 255, 255)\",delay:1,font:{fontFamily:'\"Founders Grotesk Semibold\", \"Founders Grotesk Semibold Placeholder\", sans-serif',fontSize:\"56px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},height:\"100%\",id:\"TWmQvTQOO\",layoutId:\"TWmQvTQOO\",loop:true,speed:10,tag:\"p\",text:\"Corporate Innovation., Operational Excellence., Cultural Transformation.\",userSelect:false,width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",children:\"AI-Native. Impact-Focused\"})}),className:\"framer-149c84g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pdm91n\",\"data-framer-name\":\"Particles \",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yf9m1h\",\"data-framer-name\":\"Vignette\"})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-177k86f hidden-lr3eb8\",\"data-framer-appear-id\":\"177k86f\",\"data-framer-name\":\"Circles\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ud8mjz\",\"data-border\":true,\"data-framer-name\":\"Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15hgf6v\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1chczdn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t9wxue\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g77en2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gqzoxu\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-znhl7y\",\"data-border\":true})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u0n4qt\",\"data-border\":true,\"data-framer-name\":\"Circle\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b2b2bv\",\"data-border\":true,\"data-framer-name\":\"Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qizlwl\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lfrbem\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckeats\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dkjca5\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fd0bp0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wyu7pg\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j6f9zv\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10976mw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-isfk97\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1edsa8h\",\"data-border\":true})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o8x5t5\",\"data-border\":true,\"data-framer-name\":\"Circle\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m5tdz4\",\"data-border\":true,\"data-framer-name\":\"Circle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15lsr0r\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q483vh\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-121rmam\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gxfuyy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7dgjwa\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ht07eo\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1epy9ai\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kg1ctf\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o3ujss\",\"data-border\":true})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:.5,className:\"framer-17nnyz9\",\"data-border\":true,\"data-framer-name\":\"Circle\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-olac9m\",\"data-framer-name\":\"Gradient Bottom\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c05xd1\",\"data-framer-name\":\"Companies\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by the world\u2019s most innovative teams\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",children:\"Trusted by the world\u2019s most innovative teams\"})}),className:\"framer-1pcs43u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ewvty5\",\"data-framer-name\":\"Companies\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qgxb89\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2rp0m1\",\"data-framer-name\":\"BMW\",fill:\"black\",intrinsicHeight:938,intrinsicWidth:942,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 942.2 938.12\"><defs><style>.cls-1{fill:none}.cls-2{fill:#0066ad}.cls-3{fill:#fff}</style></defs><g id=\"_x2014_\\xce\\xd3\\xc8_x5F_1\"><circle class=\"cls-3\" cx=\"472.56\" cy=\"468.23\" r=\"278.43\"/><path class=\"cls-3\" d=\"M804.6 136.16C715.86 47.42 597.9-1.45 472.41-1.45S228.95 47.42 140.22 136.16C51.48 224.87 2.62 342.86 2.62 468.35s48.87 243.46 137.6 332.19c88.74 88.72 206.7 137.59 332.19 137.59s243.46-48.87 332.19-137.59c88.73-88.74 137.6-206.72 137.6-332.19s-48.87-243.47-137.6-332.19ZM472.41 909.25c-243.11 0-440.92-197.79-440.92-440.9S229.29 27.43 472.41 27.43s440.92 197.79 440.92 440.92-197.8 440.9-440.92 440.9Z\"/><path class=\"cls-2\" d=\"M472.56 189.94v278.42H194.11c.02-101.26 54.06-189.89 134.91-238.67 1.36-.82 2.71-1.62 4.08-2.4 2.72-1.58 5.48-3.11 8.25-4.61 1.4-.75 2.79-1.48 4.2-2.19h.02c2.99-1.53 6.02-3.03 9.09-4.46s6.16-2.81 9.27-4.13c3.22-1.36 6.47-2.67 9.75-3.91 1.72-.66 3.44-1.29 5.19-1.91 3.47-1.24 6.98-2.42 10.52-3.52h.02c3.71-1.16 7.45-2.23 11.23-3.25 1.89-.49 3.78-.99 5.68-1.45 2.01-.49 4.02-.95 6.02-1.4a301.3 301.3 0 0 1 12.18-2.4c3.28-.56 6.57-1.07 9.89-1.53 3.32-.46 6.64-.85 9.99-1.17 2.23-.22 4.48-.43 6.72-.6 7.06-.54 14.21-.82 21.42-.82h.02Z\"/><path class=\"cls-2\" d=\"M750.8 468.23c-.02 108.18-61.73 202.06-151.9 248.22-4.44 2.26-8.93 4.42-13.51 6.45-1.55.7-3.1 1.36-4.66 2.02-1.58.68-3.18 1.33-4.78 1.97-3.3 1.33-6.64 2.59-10.01 3.79-1.72.61-3.44 1.21-5.16 1.79-3.57 1.19-7.16 2.31-10.79 3.37h-.02c-3.74 1.09-7.5 2.09-11.32 3.03-.08.02-.15.03-.24.05-2.06.49-4.12.97-6.19 1.43-9.12 2.01-18.41 3.56-27.84 4.63-2.64.31-5.27.58-7.91.8-7.96.7-15.99 1.04-24.13 1.04h-.02V468.23h278.46Z\"/><path class=\"cls-3\" d=\"M796.84 213s-.03-.05-.05-.07c-.56-.66-1.14-1.34-1.74-2.04L733 251.95l29.37-57.12c-7.64-9.02-19.19-18.5-19.19-18.5l-56.64 28.45 41.5-60.85.07-.1c-3.3-2.77-6.82-5.31-10.46-7.84-3.98-2.77-8.08-5.55-12.08-8.58l-58.16 90.73-.02.02s.05.02.12.07c.14.07.26.15.37.24 2.3 1.41 12.2 7.73 24.01 18.61l60.2-31.14-31.53 59.25c7.08 7.5 13.41 16.57 19.98 24.67l91.34-56.51.29-.17s-5.02-7.9-15.31-20.18Zm-259.71-42.95-5-110.57c-13.82-2.01-25.8-3.06-32.4-3.56-.83-.07-1.67-.12-2.5-.17-.6-.03-1.17-.07-1.77-.1-.17-.02-.34-.03-.51-.03-.22-.02-.46-.02-.68-.03l-26.9 66.92-26.25-66.38c-.07 0-.14 0-.2.02-.19.02-.36.03-.54.05-3.51.36-19.16 1.99-37.67 4.68l-5.04 111.64s13.66-3.96 24.6-5.05c1.12-.12 2.21-.2 3.27-.26v-.29l2.37-79.12 27.99 61.22h22.99l27.92-61.7 2.52 78.1v.12c.68.03 1.38.07 2.09.14h.07c5.92.46 12.83 1.74 17.99 2.82.1.02.2.03.31.07 4.36.94 7.38 1.7 7.38 1.7l-.02-.22Zm-261.38 19.28c-9.05-8.24-22.19-9.41-33.18-4.03v-.12a27.978 27.978 0 0 0-8.18-28.04c-7.52-6.86-17.49-9.31-28.6-4.92-5.63 2.2-11.55 6.18-17.61 12.22 0 0-33.2 33.28-55.67 65.87l1.04.95 79.72 72.69 11.89-13.34 43.29-48.53 5.67-6.35c13.24-14.63 13.77-35.34 1.65-46.4Zm-111.08 35.54c28.6-35.44 40.05-45.12 40.05-45.12 7.5-6.48 13.05-7.06 17.56-2.96 4.49 4.1 3.93 12.08-1.26 17.82l-40.45 44.78-15.91-14.51Zm48.44 44.18-15.96-14.56 42.47-47.13c5.19-5.73 12.98-7.13 17.39-3.11s3.76 11.93-1.43 17.66l-42.47 47.15Z\"/><path class=\"cls-1\" d=\"M275.75 189.33c-9.05-8.24-22.19-9.41-33.18-4.03v-.12a27.978 27.978 0 0 0-8.18-28.04c-7.52-6.86-17.49-9.31-28.6-4.92a415.029 415.029 0 0 0-72.25 79.04l79.72 72.69 11.89-13.34 43.29-48.53 5.67-6.35c13.24-14.63 13.77-35.34 1.65-46.4Zm-111.08 35.54c28.6-35.44 40.05-45.12 40.05-45.12 7.5-6.48 13.05-7.06 17.56-2.96 4.49 4.1 3.93 12.08-1.26 17.82l-40.45 44.78-15.91-14.51Zm48.44 44.18-15.96-14.56 42.47-47.13c5.19-5.73 12.98-7.13 17.39-3.11s3.76 11.93-1.43 17.66l-42.47 47.15Zm324.04-98.78s-3.03-.77-7.38-1.7c-.1-.03-.2-.05-.31-.07-5.94-1.12-11.93-2.06-17.99-2.82h-.07c-.71-.07-1.41-.1-2.09-.14v-.12l-2.52-78.1-27.92 61.7h-22.99L427.89 87.8l-2.37 79.12v.29c-1.05.05-2.14.14-3.27.26-10.94 1.09-24.6 5.05-24.6 5.05l5.04-111.64c18.51-2.69 34.17-4.32 37.67-4.68.19-.02.36-.03.54-.05.07-.02.14-.02.2-.02l26.25 66.38 26.9-66.92c.22.02.46.02.68.03.17 0 .34.02.51.03.6.03 1.17.07 1.77.1.83.05 1.67.1 2.5.17 6.6.49 18.58 1.55 32.4 3.56l5 110.57.02.22Zm274.71 63.08-91.34 56.51c-6.57-8.1-12.9-17.17-19.98-24.67l31.53-59.25-60.2 31.14c-11.81-10.89-21.71-17.2-24.01-18.61-.12-.09-.24-.17-.37-.24-.07-.05-.12-.07-.12-.07l.02-.02 58.16-90.73c4 3.03 8.1 5.8 12.08 8.58 3.5 2.59 6.98 5.24 10.4 7.95l-41.5 60.85 56.64-28.45s11.55 9.48 19.19 18.5l-29.37 57.12 62.05-41.06c.6.7 1.17 1.38 1.74 2.04.02.02.03.03.05.07 5.21 6.62 10.21 13.41 15.02 20.35Z\"/><path class=\"cls-1\" d=\"M750.85 468.38c0 108.22-61.75 202.04-151.95 248.07-4.44 2.26-8.93 4.42-13.51 6.45-1.55.7-3.1 1.36-4.66 2.02-1.58.68-3.18 1.33-4.78 1.97-3.3 1.33-6.64 2.59-10.01 3.79-1.72.61-3.44 1.21-5.16 1.79-3.57 1.19-7.16 2.31-10.79 3.37h-.02c-3.74 1.09-7.5 2.09-11.32 3.03-.08.02-.15.03-.24.05-2.06.49-4.12.97-6.19 1.43-9.12 2.01-18.41 3.56-27.84 4.63-2.64.31-5.27.58-7.91.8-7.96.7-15.99 1.04-24.13 1.04h-.02v-.02c-153.75-.05-278.35-124.69-278.35-278.42 0-101.33 54.13-189.99 135.03-238.69 1.36-.82 2.71-1.62 4.08-2.4 2.72-1.58 5.48-3.11 8.25-4.61 1.4-.75 2.79-1.48 4.2-2.19h.02c2.99-1.55 6.02-3.03 9.09-4.46s6.16-2.81 9.27-4.13c3.22-1.36 6.47-2.67 9.75-3.91 1.72-.66 3.44-1.29 5.19-1.91 3.47-1.24 6.98-2.42 10.52-3.52h.02c3.71-1.16 7.45-2.25 11.23-3.25 1.89-.49 3.78-.99 5.68-1.45 2.01-.49 4.02-.95 6.02-1.4a301.3 301.3 0 0 1 12.18-2.4c3.28-.56 6.57-1.07 9.89-1.53 3.32-.46 6.64-.85 9.99-1.17 2.23-.22 4.48-.43 6.72-.6 7.06-.54 14.21-.82 21.42-.82h.02c153.7.07 278.29 124.71 278.29 278.44Zm-482.42-226.3-43.29 48.53a306.283 306.283 0 0 1 43.29-48.53Zm157.1-75.16v.29c-1.05.05-2.14.14-3.27.26 1.09-.19 2.18-.37 3.27-.54Zm85.88-1.24c-.71-.07-1.41-.1-2.09-.14v-.12c.7.07 1.4.15 2.09.26Zm25.74 4.59s-3.03-.77-7.38-1.7c2.47.46 4.92.95 7.37 1.48l.02.22Zm110.35 47.95c-.07-.05-.12-.07-.12-.07l.02-.02s.07.05.1.09Z\"/><path class=\"cls-1\" d=\"M750.85 468.38c0 108.22-61.75 202.04-151.95 248.07-4.44 2.26-8.93 4.42-13.51 6.45-1.55.7-3.1 1.36-4.66 2.02-1.58.68-3.18 1.33-4.78 1.97-3.3 1.33-6.64 2.59-10.01 3.79-1.72.61-3.44 1.21-5.16 1.79-3.57 1.19-7.16 2.31-10.79 3.37h-.02c-3.74 1.09-7.5 2.09-11.32 3.03-.08.02-.15.03-.24.05-2.06.49-4.12.97-6.19 1.43-9.12 2.01-18.41 3.56-27.84 4.63-2.64.31-5.27.58-7.91.8-7.96.7-15.99 1.04-24.13 1.04h-.02v-.02c-153.75-.05-278.35-124.69-278.35-278.42 0-101.33 54.13-189.99 135.03-238.69 1.36-.82 2.71-1.62 4.08-2.4 2.72-1.58 5.48-3.11 8.25-4.61 1.4-.75 2.79-1.48 4.2-2.19h.02c2.99-1.55 6.02-3.03 9.09-4.46s6.16-2.81 9.27-4.13c3.22-1.36 6.47-2.67 9.75-3.91 1.72-.66 3.44-1.29 5.19-1.91 3.47-1.24 6.98-2.42 10.52-3.52h.02c3.71-1.16 7.45-2.25 11.23-3.25 1.89-.49 3.78-.99 5.68-1.45 2.01-.49 4.02-.95 6.02-1.4a301.3 301.3 0 0 1 12.18-2.4c3.28-.56 6.57-1.07 9.89-1.53 3.32-.46 6.64-.85 9.99-1.17 2.23-.22 4.48-.43 6.72-.6 7.06-.54 14.21-.82 21.42-.82h.02c153.7.07 278.29 124.71 278.29 278.44Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cdh01g\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-100v2cy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14ysa32\",\"data-framer-name\":\"Swisscom - w\",fill:\"black\",intrinsicHeight:176,intrinsicWidth:452,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 451.5 175.7\" style=\"enable-background:new 0 0 451.5 175.7\" xml:space=\"preserve\"><path d=\"M284.6 77.6c-2-.8-5.1-1.5-7.6-1.5-2.9 0-5.2.8-5.2 3.4 0 6.2 16.1 2.4 16.1 15.2 0 8.7-7.1 12-15 12-3.7 0-7.3-.6-10.6-1.6l.6-7.6s5.2 1.8 9.6 1.8c3.1 0 5.6-.9 5.6-3.7 0-6.7-16.1-2.4-16.1-15.2 0-8 6.7-11.3 14.2-11.3 4.4 0 8 .8 10.1 1.6l-1.7 6.9zm-29.4 0c-2.1-.8-5.1-1.5-7.6-1.5-2.9 0-5.2.8-5.2 3.4 0 6.2 16.1 2.4 16.1 15.2 0 8.7-7.1 12-15 12-3.7 0-7.3-.6-10.8-1.6l.7-7.6s5.3 1.8 9.7 1.8c3 0 5.5-.9 5.5-3.7 0-6.7-16.1-2.4-16.1-15.2 0-8 6.8-11.3 14.2-11.3 4.4 0 8.1.8 10.2 1.6l-1.7 6.9zm148.4-8.5c7 0 11.1 3.8 11.1 12v24.8h-9.3V83c0-3.7-1.1-6.2-5-6.2-4 0-7.4 3.5-7.4 9.7v19.4h-9.1V83c0-3.5-1.1-6.2-5.1-6.2-4.2 0-7.4 3.8-7.4 10.1v19H362V69.8c6.2-.8 8.5 1.8 8.8 5.8 2.3-4 6.2-6.5 11.3-6.5 6.5 0 9.1 3.6 10 7 1.3-3.6 5.4-7 11.5-7zm-189.9.7c-2 10.7-7.2 27.6-10.5 36.1h-9.8l-6.9-24h-.1l-6.9 24h-9.8c-3.1-8.4-8.8-25.8-10.5-36.1h9.3l6.1 24.8h.1l7.3-24.8h9.3l7.1 24.6h.1l6.2-24.6h9zm-60 7.8c-2-.8-5.1-1.5-7.6-1.5-2.9 0-5.1.8-5.1 3.4 0 6.2 16 2.4 16 15.2 0 8.7-7.1 12-15 12-3.7 0-7.3-.6-10.6-1.6l.6-7.6s5.3 1.8 9.7 1.8c3.1 0 5.6-.9 5.6-3.7 0-6.7-16.1-2.4-16.1-15.2 0-8 6.7-11.3 14.2-11.3 4.4 0 7.9.8 10.1 1.6l-1.8 6.9zm185.1 29c-10.3 0-17.4-5.6-17.4-18.2 0-11.3 7.6-19.4 18.5-19.4 10.2 0 16.8 5.7 16.8 18 0 11.8-7.2 19.6-17.9 19.6zm.4-29.6c-4.2 0-8.1 3.1-8.1 11 0 6.9 2.6 10.7 8 10.7 4.6 0 8.1-3.7 8.1-11 0-7-2.5-10.7-8-10.7zm-121.3 28.9h9.3V69.8c-4.3-.4-9.3.8-9.3 7.6v28.5zm5.1-40.6c3.3 0 5.9-2.5 5.9-5.7 0-3.1-2.6-5.5-5.9-5.5-3 0-5.7 2.4-5.7 5.5 0 3.2 2.7 5.7 5.7 5.7zm86.4 41.2c-10.7 0-17.7-5.4-17.7-18.1 0-10.8 6-19.2 19.1-19.2 2.8 0 6.4.6 8.8 1.5l-2 7.6c-2.1-.8-4.2-1.3-6.5-1.3-6.7 0-9.5 4.4-9.5 11 0 6.4 2.5 10.7 9.1 10.7 3.1 0 5.2-.8 7.3-1.6l1.1 7.4c-1.8 1.1-5.6 2-9.7 2zM63.7 122.7c.3.9.7 1.9 1.1 2.9-9.2-5.2-13.4-12.1-13.4-17.6 0-3.1 1.1-5.6 2.3-7.5 4 4.3 6.6 8.7 7.5 13 .7 3.4 1.6 6.6 2.5 9.2zm17.7-57.4c5.6 3.8 12.5 8.4 17.9 13.1.3-1.7.5-3.8.5-6.4 0-13.6-8.5-21.7-16.9-24.5-2.2-.7-4.6-1.2-6.8-1.2-.9 0-1.8.1-2.6.2v13.4c2.2 1.6 4.9 3.4 7.9 5.4zM70.9 36.9c-.3-.1-.9-.1-1.5-.1-1 0-2.4.3-3.7.8-1 .4-2.1.9-2.9 1.6-.9.8-1.6 1.8-1.9 3.1-.1.3-.1.7-.1 1.1 0 5.2 5.5 10.5 10.1 14.3V36.9zM103 85.5c-1.3-1.3-2.7-2.7-4.2-4-8.7-7.7-21.9-15.5-27.9-20.2-5.2-4-10-8.6-11.6-12.9-.4.3-.7.5-1 .8-2.6 1.9-5.1 3.7-7.6 5.7-1.6 1.3-3.3 2.6-4.8 4.1-1.5 1.3-2.9 2.8-4.3 4.4-2.5 3-4.4 6.4-4.7 10.2v1.9c0 .7.1 1.3.3 2 .5 2.5 1.6 4.5 2.9 6.4 1.5 2.1 3.5 3.9 5.5 5.6.3.3.7.6 1 .9 2.3 2 4.7 4 7 6.2 3.2 3.1 6.2 6.6 8.3 10.9 1.8 4.1 2.4 8.4 3.7 12.7.1.5.3.9.4 1.4.2.7.5 1.3.7 2 .4 1 .9 2 1.5 2.8v-17.2c-3.8-2.9-2.9-8.9-5-12.8-3-5.4-13.1-7-11.4-14.8 1.1-5.3 8.4-4.4 11.2-8.2 1.4-1.8 1.8-4.1 2.8-6.2 1-2.3 2.7-3.7 5.2-4V139c1.9-.2 3.8-.4 5.8-.8 2.5-.5 5-1.1 7.5-1.9 2.1-.7 4.3-1.5 6.4-2.4 1.9-.8 3.7-1.7 5.5-2.8 2.3-1.3 4.5-2.8 6.4-4.5 2.3-1.9 4.3-4.1 5.9-6.5 1.7-2.5 3-5.3 3.8-8.4.4-1.7.7-3.4.8-5.2.1-2-.1-4-.6-5.9-.7-2.6-1.8-5-3.3-7.4-1.8-2.7-3.9-5.2-6.2-7.7\" style=\"fill:#fff\"/><path transform=\"rotate(90 225.737 87.857)\" style=\"fill:none\" d=\"M137.9-137.9h175.7v451.5H137.9z\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6u5fs4\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yh9k7g\",\"data-framer-name\":\"Total Energies - w-3\",fill:\"black\",intrinsicHeight:1264,intrinsicWidth:1600,svg:'<svg version=\"1.1\" id=\"svg8\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 1600 1264\" style=\"enable-background:new 0 0 1600 1264\" xml:space=\"preserve\"><style>.st0{fill:#fff}</style><g id=\"layer1\" transform=\"translate(179.413 96.428)\"><path id=\"path2847\" class=\"st0\" d=\"M683.4 160.5c-38.7 30.9-75.8 71.7-97.4 116.4-44.3 91.9-19.7 176.3-.8 231.1 25.8 74.6 78.2 112.3 140.6 139.8 89 39.2 200.8 41.9 302.3 15.6 35.8-9.2 91.4-28.5 103.5-46.4 13.1-19.4 15.2-57-13-73.4-27.5-16.1-30.2-3.8-112.1 14.4-57 12.7-119.3 14.9-194.1-17.4-47.2-20.4-79.1-51.6-90-94.3-31.3-122.5 36.3-168 49.5-176.3l-88.5-109.5z\"/><path id=\"path2847-3\" class=\"st0\" d=\"M776.6 304.8c-35.2-4.7-138.5-15.6-246.6-34.8-167.3-29.7-363.9-70.8-426.7-75.2-120.8-8.5-141 148.5-44.5 175.3 54.6 15.2 204.9-.8 241.5 71.4 11.1 22 40.6 104.8 73.9 207.4 13.1 40.2 119.4 33.9 99.6-51.8-11.3-48.9-37-181.1-37-181.1s305 32.3 329.8 34.5l10-145.7z\"/><path id=\"path2847-3-6\" class=\"st0\" d=\"M937.2 224.1c38.7 1 106.1 11 136.5 31.3l169.2 33.4c1.6-93.9-49.9-144.5-107.6-173.6C1091.5 93.1 1030 75.1 937.8 79c-88.2 3.8-181 23.1-254.9 82l88.4 109.6c41.6-26.3 94-48.5 165.9-46.5z\"/><path id=\"path2847-3-67\" class=\"st0\" d=\"M1071 253.6s8.9 5.7 12.8 9.2c18.4 16.8 24.5 37-31.4 46.2l44.2 136.8c100.6-27 145-86.3 146.3-158.9L1071 253.6z\"/><path id=\"path2847-3-0\" class=\"st0\" d=\"M1054 308.8c-49.6 8.2-145.7 13.5-278.2-4.1l-10 145.7c215.2 18.6 290.9 5.9 332.4-5.2L1054 308.8z\"/><g id=\"text3093\" transform=\"scale(1.01166 .98848)\"><path id=\"path3095\" class=\"st0\" d=\"M-3.2 844.9c0 2.6 2 4.6 4.4 4.6h40.1v109.7l26.4.1V849.5h40.1c2.4 0 4.4-2 4.4-4.6V828c0-2.6-2-4.6-4.4-4.6H1.2c-2.4 0-4.4 2-4.4 4.6v16.9z\"/><path id=\"path3097\" class=\"st0\" d=\"M90.9 909.1c0 28.9 23.7 51.4 53 51.4 29.5 0 53.2-22.5 53.2-51.4 0-29.1-23.7-52-53.2-52-29.4 0-53 22.9-53 52zm29.3-.2c0-13.6 10.2-24.9 23.7-24.9 13.6 0 23.9 11.2 23.9 24.9s-10.2 24.7-23.9 24.7c-13.5 0-23.7-11.1-23.7-24.7z\"/><path id=\"path3099\" class=\"st0\" d=\"M214.3 930.1c0 22.3 16.7 31.3 33.5 31.3 11.4 0 23.1-1.6 30.6-7.5 12.2-9.5 2-28.8-14.6-19.3-4.9 2.8-13 1.4-14.5.8-3.3-1.4-9.2-2.6-8.8-12.2v-42.1H265c18.8 0 18.6-24.3 0-24.3h-24.5v-33.2l-26.1-.1v33.3h-12.8v24.3h12.8v49z\"/><path id=\"path3101\" class=\"st0\" d=\"M288.3 908.7c0 31.5 23.5 51.8 48.7 51.8 13 0 26.6-5.6 31.3-13.2v13.4l24.2-.1V870c0-17.7-23.7-16.9-23.7-1-4.6-7.6-18.5-11.7-31.5-11.7-25.3-.2-49 19.7-49 51.4zm29.3.2c0-13.6 10.2-24.9 23.9-24.9 13.6 0 23.9 11.2 23.9 24.9 0 13.6-10.2 24.9-23.9 24.9s-23.9-11.3-23.9-24.9z\"/><path id=\"path3103\" class=\"st0\" d=\"M442.7 959.2V835.3c0-15.7-27.4-15.2-27.4 0v123.9h27.4z\"/><path id=\"path3105\" class=\"st0\" d=\"M466.5 821.8c-2.6 0-4.4 2-4.4 4.4v128.4c0 2.6 1.8 4.6 4.4 4.6h88.7l.1-27.7h-63.1v-26.3h49.5c2.6 0 4.4-2.2 4.4-4.6V883c0-2.6-1.8-4.6-4.4-4.6h-49.5v-28.9h57c2.6 0 4.6-2 4.6-4.6v-18.5c0-2.6-2-4.6-4.6-4.6h-82.7z\"/><path id=\"path3107\" class=\"st0\" d=\"M644.6 955.2c0 2.4 2.2 4 4.4 4h17.3c2.2 0 4.4-1.6 4.4-4V901c0-23.9-13.5-45.4-39.3-45.4-15.2 0-30 4.6-35.8 11.6 0-14.4-23-15-23-1.3v93.4l25.9.1v-55.1c0-34 46-28.6 46 0v50.9z\"/><path id=\"path3111\" class=\"st0\" d=\"M856.5 854.7c-14.3 0-26 8.7-31.4 17.3v-6.5c0-12.1-21.8-13.4-21.8.4v93l25.6.3v-47.4c0-14.3 9.4-30 19.4-31.7l10.4-1.7c16.5 0 13.8-23.7-2.2-23.7z\"/><path id=\"path3113\" class=\"st0\" d=\"M924.9 978.2c-13.2 0-25.9-.8-32.7-4.6-16.3-9.2-25.9 11.1-15.7 17 13.7 8.1 20.5 12.1 46.2 12.1 32.9 0 50.7-18.6 50.7-45.9v-90.9c0-12-22.8-13.4-22.8-1.5v6.2c-4.8-7.6-18.6-11.9-31.9-11.9-25.3 0-48.1 19.7-48.1 50.8 0 31.1 22.7 50.4 49.3 50.4 12.8 0 23.3-5.6 27.7-12.4v8.4c.1 12.9-7.3 22.3-22.7 22.3zm-25-68.8c0-13.6 10.2-24.3 23.7-24.3 13.6 0 23.9 10.6 23.9 24.3 0 13.8-10.2 24.3-23.9 24.3-13.4 0-23.7-10.4-23.7-24.3z\"/><path id=\"path3115\" class=\"st0\" d=\"M1008.1 845c8.5 0 15.6-7.5 15.6-16.2 0-9-7.1-16.4-15.6-16.4-8.7 0-15.8 7.5-15.8 16.4 0 8.7 7.1 16.2 15.8 16.2zm9.1 114.2c2.2 0 3.8-1.9 3.8-4.1v-84.2c0-17.8-26.2-17.8-26.2 0v84.2c0 2.2 1.8 4.1 4 4.1h18.4z\"/><path id=\"path3117\" class=\"st0\" d=\"M1089.1 855.4c-30.7 0-52.8 24.1-52.8 54s21.7 53 53.2 53c21.9 0 34.8-6.6 43-17.4 5-8.8-6.7-19.7-17.2-13.5-9.3 6.4-15.6 5.5-25.2 5.5-11.7 0-21.9-8.1-23.3-20.8h65.4c4.1 0 5.1-2.3 5.1-4.8v-5.6c0-25.9-16.7-50.4-48.2-50.4zm22.1 42.2h-43.8c2.9-11.2 11.9-18.1 21.9-18.1 9.6 0 19.2 5.8 21.9 18.1z\"/><path id=\"path3119\" class=\"st0\" d=\"M1190.6 854.6c-26.9 0-43.5 14.6-43.5 33.1 0 16.5 11 26.7 27.5 30l16.7 3.5c9.6 1.9 14.6 4 14.6 9 0 4.4-4.6 8.5-14 8.5-10 0-20.4-1.9-26.8-7.5-14.3-7.6-27 8.5-12.7 19.4 8.3 5.8 21.4 11.3 38.5 11.3 27.7 0 45.8-14.8 45.8-34.4 0-19-14.2-27.3-31.4-30.6l-16-3.1c-8.5-1.7-11.7-4.4-11.7-8.3 0-4.2 5.2-7.5 13.1-7.5 8.5 0 15.7.9 22 5.1 12.5 7.4 25.4-8.4 13.7-18.4-6.4-5.6-15.6-10.1-35.8-10.1z\"/><path id=\"path3117-5\" class=\"st0\" d=\"M739.2 855.4c-30.7 0-52.8 24.1-52.8 54s21.7 53 53.2 53c21.9 0 34.8-6.6 43-17.4 5-8.8-6.7-19.7-17.2-13.5-9.3 6.4-15.6 5.5-25.2 5.5-11.7 0-21.9-8.1-23.3-20.8h65.4c4.1 0 5.1-2.3 5.1-4.8v-5.6c-.1-25.9-16.7-50.4-48.2-50.4zm22.1 42.2h-43.8c2.9-11.2 11.9-18.1 21.9-18.1 9.6 0 19.2 5.8 21.9 18.1z\"/></g></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nnvntp\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vsn8me\",\"data-framer-name\":\"StadtWien Logo_DE_POS_RGB_WEB\",fill:\"black\",intrinsicHeight:114,intrinsicWidth:283,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 282.6 113.7\"><path d=\"M41.1 38.6V.3H0c0 13.3 1 26.3 2.9 38.3h38.2Zm0 12.1h-36c6.9 32.7 20.2 57.1 36 62.2V50.7Zm12.1-12.1V.3h41.1c0 13.3-1 26.2-2.9 38.3H53.2Zm0 12.1h36c-6.9 32.7-20.2 57.1-36 62.2V50.7Zm86.2 1c-2.4 0-4.7-.3-6.9-1s-4.4-1.7-6.6-3.1l1.3-8.4h.3c2.1 1.6 4.1 2.7 6.2 3.3 2.1.6 4 .9 5.7.9 5 0 7.5-1.9 7.5-5.6s-.4-2.5-1.1-3.5c-.7-1-2-2.1-3.8-3.1l-6-3.4c-3.5-1.9-5.9-4-7.4-6.2s-2.2-4.7-2.2-7.4c0-4.2 1.4-7.5 4.2-9.9 2.8-2.4 6.6-3.6 11.3-3.6s8.3 1.1 11.9 3.2l-1.3 8.1h-.3c-1.4-1-3-1.7-4.9-2.2-1.9-.5-3.6-.7-5.3-.7-4.4 0-6.6 1.7-6.6 5s.4 2.3 1.1 3.3c.8 1 2.2 2.1 4.4 3.3l5.3 2.9c3.3 1.8 5.8 3.8 7.3 6s2.3 4.8 2.3 7.8c0 4.5-1.5 8-4.5 10.6-3 2.5-7.1 3.8-12.1 3.8Zm30.2-1.2c-1.6-2.2-2.7-4.6-3.5-7.4-.8-2.8-1.2-6-1.2-9.5v-8.1h-5.7v-7.6h5.7V8.2h9v9.7h7.7l-1.3 7.6h-6.4v7.4c0 3.7.5 6.9 1.5 9.6 1 2.7 2.4 5.3 4.3 7.6v.5h-10Zm25.2.5c-3.2 0-5.7-.8-7.5-2.5-1.9-1.7-2.8-4-2.8-7.1s1.1-5.5 3.2-7.3c2.2-1.8 5.1-2.8 8.8-3.2l9.1-.9c0-1.8-.5-3.2-1.5-4.1-1-.9-2.8-1.4-5.4-1.4s-3.9.2-5.9.7c-2 .5-3.6 1-4.8 1.6h-.4l1.3-7.7c1.4-.6 3.1-1 5.1-1.5 2-.4 4.2-.6 6.4-.6 4.9 0 8.5 1.1 10.8 3.4 2.3 2.3 3.4 5.6 3.4 10v10.4c0 1.7.1 3.4.4 5 .2 1.6.6 3 1.2 4.2v.5h-8.5c-.3-.6-.5-1.5-.7-2.4-.2-1-.3-1.9-.4-2.7h-.4c-.8 1.6-2.3 2.9-4.3 4s-4.4 1.6-7.1 1.6Zm-1.1-10.2c0 1 .3 1.8.9 2.4.6.6 1.7 1 3.1 1 2.3 0 4.1-.7 5.6-2s2.2-3.1 2.2-5.2v-.8l-6.9.8c-1.7.2-3 .6-3.8 1.1-.8.6-1.2 1.5-1.2 2.7Zm53.1 9.7v-4.9h-.4c-1 1.8-2.4 3.2-4.3 4.2s-4 1.5-6.4 1.5-5.4-.7-7.6-2.1c-2.2-1.4-3.9-3.4-5.1-6-1.2-2.6-1.8-5.6-1.8-9s.6-6.4 1.8-9c1.2-2.6 2.9-4.5 5.1-6 2.2-1.4 4.7-2.1 7.6-2.1s4.2.4 6 1.3c1.8.9 3.2 2.1 4.2 3.6h.5V1.8h9.1v48.7h-8.7Zm-8.2-7.1c2.5 0 4.4-.9 5.9-2.6 1.5-1.7 2.2-4 2.2-6.7s-.7-5.1-2.2-6.7c-1.5-1.7-3.5-2.5-5.9-2.5s-4.5.8-5.9 2.5c-1.5 1.6-2.2 3.9-2.2 6.8s.7 5.1 2.2 6.7c1.4 1.7 3.4 2.5 5.9 2.5Zm32.1 7.1c-1.6-2.2-2.7-4.6-3.5-7.4-.8-2.8-1.2-6-1.2-9.5v-8.1h-5.7v-7.6h5.7V8.2h9v9.7h7.7l-1.3 7.6H275v7.4c0 3.7.5 6.9 1.5 9.6 1 2.7 2.4 5.3 4.3 7.6v.5h-10Zm-123.2 62.1h-11c-1.1-2.4-2.3-5.4-3.5-9-1.3-3.6-2.5-7.5-3.6-11.9-1.2-4.4-2.2-8.9-3.1-13.7-.9-4.7-1.5-9.4-1.8-14.1h9.9c.3 4.3.9 8.8 1.7 13.5.8 4.7 1.7 9.2 2.8 13.7 1.1 4.4 2.2 8.5 3.4 12.2h.5l9.9-33h7.3l9.9 33h.5c1.2-3.7 2.3-7.8 3.3-12.2 1-4.4 1.9-9 2.7-13.7.8-4.7 1.3-9.2 1.7-13.5h9.7c-.3 4.7-1 9.4-1.8 14.1-.9 4.7-1.9 9.3-3.1 13.7-1.2 4.4-2.4 8.3-3.6 11.9-1.3 3.6-2.4 6.6-3.5 9h-11l-8.2-27.4h-.5l-8.4 27.4Zm51.4-37.9c-1.7 0-3.1-.5-4.2-1.6s-1.6-2.4-1.6-4 .5-3 1.6-4 2.5-1.6 4.2-1.6 3.1.5 4.2 1.6c1.1 1 1.6 2.4 1.6 4s-.5 2.9-1.6 4-2.5 1.6-4.2 1.6Zm-4.5 37.9V79.9h9.1v32.7h-9.1Zm32.8.7c-3.6 0-6.6-.7-9.2-2.1-2.6-1.4-4.6-3.4-5.9-5.9-1.4-2.6-2.1-5.5-2.1-9s.7-6.7 2.2-9.3c1.5-2.6 3.5-4.6 6-5.9 2.6-1.4 5.5-2.1 8.7-2.1 4.8 0 8.5 1.5 11.2 4.4 2.7 2.9 4 7 4 12.2v2l-22.5 2.5c.6 2 1.7 3.4 3.2 4.2 1.6.8 3.5 1.2 5.7 1.2s4.2-.3 6.4-.8c2.1-.6 3.7-1.2 4.8-1.9h.5l-1.3 7.8c-1.2.6-2.9 1.2-5.1 1.8-2.2.5-4.4.8-6.7.8Zm-.5-26.9c-2 0-3.7.6-5 1.9-1.3 1.2-2.1 3.1-2.4 5.6l13.9-1.6c-.3-2-1-3.5-2.1-4.4-1.1-.9-2.6-1.4-4.3-1.4Zm21.8 26.2V79.9h8.2v5.5h.4c.8-1.9 2.2-3.4 4.1-4.6 1.9-1.1 4.1-1.7 6.6-1.7 3.8 0 6.8 1.3 9 3.8s3.3 6.1 3.3 10.6v19.1H271V94.7c0-5.1-2.1-7.7-6.3-7.7s-3.8.8-5.1 2.3c-1.3 1.5-1.9 3.5-1.9 6v17.3h-9.1Z\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-h3lbjw hidden-lr3eb8\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4o25vr\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:73,intrinsicWidth:73,pixelHeight:73,pixelWidth:73,src:\"https://framerusercontent.com/images/LdjdYz3X0pOIXNy7bOaZZlaFpI.svg\"},className:\"framer-h5vxct\",\"data-framer-name\":\"LGT - w\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yip8mo hidden-lr3eb8\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pswfk6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xw0x17\",\"data-framer-name\":\"Compeer - w\",fill:\"black\",intrinsicHeight:276,intrinsicWidth:652,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 652 276\"><path d=\"M107.8 118.9c-1.3 1-2 2.5-2 4.2v59.5h-9.9v-59.5c0-2.9-2.2-5.2-5-5.2s-5 2.3-5 5.2v59.5H75.4v-40.4c0-2.9-2.2-5.2-5-5.2s-5 2.3-5 5.2v40.4H54.9v-22.8c0-2.9-2.2-5.2-5-5.2s-5 2.3-5 5.2v22.8H31.2c-2.7 0-4.9 2.3-5 5.1v.3c.1 2.8 2.3 5.1 5 5.1h79.6c2.8 0 5-2.3 5-5.2v-62.1l40.1-30.6 38 30.5v62.2c0 2.9 2.4 5.2 5 5.2 3.7 0 5-4 5-6v-64c0-1.6-.7-3.2-2-4.1L159 84.5c-.9-.7-2-1.1-3.1-1.1s-2.1.3-3 1c.1 0-45.1 34.5-45.1 34.5Zm158.8-17.5c6.9 0 12 2.1 16.7 6.4.6.5.6 1.4.1 1.9l-5.4 5.6c-.5.5-1.2.5-1.7 0-2.6-2.3-5.9-3.5-9.3-3.5-7.8 0-13.6 6.5-13.6 14.3s5.8 14 13.6 14 6.8-1.2 9.3-3.3c.5-.4 1.4-.4 1.8.1l5.4 5.7c.5.5.4 1.4-.1 1.9-4.7 4.6-10.7 6.7-16.8 6.7-13.8 0-25-11-25-24.8s11.1-25 25-25m54.1 38.7c7.6 0 13.8-6.2 13.8-13.8s-6.2-13.9-13.8-13.9-13.8 6.3-13.8 13.9c0 7.6 6.3 13.8 13.8 13.8m0-38.7c13.8 0 24.9 11.1 24.9 25s-11.1 24.8-24.9 24.8-24.8-11-24.8-24.8c0-13.9 11-25 24.8-25m46 1.1c.1-.6.7-1.1 1.2-1.1h1.1c.3 0 1 .3 1.2.7l16.1 29.9h.1l16.1-29.9c.2-.4.8-.7 1.2-.7h1.1c.5 0 1.2.5 1.2 1.1l7.8 46.5c.1.9-.5 1.5-1.3 1.5h-8.2c-.6 0-1.2-.5-1.3-1.1l-3.1-21.4h-.1l-11.6 22.4c-.2.4-.8.8-1.2.8h-1.2c-.4 0-1-.3-1.2-.8L372.9 128h-.1l-3 21.4c-.1.6-.6 1.1-1.3 1.1h-8.2c-.8 0-1.5-.6-1.3-1.5l7.7-46.5Zm81.3 20.3c3 0 5.5-2.3 5.5-5.5s-2.5-5.1-5.5-5.1h-6.6v10.6h6.6Zm-17.3-19.4c0-.7.5-1.3 1.3-1.3h16.7c8.5 0 15.5 6.9 15.5 15.3s-7 15.6-15.4 15.6h-7.3v16.3c0 .7-.6 1.3-1.3 1.3H432c-.8 0-1.3-.6-1.3-1.3v-45.9Zm48.5 0c0-.7.6-1.3 1.3-1.3h28.6c.8 0 1.3.6 1.3 1.3v7.5c0 .7-.5 1.3-1.3 1.3H490v8.6h15.8c.7 0 1.3.6 1.3 1.3v7.5c0 .8-.6 1.3-1.3 1.3H490v9.3h19.2c.8 0 1.3.6 1.3 1.3v7.5c0 .7-.5 1.3-1.3 1.3h-28.6c-.8 0-1.3-.6-1.3-1.3v-45.6h-.1Zm48.5 0c0-.7.6-1.3 1.3-1.3h28.6c.8 0 1.3.6 1.3 1.3v7.5c0 .7-.5 1.3-1.3 1.3h-19.2v8.6h15.8c.7 0 1.3.6 1.3 1.3v7.5c0 .8-.6 1.3-1.3 1.3h-15.8v9.3h19.2c.8 0 1.3.6 1.3 1.3v7.5c0 .7-.5 1.3-1.3 1.3H529c-.8 0-1.3-.6-1.3-1.3v-45.6Zm69.6 19.4c2.8 0 5.3-2.6 5.3-5.5s-2.4-5.3-5.3-5.3H587v10.8h10.3Zm-21.1-19.4c0-.7.5-1.3 1.3-1.3h20.7c8.3 0 15.1 6.7 15.1 14.9s-4.2 11.5-10.2 13.9l9.5 17.6c.5.9 0 2-1.2 2h-9.2c-.6 0-1-.3-1.1-.6l-9.2-18.3H587v17.6c0 .7-.6 1.3-1.3 1.3h-8.2c-.8 0-1.3-.6-1.3-1.3v-45.8ZM243.3 164c0-.4.3-.8.8-.8h17c.5 0 .8.4.8.8v2.4c0 .4-.3.8-.8.8h-13.4v9.8H259c.4 0 .8.4.8.8v2.3c0 .4-.4.8-.8.8h-11.3v11.2c0 .4-.4.8-.8.8h-2.8c-.5 0-.8-.4-.8-.8V164Zm43.5 0c0-.4.4-.8.8-.8h2.8c.4 0 .8.4.8.8v28.1c0 .4-.4.8-.8.8h-2.8c-.4 0-.8-.4-.8-.8V164Zm32.1-.4c0-.4.4-.8.8-.8h1.1l18.4 21.3V164c0-.4.3-.8.8-.8h2.7c.4 0 .8.4.8.8v28.6c0 .4-.4.8-.8.8h-1.1l-18.4-21.9v20.7c0 .4-.3.8-.8.8h-2.7c-.4 0-.8-.4-.8-.8v-28.6Zm67.5 19.3-5.2-11.6h-.2l-5.2 11.6h10.6Zm-19.2 9 13-28.6c.1-.3.5-.5.7-.5h.4c.2 0 .6.2.7.5l12.9 28.6c.3.5-.1 1.1-.7 1.1h-2.7c-.5 0-.8-.3-1-.6l-2.6-5.8H374c-.8 2-1.7 3.9-2.6 5.8-.1.3-.5.6-1 .6h-2.7c-.4 0-.7-.6-.5-1.1Zm51.5-28.3c0-.4.4-.8.8-.8h1.1l18.4 21.3V164c0-.4.3-.8.8-.8h2.7c.4 0 .8.4.8.8v28.6c0 .4-.4.8-.8.8h-1.1L423 171.5v20.7c0 .4-.3.8-.8.8h-2.7c-.4 0-.8-.4-.8-.8v-28.6Zm65.6-.8c4.3 0 7.4 1.4 10.3 4 .4.3.4.8 0 1.2l-1.9 1.9c-.3.4-.7.4-1.1 0-2-1.7-4.7-2.8-7.3-2.8-6.1 0-10.7 5.1-10.7 11s4.6 11 10.7 11 5.3-1.2 7.3-2.8c.4-.3.8-.3 1 0l2 1.9c.3.3.3.8 0 1.1-2.9 2.8-6.5 4.1-10.3 4.1-8.5 0-15.3-6.7-15.3-15.2-.1-8.6 6.8-15.4 15.3-15.4m35.8 1.2c0-.4.4-.8.8-.8h2.8c.4 0 .8.4.8.8v28.1c0 .4-.4.8-.8.8h-2.8c-.4 0-.8-.4-.8-.8V164Zm47.3 18.9-5.2-11.6h-.2l-5.2 11.6h10.6Zm-19.2 9 13-28.6c0-.3.5-.5.7-.5h.4c.2 0 .6.2.7.5l13 28.6c.3.5 0 1.1-.7 1.1h-2.7c-.5 0-.8-.3-1-.6l-2.6-5.8h-13.9c-.8 2-1.7 3.9-2.6 5.8 0 .3-.5.6-1 .6h-2.7c-.5 0-.9-.6-.6-1.1Zm51.5-27.9c0-.4.3-.8.8-.8h2.8c.4 0 .8.4.8.8v25h11.5c.5 0 .8.4.8.8v2.3c0 .4-.3.8-.8.8h-15.1c-.5 0-.8-.4-.8-.8V164Zm21.5 1.1.7-3.9c0-.1 0-.2.3-.2 0 0 .2.1.2.2l1.2 2.8 1.2-2.8c0-.1.2-.2.2-.2s.2.1.3.2l.7 3.9c0 .2 0 .3-.3.3h-.4s-.2-.1-.3-.2l-.4-2.1-1 2.2c0 .1 0 .1-.2.1l-.2-.1-.9-2.2-.4 2.1c0 .1-.2.2-.3.2h-.3s-.2-.1-.2-.3m-2.5 0v-3.2h-.9s-.3-.1-.3-.3v-.3c0-.1 0-.3.3-.3h2.8c.2 0 .3.1.3.3v.3c0 .2 0 .3-.3.3h-.9v3.2c0 .1 0 .3-.3.3h-.4c-.2 0-.3-.1-.3-.3\" style=\"fill:#fff\"/></svg>',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-182r1ky hidden-lr3eb8\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ziqhru\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"TetraPak\"})}),className:\"framer-6ht3pq\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-lg8l5w hidden-lr3eb8\",\"data-border\":true,whileHover:animation4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10doj49\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/nDUK7WPlG5LImXXgWruPPZjCz1A.png\"},className:\"framer-52t9ub\",\"data-framer-name\":\"Implenia | c\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q0em1v\",\"data-framer-name\":\"Features\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y07vsr\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:65,pixelWidth:267,src:\"https://framerusercontent.com/images/BZtGik5OeYCeGMPLpjN5q4bHE.svg\"},className:\"framer-1ehkdt5\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tTiabLNor:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Traditional tools and human-only workflows are relics of the past. \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Ignite ideas \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"10x faster\"}),\" and achieve financial impact \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"6x quicker. \"})]})]})}},children:/*#__PURE__*/_jsx(RichTextWithHighlightColor31cgx0ag,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Traditional tools and human-only workflows are relics of the past. \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Ignite ideas \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"10x faster\"}),\" and achieve financial impact \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"6x quicker. \"})]})]}),className:\"framer-1cgx0ag\",fonts:[\"Inter-Bold\"],id:elementId1,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tx83rz\",\"data-framer-name\":\"Features-Overview\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19l589i\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kz3nwo-container\",nodeId:\"DSZBgYmak\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitBadge,{height:\"100%\",id:\"DSZBgYmak\",KvUUiyKUR:false,layoutId:\"DSZBgYmak\",loAxgB08g:\"New\",LyfG9WPrX:\"rgb(187, 145, 242)\",NqN_nLBRj:false,RKRIewHmu:\"Feature Highlights\",width:\"100%\",xIk8kOqJV:\"100px\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",children:[\"Innovate more effectively using \",/*#__PURE__*/_jsx(\"br\",{}),\"rready's AI-native platform\"]})}),className:\"framer-10qudwf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cdywf\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":yPZkCAVqv\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"gBYG4J2O3\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tTiabLNor:{background:{alt:\"\",fit:\"fill\",positionX:\"49.2%\",positionY:\"25.3%\"}}},children:/*#__PURE__*/_jsxs(motion.a,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\"},className:\"framer-cv6e8a framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:457,pixelWidth:800,sizes:\"365px\",src:\"https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp\",srcSet:\"https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp 800w\"}},tTiabLNor:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:457,pixelWidth:800,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 20px) / 3, 200px) + 8px)`,src:\"https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp\",srcSet:\"https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:457,pixelWidth:800,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 20px) / 3, 200px) + 5px)`,src:\"https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp\",srcSet:\"https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/47CxVkCIWP09SwmSqsZTPKPB8kE.webp 800w\"},className:\"framer-zs2wmd\",\"data-framer-name\":\"cuber_dough\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tlyvu7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-6rr0x7\",\"data-styles-preset\":\"pxyaDqgen\",children:\"AI-Inspiration for Innovation\"})}),className:\"framer-1clqbrk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"left\"},children:\"Automatically suggest ideas that align with your company's objectives and your users' expertise.\"})}),className:\"framer-g733de\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jbytau-container\",nodeId:\"PvQHDQGyW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitButton,{B3qPKukGP:\"rgb(0, 0, 0)\",height:\"100%\",id:\"PvQHDQGyW\",jakO2hDPw:0,jcBXvG4Jw:\"more\",KtPOKGgCU:false,layoutId:\"PvQHDQGyW\",UDEEY8z8V:\"rgb(255, 255, 255)\",variant:\"E_psgPtQj\",width:\"100%\",XhahqhK15:false})})})]})]})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":CBQdDcAWT\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"yEVbt7Pg8\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5guuyw framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-57l5wm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7dxnla\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-6rr0x7\",\"data-styles-preset\":\"pxyaDqgen\",children:\"Own Your AI\"})}),className:\"framer-14yw5p2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"left\"},children:\"Stay in control of your data and customize AI Capabilities to fit your specific needs.\"})}),className:\"framer-14cul5m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l15u8o-container\",nodeId:\"bYngZgdkt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitButton,{B3qPKukGP:\"rgb(0, 0, 0)\",height:\"100%\",id:\"bYngZgdkt\",jakO2hDPw:0,jcBXvG4Jw:\"more\",KtPOKGgCU:false,layoutId:\"bYngZgdkt\",UDEEY8z8V:\"rgb(255, 255, 255)\",variant:\"E_psgPtQj\",width:\"100%\",XhahqhK15:false})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rvhj6t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LM1DIV6M6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"LM1DIV6M6\",isForwardsDirection:true,layoutId:\"LM1DIV6M6\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/BGFNaRL6ePFZeJHFyPBLb3f2kM.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":ioasiEqtw\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"LdZquwZlz\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1uelb57 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16tx2js\",\"data-framer-name\":\"Asset\",children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:673},className:\"framer-f3f7wh\",\"data-framer-name\":\"Analytics_2x\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15afv91-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Mmc240rXm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"Mmc240rXm\",isForwardsDirection:true,layoutId:\"Mmc240rXm\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/yZ3ZZqEc5mMlTRtHpa3kAFjoQ.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7c7qjf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-6rr0x7\",\"data-styles-preset\":\"pxyaDqgen\",children:\"(Custom) Autonomous AI-Agents\"})}),className:\"framer-1xb3vjy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"left\"},children:\"Use personalized AI agents to reduce errors and speed up workflows.\"})})},tTiabLNor:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"left\"},children:\"Use personalized AI agents to reduce errors and speed up workflows.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"right\"},children:\"Use personalized AI agents to reduce errors and speed up workflows.\"})}),className:\"framer-1porqc7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f57p9e-container\",nodeId:\"qoYrAG7ed\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitButton,{B3qPKukGP:\"rgb(0, 0, 0)\",height:\"100%\",id:\"qoYrAG7ed\",jakO2hDPw:0,jcBXvG4Jw:\"more\",KtPOKGgCU:false,layoutId:\"qoYrAG7ed\",UDEEY8z8V:\"rgb(255, 255, 255)\",variant:\"E_psgPtQj\",width:\"100%\",XhahqhK15:false})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://events.teams.microsoft.com/event/6dcc9a11-83cc-4e76-9d5b-241201acbfb8@afa85032-99d9-444f-a4ae-4092b73c2437\",motionChild:true,nodeId:\"jH75DcSOi\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"top\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1100px), 200px)`,src:\"https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp\",srcSet:\"https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp 1200w\"}},tTiabLNor:{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,positionX:\"49.2%\",positionY:\"25.3%\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 20px) / 3, 200px)`,src:\"https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp\",srcSet:\"https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 20px) / 3, 200px)`,src:\"https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp\",srcSet:\"https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERMSz25w9fonf3NFgXNrUn8fw4.webp 1200w\"},className:\"framer-1a9he5o framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t67vuh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-6rr0x7\",\"data-styles-preset\":\"pxyaDqgen\",children:\"rready.AI  Webinar\"})}),className:\"framer-dpzops\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tTiabLNor:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-6rr0x7\",\"data-styles-preset\":\"pxyaDqgen\",style:{\"--framer-text-alignment\":\"left\"},children:[\"From Ideas to Impact: \",/*#__PURE__*/_jsx(\"br\",{}),\"How AI is Transforming \",/*#__PURE__*/_jsx(\"br\",{}),\"Corporate Innovation\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-dzfww1\",\"data-styles-preset\":\"zLSRjRJdP\",style:{\"--framer-text-alignment\":\"left\"},children:[\"From Ideas to Impact: \",/*#__PURE__*/_jsx(\"br\",{}),\"How AI is Transforming \",/*#__PURE__*/_jsx(\"br\",{}),\"Corporate Innovation\"]})}),className:\"framer-1bbrtza\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{className:\"framer-styles-preset-6rr0x7\",\"data-styles-preset\":\"pxyaDqgen\",start:\"14\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b5c62131-2bf3-4570-b96c-e35e5f51d105, rgb(165, 97, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b5c62131-2bf3-4570-b96c-e35e5f51d105, rgb(165, 97, 255))\"},children:\"April - 16:00 MESZ\"})})})}),className:\"framer-ocadgh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"left\"},children:\"Join us for a virtual session where we\u2019ll dive into how Artificial Intelligence is reshaping corporate innovation.\\xa0\"})}),className:\"framer-14w124a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w4652o-container\",nodeId:\"ZpV4abS7L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitButton,{B3qPKukGP:\"rgb(0, 0, 0)\",height:\"100%\",id:\"ZpV4abS7L\",jakO2hDPw:0,jcBXvG4Jw:\"register\",KtPOKGgCU:false,layoutId:\"ZpV4abS7L\",UDEEY8z8V:\"rgb(255, 255, 255)\",variant:\"E_psgPtQj\",width:\"100%\",XhahqhK15:false})})})]})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aq5xr3 hidden-lr3eb8\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vrm1p\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ln4if\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",whileHover:animation4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cif6l0\",\"data-framer-name\":\"Company\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:\"77px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4awqpf-container\",nodeId:\"rc6oQqsIN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitAvatar,{g3BmNHdcE:addImageAlt({src:\"https://framerusercontent.com/images/yd856GykdzaWtUnqbGSEuyyKQ.svg\",srcSet:\"https://framerusercontent.com/images/yd856GykdzaWtUnqbGSEuyyKQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yd856GykdzaWtUnqbGSEuyyKQ.svg 942w\"},\"\"),height:\"100%\",id:\"rc6oQqsIN\",ivZOwGdwT:\"rgba(119, 15, 255, 0)\",layoutId:\"rc6oQqsIN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",YAstwxyxv:\"20px\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tTiabLNor:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9333, 1400px) - 80px, 940px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:129,width:`calc(max((min(min(${componentViewport?.width||\"100vw\"} * 0.9333, 1400px) - 80px, 940px) - 10px) / 2, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vcnuo2-container\",nodeId:\"knoWnu0LH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitTestimonial,{aZfz0AQfb:true,h7AqQgq1z:\"Head of Idea Management BMW Group\",height:\"100%\",id:\"knoWnu0LH\",iZAZ10rUh:addImageAlt({src:\"https://framerusercontent.com/images/HbxTZ7lFMJ5pZVbNgOxC5M9FdQU.jpeg\",srcSet:\"https://framerusercontent.com/images/HbxTZ7lFMJ5pZVbNgOxC5M9FdQU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/HbxTZ7lFMJ5pZVbNgOxC5M9FdQU.jpeg 800w\"},\"\"),layoutId:\"knoWnu0LH\",nd5BScfGb:true,PghTz5_M4:\"rgba(119, 15, 255, 0)\",qCYBx5U9y:\"Dr. Ulrich Stephany\",style:{width:\"100%\"},variant:\"BgP7ByR8Z\",width:\"100%\",xlpW4k93J:'\"rready prevailed against numerous other providers, including established industry heavyweights. Particularly convincing was the AI expertise, which was reflected not only in a solid AI strategy, but also in the consistent implementation. Even for complex and changing requirements, rready manages to adopt our perspective, develop novel solutions, and implement them in a short time.\"'})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r84e80\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",whileHover:animation4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lmdmer\",\"data-framer-name\":\"Company\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jmx9yl\",\"data-framer-name\":\"Swisscom - w\",fill:\"black\",intrinsicHeight:176,intrinsicWidth:452,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 451.5 175.7\" style=\"enable-background:new 0 0 451.5 175.7\" xml:space=\"preserve\"><path d=\"M284.6 77.6c-2-.8-5.1-1.5-7.6-1.5-2.9 0-5.2.8-5.2 3.4 0 6.2 16.1 2.4 16.1 15.2 0 8.7-7.1 12-15 12-3.7 0-7.3-.6-10.6-1.6l.6-7.6s5.2 1.8 9.6 1.8c3.1 0 5.6-.9 5.6-3.7 0-6.7-16.1-2.4-16.1-15.2 0-8 6.7-11.3 14.2-11.3 4.4 0 8 .8 10.1 1.6l-1.7 6.9zm-29.4 0c-2.1-.8-5.1-1.5-7.6-1.5-2.9 0-5.2.8-5.2 3.4 0 6.2 16.1 2.4 16.1 15.2 0 8.7-7.1 12-15 12-3.7 0-7.3-.6-10.8-1.6l.7-7.6s5.3 1.8 9.7 1.8c3 0 5.5-.9 5.5-3.7 0-6.7-16.1-2.4-16.1-15.2 0-8 6.8-11.3 14.2-11.3 4.4 0 8.1.8 10.2 1.6l-1.7 6.9zm148.4-8.5c7 0 11.1 3.8 11.1 12v24.8h-9.3V83c0-3.7-1.1-6.2-5-6.2-4 0-7.4 3.5-7.4 9.7v19.4h-9.1V83c0-3.5-1.1-6.2-5.1-6.2-4.2 0-7.4 3.8-7.4 10.1v19H362V69.8c6.2-.8 8.5 1.8 8.8 5.8 2.3-4 6.2-6.5 11.3-6.5 6.5 0 9.1 3.6 10 7 1.3-3.6 5.4-7 11.5-7zm-189.9.7c-2 10.7-7.2 27.6-10.5 36.1h-9.8l-6.9-24h-.1l-6.9 24h-9.8c-3.1-8.4-8.8-25.8-10.5-36.1h9.3l6.1 24.8h.1l7.3-24.8h9.3l7.1 24.6h.1l6.2-24.6h9zm-60 7.8c-2-.8-5.1-1.5-7.6-1.5-2.9 0-5.1.8-5.1 3.4 0 6.2 16 2.4 16 15.2 0 8.7-7.1 12-15 12-3.7 0-7.3-.6-10.6-1.6l.6-7.6s5.3 1.8 9.7 1.8c3.1 0 5.6-.9 5.6-3.7 0-6.7-16.1-2.4-16.1-15.2 0-8 6.7-11.3 14.2-11.3 4.4 0 7.9.8 10.1 1.6l-1.8 6.9zm185.1 29c-10.3 0-17.4-5.6-17.4-18.2 0-11.3 7.6-19.4 18.5-19.4 10.2 0 16.8 5.7 16.8 18 0 11.8-7.2 19.6-17.9 19.6zm.4-29.6c-4.2 0-8.1 3.1-8.1 11 0 6.9 2.6 10.7 8 10.7 4.6 0 8.1-3.7 8.1-11 0-7-2.5-10.7-8-10.7zm-121.3 28.9h9.3V69.8c-4.3-.4-9.3.8-9.3 7.6v28.5zm5.1-40.6c3.3 0 5.9-2.5 5.9-5.7 0-3.1-2.6-5.5-5.9-5.5-3 0-5.7 2.4-5.7 5.5 0 3.2 2.7 5.7 5.7 5.7zm86.4 41.2c-10.7 0-17.7-5.4-17.7-18.1 0-10.8 6-19.2 19.1-19.2 2.8 0 6.4.6 8.8 1.5l-2 7.6c-2.1-.8-4.2-1.3-6.5-1.3-6.7 0-9.5 4.4-9.5 11 0 6.4 2.5 10.7 9.1 10.7 3.1 0 5.2-.8 7.3-1.6l1.1 7.4c-1.8 1.1-5.6 2-9.7 2zM63.7 122.7c.3.9.7 1.9 1.1 2.9-9.2-5.2-13.4-12.1-13.4-17.6 0-3.1 1.1-5.6 2.3-7.5 4 4.3 6.6 8.7 7.5 13 .7 3.4 1.6 6.6 2.5 9.2zm17.7-57.4c5.6 3.8 12.5 8.4 17.9 13.1.3-1.7.5-3.8.5-6.4 0-13.6-8.5-21.7-16.9-24.5-2.2-.7-4.6-1.2-6.8-1.2-.9 0-1.8.1-2.6.2v13.4c2.2 1.6 4.9 3.4 7.9 5.4zM70.9 36.9c-.3-.1-.9-.1-1.5-.1-1 0-2.4.3-3.7.8-1 .4-2.1.9-2.9 1.6-.9.8-1.6 1.8-1.9 3.1-.1.3-.1.7-.1 1.1 0 5.2 5.5 10.5 10.1 14.3V36.9zM103 85.5c-1.3-1.3-2.7-2.7-4.2-4-8.7-7.7-21.9-15.5-27.9-20.2-5.2-4-10-8.6-11.6-12.9-.4.3-.7.5-1 .8-2.6 1.9-5.1 3.7-7.6 5.7-1.6 1.3-3.3 2.6-4.8 4.1-1.5 1.3-2.9 2.8-4.3 4.4-2.5 3-4.4 6.4-4.7 10.2v1.9c0 .7.1 1.3.3 2 .5 2.5 1.6 4.5 2.9 6.4 1.5 2.1 3.5 3.9 5.5 5.6.3.3.7.6 1 .9 2.3 2 4.7 4 7 6.2 3.2 3.1 6.2 6.6 8.3 10.9 1.8 4.1 2.4 8.4 3.7 12.7.1.5.3.9.4 1.4.2.7.5 1.3.7 2 .4 1 .9 2 1.5 2.8v-17.2c-3.8-2.9-2.9-8.9-5-12.8-3-5.4-13.1-7-11.4-14.8 1.1-5.3 8.4-4.4 11.2-8.2 1.4-1.8 1.8-4.1 2.8-6.2 1-2.3 2.7-3.7 5.2-4V139c1.9-.2 3.8-.4 5.8-.8 2.5-.5 5-1.1 7.5-1.9 2.1-.7 4.3-1.5 6.4-2.4 1.9-.8 3.7-1.7 5.5-2.8 2.3-1.3 4.5-2.8 6.4-4.5 2.3-1.9 4.3-4.1 5.9-6.5 1.7-2.5 3-5.3 3.8-8.4.4-1.7.7-3.4.8-5.2.1-2-.1-4-.6-5.9-.7-2.6-1.8-5-3.3-7.4-1.8-2.7-3.9-5.2-6.2-7.7\" style=\"fill:#fff\"/><path transform=\"rotate(90 225.737 87.857)\" style=\"fill:none\" d=\"M137.9-137.9h175.7v451.5H137.9z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tTiabLNor:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.9333, 1400px) - 80px, 940px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:129,width:`calc(max((min(min(${componentViewport?.width||\"100vw\"} * 0.9333, 1400px) - 80px, 940px) - 10px) / 2, 1px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ib771u-container\",nodeId:\"dG9pdIcIx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitTestimonial,{aZfz0AQfb:true,h7AqQgq1z:\" Lean Management, Swisscom\",height:\"100%\",id:\"dG9pdIcIx\",iZAZ10rUh:addImageAlt({src:\"https://framerusercontent.com/images/kcYjmLDsTs7uhG7HLx6HvoFhV0.jpeg\"},\"\"),layoutId:\"dG9pdIcIx\",nd5BScfGb:true,PghTz5_M4:\"rgba(119, 15, 255, 0)\",qCYBx5U9y:\"Andr\\xe9 Wermelinger\",style:{width:\"100%\"},variant:\"BgP7ByR8Z\",width:\"100%\",xlpW4k93J:'\"rready moves at an incredible pace, delivering AI-driven solutions that aren\\'t just about features but about real business impact.\"'})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q8iss1\",\"data-framer-name\":\"Own Your Idea\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10obl3b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4yab5d\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ci4dww\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"47px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yr1dxp-container\",nodeId:\"zRzlyRpHH\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(AIKitIconBig,{height:\"100%\",id:\"zRzlyRpHH\",JYO7LY24l:\"light\",layoutId:\"zRzlyRpHH\",oxZK0Y5s9:\"rgb(121, 16, 255)\",style:{height:\"100%\",width:\"100%\"},ThQhAY3Qq:true,TnbqA6t53:0,variant:\"zsGS6Ybf2\",width:\"100%\",YP2YspfUd:\"Sparkle\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",style:{\"--framer-text-alignment\":\"left\"},children:\"Own Your AI\"})}),className:\"framer-uz5crw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Seamlessly integrate your own AI models\"})}),className:\"framer-114kwzk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"With Build Your Own (BYO) AI, your data, strategy, and IP stay where they belong - under your control. No blackboxes, no guesswork.\\xa0In just a few clicks, enterprises can power their AI features with their own models or leading providers like OpenAI, Azure OpenAI, Gemini, Claude, and DeepSeek.\"})}),className:\"framer-2fyxlb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1brjnld\",\"data-border\":true,\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kcckuo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JhQLUWcuO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"JhQLUWcuO\",isForwardsDirection:true,layoutId:\"JhQLUWcuO\",loop:true,pauseOnCanvas:false,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/BGFNaRL6ePFZeJHFyPBLb3f2kM.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gvc67e\",\"data-framer-name\":\"AI-Agents That Execute\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1597xlh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lw4xg7\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hdclgb\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"47px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19y7q56-container\",nodeId:\"qpq1gMk06\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(AIKitIconBig,{height:\"100%\",id:\"qpq1gMk06\",JYO7LY24l:\"light\",layoutId:\"qpq1gMk06\",oxZK0Y5s9:\"rgb(121, 16, 255)\",style:{height:\"100%\",width:\"100%\"},ThQhAY3Qq:true,TnbqA6t53:0,variant:\"zsGS6Ybf2\",width:\"100%\",YP2YspfUd:\"ShareNetwork\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI-Agents That Execute \"})}),className:\"framer-145e22f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Leverage our proven agents or tailor custom ones to accelerate innovation.\\xa0\"})}),className:\"framer-m0cl3w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",children:\"Forget simple recommendations: Designed to supercharge innovation and streamline operations, our autonomous agents don\u2019t just assist; they can perform tasks and execute ideas.\\xa0Choose from our tested AI Agents, trusted by dozens of companies, or build your own -\\xa0 customized to interact seamlessly with your data, pages, and workflows.\\xa0Accelerate your path from idea to impact and sharpen your innovation focus.\"})}),className:\"framer-10z6xkx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ktift\",\"data-border\":true,\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uk7ho1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jdS61DCvv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"jdS61DCvv\",isForwardsDirection:true,layoutId:\"jdS61DCvv\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/yZ3ZZqEc5mMlTRtHpa3kAFjoQ.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ixmi0m\",\"data-framer-name\":\"Automated Duplicate & Similarity Search\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kn035z\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vwsj8g\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhg7xs\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"47px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2e390a-container\",nodeId:\"mzgAaZ6CK\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(AIKitIconBig,{height:\"100%\",id:\"mzgAaZ6CK\",JYO7LY24l:\"light\",layoutId:\"mzgAaZ6CK\",oxZK0Y5s9:\"rgb(121, 16, 255)\",style:{height:\"100%\",width:\"100%\"},ThQhAY3Qq:true,TnbqA6t53:0,variant:\"zsGS6Ybf2\",width:\"100%\",YP2YspfUd:\"MagnifyingGlass\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Automated Duplicate & \",/*#__PURE__*/_jsx(\"br\",{}),\"Similarity Search \"]})}),className:\"framer-1jnnz83\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The system scans for similar ideas, flags duplicates, and explains the matching rationale.\"})}),className:\"framer-13ga6xj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",children:\"This process eliminates redundancy, streamlines innovation workflows, and empowers your team to focus on unique ideas for maximum financial impact.\"})}),className:\"framer-1hrzko9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r3cf0b\",\"data-border\":true,\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iw8gg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Urt69ICzf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"Urt69ICzf\",isForwardsDirection:true,layoutId:\"Urt69ICzf\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/WRjD7Vf8rg6eBYDr3zCXjSqT1ig.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fgkw4b\",\"data-framer-name\":\"AI-Generated Innovation Fuel\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1idcabb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iajshy\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18b72xv\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"47px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cs4w20-container\",nodeId:\"peXb8s1Is\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(AIKitIconBig,{height:\"100%\",id:\"peXb8s1Is\",JYO7LY24l:\"light\",layoutId:\"peXb8s1Is\",oxZK0Y5s9:\"rgb(121, 16, 255)\",style:{height:\"100%\",width:\"100%\"},ThQhAY3Qq:true,TnbqA6t53:0,variant:\"zsGS6Ybf2\",width:\"100%\",YP2YspfUd:\"MagicWand\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI-Generated Innovation Fuel \"})}),className:\"framer-1vatast\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let our system auto-suggest ideas aligned t\\uFEFFo\\xa0company goals and team strengths.\"})}),className:\"framer-zekq14\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",children:\"Turn experience, company knowledge, and vision into actionable ideas - in no time. With just a few clicks, our intelligent system generates strategic proposals and delivers them directly to your team\u2019s inboxes. Need refinements? AI Agents adapt and enhance suggestions in real time.\"})}),className:\"framer-1uj9px9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1utjmsz\",\"data-framer-name\":\"COMING SOON\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:\"Coming Soon\"})}),className:\"framer-1lpc3an\",fonts:[\"FR;InterDisplay-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fzk7y5\",\"data-border\":true,\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ieaq3f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aPFQlUQr0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"aPFQlUQr0\",isForwardsDirection:true,layoutId:\"aPFQlUQr0\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/6ezPwm6E0bY4j2wwTykDZKLmTg4.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7dspvh\",\"data-framer-name\":\"Universal Language Access\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g66wnl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dogp1o\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ndc2c\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,width:\"47px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nk0iav-container\",nodeId:\"wY0pevl6c\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{scale:.8},children:/*#__PURE__*/_jsx(AIKitIconBig,{height:\"100%\",id:\"wY0pevl6c\",JYO7LY24l:\"light\",layoutId:\"wY0pevl6c\",oxZK0Y5s9:\"rgb(121, 16, 255)\",style:{height:\"100%\",width:\"100%\"},ThQhAY3Qq:true,TnbqA6t53:0,variant:\"zsGS6Ybf2\",width:\"100%\",YP2YspfUd:\"Translate\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",style:{\"--framer-text-alignment\":\"left\"},children:\"Universal Language Access \"})}),className:\"framer-1qo5mz1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Instantly identify any idea, topic, or innovator - regardless of language or phrasing used.\"})}),className:\"framer-1i9xq2f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",children:\"Language agnostic search makes ideas from around the world, instantly accessible. This fuels global collaboration and ensures that diverse insights drive innovation for\\xa0\u200Bricher,\\xa0\u200Bmore\\xa0\u200Bimpactful\\xa0\u200Boutcomes.\"})}),className:\"framer-1rvqxzv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ljb2nr\",\"data-border\":true,\"data-framer-name\":\"Form\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18zkwrr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZkDhR3_VD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"ZkDhR3_VD\",isForwardsDirection:true,layoutId:\"ZkDhR3_VD\",loop:true,pauseOnCanvas:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/92fvVsPrIuUU52XuUFPzGeEVQm8.json\",srcType:\"Upload\",srcUrl:\"https://misc.framerstatic.com/lottie/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{\"data-framer-name\":\"Phone\"},tTiabLNor:{\"data-framer-name\":\"Tablet\"}},children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-1id8c48\",\"data-framer-name\":\"CTA - request Demo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{background:{alt:\"\",fit:\"fill\",pixelHeight:1969,pixelWidth:3500,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1280px)`,src:\"https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png\",srcSet:\"https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png 3500w\"}},tTiabLNor:{background:{alt:\"\",fit:\"fill\",pixelHeight:1969,pixelWidth:3500,sizes:`min(${componentViewport?.width||\"100vw\"} - 64px, 1280px)`,src:\"https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png\",srcSet:\"https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png 3500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1969,pixelWidth:3500,sizes:`min(${componentViewport?.width||\"100vw\"} - 96px, 1280px)`,src:\"https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png\",srcSet:\"https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/CJL7VOH2mU7xjKiXFH2OzTle6I8.png 3500w\"},className:\"framer-1mddjqg\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1tckhh3\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13o554h\",\"data-framer-name\":\"Text Wrapper\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-165hbor\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z7whBh9Bj\"},implicitPathVariables:undefined},{href:{webPageId:\"z7whBh9Bj\"},implicitPathVariables:undefined},{href:{webPageId:\"z7whBh9Bj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s9ebq-container\",nodeId:\"CACiNSjBU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{QxXFL7NXK:resolvedLinks[2]},tTiabLNor:{QxXFL7NXK:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonFill,{height:\"100%\",HV2vodukn:false,Ib5NOdRzj:\"Request Demo\",id:\"CACiNSjBU\",K2kXRy0i5:\"Stack\",layoutId:\"CACiNSjBU\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks[0],Rm6FkTkB9:\"huKelqLrH\",variant:\"DkCdWSvAH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://rready.com?utm_source=rready.ai&utm_medium=referral&utm_campaign=about_rready\",motionChild:true,nodeId:\"quHP8Q9nh\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-lkkyzr framer-lux5qc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZvdW5kZXJzIEdyb3Rlc2sgUmVndWxhcg==\",\"--framer-font-family\":'\"Founders Grotesk Regular\", \"Founders Grotesk Regular Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"About rready\"})}),className:\"framer-10pf02x\",fonts:[\"CUSTOM;Founders Grotesk Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6zphhg\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24\" viewBox=\"0 -960 960 960\" width=\"24\" fill=\"#FFF\"><path d=\"m560-240-56-58 142-142H160v-80h486L504-662l56-58 240 240-240 240Z\"/></svg>',withExternalLayout:true})]})})]})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16nw3bj\",\"data-framer-name\":\"Smart Agentic Innovation\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wu2j40\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vrg2br-container\",nodeId:\"B_XPo0tMu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitBadge,{height:\"100%\",id:\"B_XPo0tMu\",KvUUiyKUR:false,layoutId:\"B_XPo0tMu\",loAxgB08g:\"New\",LyfG9WPrX:\"var(--token-6ee39359-b4dc-42f1-93d9-495015475b07, rgb(140, 69, 255))\",NqN_nLBRj:false,RKRIewHmu:\"Whats Next?\",width:\"100%\",xIk8kOqJV:\"100px\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oj3tnu\",\"data-styles-preset\":\"nmhD1gwBv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Smart Agentic Innovation\"})}),className:\"framer-fta0md\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",children:\"This is only the beginning. We're shaping the future with our enterprise customers by focusing on two key directions.\"})}),className:\"framer-1xtfbao\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bun3pi\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flyfxi\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1958a9w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dzfww1\",\"data-styles-preset\":\"zLSRjRJdP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vertical AI's will open-up\"})}),className:\"framer-1qwp40a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"center\"},children:\"Enterprise AI is evolving. Major platforms are set to expose APIs, transforming isolated systems into interconnected engines of innovation. Only imagine how powerful the data insights are becoming once companies can leverage data from ERP-, CRM-systems, and other data pools like Communitcation channels.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"center\"},children:\"We harness this wave by integrating diverse AI capabilities to uncover actionable insights and surface hidden opportunities\u2014bridging the gap between siloed systems and real innovation.\"})]}),className:\"framer-vt41fj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"}},tTiabLNor:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1100px)`,src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"},className:\"framer-1wtvp0g\",\"data-framer-name\":\"Stars\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ji8xqa\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x42sr9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dzfww1\",\"data-styles-preset\":\"zLSRjRJdP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Problem-Mining\"})}),className:\"framer-os6kp9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"center\"},children:\"Enterprises will actively collect challenges, inefficiencies, and opportunities across every corner of the organization. Instead of relying solely on innovation teams, AI will mine insights from operations, customer feedback, and employee input to automatically detect bottlenecks and spark new ideas.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1udj698\",\"data-styles-preset\":\"bNWIfpA4K\",style:{\"--framer-text-alignment\":\"center\"},children:\"We serve as the intelligence layer atop these insights - connecting problem-sourcing with real innovation execution. By integrating data from across the enterprise, rready empowers businesses to swiftly transform identified issues into tangible breakthroughs.\"})]}),className:\"framer-niemp3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1100px)`,src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"}},tTiabLNor:{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1100px)`,src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1100px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"},className:\"framer-1mu1too\",\"data-framer-name\":\"Stars\"})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-82kcsu\",\"data-framer-name\":\"rready.AI Webinar\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsx(Link,{href:\"https://events.teams.microsoft.com/event/6dcc9a11-83cc-4e76-9d5b-241201acbfb8@afa85032-99d9-444f-a4ae-4092b73c2437\",motionChild:true,nodeId:\"qrzrMShO0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:500,pixelWidth:1200,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1300px)`,src:\"https://framerusercontent.com/images/ppFvhT9NEdx73ST8b9yTOQy0Y.webp\",srcSet:\"https://framerusercontent.com/images/ppFvhT9NEdx73ST8b9yTOQy0Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ppFvhT9NEdx73ST8b9yTOQy0Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ppFvhT9NEdx73ST8b9yTOQy0Y.webp 1200w\"},className:\"framer-1difdhj framer-lux5qc\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159jdm5\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ofvxud\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:1e3,pixelWidth:1200,sizes:\"300px\",src:\"https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp\",srcSet:\"https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp 1200w\"}},tTiabLNor:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:1e3,pixelWidth:1200,src:\"https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp\",srcSet:\"https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1327.5,intrinsicWidth:1311,pixelHeight:1e3,pixelWidth:1200,sizes:\"450px\",src:\"https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp\",srcSet:\"https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CKrrtMh6QtgQLociZbCwIsB43W4.webp 1200w\"},className:\"framer-13ksgvo\",\"data-framer-name\":\"cuber_dough\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sf0qkq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dzfww1\",\"data-styles-preset\":\"zLSRjRJdP\",style:{\"--framer-text-alignment\":\"center\"},children:\"rready.AI Webinar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-dzfww1\",\"data-styles-preset\":\"zLSRjRJdP\",style:{\"--framer-text-alignment\":\"left\"},children:\"rready.AI Webinar\"})}),className:\"framer-19bw2s1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",style:{\"--framer-text-alignment\":\"center\"},children:\"From Ideas to Impact: How AI is Transforming Corporate Innovation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1bgdkwt\",\"data-styles-preset\":\"g94j1NQXp\",style:{\"--framer-text-alignment\":\"left\"},children:\"From Ideas to Impact: How AI is Transforming Corporate Innovation\"})}),className:\"framer-uv5urs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join us for a virtual session where we\u2019ll dive into how Artificial Intelligence is reshaping corporate innovation. Discover how AI is enhancing our products, explore the latest community-driven advancements, and get insights into our newest feature releases. Don't miss this opportunity to see AI in action and learn how it can drive innovation in your organization!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"left\"},children:\"Join us for a virtual session where we\u2019ll dive into how Artificial Intelligence is reshaping corporate innovation. Discover how AI is enhancing our products, explore the latest community-driven advancements, and get insights into our newest feature releases. Don't miss this opportunity to see AI in action and learn how it can drive innovation in your organization!\"})}),className:\"framer-13vv5gy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bf2t76-container\",nodeId:\"pYY30gph1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AIKitButton,{B3qPKukGP:\"rgb(0, 0, 0)\",height:\"100%\",id:\"pYY30gph1\",jakO2hDPw:0,jcBXvG4Jw:\"register\",KtPOKGgCU:false,layoutId:\"pYY30gph1\",UDEEY8z8V:\"rgb(255, 255, 255)\",variant:\"E_psgPtQj\",width:\"100%\",XhahqhK15:false})})})]})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yz3bjr\",\"data-framer-name\":\"Endcard\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4xf5li\",\"data-framer-name\":\"Hero\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",pixelHeight:600,pixelWidth:800,positionX:\"left\",positionY:\"top\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px, 1300px)`,src:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png\",srcSet:\"https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png?scale-down-to=512 512w,https://framerusercontent.com/images/J9PD0z8SzMHT2KxXQClbD5Q7PU.png 800w\"},className:\"framer-bnt63x hidden-162mg2v hidden-lr3eb8\",\"data-framer-name\":\"Stars\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bm85in\",\"data-framer-name\":\"Gradient\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-am49rg\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7g9fu5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:65,pixelWidth:267,src:\"https://framerusercontent.com/images/BZtGik5OeYCeGMPLpjN5q4bHE.svg\"},className:\"framer-1bezcry\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ylt9gk\",\"data-styles-preset\":\"GgzepgGuj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to lead the AI revolution?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ylt9gk\",\"data-styles-preset\":\"GgzepgGuj\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to lead the AI revolution?\"})}),className:\"framer-zhzmpa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sign up for a personal Demo presentation and become a pioneer in AI in innovation.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jgi725\",\"data-styles-preset\":\"IOy3OP8Hi\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sign up for a personal Demo presentation and become a pioneer in AI in innovation.\"})}),className:\"framer-1l73pif\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z7whBh9Bj\"},implicitPathVariables:undefined},{href:{webPageId:\"z7whBh9Bj\"},implicitPathVariables:undefined},{href:{webPageId:\"z7whBh9Bj\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8jp6ks-container\",nodeId:\"w3hG1inHl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{QxXFL7NXK:resolvedLinks1[2]},tTiabLNor:{QxXFL7NXK:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonFill,{height:\"100%\",HV2vodukn:false,Ib5NOdRzj:\"Request Demo\",id:\"w3hG1inHl\",K2kXRy0i5:\"Stack\",layoutId:\"w3hG1inHl\",qwETbrwWM:\"fill\",QxXFL7NXK:resolvedLinks1[0],Rm6FkTkB9:\"huKelqLrH\",variant:\"DkCdWSvAH\",width:\"100%\"})})})})})]})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1876ohp-container\",nodeId:\"KHr5mcoS3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ITQFdwOHH:{variant:\"tUvkmI9Gi\"},tTiabLNor:{variant:\"uTNfS1Yym\"}},children:/*#__PURE__*/_jsx(AIKitFooterSimple,{height:\"100%\",id:\"KHr5mcoS3\",layoutId:\"KHr5mcoS3\",style:{width:\"100%\"},variant:\"hXTxrSyYY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhrfiw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ml4Hka1Eq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Privacy Policy\",link:\"https://www.rready.com/privacy-policy\",prefix:\"Read our\"},euShowReject:true,euTitle:\"Cookie Settings\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-TJRTFSG\",height:\"100%\",id:\"Ml4Hka1Eq\",layoutId:\"Ml4Hka1Eq\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"\",textFont:{},type:\"text\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2DoAT.framer-lux5qc, .framer-2DoAT .framer-lux5qc { display: block; }\",\".framer-2DoAT.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-2DoAT .framer-46bmxe-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",'.framer-2DoAT .framer-acwe03 { align-content: center; align-items: center; background: radial-gradient(60% 88% at 50% 64.2%, var(--token-b5c62131-2bf3-4570-b96c-e35e5f51d105, #d438ff) /* {\"name\":\"Pink\"} */ 0%, var(--token-6ee39359-b4dc-42f1-93d9-495015475b07, rgb(140, 69, 255)) /* {\"name\":\"Purple\"} */ 39.99155405405405%, var(--token-123b0380-d5c1-475a-b484-6e62cac5babe, rgb(25, 13, 46)) /* {\"name\":\"Purple Dark 3\"} */ 84.93278434684684%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1600px; min-height: 700px; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }',\".framer-2DoAT .framer-mjz4a8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2DoAT .framer-8bvkdb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-2DoAT .framer-1d1tp3w-container, .framer-2DoAT .framer-79jyak-container, .framer-2DoAT .framer-1kz3nwo-container, .framer-2DoAT .framer-jbytau-container, .framer-2DoAT .framer-l15u8o-container, .framer-2DoAT .framer-1f57p9e-container, .framer-2DoAT .framer-1w4652o-container, .framer-2DoAT .framer-1s9ebq-container, .framer-2DoAT .framer-1vrg2br-container, .framer-2DoAT .framer-bf2t76-container, .framer-2DoAT .framer-8jp6ks-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2DoAT .framer-1v3qvq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1bjqnhj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-414jku, .framer-2DoAT .framer-3frapo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2DoAT .framer-ovglx3, .framer-2DoAT .framer-1bo3jg5, .framer-2DoAT .framer-6wfl1a, .framer-2DoAT .framer-4k3izs, .framer-2DoAT .framer-r0z6k5 { 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 12px 0px 0px; position: relative; width: min-content; }\",\".framer-2DoAT .framer-1xkohig, .framer-2DoAT .framer-vtmvlz, .framer-2DoAT .framer-1u6ll25, .framer-2DoAT .framer-84d1wj, .framer-2DoAT .framer-ytzmus, .framer-2DoAT .framer-l50lai, .framer-2DoAT .framer-1vjpjrf, .framer-2DoAT .framer-1n9u3ql, .framer-2DoAT .framer-1eq9g0e, .framer-2DoAT .framer-1tqxtpm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-2DoAT .framer-1btyhzu, .framer-2DoAT .framer-1h0ftuc, .framer-2DoAT .framer-t8qho, .framer-2DoAT .framer-1w98o34, .framer-2DoAT .framer-sws3sz { 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 10px 0px 0px; position: relative; width: min-content; }\",\".framer-2DoAT .framer-149c84g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-1pdm91n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-2DoAT .framer-yf9m1h { background: radial-gradient(54% 50% at 50% 57.199999999999996%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.67) 64.51471002252252%, rgb(0, 0, 0) 100%); flex: none; height: 101%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 101% / 2); width: 100%; z-index: 1; }\",\".framer-2DoAT .framer-177k86f { flex: none; height: 1574px; left: calc(50.00000000000002% - 1574px / 2); mix-blend-mode: overlay; opacity: 0.5; overflow: visible; position: absolute; top: -88px; width: 1574px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2DoAT .framer-1ud8mjz { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 500px; flex: none; left: 500px; overflow: visible; position: absolute; right: 500px; top: 500px; }\",\".framer-2DoAT .framer-15hgf6v, .framer-2DoAT .framer-15lsr0r { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: -3px; overflow: hidden; position: absolute; top: 50%; transform: translateY(-50%); width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-1chczdn { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 489px; overflow: hidden; position: absolute; top: 84px; width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-t9wxue { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 486px; overflow: hidden; position: absolute; width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-g77en2 { flex: none; height: 20px; left: 80px; overflow: hidden; position: absolute; top: 70px; width: 20px; }\",\".framer-2DoAT .framer-1gqzoxu, .framer-2DoAT .framer-1wyu7pg, .framer-2DoAT .framer-isfk97, .framer-2DoAT .framer-7dgjwa, .framer-2DoAT .framer-1kg1ctf { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-znhl7y, .framer-2DoAT .framer-1j6f9zv, .framer-2DoAT .framer-1edsa8h, .framer-2DoAT .framer-ht07eo, .framer-2DoAT .framer-o3ujss { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-u0n4qt { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 400px; flex: none; left: 400px; overflow: visible; position: absolute; right: 400px; top: 400px; }\",\".framer-2DoAT .framer-b2b2bv { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 300px; flex: none; left: 300px; overflow: visible; position: absolute; right: 300px; top: 300px; }\",\".framer-2DoAT .framer-qizlwl { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 50%; overflow: hidden; position: absolute; top: -3px; transform: translateX(-50%); width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-1lfrbem { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); overflow: hidden; position: absolute; right: -3px; top: 50%; transform: translateY(-50%); width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-1ckeats { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 920px; overflow: hidden; position: absolute; top: 269px; width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-1dkjca5 { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 344px; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 17px; overflow: hidden; position: absolute; width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-1fd0bp0 { flex: none; height: 20px; left: 167px; overflow: hidden; position: absolute; top: 101px; width: 20px; }\",\".framer-2DoAT .framer-10976mw { bottom: -10px; flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; width: 20px; }\",\".framer-2DoAT .framer-1o8x5t5 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 200px; flex: none; left: 200px; overflow: visible; position: absolute; right: 200px; top: 200px; }\",\".framer-2DoAT .framer-1m5tdz4 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 100px; flex: none; left: 100px; overflow: visible; position: absolute; right: 100px; top: 100px; }\",\".framer-2DoAT .framer-q483vh { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 364px; overflow: hidden; position: absolute; top: 76px; width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-121rmam { aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 206px; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 1177px; overflow: hidden; position: absolute; width: 7px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-gxfuyy { flex: none; height: 20px; left: 1324px; overflow: hidden; position: absolute; top: 447px; width: 20px; }\",\".framer-2DoAT .framer-1epy9ai { bottom: 200px; flex: none; height: 20px; left: 183px; overflow: hidden; position: absolute; width: 20px; }\",\".framer-2DoAT .framer-17nnyz9 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: 0px; opacity: 0.5; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-2DoAT .framer-olac9m { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%); bottom: 0px; flex: none; height: 224px; left: calc(50.00000000000002% - 100% / 2); opacity: 0.27; overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-2DoAT .framer-1c05xd1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 93%; }\",\".framer-2DoAT .framer-1pcs43u, .framer-2DoAT .framer-10qudwf, .framer-2DoAT .framer-uz5crw, .framer-2DoAT .framer-145e22f, .framer-2DoAT .framer-1jnnz83, .framer-2DoAT .framer-1vatast, .framer-2DoAT .framer-1qo5mz1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 540px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-1ewvty5 { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 940px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1qgxb89, .framer-2DoAT .framer-1cdh01g, .framer-2DoAT .framer-6u5fs4, .framer-2DoAT .framer-1nnvntp, .framer-2DoAT .framer-h3lbjw, .framer-2DoAT .framer-1yip8mo, .framer-2DoAT .framer-lg8l5w { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background: linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; min-height: 90px; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2DoAT .framer-2rp0m1 { aspect-ratio: 1.004264392324094 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 53px; }\",\".framer-2DoAT .framer-100v2cy, .framer-2DoAT .framer-10doj49 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 2px; position: relative; width: min-content; }\",\".framer-2DoAT .framer-14ysa32 { aspect-ratio: 2.5681818181818183 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 121px; }\",\".framer-2DoAT .framer-1yh9k7g { aspect-ratio: 1.2658227848101267 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 89px; }\",\".framer-2DoAT .framer-1vsn8me { aspect-ratio: 2.482456140350877 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 87px; }\",\".framer-2DoAT .framer-4o25vr, .framer-2DoAT .framer-1pswfk6, .framer-2DoAT .framer-ziqhru { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2DoAT .framer-h5vxct { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; width: 55px; }\",\".framer-2DoAT .framer-1xw0x17 { aspect-ratio: 2.36231884057971 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); position: relative; width: 130px; }\",\".framer-2DoAT .framer-182r1ky { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background: linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; min-height: 90px; overflow: hidden; padding: 30px 40px 30px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2DoAT .framer-6ht3pq, .framer-2DoAT .framer-1clqbrk, .framer-2DoAT .framer-14yw5p2, .framer-2DoAT .framer-1xb3vjy, .framer-2DoAT .framer-dpzops, .framer-2DoAT .framer-1bbrtza, .framer-2DoAT .framer-ocadgh, .framer-2DoAT .framer-1lpc3an, .framer-2DoAT .framer-1qwp40a, .framer-2DoAT .framer-os6kp9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2DoAT .framer-52t9ub { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 70px; }\",\".framer-2DoAT .framer-q0em1v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 500px; justify-content: center; max-width: 1400px; overflow: hidden; padding: 217px 40px 217px 40px; position: relative; width: 1200px; }\",\".framer-2DoAT .framer-1y07vsr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2DoAT .framer-1ehkdt5 { aspect-ratio: 4.109589041095891 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); position: relative; width: 160px; }\",\".framer-2DoAT .framer-1cgx0ag { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-2DoAT .framer-tx83rz { align-content: center; align-items: center; background: linear-gradient(0deg, var(--token-123b0380-d5c1-475a-b484-6e62cac5babe, #190d2e) /* {\"name\":\"Purple Darker\"} */ 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }',\".framer-2DoAT .framer-19l589i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-16cdywf { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-cv6e8a, .framer-2DoAT .framer-1a9he5o { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 400px; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-zs2wmd { flex: none; height: 208px; left: -2px; overflow: visible; position: absolute; right: -3px; top: -2px; z-index: 1; }\",\".framer-2DoAT .framer-tlyvu7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-g733de, .framer-2DoAT .framer-14w124a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 260px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-2DoAT .framer-5guuyw, .framer-2DoAT .framer-1uelb57 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background: linear-gradient(0deg, var(--token-cb92d520-aebe-4c69-89f0-ea3d716f1f29, #371866) /* {\"name\":\"Purple Dark 2\"} */ 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; grid-column: auto / span 2; height: 400px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }',\".framer-2DoAT .framer-57l5wm { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-7dxnla { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2DoAT .framer-14cul5m { flex: none; height: auto; max-width: 340px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-1rvhj6t-container { flex: none; height: 331px; position: relative; width: 339px; }\",\".framer-2DoAT .framer-16tx2js { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-2DoAT .framer-f3f7wh { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 23%, rgba(0,0,0,1) 59%) add; aspect-ratio: 1.7256410256410257 / 1; bottom: var(--framer-aspect-ratio-supported, -173px); flex: none; left: 51%; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 23%, rgba(0,0,0,1) 59%) add; overflow: visible; position: absolute; top: -5px; transform: translateX(-50%); width: 97%; }\",\".framer-2DoAT .framer-15afv91-container { bottom: -22px; flex: none; left: 5px; position: absolute; top: -1px; width: 487px; }\",\".framer-2DoAT .framer-7c7qjf { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1porqc7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 280px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-t67vuh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",'.framer-2DoAT .framer-1aq5xr3 { align-content: center; align-items: center; background: radial-gradient(52% 100% at 50% 0%, var(--token-cb92d520-aebe-4c69-89f0-ea3d716f1f29, #371866) /* {\"name\":\"Purple Dark 2\"} */ 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 93%; }',\".framer-2DoAT .framer-1vrm1p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 940px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-14ln4if, .framer-2DoAT .framer-1r84e80 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(225deg, rgba(0, 0, 0, 0.3) 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 600px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2DoAT .framer-1cif6l0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2DoAT .framer-4awqpf-container { aspect-ratio: 1 / 1; flex: none; height: 77px; position: relative; width: var(--framer-aspect-ratio-supported, 77px); }\",\".framer-2DoAT .framer-1vcnuo2-container, .framer-2DoAT .framer-1ib771u-container, .framer-2DoAT .framer-1876ohp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1lmdmer { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 40px; justify-content: center; overflow: visible; padding: 2px; position: relative; width: min-content; }\",\".framer-2DoAT .framer-1jmx9yl { aspect-ratio: 2.5681818181818183 / 1; flex: none; height: 86px; position: relative; width: var(--framer-aspect-ratio-supported, 222px); }\",\".framer-2DoAT .framer-q8iss1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 50px 40px; position: relative; scroll-margin-top: 50px; width: 93%; }\",\".framer-2DoAT .framer-10obl3b, .framer-2DoAT .framer-1597xlh, .framer-2DoAT .framer-1kn035z, .framer-2DoAT .framer-1idcabb, .framer-2DoAT .framer-1g66wnl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-4yab5d, .framer-2DoAT .framer-lw4xg7, .framer-2DoAT .framer-1vwsj8g, .framer-2DoAT .framer-iajshy, .framer-2DoAT .framer-1dogp1o { 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; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-2DoAT .framer-ci4dww, .framer-2DoAT .framer-1hdclgb, .framer-2DoAT .framer-18b72xv, .framer-2DoAT .framer-14ndc2c { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-yr1dxp-container, .framer-2DoAT .framer-19y7q56-container, .framer-2DoAT .framer-2e390a-container, .framer-2DoAT .framer-1cs4w20-container, .framer-2DoAT .framer-nk0iav-container { flex: none; height: 47px; position: relative; width: 47px; }\",\".framer-2DoAT .framer-114kwzk, .framer-2DoAT .framer-2fyxlb, .framer-2DoAT .framer-m0cl3w, .framer-2DoAT .framer-10z6xkx, .framer-2DoAT .framer-13ga6xj, .framer-2DoAT .framer-1hrzko9, .framer-2DoAT .framer-zekq14, .framer-2DoAT .framer-1uj9px9, .framer-2DoAT .framer-1i9xq2f, .framer-2DoAT .framer-1rvqxzv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-1brjnld, .framer-2DoAT .framer-3ktift, .framer-2DoAT .framer-1r3cf0b, .framer-2DoAT .framer-fzk7y5, .framer-2DoAT .framer-ljb2nr { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: radial-gradient(106% 75% at 50% 50%, rgba(140, 69, 255, 0.2) 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 580px; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-2DoAT .framer-kcckuo-container { flex: none; height: 500px; position: relative; width: 500px; }\",\".framer-2DoAT .framer-1gvc67e, .framer-2DoAT .framer-1ixmi0m, .framer-2DoAT .framer-1fgkw4b, .framer-2DoAT .framer-7dspvh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 50px 40px 100px 40px; position: relative; scroll-margin-top: 50px; width: 93%; }\",\".framer-2DoAT .framer-1uk7ho1-container, .framer-2DoAT .framer-ieaq3f-container, .framer-2DoAT .framer-18zkwrr-container { flex: none; height: 400px; position: relative; width: 450px; }\",\".framer-2DoAT .framer-xhg7xs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1iw8gg-container { flex: none; height: 448px; position: relative; width: 504px; }\",\".framer-2DoAT .framer-1utjmsz { align-content: center; align-items: center; background-color: #545454; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 4px 6px 4px 6px; position: relative; width: 122px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-1id8c48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1mddjqg { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: 400px; justify-content: center; max-width: 1280px; overflow: hidden; padding: 96px 48px 96px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-1tckhh3 { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2DoAT .framer-13o554h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 72px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-165hbor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-lkkyzr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-2DoAT .framer-10pf02x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 14px; position: relative; white-space: pre-wrap; width: 87px; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-6zphhg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",'.framer-2DoAT .framer-16nw3bj { align-content: center; align-items: center; background: linear-gradient(0deg, var(--token-123b0380-d5c1-475a-b484-6e62cac5babe, #190d2e) /* {\"name\":\"Purple Dark 3\"} */ 0%, rgb(0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 900px; justify-content: center; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; width: 100%; }',\".framer-2DoAT .framer-1wu2j40 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-2DoAT .framer-fta0md { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-1xtfbao { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-bun3pi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",'.framer-2DoAT .framer-flyfxi, .framer-2DoAT .framer-1ji8xqa { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(0deg, var(--token-cb92d520-aebe-4c69-89f0-ea3d716f1f29, #371866) /* {\"name\":\"Purple Dark 2\"} */ 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-2DoAT .framer-1958a9w, .framer-2DoAT .framer-x42sr9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-vt41fj, .framer-2DoAT .framer-niemp3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 340px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-1wtvp0g, .framer-2DoAT .framer-1mu1too { bottom: 0px; flex: none; left: 0px; opacity: 0.8; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-2DoAT .framer-82kcsu, .framer-2DoAT .framer-yz3bjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1difdhj { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: 500px; justify-content: center; max-width: 1300px; overflow: hidden; padding: 116px 100px 116px 100px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2DoAT .framer-159jdm5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2DoAT .framer-ofvxud, .framer-2DoAT .framer-1sf0qkq { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 431px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2DoAT .framer-13ksgvo { flex: none; height: 450px; overflow: visible; position: relative; width: 450px; z-index: 1; }\",\".framer-2DoAT .framer-19bw2s1, .framer-2DoAT .framer-uv5urs, .framer-2DoAT .framer-13vv5gy, .framer-2DoAT .framer-1l73pif { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-2DoAT .framer-4xf5li { align-content: center; align-items: center; background: radial-gradient(108% 100% at 100% 100.6%, var(--token-6ee39359-b4dc-42f1-93d9-495015475b07, #8c45ff) /* {\"name\":\"Purple\"} */ 12.799127252252251%, rgb(14, 0, 36) 51.432291666666664%, rgb(0, 0, 0) 98.1981981981982%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 116px 100px 116px 100px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }',\".framer-2DoAT .framer-bnt63x { bottom: -282px; flex: none; height: 1253px; left: 1px; opacity: 0.8; overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-2DoAT .framer-1bm85in { background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%); bottom: 0px; flex: none; height: 150px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; }\",\".framer-2DoAT .framer-am49rg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2DoAT .framer-7g9fu5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: 431px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2DoAT .framer-1bezcry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; padding: 0px; position: relative; width: 200px; }\",\".framer-2DoAT .framer-zhzmpa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-2DoAT .framer-hhrfiw-container { flex: none; height: auto; left: 819px; position: absolute; top: 597px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2DoAT.framer-72rtr7, .framer-2DoAT .framer-acwe03, .framer-2DoAT .framer-mjz4a8, .framer-2DoAT .framer-8bvkdb, .framer-2DoAT .framer-1v3qvq9, .framer-2DoAT .framer-1bjqnhj, .framer-2DoAT .framer-414jku, .framer-2DoAT .framer-ovglx3, .framer-2DoAT .framer-1bo3jg5, .framer-2DoAT .framer-6wfl1a, .framer-2DoAT .framer-4k3izs, .framer-2DoAT .framer-r0z6k5, .framer-2DoAT .framer-3frapo, .framer-2DoAT .framer-1btyhzu, .framer-2DoAT .framer-1h0ftuc, .framer-2DoAT .framer-t8qho, .framer-2DoAT .framer-1w98o34, .framer-2DoAT .framer-sws3sz, .framer-2DoAT .framer-1pdm91n, .framer-2DoAT .framer-1c05xd1, .framer-2DoAT .framer-1qgxb89, .framer-2DoAT .framer-1cdh01g, .framer-2DoAT .framer-100v2cy, .framer-2DoAT .framer-6u5fs4, .framer-2DoAT .framer-1nnvntp, .framer-2DoAT .framer-h3lbjw, .framer-2DoAT .framer-4o25vr, .framer-2DoAT .framer-1yip8mo, .framer-2DoAT .framer-1pswfk6, .framer-2DoAT .framer-182r1ky, .framer-2DoAT .framer-ziqhru, .framer-2DoAT .framer-lg8l5w, .framer-2DoAT .framer-10doj49, .framer-2DoAT .framer-q0em1v, .framer-2DoAT .framer-1y07vsr, .framer-2DoAT .framer-tx83rz, .framer-2DoAT .framer-19l589i, .framer-2DoAT .framer-cv6e8a, .framer-2DoAT .framer-tlyvu7, .framer-2DoAT .framer-5guuyw, .framer-2DoAT .framer-57l5wm, .framer-2DoAT .framer-7dxnla, .framer-2DoAT .framer-1uelb57, .framer-2DoAT .framer-7c7qjf, .framer-2DoAT .framer-1a9he5o, .framer-2DoAT .framer-t67vuh, .framer-2DoAT .framer-1aq5xr3, .framer-2DoAT .framer-1vrm1p, .framer-2DoAT .framer-14ln4if, .framer-2DoAT .framer-1cif6l0, .framer-2DoAT .framer-1r84e80, .framer-2DoAT .framer-1lmdmer, .framer-2DoAT .framer-q8iss1, .framer-2DoAT .framer-10obl3b, .framer-2DoAT .framer-4yab5d, .framer-2DoAT .framer-ci4dww, .framer-2DoAT .framer-1brjnld, .framer-2DoAT .framer-1gvc67e, .framer-2DoAT .framer-1597xlh, .framer-2DoAT .framer-lw4xg7, .framer-2DoAT .framer-1hdclgb, .framer-2DoAT .framer-3ktift, .framer-2DoAT .framer-1ixmi0m, .framer-2DoAT .framer-1kn035z, .framer-2DoAT .framer-1vwsj8g, .framer-2DoAT .framer-xhg7xs, .framer-2DoAT .framer-1r3cf0b, .framer-2DoAT .framer-1fgkw4b, .framer-2DoAT .framer-1idcabb, .framer-2DoAT .framer-iajshy, .framer-2DoAT .framer-18b72xv, .framer-2DoAT .framer-1utjmsz, .framer-2DoAT .framer-fzk7y5, .framer-2DoAT .framer-7dspvh, .framer-2DoAT .framer-1g66wnl, .framer-2DoAT .framer-1dogp1o, .framer-2DoAT .framer-14ndc2c, .framer-2DoAT .framer-ljb2nr, .framer-2DoAT .framer-1id8c48, .framer-2DoAT .framer-1mddjqg, .framer-2DoAT .framer-1tckhh3, .framer-2DoAT .framer-13o554h, .framer-2DoAT .framer-165hbor, .framer-2DoAT .framer-lkkyzr, .framer-2DoAT .framer-16nw3bj, .framer-2DoAT .framer-1wu2j40, .framer-2DoAT .framer-bun3pi, .framer-2DoAT .framer-flyfxi, .framer-2DoAT .framer-1958a9w, .framer-2DoAT .framer-1ji8xqa, .framer-2DoAT .framer-x42sr9, .framer-2DoAT .framer-82kcsu, .framer-2DoAT .framer-1difdhj, .framer-2DoAT .framer-159jdm5, .framer-2DoAT .framer-ofvxud, .framer-2DoAT .framer-1sf0qkq, .framer-2DoAT .framer-yz3bjr, .framer-2DoAT .framer-4xf5li, .framer-2DoAT .framer-am49rg, .framer-2DoAT .framer-7g9fu5, .framer-2DoAT .framer-1bezcry { gap: 0px; } .framer-2DoAT.framer-72rtr7 > *, .framer-2DoAT .framer-1qgxb89 > *, .framer-2DoAT .framer-1cdh01g > *, .framer-2DoAT .framer-6u5fs4 > *, .framer-2DoAT .framer-1nnvntp > *, .framer-2DoAT .framer-h3lbjw > *, .framer-2DoAT .framer-1yip8mo > *, .framer-2DoAT .framer-182r1ky > *, .framer-2DoAT .framer-lg8l5w > *, .framer-2DoAT .framer-1id8c48 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2DoAT.framer-72rtr7 > :first-child, .framer-2DoAT .framer-acwe03 > :first-child, .framer-2DoAT .framer-mjz4a8 > :first-child, .framer-2DoAT .framer-8bvkdb > :first-child, .framer-2DoAT .framer-1v3qvq9 > :first-child, .framer-2DoAT .framer-1pdm91n > :first-child, .framer-2DoAT .framer-1c05xd1 > :first-child, .framer-2DoAT .framer-1qgxb89 > :first-child, .framer-2DoAT .framer-1cdh01g > :first-child, .framer-2DoAT .framer-6u5fs4 > :first-child, .framer-2DoAT .framer-1nnvntp > :first-child, .framer-2DoAT .framer-h3lbjw > :first-child, .framer-2DoAT .framer-1yip8mo > :first-child, .framer-2DoAT .framer-182r1ky > :first-child, .framer-2DoAT .framer-lg8l5w > :first-child, .framer-2DoAT .framer-q0em1v > :first-child, .framer-2DoAT .framer-1y07vsr > :first-child, .framer-2DoAT .framer-tx83rz > :first-child, .framer-2DoAT .framer-19l589i > :first-child, .framer-2DoAT .framer-cv6e8a > :first-child, .framer-2DoAT .framer-tlyvu7 > :first-child, .framer-2DoAT .framer-5guuyw > :first-child, .framer-2DoAT .framer-7dxnla > :first-child, .framer-2DoAT .framer-1uelb57 > :first-child, .framer-2DoAT .framer-7c7qjf > :first-child, .framer-2DoAT .framer-1a9he5o > :first-child, .framer-2DoAT .framer-t67vuh > :first-child, .framer-2DoAT .framer-1aq5xr3 > :first-child, .framer-2DoAT .framer-14ln4if > :first-child, .framer-2DoAT .framer-1r84e80 > :first-child, .framer-2DoAT .framer-q8iss1 > :first-child, .framer-2DoAT .framer-4yab5d > :first-child, .framer-2DoAT .framer-1brjnld > :first-child, .framer-2DoAT .framer-1gvc67e > :first-child, .framer-2DoAT .framer-lw4xg7 > :first-child, .framer-2DoAT .framer-3ktift > :first-child, .framer-2DoAT .framer-1ixmi0m > :first-child, .framer-2DoAT .framer-1vwsj8g > :first-child, .framer-2DoAT .framer-1r3cf0b > :first-child, .framer-2DoAT .framer-1fgkw4b > :first-child, .framer-2DoAT .framer-iajshy > :first-child, .framer-2DoAT .framer-fzk7y5 > :first-child, .framer-2DoAT .framer-7dspvh > :first-child, .framer-2DoAT .framer-1dogp1o > :first-child, .framer-2DoAT .framer-ljb2nr > :first-child, .framer-2DoAT .framer-1id8c48 > :first-child, .framer-2DoAT .framer-1tckhh3 > :first-child, .framer-2DoAT .framer-13o554h > :first-child, .framer-2DoAT .framer-16nw3bj > :first-child, .framer-2DoAT .framer-1wu2j40 > :first-child, .framer-2DoAT .framer-flyfxi > :first-child, .framer-2DoAT .framer-1958a9w > :first-child, .framer-2DoAT .framer-1ji8xqa > :first-child, .framer-2DoAT .framer-x42sr9 > :first-child, .framer-2DoAT .framer-82kcsu > :first-child, .framer-2DoAT .framer-1difdhj > :first-child, .framer-2DoAT .framer-ofvxud > :first-child, .framer-2DoAT .framer-1sf0qkq > :first-child, .framer-2DoAT .framer-yz3bjr > :first-child, .framer-2DoAT .framer-4xf5li > :first-child, .framer-2DoAT .framer-am49rg > :first-child, .framer-2DoAT .framer-7g9fu5 > :first-child { margin-top: 0px; } .framer-2DoAT.framer-72rtr7 > :last-child, .framer-2DoAT .framer-acwe03 > :last-child, .framer-2DoAT .framer-mjz4a8 > :last-child, .framer-2DoAT .framer-8bvkdb > :last-child, .framer-2DoAT .framer-1v3qvq9 > :last-child, .framer-2DoAT .framer-1pdm91n > :last-child, .framer-2DoAT .framer-1c05xd1 > :last-child, .framer-2DoAT .framer-1qgxb89 > :last-child, .framer-2DoAT .framer-1cdh01g > :last-child, .framer-2DoAT .framer-6u5fs4 > :last-child, .framer-2DoAT .framer-1nnvntp > :last-child, .framer-2DoAT .framer-h3lbjw > :last-child, .framer-2DoAT .framer-1yip8mo > :last-child, .framer-2DoAT .framer-182r1ky > :last-child, .framer-2DoAT .framer-lg8l5w > :last-child, .framer-2DoAT .framer-q0em1v > :last-child, .framer-2DoAT .framer-1y07vsr > :last-child, .framer-2DoAT .framer-tx83rz > :last-child, .framer-2DoAT .framer-19l589i > :last-child, .framer-2DoAT .framer-cv6e8a > :last-child, .framer-2DoAT .framer-tlyvu7 > :last-child, .framer-2DoAT .framer-5guuyw > :last-child, .framer-2DoAT .framer-7dxnla > :last-child, .framer-2DoAT .framer-1uelb57 > :last-child, .framer-2DoAT .framer-7c7qjf > :last-child, .framer-2DoAT .framer-1a9he5o > :last-child, .framer-2DoAT .framer-t67vuh > :last-child, .framer-2DoAT .framer-1aq5xr3 > :last-child, .framer-2DoAT .framer-14ln4if > :last-child, .framer-2DoAT .framer-1r84e80 > :last-child, .framer-2DoAT .framer-q8iss1 > :last-child, .framer-2DoAT .framer-4yab5d > :last-child, .framer-2DoAT .framer-1brjnld > :last-child, .framer-2DoAT .framer-1gvc67e > :last-child, .framer-2DoAT .framer-lw4xg7 > :last-child, .framer-2DoAT .framer-3ktift > :last-child, .framer-2DoAT .framer-1ixmi0m > :last-child, .framer-2DoAT .framer-1vwsj8g > :last-child, .framer-2DoAT .framer-1r3cf0b > :last-child, .framer-2DoAT .framer-1fgkw4b > :last-child, .framer-2DoAT .framer-iajshy > :last-child, .framer-2DoAT .framer-fzk7y5 > :last-child, .framer-2DoAT .framer-7dspvh > :last-child, .framer-2DoAT .framer-1dogp1o > :last-child, .framer-2DoAT .framer-ljb2nr > :last-child, .framer-2DoAT .framer-1id8c48 > :last-child, .framer-2DoAT .framer-1tckhh3 > :last-child, .framer-2DoAT .framer-13o554h > :last-child, .framer-2DoAT .framer-16nw3bj > :last-child, .framer-2DoAT .framer-1wu2j40 > :last-child, .framer-2DoAT .framer-flyfxi > :last-child, .framer-2DoAT .framer-1958a9w > :last-child, .framer-2DoAT .framer-1ji8xqa > :last-child, .framer-2DoAT .framer-x42sr9 > :last-child, .framer-2DoAT .framer-82kcsu > :last-child, .framer-2DoAT .framer-1difdhj > :last-child, .framer-2DoAT .framer-ofvxud > :last-child, .framer-2DoAT .framer-1sf0qkq > :last-child, .framer-2DoAT .framer-yz3bjr > :last-child, .framer-2DoAT .framer-4xf5li > :last-child, .framer-2DoAT .framer-am49rg > :last-child, .framer-2DoAT .framer-7g9fu5 > :last-child { margin-bottom: 0px; } .framer-2DoAT .framer-acwe03 > *, .framer-2DoAT .framer-1c05xd1 > *, .framer-2DoAT .framer-q0em1v > *, .framer-2DoAT .framer-tx83rz > *, .framer-2DoAT .framer-1aq5xr3 > *, .framer-2DoAT .framer-q8iss1 > *, .framer-2DoAT .framer-1gvc67e > *, .framer-2DoAT .framer-1ixmi0m > *, .framer-2DoAT .framer-1fgkw4b > *, .framer-2DoAT .framer-7dspvh > *, .framer-2DoAT .framer-16nw3bj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2DoAT .framer-mjz4a8 > *, .framer-2DoAT .framer-cv6e8a > *, .framer-2DoAT .framer-5guuyw > *, .framer-2DoAT .framer-1uelb57 > *, .framer-2DoAT .framer-1a9he5o > *, .framer-2DoAT .framer-flyfxi > *, .framer-2DoAT .framer-1ji8xqa > *, .framer-2DoAT .framer-am49rg > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-2DoAT .framer-8bvkdb > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-2DoAT .framer-1v3qvq9 > *, .framer-2DoAT .framer-1pdm91n > *, .framer-2DoAT .framer-tlyvu7 > *, .framer-2DoAT .framer-7dxnla > *, .framer-2DoAT .framer-7c7qjf > *, .framer-2DoAT .framer-t67vuh > *, .framer-2DoAT .framer-1958a9w > *, .framer-2DoAT .framer-x42sr9 > *, .framer-2DoAT .framer-82kcsu > *, .framer-2DoAT .framer-yz3bjr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2DoAT .framer-1bjqnhj > *, .framer-2DoAT .framer-ovglx3 > *, .framer-2DoAT .framer-1bo3jg5 > *, .framer-2DoAT .framer-6wfl1a > *, .framer-2DoAT .framer-4k3izs > *, .framer-2DoAT .framer-r0z6k5 > *, .framer-2DoAT .framer-1btyhzu > *, .framer-2DoAT .framer-1h0ftuc > *, .framer-2DoAT .framer-t8qho > *, .framer-2DoAT .framer-1w98o34 > *, .framer-2DoAT .framer-sws3sz > *, .framer-2DoAT .framer-57l5wm > *, .framer-2DoAT .framer-1vrm1p > *, .framer-2DoAT .framer-ci4dww > *, .framer-2DoAT .framer-1hdclgb > *, .framer-2DoAT .framer-xhg7xs > *, .framer-2DoAT .framer-18b72xv > *, .framer-2DoAT .framer-1utjmsz > *, .framer-2DoAT .framer-14ndc2c > *, .framer-2DoAT .framer-bun3pi > *, .framer-2DoAT .framer-1bezcry > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2DoAT .framer-1bjqnhj > :first-child, .framer-2DoAT .framer-414jku > :first-child, .framer-2DoAT .framer-ovglx3 > :first-child, .framer-2DoAT .framer-1bo3jg5 > :first-child, .framer-2DoAT .framer-6wfl1a > :first-child, .framer-2DoAT .framer-4k3izs > :first-child, .framer-2DoAT .framer-r0z6k5 > :first-child, .framer-2DoAT .framer-3frapo > :first-child, .framer-2DoAT .framer-1btyhzu > :first-child, .framer-2DoAT .framer-1h0ftuc > :first-child, .framer-2DoAT .framer-t8qho > :first-child, .framer-2DoAT .framer-1w98o34 > :first-child, .framer-2DoAT .framer-sws3sz > :first-child, .framer-2DoAT .framer-100v2cy > :first-child, .framer-2DoAT .framer-4o25vr > :first-child, .framer-2DoAT .framer-1pswfk6 > :first-child, .framer-2DoAT .framer-ziqhru > :first-child, .framer-2DoAT .framer-10doj49 > :first-child, .framer-2DoAT .framer-57l5wm > :first-child, .framer-2DoAT .framer-1vrm1p > :first-child, .framer-2DoAT .framer-1cif6l0 > :first-child, .framer-2DoAT .framer-1lmdmer > :first-child, .framer-2DoAT .framer-10obl3b > :first-child, .framer-2DoAT .framer-ci4dww > :first-child, .framer-2DoAT .framer-1597xlh > :first-child, .framer-2DoAT .framer-1hdclgb > :first-child, .framer-2DoAT .framer-1kn035z > :first-child, .framer-2DoAT .framer-xhg7xs > :first-child, .framer-2DoAT .framer-1idcabb > :first-child, .framer-2DoAT .framer-18b72xv > :first-child, .framer-2DoAT .framer-1utjmsz > :first-child, .framer-2DoAT .framer-1g66wnl > :first-child, .framer-2DoAT .framer-14ndc2c > :first-child, .framer-2DoAT .framer-1mddjqg > :first-child, .framer-2DoAT .framer-165hbor > :first-child, .framer-2DoAT .framer-lkkyzr > :first-child, .framer-2DoAT .framer-bun3pi > :first-child, .framer-2DoAT .framer-159jdm5 > :first-child, .framer-2DoAT .framer-1bezcry > :first-child { margin-left: 0px; } .framer-2DoAT .framer-1bjqnhj > :last-child, .framer-2DoAT .framer-414jku > :last-child, .framer-2DoAT .framer-ovglx3 > :last-child, .framer-2DoAT .framer-1bo3jg5 > :last-child, .framer-2DoAT .framer-6wfl1a > :last-child, .framer-2DoAT .framer-4k3izs > :last-child, .framer-2DoAT .framer-r0z6k5 > :last-child, .framer-2DoAT .framer-3frapo > :last-child, .framer-2DoAT .framer-1btyhzu > :last-child, .framer-2DoAT .framer-1h0ftuc > :last-child, .framer-2DoAT .framer-t8qho > :last-child, .framer-2DoAT .framer-1w98o34 > :last-child, .framer-2DoAT .framer-sws3sz > :last-child, .framer-2DoAT .framer-100v2cy > :last-child, .framer-2DoAT .framer-4o25vr > :last-child, .framer-2DoAT .framer-1pswfk6 > :last-child, .framer-2DoAT .framer-ziqhru > :last-child, .framer-2DoAT .framer-10doj49 > :last-child, .framer-2DoAT .framer-57l5wm > :last-child, .framer-2DoAT .framer-1vrm1p > :last-child, .framer-2DoAT .framer-1cif6l0 > :last-child, .framer-2DoAT .framer-1lmdmer > :last-child, .framer-2DoAT .framer-10obl3b > :last-child, .framer-2DoAT .framer-ci4dww > :last-child, .framer-2DoAT .framer-1597xlh > :last-child, .framer-2DoAT .framer-1hdclgb > :last-child, .framer-2DoAT .framer-1kn035z > :last-child, .framer-2DoAT .framer-xhg7xs > :last-child, .framer-2DoAT .framer-1idcabb > :last-child, .framer-2DoAT .framer-18b72xv > :last-child, .framer-2DoAT .framer-1utjmsz > :last-child, .framer-2DoAT .framer-1g66wnl > :last-child, .framer-2DoAT .framer-14ndc2c > :last-child, .framer-2DoAT .framer-1mddjqg > :last-child, .framer-2DoAT .framer-165hbor > :last-child, .framer-2DoAT .framer-lkkyzr > :last-child, .framer-2DoAT .framer-bun3pi > :last-child, .framer-2DoAT .framer-159jdm5 > :last-child, .framer-2DoAT .framer-1bezcry > :last-child { margin-right: 0px; } .framer-2DoAT .framer-414jku > *, .framer-2DoAT .framer-3frapo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2DoAT .framer-100v2cy > *, .framer-2DoAT .framer-4o25vr > *, .framer-2DoAT .framer-1pswfk6 > *, .framer-2DoAT .framer-ziqhru > *, .framer-2DoAT .framer-10doj49 > *, .framer-2DoAT .framer-1cif6l0 > *, .framer-2DoAT .framer-1lmdmer > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-2DoAT .framer-1y07vsr > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-2DoAT .framer-19l589i > *, .framer-2DoAT .framer-4yab5d > *, .framer-2DoAT .framer-1brjnld > *, .framer-2DoAT .framer-lw4xg7 > *, .framer-2DoAT .framer-3ktift > *, .framer-2DoAT .framer-1vwsj8g > *, .framer-2DoAT .framer-1r3cf0b > *, .framer-2DoAT .framer-iajshy > *, .framer-2DoAT .framer-fzk7y5 > *, .framer-2DoAT .framer-1dogp1o > *, .framer-2DoAT .framer-ljb2nr > *, .framer-2DoAT .framer-1wu2j40 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-2DoAT .framer-14ln4if > *, .framer-2DoAT .framer-1r84e80 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-2DoAT .framer-10obl3b > *, .framer-2DoAT .framer-1597xlh > *, .framer-2DoAT .framer-1kn035z > *, .framer-2DoAT .framer-1idcabb > *, .framer-2DoAT .framer-1g66wnl > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-2DoAT .framer-1mddjqg > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-2DoAT .framer-1tckhh3 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-2DoAT .framer-13o554h > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2DoAT .framer-165hbor > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-2DoAT .framer-lkkyzr > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-2DoAT .framer-1difdhj > *, .framer-2DoAT .framer-4xf5li > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-2DoAT .framer-159jdm5 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-2DoAT .framer-ofvxud > *, .framer-2DoAT .framer-1sf0qkq > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-2DoAT .framer-7g9fu5 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-2DoAT[data-border=\"true\"]::after, .framer-2DoAT [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: 1199px) { .framer-2DoAT.framer-72rtr7 { width: 810px; } .framer-2DoAT .framer-q0em1v { padding: 100px 40px 100px 40px; width: 810px; } .framer-2DoAT .framer-zs2wmd { height: 119px; left: -4px; right: -4px; top: 14px; } .framer-2DoAT .framer-7dxnla, .framer-2DoAT .framer-1wu2j40 { order: 0; } .framer-2DoAT .framer-1rvhj6t-container { height: 264px; order: 1; width: 270px; } .framer-2DoAT .framer-f3f7wh { bottom: var(--framer-aspect-ratio-supported, -77px); left: 53%; width: 116%; } .framer-2DoAT .framer-15afv91-container { bottom: -32px; left: 20px; top: 0px; width: 347px; } .framer-2DoAT .framer-t67vuh { gap: 0px; } .framer-2DoAT .framer-1vrm1p, .framer-2DoAT .framer-10obl3b, .framer-2DoAT .framer-1597xlh, .framer-2DoAT .framer-1kn035z, .framer-2DoAT .framer-1idcabb, .framer-2DoAT .framer-1g66wnl { flex-direction: column; } .framer-2DoAT .framer-14ln4if { flex: none; height: 536px; width: 100%; } .framer-2DoAT .framer-1r84e80 { flex: none; height: 420px; width: 100%; } .framer-2DoAT .framer-4yab5d, .framer-2DoAT .framer-lw4xg7, .framer-2DoAT .framer-1vwsj8g, .framer-2DoAT .framer-iajshy, .framer-2DoAT .framer-1dogp1o { flex: none; width: 100%; } .framer-2DoAT .framer-1brjnld, .framer-2DoAT .framer-3ktift, .framer-2DoAT .framer-1r3cf0b, .framer-2DoAT .framer-fzk7y5, .framer-2DoAT .framer-ljb2nr { flex: none; max-width: 810px; width: 100%; } .framer-2DoAT .framer-kcckuo-container { height: 539px; width: 509px; } .framer-2DoAT .framer-1uk7ho1-container, .framer-2DoAT .framer-1iw8gg-container, .framer-2DoAT .framer-ieaq3f-container, .framer-2DoAT .framer-18zkwrr-container { height: 520px; width: 597px; } .framer-2DoAT .framer-1id8c48, .framer-2DoAT .framer-1mddjqg { padding: 96px 32px 96px 32px; } .framer-2DoAT .framer-16nw3bj { gap: 267px; height: min-content; padding: 237px 40px 237px 40px; } .framer-2DoAT .framer-bun3pi { flex-direction: column; order: 1; } .framer-2DoAT .framer-flyfxi, .framer-2DoAT .framer-1ji8xqa { flex: none; height: min-content; width: 100%; } .framer-2DoAT .framer-1958a9w, .framer-2DoAT .framer-x42sr9 { flex: none; height: min-content; } .framer-2DoAT .framer-1difdhj { height: 600px; padding: 116px 40px 116px 40px; } .framer-2DoAT .framer-159jdm5 { align-content: center; align-items: center; } .framer-2DoAT .framer-ofvxud { flex: 1 0 0px; height: 600px; } .framer-2DoAT .framer-13ksgvo { height: 50%; width: 100%; } .framer-2DoAT .framer-1sf0qkq { flex: none; width: min-content; } .framer-2DoAT .framer-19bw2s1, .framer-2DoAT .framer-uv5urs { max-width: 350px; width: 350px; } .framer-2DoAT .framer-13vv5gy { max-width: 350px; width: auto; } .framer-2DoAT .framer-4xf5li { padding: 116px 40px 116px 40px; } .framer-2DoAT .framer-1l73pif { max-width: 350px; } .framer-2DoAT .framer-hhrfiw-container { left: 432px; top: 570px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2DoAT .framer-t67vuh, .framer-2DoAT .framer-1vrm1p, .framer-2DoAT .framer-10obl3b, .framer-2DoAT .framer-1597xlh, .framer-2DoAT .framer-1kn035z, .framer-2DoAT .framer-1idcabb, .framer-2DoAT .framer-1g66wnl, .framer-2DoAT .framer-16nw3bj, .framer-2DoAT .framer-bun3pi { gap: 0px; } .framer-2DoAT .framer-t67vuh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2DoAT .framer-t67vuh > :first-child, .framer-2DoAT .framer-1vrm1p > :first-child, .framer-2DoAT .framer-10obl3b > :first-child, .framer-2DoAT .framer-1597xlh > :first-child, .framer-2DoAT .framer-1kn035z > :first-child, .framer-2DoAT .framer-1idcabb > :first-child, .framer-2DoAT .framer-1g66wnl > :first-child, .framer-2DoAT .framer-16nw3bj > :first-child, .framer-2DoAT .framer-bun3pi > :first-child { margin-top: 0px; } .framer-2DoAT .framer-t67vuh > :last-child, .framer-2DoAT .framer-1vrm1p > :last-child, .framer-2DoAT .framer-10obl3b > :last-child, .framer-2DoAT .framer-1597xlh > :last-child, .framer-2DoAT .framer-1kn035z > :last-child, .framer-2DoAT .framer-1idcabb > :last-child, .framer-2DoAT .framer-1g66wnl > :last-child, .framer-2DoAT .framer-16nw3bj > :last-child, .framer-2DoAT .framer-bun3pi > :last-child { margin-bottom: 0px; } .framer-2DoAT .framer-1vrm1p > *, .framer-2DoAT .framer-bun3pi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2DoAT .framer-10obl3b > *, .framer-2DoAT .framer-1597xlh > *, .framer-2DoAT .framer-1kn035z > *, .framer-2DoAT .framer-1idcabb > *, .framer-2DoAT .framer-1g66wnl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2DoAT .framer-16nw3bj > * { margin: 0px; margin-bottom: calc(267px / 2); margin-top: calc(267px / 2); } }}\",'@media (max-width: 809px) { .framer-2DoAT.framer-72rtr7, .framer-2DoAT .framer-q0em1v { width: 390px; } .framer-2DoAT .framer-acwe03 { background: radial-gradient(125% 88% at 50% 78.3%, var(--token-b5c62131-2bf3-4570-b96c-e35e5f51d105, #d438ff) /* {\"name\":\"Pink\"} */ 0%, var(--token-6ee39359-b4dc-42f1-93d9-495015475b07, rgb(140, 69, 255)) /* {\"name\":\"Purple\"} */ 39.99155405405405%, var(--token-123b0380-d5c1-475a-b484-6e62cac5babe, rgb(25, 13, 46)) /* {\"name\":\"Purple Dark 3\"} */ 84.93278434684684%, rgb(0, 0, 0) 100%); min-height: unset; padding: 80px 20px 0px 20px; } .framer-2DoAT .framer-414jku, .framer-2DoAT .framer-57l5wm, .framer-2DoAT .framer-10obl3b, .framer-2DoAT .framer-1597xlh, .framer-2DoAT .framer-1kn035z, .framer-2DoAT .framer-1idcabb, .framer-2DoAT .framer-1g66wnl, .framer-2DoAT .framer-159jdm5 { flex-direction: column; } .framer-2DoAT .framer-3frapo, .framer-2DoAT .framer-7dxnla, .framer-2DoAT .framer-4yab5d, .framer-2DoAT .framer-lw4xg7, .framer-2DoAT .framer-1vwsj8g, .framer-2DoAT .framer-iajshy, .framer-2DoAT .framer-1dogp1o { flex: none; width: 100%; } .framer-2DoAT .framer-79jyak-container { width: 100%; } .framer-2DoAT .framer-1c05xd1, .framer-2DoAT .framer-tx83rz, .framer-2DoAT .framer-q8iss1, .framer-2DoAT .framer-1gvc67e, .framer-2DoAT .framer-1ixmi0m, .framer-2DoAT .framer-1fgkw4b, .framer-2DoAT .framer-7dspvh, .framer-2DoAT .framer-4xf5li { padding: 80px 20px 80px 20px; } .framer-2DoAT .framer-1ewvty5 { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-2DoAT .framer-16cdywf { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-2DoAT .framer-zs2wmd { left: -17px; right: unset; top: -5px; width: 365px; } .framer-2DoAT .framer-5guuyw { grid-column: auto / span 1; height: 460px; } .framer-2DoAT .framer-1rvhj6t-container { height: 266px; width: 270px; } .framer-2DoAT .framer-1uelb57 { grid-column: auto / span 1; } .framer-2DoAT .framer-f3f7wh { bottom: var(--framer-aspect-ratio-supported, -132px); left: -240px; transform: unset; width: 208%; } .framer-2DoAT .framer-15afv91-container { bottom: unset; height: 250px; left: 225px; top: 9px; width: 300px; } .framer-2DoAT .framer-7c7qjf { align-content: flex-start; align-items: flex-start; } .framer-2DoAT .framer-1brjnld, .framer-2DoAT .framer-3ktift, .framer-2DoAT .framer-1r3cf0b, .framer-2DoAT .framer-fzk7y5, .framer-2DoAT .framer-ljb2nr { flex: none; padding: 20px; width: 100%; } .framer-2DoAT .framer-kcckuo-container { height: 346px; width: 335px; } .framer-2DoAT .framer-1uk7ho1-container, .framer-2DoAT .framer-1iw8gg-container, .framer-2DoAT .framer-ieaq3f-container, .framer-2DoAT .framer-18zkwrr-container { height: 286px; width: 322px; } .framer-2DoAT .framer-18b72xv { overflow: visible; } .framer-2DoAT .framer-1id8c48 { padding: 64px 16px 64px 16px; } .framer-2DoAT .framer-1mddjqg { gap: 48px; padding: 64px 16px 64px 16px; } .framer-2DoAT .framer-16nw3bj, .framer-2DoAT .framer-1difdhj { height: min-content; padding: 80px 20px 80px 20px; } .framer-2DoAT .framer-bun3pi { flex-direction: column; height: min-content; } .framer-2DoAT .framer-flyfxi { flex: none; height: 500px; width: 100%; } .framer-2DoAT .framer-1ji8xqa { flex: none; height: 600px; width: 100%; } .framer-2DoAT .framer-ofvxud { align-content: center; align-items: center; flex: none; height: 300px; width: 100%; } .framer-2DoAT .framer-13ksgvo { height: 300px; width: 300px; } .framer-2DoAT .framer-1sf0qkq { align-content: center; align-items: center; flex: none; height: min-content; width: 100%; } .framer-2DoAT .framer-7g9fu5 { align-content: center; align-items: center; } .framer-2DoAT .framer-hhrfiw-container { left: 51%; top: 370px; transform: translateX(-50%); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2DoAT .framer-414jku, .framer-2DoAT .framer-57l5wm, .framer-2DoAT .framer-10obl3b, .framer-2DoAT .framer-1597xlh, .framer-2DoAT .framer-1kn035z, .framer-2DoAT .framer-1idcabb, .framer-2DoAT .framer-1g66wnl, .framer-2DoAT .framer-1mddjqg, .framer-2DoAT .framer-bun3pi, .framer-2DoAT .framer-159jdm5 { gap: 0px; } .framer-2DoAT .framer-414jku > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2DoAT .framer-414jku > :first-child, .framer-2DoAT .framer-57l5wm > :first-child, .framer-2DoAT .framer-10obl3b > :first-child, .framer-2DoAT .framer-1597xlh > :first-child, .framer-2DoAT .framer-1kn035z > :first-child, .framer-2DoAT .framer-1idcabb > :first-child, .framer-2DoAT .framer-1g66wnl > :first-child, .framer-2DoAT .framer-bun3pi > :first-child, .framer-2DoAT .framer-159jdm5 > :first-child { margin-top: 0px; } .framer-2DoAT .framer-414jku > :last-child, .framer-2DoAT .framer-57l5wm > :last-child, .framer-2DoAT .framer-10obl3b > :last-child, .framer-2DoAT .framer-1597xlh > :last-child, .framer-2DoAT .framer-1kn035z > :last-child, .framer-2DoAT .framer-1idcabb > :last-child, .framer-2DoAT .framer-1g66wnl > :last-child, .framer-2DoAT .framer-bun3pi > :last-child, .framer-2DoAT .framer-159jdm5 > :last-child { margin-bottom: 0px; } .framer-2DoAT .framer-57l5wm > *, .framer-2DoAT .framer-bun3pi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2DoAT .framer-10obl3b > *, .framer-2DoAT .framer-1597xlh > *, .framer-2DoAT .framer-1kn035z > *, .framer-2DoAT .framer-1idcabb > *, .framer-2DoAT .framer-1g66wnl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2DoAT .framer-1mddjqg > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-2DoAT .framer-1mddjqg > :first-child { margin-left: 0px; } .framer-2DoAT .framer-1mddjqg > :last-child { margin-right: 0px; } .framer-2DoAT .framer-159jdm5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9683\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tTiabLNor\":{\"layout\":[\"fixed\",\"auto\"]},\"ITQFdwOHH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"g7N4_vjuA\":{\"pattern\":\":g7N4_vjuA\",\"name\":\"introtext\"},\"gm7mgvn_Q\":{\"pattern\":\":gm7mgvn_Q\",\"name\":\"\"},\"CBQdDcAWT\":{\"pattern\":\":CBQdDcAWT\",\"name\":\"ownyourai\"},\"ioasiEqtw\":{\"pattern\":\":ioasiEqtw\",\"name\":\"aiagentsthatexecute\"},\"ftfWhUciA\":{\"pattern\":\":ftfWhUciA\",\"name\":\"automatedduplicate-similaritysearch\"},\"yPZkCAVqv\":{\"pattern\":\":yPZkCAVqv\",\"name\":\"ai-generatedinnovationfuel\"},\"Dow2cB35H\":{\"pattern\":\":Dow2cB35H\",\"name\":\"universallanguageaccess\"},\"aW6eM5Wd3\":{\"pattern\":\":aW6eM5Wd3\",\"name\":\"rready-aiwebinar\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-2DoAT\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9683,width:1200};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:\"Founders Grotesk Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/xpKumNQxIGfEmJ5uadW9Xu7DSb0.woff2\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Founders Grotesk Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/0j3CTpLYJnCUdkLbgQMswTMIFw.woff2\"}]},...AIKitNavFonts,...AIKitBadgeFonts,...BlurCycleFonts,...AIKitButtonFonts,...LottieFonts,...AIKitAvatarFonts,...AIKitTestimonialFonts,...AIKitIconBigFonts,...ButtonFillFonts,...AIKitFooterSimpleFonts,...CookieBannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tTiabLNor\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ITQFdwOHH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"9683\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"g7N4_vjuA\\\":{\\\"pattern\\\":\\\":g7N4_vjuA\\\",\\\"name\\\":\\\"introtext\\\"},\\\"gm7mgvn_Q\\\":{\\\"pattern\\\":\\\":gm7mgvn_Q\\\",\\\"name\\\":\\\"\\\"},\\\"CBQdDcAWT\\\":{\\\"pattern\\\":\\\":CBQdDcAWT\\\",\\\"name\\\":\\\"ownyourai\\\"},\\\"ioasiEqtw\\\":{\\\"pattern\\\":\\\":ioasiEqtw\\\",\\\"name\\\":\\\"aiagentsthatexecute\\\"},\\\"ftfWhUciA\\\":{\\\"pattern\\\":\\\":ftfWhUciA\\\",\\\"name\\\":\\\"automatedduplicate-similaritysearch\\\"},\\\"yPZkCAVqv\\\":{\\\"pattern\\\":\\\":yPZkCAVqv\\\",\\\"name\\\":\\\"ai-generatedinnovationfuel\\\"},\\\"Dow2cB35H\\\":{\\\"pattern\\\":\\\":Dow2cB35H\\\",\\\"name\\\":\\\"universallanguageaccess\\\"},\\\"aW6eM5Wd3\\\":{\\\"pattern\\\":\\\":aW6eM5Wd3\\\",\\\"name\\\":\\\"rready-aiwebinar\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_SPEED", "defaultTransition", "BlurCycle", "text", "speed", "delay", "font", "userSelect", "color", "tag", "loop", "alignment", "Tag", "content", "phrase", "iteration", "setIteration", "ye", "isFirstRender", "setIsFirstRender", "speedFormatted", "delayFormattedMs", "speedFormattedMs", "MAX_BLUR", "ue", "interval", "prev", "u", "p", "longest", "current", "RenderTarget", "l", "phraseIndex", "charIndex", "segments", "segment", "char", "AnimatePresence", "segmentIndex", "originalIndex", "itemTransition", "motion", "addPropertyControls", "ControlType", "AIKitNavFonts", "getFonts", "FgbzfpRtw_default", "AIKitBadgeFonts", "KoyqF9kGY_default", "BlurCycleFonts", "BlurCycle", "MotionDivWithFX", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ImageWithFX", "Image2", "RichTextWithHighlightColor31cgx0ag", "withCodeBoundaryForOverrides", "RichText2", "withHighlightColor3", "AIKitButtonFonts", "Iv7Whv_D9_default", "LottieFonts", "Lottie", "AIKitAvatarFonts", "l859ckd8N_default", "AIKitTestimonialFonts", "j35hGfHpy_default", "AIKitIconBigFonts", "dqmYjVsb1_default", "ButtonFillFonts", "wdQxdszl5_default", "AIKitFooterSimpleFonts", "xxrl4saDl_default", "CookieBannerFonts", "CookieBanner", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "transition5", "transition6", "transition7", "animation4", "animation5", "transition8", "animation6", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "router", "useRouter", "elementId7", "ref8", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "SVG", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
