{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/JdxtDQR6UcCLXqg7YTbl/G5Lh7GRraG7BB7H4Evap/cD9idU_Kt.js", "ssg:https://framerusercontent.com/modules/Uhp89LhVmAAv1DVKTbxv/2zNFewwkBOAnFyUS3I1R/hIHp54olC.js", "ssg:https://framerusercontent.com/modules/RKvOfYIlldofHCu0iKZG/j23JdMbw1KruywtA5U93/kzIi2dOhh.js", "ssg:https://framerusercontent.com/modules/l5p2Y2aKCPDqmvgXv6eM/RTgTQfy6cBjkgsyUvA74/LRDqVkHt8.js", "ssg:https://framerusercontent.com/modules/jjcQG1Z05cpEpPzOmw0g/3uizYLA5yJ95aKq7uqYT/TqoQNMN91.js", "ssg:https://framerusercontent.com/modules/W65JqZQg9pbEXO7rCU0Q/IHpSsxMjSSI8aKswvnOt/yi9bS_Dw7.js", "ssg:https://framerusercontent.com/modules/gjR6DDC3qAXREhbnQeen/ko8IX7ksKlpZnaF3ICNr/RK0cqq2rI.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-uOOvs\";const variantClassNames={DBtIdWXMR:\"framer-v-vvjfb1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DBtIdWXMR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:800,pixelWidth:1201,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/NVHQXYs7WI6ia8QM0m1jafP0BDY.jpg\",srcSet:\"https://framerusercontent.com/images/NVHQXYs7WI6ia8QM0m1jafP0BDY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NVHQXYs7WI6ia8QM0m1jafP0BDY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NVHQXYs7WI6ia8QM0m1jafP0BDY.jpg 1201w\"},className:cx(scopingClassNames,\"framer-vvjfb1\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DBtIdWXMR\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uOOvs.framer-bu1nej, .framer-uOOvs .framer-bu1nej { display: block; }\",\".framer-uOOvs.framer-vvjfb1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uOOvs.framer-vvjfb1 { gap: 0px; } .framer-uOOvs.framer-vvjfb1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uOOvs.framer-vvjfb1 > :first-child { margin-left: 0px; } .framer-uOOvs.framer-vvjfb1 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 187\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercD9idU_Kt=withCSS(Component,css,\"framer-uOOvs\");export default FramercD9idU_Kt;FramercD9idU_Kt.displayName=\"MozillaVC\";FramercD9idU_Kt.defaultProps={height:80,width:187};addFonts(FramercD9idU_Kt,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercD9idU_Kt\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"187\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"80\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cD9idU_Kt.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-xhY2z\";const variantClassNames={QYirb5C9d:\"framer-v-1n8k9na\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"QYirb5C9d\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1260,pixelWidth:2400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DdxoJPZsZqrmehFht6ehCWqvEYo.png\",srcSet:\"https://framerusercontent.com/images/DdxoJPZsZqrmehFht6ehCWqvEYo.png?scale-down-to=512 512w,https://framerusercontent.com/images/DdxoJPZsZqrmehFht6ehCWqvEYo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DdxoJPZsZqrmehFht6ehCWqvEYo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DdxoJPZsZqrmehFht6ehCWqvEYo.png 2400w\"},className:cx(scopingClassNames,\"framer-1n8k9na\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QYirb5C9d\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xhY2z.framer-im42c7, .framer-xhY2z .framer-im42c7 { display: block; }\",\".framer-xhY2z.framer-1n8k9na { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xhY2z.framer-1n8k9na { gap: 0px; } .framer-xhY2z.framer-1n8k9na > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xhY2z.framer-1n8k9na > :first-child { margin-left: 0px; } .framer-xhY2z.framer-1n8k9na > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 187\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhIHp54olC=withCSS(Component,css,\"framer-xhY2z\");export default FramerhIHp54olC;FramerhIHp54olC.displayName=\"greycroftlogo\";FramerhIHp54olC.defaultProps={height:80,width:187};addFonts(FramerhIHp54olC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhIHp54olC\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerIntrinsicWidth\":\"187\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hIHp54olC.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-lJ1Jr\";const variantClassNames={uYmTIEPKc:\"framer-v-11di44f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uYmTIEPKc\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:215,pixelWidth:1005,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wmcuVujN9XWAwwV84K5SB9XBFU.jpg\",srcSet:\"https://framerusercontent.com/images/wmcuVujN9XWAwwV84K5SB9XBFU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wmcuVujN9XWAwwV84K5SB9XBFU.jpg 1005w\"},className:cx(scopingClassNames,\"framer-11di44f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uYmTIEPKc\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lJ1Jr.framer-jbtf84, .framer-lJ1Jr .framer-jbtf84 { display: block; }\",\".framer-lJ1Jr.framer-11di44f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lJ1Jr.framer-11di44f { gap: 0px; } .framer-lJ1Jr.framer-11di44f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-lJ1Jr.framer-11di44f > :first-child { margin-left: 0px; } .framer-lJ1Jr.framer-11di44f > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 187\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkzIi2dOhh=withCSS(Component,css,\"framer-lJ1Jr\");export default FramerkzIi2dOhh;FramerkzIi2dOhh.displayName=\"MercuriLogo\";FramerkzIi2dOhh.defaultProps={height:80,width:187};addFonts(FramerkzIi2dOhh,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkzIi2dOhh\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"187\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kzIi2dOhh.map", "// Generated by Framer (861d57e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/g8bi8EOLQjKPBtELVefY/wqqvBMjcW7iw2X53zv2l/q4wPL8vyB.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wMfNlPyYFqnOT3IlKHMB/1tZnW2G8xZM8GI9Ga58P/ZU9lZDIxs.js\";import Label from\"https://framerusercontent.com/modules/o0oU6qXD21mC4gLckgGn/7wWSP5U9FqUY2YHQpHhg/JjjfuEcCA.js\";import InfoCard from\"https://framerusercontent.com/modules/isvOJtB6fMNJ9Z9SOUC1/FJQKit7WWhIS4cAfOqVi/WF0rzITpe.js\";const LabelFonts=getFonts(Label);const MotionDivWithFX=withFX(motion.div);const InfoCardFonts=getFonts(InfoCard);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const cycleOrder=[\"T9uscEIMl\",\"K7mYsuysY\",\"sf35uWUZN\"];const serializationHash=\"framer-uwU8q\";const variantClassNames={K7mYsuysY:\"framer-v-7t7noh\",sf35uWUZN:\"framer-v-rylz9p\",T9uscEIMl:\"framer-v-1oggqph\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition4={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"T9uscEIMl\",Phone:\"sf35uWUZN\",Tablet:\"K7mYsuysY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"T9uscEIMl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T9uscEIMl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1oggqph\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"T9uscEIMl\",ref:refBinding,style:{...style},...addPropertyOverrides({K7mYsuysY:{\"data-framer-name\":\"Tablet\"},sf35uWUZN:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1839xkb\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"MKJtSVrpf\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vkva20\",\"data-framer-name\":\"Text block\",layoutDependency:layoutDependency,layoutId:\"CmJFh9beA\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wtvzsr\",\"data-framer-name\":\"Tile & label\",layoutDependency:layoutDependency,layoutId:\"Nq69uLL2R\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+100+(((componentViewport?.height||642.5)-180-571)/2+0+0)+0+0+0+0+0+0,...addPropertyOverrides({K7mYsuysY:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||622.5)-120-555)/2+0+0)+0+0+0+0+0+0},sf35uWUZN:{y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-90-569)/2+0+0)+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-602saf-container\",layoutDependency:layoutDependency,layoutId:\"IMeXg9X6O-container\",nodeId:\"IMeXg9X6O\",rendersWithMotion:true,scopeId:\"LRDqVkHt8\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"IMeXg9X6O\",layoutId:\"IMeXg9X6O\",U8tjQN6hq:\"Our Team\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:\"Meet our founding team\"})})}),className:\"framer-1agewfs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JGWDXjxja\",style:{\"--extracted-1of0zx5\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",style:{\"--framer-text-alignment\":\"center\"},children:\"We're an odd mix of hackers, gamers, hustlers and nerds. \"})}),className:\"framer-1cx5r8n\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gXVgC_x6D\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14v7n5a\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"QX9XY4SIg\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 20px) / 2, 50px), 300px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||642.5)-180-571)/2+0+0)+0+327+0+0,...addPropertyOverrides({K7mYsuysY:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 20px) / 2, 50px), 300px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||622.5)-120-555)/2+0+0)+0+311+0+0},sf35uWUZN:{width:`max(max(${componentViewport?.width||\"100vw\"} - 40px, 50px), 300px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-90-569)/2+0+0)+0+325+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ukmoky-container\",\"data-framer-name\":\"Team Card\",layoutDependency:layoutDependency,layoutId:\"J9VB80obU-container\",name:\"Team Card\",nodeId:\"J9VB80obU\",rendersWithMotion:true,scopeId:\"LRDqVkHt8\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(InfoCard,{ar1KZMFhA:\"Gian D'Alessandro\",Eenx7HOaZ:\"linkedin\",g7tQbo6v9:\"https://www.linkedin.com/in/giandalessandro/\",GpKGzeiqL:\"CTO & Cofounder\",height:\"100%\",id:\"J9VB80obU\",J0kLmIoGb:addImageAlt({pixelHeight:2608,pixelWidth:1956,src:\"https://framerusercontent.com/images/5LQIkjRBGh0VzLYNt3qfJLsmqo8.jpeg\",srcSet:\"https://framerusercontent.com/images/5LQIkjRBGh0VzLYNt3qfJLsmqo8.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/5LQIkjRBGh0VzLYNt3qfJLsmqo8.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/5LQIkjRBGh0VzLYNt3qfJLsmqo8.jpeg 1956w\"},\"member image\"),layoutId:\"J9VB80obU\",name:\"Team Card\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:`max(max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 20px) / 2, 50px), 300px)`,y:(componentViewport?.y||0)+100+(((componentViewport?.height||642.5)-180-571)/2+0+0)+0+327+0+0,...addPropertyOverrides({K7mYsuysY:{width:`max(max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 20px) / 2, 50px), 300px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||622.5)-120-555)/2+0+0)+0+311+0+0},sf35uWUZN:{width:`max(max(${componentViewport?.width||\"100vw\"} - 40px, 50px), 300px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-90-569)/2+0+0)+0+325+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-p8nn27-container\",\"data-framer-name\":\"Team Card\",layoutDependency:layoutDependency,layoutId:\"h2llw29lW-container\",name:\"Team Card\",nodeId:\"h2llw29lW\",rendersWithMotion:true,scopeId:\"LRDqVkHt8\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(InfoCard,{ar1KZMFhA:\"Oliver Markham\",Eenx7HOaZ:\"linkedin\",g7tQbo6v9:\"https://www.linkedin.com/in/oliver-markham-%F0%9F%94%9C-gdc-596705a5/\",GpKGzeiqL:\"CEO & Cofounder\",height:\"100%\",id:\"h2llw29lW\",J0kLmIoGb:addImageAlt({pixelHeight:3088,pixelWidth:2316,src:\"https://framerusercontent.com/images/NjG62gmB7bpPsKO7YZJ1oVvfaw.jpg\",srcSet:\"https://framerusercontent.com/images/NjG62gmB7bpPsKO7YZJ1oVvfaw.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/NjG62gmB7bpPsKO7YZJ1oVvfaw.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/NjG62gmB7bpPsKO7YZJ1oVvfaw.jpg 2316w\"},\"member image\"),layoutId:\"h2llw29lW\",name:\"Team Card\",style:{width:\"100%\"},width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uwU8q.framer-7768q6, .framer-uwU8q .framer-7768q6 { display: block; }\",\".framer-uwU8q.framer-1oggqph { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 30px 80px 30px; position: relative; width: 1200px; }\",\".framer-uwU8q .framer-1839xkb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uwU8q .framer-1vkva20 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 52%; }\",\".framer-uwU8q .framer-wtvzsr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uwU8q .framer-602saf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uwU8q .framer-1agewfs, .framer-uwU8q .framer-1cx5r8n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uwU8q .framer-14v7n5a { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uwU8q .framer-ukmoky-container, .framer-uwU8q .framer-p8nn27-container { align-self: start; flex: none; height: auto; justify-self: start; min-width: 300px; position: relative; width: 100%; }\",\".framer-uwU8q.framer-v-7t7noh.framer-1oggqph { padding: 80px 30px 40px 30px; width: 810px; }\",\".framer-uwU8q.framer-v-7t7noh .framer-1839xkb { gap: 50px; max-width: 768px; }\",\".framer-uwU8q.framer-v-7t7noh .framer-1vkva20 { width: 80%; }\",\".framer-uwU8q.framer-v-7t7noh .framer-1agewfs { max-width: 490px; }\",\".framer-uwU8q.framer-v-7t7noh .framer-1cx5r8n { max-width: 520px; }\",\".framer-uwU8q.framer-v-rylz9p.framer-1oggqph { padding: 60px 20px 30px 20px; width: 390px; }\",\".framer-uwU8q.framer-v-rylz9p .framer-1839xkb { gap: 64px; max-width: unset; }\",\".framer-uwU8q.framer-v-rylz9p .framer-1vkva20 { width: 100%; }\",\".framer-uwU8q.framer-v-rylz9p .framer-1agewfs { max-width: 400px; }\",\".framer-uwU8q.framer-v-rylz9p .framer-14v7n5a { grid-template-columns: repeat(1, minmax(50px, 1fr)); }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 642.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"K7mYsuysY\":{\"layout\":[\"fixed\",\"auto\"]},\"sf35uWUZN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLRDqVkHt8=withCSS(Component,css,\"framer-uwU8q\");export default FramerLRDqVkHt8;FramerLRDqVkHt8.displayName=\"Team Section to Scroll\";FramerLRDqVkHt8.defaultProps={height:642.5,width:1200};addPropertyControls(FramerLRDqVkHt8,{variant:{options:[\"T9uscEIMl\",\"K7mYsuysY\",\"sf35uWUZN\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLRDqVkHt8,[{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\"}]},...LabelFonts,...InfoCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLRDqVkHt8\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"642.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K7mYsuysY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sf35uWUZN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LRDqVkHt8.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-cSOEA\";const variantClassNames={YPnMtH67k:\"framer-v-lj7d9m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YPnMtH67k\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:694,pixelWidth:1500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/gNzh6qCTmMjoNNHIpSX8XmHv64.jpg\",srcSet:\"https://framerusercontent.com/images/gNzh6qCTmMjoNNHIpSX8XmHv64.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gNzh6qCTmMjoNNHIpSX8XmHv64.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gNzh6qCTmMjoNNHIpSX8XmHv64.jpg 1500w\"},className:cx(scopingClassNames,\"framer-lj7d9m\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YPnMtH67k\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cSOEA.framer-1y884fv, .framer-cSOEA .framer-1y884fv { display: block; }\",\".framer-cSOEA.framer-lj7d9m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cSOEA.framer-lj7d9m { gap: 0px; } .framer-cSOEA.framer-lj7d9m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cSOEA.framer-lj7d9m > :first-child { margin-left: 0px; } .framer-cSOEA.framer-lj7d9m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 187\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTqoQNMN91=withCSS(Component,css,\"framer-cSOEA\");export default FramerTqoQNMN91;FramerTqoQNMN91.displayName=\"DifferentialVC\";FramerTqoQNMN91.defaultProps={height:80,width:187};addFonts(FramerTqoQNMN91,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTqoQNMN91\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"187\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TqoQNMN91.map", "// Generated by Framer (af3ebb8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-CdFtt\";const variantClassNames={U18BBEDz4:\"framer-v-313kmb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"U18BBEDz4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:875,pixelWidth:1400,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/q8eFTncFVZyAi0F1MiYwhdSUNE.png\",srcSet:\"https://framerusercontent.com/images/q8eFTncFVZyAi0F1MiYwhdSUNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/q8eFTncFVZyAi0F1MiYwhdSUNE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q8eFTncFVZyAi0F1MiYwhdSUNE.png 1400w\"},className:cx(scopingClassNames,\"framer-313kmb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"U18BBEDz4\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CdFtt.framer-125hnsj, .framer-CdFtt .framer-125hnsj { display: block; }\",\".framer-CdFtt.framer-313kmb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CdFtt.framer-313kmb { gap: 0px; } .framer-CdFtt.framer-313kmb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CdFtt.framer-313kmb > :first-child { margin-left: 0px; } .framer-CdFtt.framer-313kmb > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 187\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameryi9bS_Dw7=withCSS(Component,css,\"framer-CdFtt\");export default Frameryi9bS_Dw7;Frameryi9bS_Dw7.displayName=\"BETAWORKSLOGO\";Frameryi9bS_Dw7.defaultProps={height:80,width:187};addFonts(Frameryi9bS_Dw7,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameryi9bS_Dw7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"80\",\"framerIntrinsicWidth\":\"187\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yi9bS_Dw7.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import MozillaVC from\"#framer/local/canvasComponent/cD9idU_Kt/cD9idU_Kt.js\";import ButtonAnimatedOutline from\"#framer/local/canvasComponent/Dbb9H4Eqf/Dbb9H4Eqf.js\";import DSectionForSawyer from\"#framer/local/canvasComponent/gB4rlSWrd/gB4rlSWrd.js\";import Greycroftlogo from\"#framer/local/canvasComponent/hIHp54olC/hIHp54olC.js\";import FAQs from\"#framer/local/canvasComponent/hTLngTl1D/hTLngTl1D.js\";import Label from\"#framer/local/canvasComponent/JjjfuEcCA/JjjfuEcCA.js\";import MercuriLogo from\"#framer/local/canvasComponent/kzIi2dOhh/kzIi2dOhh.js\";import SectionTestimonialTestimonialCard from\"#framer/local/canvasComponent/l1I7IU59_/l1I7IU59_.js\";import TeamSectionToScroll from\"#framer/local/canvasComponent/LRDqVkHt8/LRDqVkHt8.js\";import HelperPricingPointsTicker from\"#framer/local/canvasComponent/o8Bd3lkuB/o8Bd3lkuB.js\";import Footer from\"#framer/local/canvasComponent/QJgb5uHXr/QJgb5uHXr.js\";import Navbar from\"#framer/local/canvasComponent/qjYMKrkpL/qjYMKrkpL.js\";import DifferentialVC from\"#framer/local/canvasComponent/TqoQNMN91/TqoQNMN91.js\";import BETAWORKSLOGO from\"#framer/local/canvasComponent/yi9bS_Dw7/yi9bS_Dw7.js\";import Card from\"#framer/local/canvasComponent/Zchkc5TVU/Zchkc5TVU.js\";import SectionWorkStatistic from\"#framer/local/canvasComponent/ZOeoaF481/ZOeoaF481.js\";import*as sharedStyle2 from\"#framer/local/css/BQtkQe3qM/BQtkQe3qM.js\";import*as sharedStyle4 from\"#framer/local/css/msF5jkMei/msF5jkMei.js\";import*as sharedStyle3 from\"#framer/local/css/q4wPL8vyB/q4wPL8vyB.js\";import*as sharedStyle5 from\"#framer/local/css/VZUCCigf0/VZUCCigf0.js\";import*as sharedStyle1 from\"#framer/local/css/Z5HZ7GY6C/Z5HZ7GY6C.js\";import*as sharedStyle from\"#framer/local/css/ZU9lZDIxs/ZU9lZDIxs.js\";import metadataProvider from\"#framer/local/webPageMetadata/RK0cqq2rI/RK0cqq2rI.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const MotionHeaderWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.header);const DSectionForSawyerFonts=getFonts(DSectionForSawyer);const EmbedFonts=getFonts(Embed);const DifferentialVCFonts=getFonts(DifferentialVC);const MercuriLogoFonts=getFonts(MercuriLogo);const GreycroftlogoFonts=getFonts(Greycroftlogo);const MozillaVCFonts=getFonts(MozillaVC);const BETAWORKSLOGOFonts=getFonts(BETAWORKSLOGO);const TickerFonts=getFonts(Ticker);const LabelFonts=getFonts(Label);const MotionDivWithFX=withFX(motion.div);const CardFonts=getFonts(Card);const ContainerWithFX=withFX(Container);const ButtonAnimatedOutlineFonts=getFonts(ButtonAnimatedOutline);const HelperPricingPointsTickerFonts=getFonts(HelperPricingPointsTicker);const SectionWorkStatisticFonts=getFonts(SectionWorkStatistic);const SectionTestimonialTestimonialCardFonts=getFonts(SectionTestimonialTestimonialCard);const TeamSectionToScrollFonts=getFonts(TeamSectionToScroll);const FAQsFonts=getFonts(FAQs);const FooterFonts=getFonts(Footer);const breakpoints={dCy6eEeEj:\"(min-width: 810px) and (max-width: 1199px)\",nqbeV6Nc5:\"(max-width: 809px)\",ZrFh5oJMC:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3iDHZ\";const variantClassNames={dCy6eEeEj:\"framer-v-1eb61eq\",nqbeV6Nc5:\"framer-v-1vbm2y9\",ZrFh5oJMC:\"framer-v-g7za46\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={bounce:0,delay:.2,duration:.9,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={damping:60,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:60,delay:0,mass:1.2,stiffness:350,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:50};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition4={damping:60,delay:.6,mass:1.2,stiffness:350,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const transition5={damping:60,delay:.3,mass:1.2,stiffness:350,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:50};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition6={delay:.8,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:15};const transition7={delay:1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition8={damping:60,delay:.3,mass:1,stiffness:400,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ZrFh5oJMC\",Phone:\"nqbeV6Nc5\",Tablet:\"dCy6eEeEj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZrFh5oJMC\"};};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"rRzFZsxGl\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"nqbeV6Nc5\")return false;return true;};const elementId1=useRouteElementId(\"Dyal5ntEh\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"ayfibBmrj\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"dCy6eEeEj\")return false;return true;};const elementId3=useRouteElementId(\"prEkCnRNW\");const ref4=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"nqbeV6Nc5\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"dCy6eEeEj\")return true;return false;};const elementId4=useRouteElementId(\"N55ymu2Zh\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"lseSnSQep\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"Q0MWcGcCl\");const ref7=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ZrFh5oJMC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-559d765a-19e8-4942-a800-6127032dcef8, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-g7za46\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(MotionHeaderWithOptimizedAppearEffect,{animate:animation,className:\"framer-14h9ahl\",\"data-framer-appear-id\":\"14h9ahl\",\"data-framer-name\":\"Header\",initial:animation1,optimized:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:0},nqbeV6Nc5:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"min(max(100vw, 1px), 1080px)\",y:16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qrd5z-container\",nodeId:\"n5f5X3lyW\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{variant:\"NjfejoqD5\"},nqbeV6Nc5:{__framer__variantAppearEffectEnabled:undefined,variant:\"LNFnFMgIm\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"V27AEVu9T\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"n5f5X3lyW\",layoutId:\"n5f5X3lyW\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"VpS5dHsBP\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{height:800},nqbeV6Nc5:{height:537}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iffmn7-container\",id:elementId,nodeId:\"rRzFZsxGl\",ref:ref2,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{style:{width:\"100%\"},variant:\"t4RjK6Qwr\"},nqbeV6Nc5:{variant:\"yDVKp4Ssp\"}},children:/*#__PURE__*/_jsx(DSectionForSawyer,{height:\"100%\",id:\"rRzFZsxGl\",layoutId:\"rRzFZsxGl\",style:{height:\"100%\",width:\"100%\"},variant:\"DYzVpSaoN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-2hp2t4\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 84.3844%)\"},children:\"Sawyer is a force multiplier for gamedev professionals. \"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 84.3844%)\"},children:\"Sawyer is a force multiplier for gamedev professionals. \"})})}),className:\"framer-1h7g3ik\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x4mo7r\",\"data-styles-preset\":\"Z5HZ7GY6C\",style:{\"--framer-text-alignment\":\"center\"},children:\"In a controlled experiment, we found developers with access to Sawyer were able to fix bugs at 2.8x the rate of those without. \"})}),className:\"framer-1ip1zsa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jsvnwc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UdiljkptG\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"UdiljkptG\",layoutId:\"UdiljkptG\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://my.spline.design/fox1-d87265d7b7906553dcaf0e5b33e5a437/\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Backed by the best:\"})}),className:\"framer-6aly5x hidden-1vbm2y9\",fonts:[\"FS;Clash Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-c0lemp hidden-1vbm2y9\",\"data-framer-name\":\"Ticker section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1glvad3\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xyjtdx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mRBT4DF8J\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.5,id:\"mRBT4DF8J\",layoutId:\"mRBT4DF8J\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k9fgb5\",\"data-framer-name\":\"Our-partner-ticker-images\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-err7h4-container\",inComponentSlot:true,nodeId:\"ewVuifp_I\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(DifferentialVC,{height:\"100%\",id:\"ewVuifp_I\",layoutId:\"ewVuifp_I\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hdvokt-container\",inComponentSlot:true,nodeId:\"tc4z9yeAq\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(MercuriLogo,{height:\"100%\",id:\"tc4z9yeAq\",layoutId:\"tc4z9yeAq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s6dzln-container\",inComponentSlot:true,nodeId:\"OgrAuRcPu\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Greycroftlogo,{height:\"100%\",id:\"OgrAuRcPu\",layoutId:\"OgrAuRcPu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wd3z46-container\",inComponentSlot:true,nodeId:\"EpUvI8KbT\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(MozillaVC,{height:\"100%\",id:\"EpUvI8KbT\",layoutId:\"EpUvI8KbT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:\"187px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cofg21-container\",inComponentSlot:true,nodeId:\"b0koNgRgW\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(BETAWORKSLOGO,{height:\"100%\",id:\"b0koNgRgW\",layoutId:\"b0koNgRgW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})],speed:8,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1kxyr5f\",\"data-framer-name\":\"About section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v5jpc9\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zrnkmw\",\"data-framer-name\":\"Text block\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fw61ai\",\"data-framer-name\":\"Left content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+1798+80+0+0+0+0+0+0+0},nqbeV6Nc5:{y:(componentViewport?.y||0)+0+1436+60+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+2005+218+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aqldut-container\",nodeId:\"Lm173AEgR\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"Lm173AEgR\",layoutId:\"Lm173AEgR\",U8tjQN6hq:\"What can Sawyer do?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l1f3ab\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 84.3844%)\"},children:\"Sawyer is a general agent, capable of tackling a range of your most painful  and repetitive tasks.\"})})}),className:\"framer-mm08od\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-114dy2n\",\"data-framer-name\":\"Right content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x4mo7r\",\"data-styles-preset\":\"Z5HZ7GY6C\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d98229d0-ca48-49bd-ac66-aef162b97c74, rgb(206, 206, 206))\"},children:\"Focus on the fun. Let Sawyer take care of the mundane. \"})}),className:\"framer-zwyqja\",\"data-framer-name\":\"No unnecessary bureaucracy. We focus on getting your ideas and problems solved.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1levuj5\",\"data-framer-name\":\"Bottom content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tvmbuw\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+0},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rb68s7-container\",nodeId:\"iQl8OCBz2\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Give Sawyer a bug report and watch as it evaluates relevant code, scene data and much more to find a root cause and apply a fix. \",height:\"100%\",id:\"iQl8OCBz2\",layoutId:\"iQl8OCBz2\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/KMv1BBXOeUIdIYX1Yi7IELTwU.png\"},\"background image\"),QIohYzwxR:\"Bug Fixing\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+0},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+303}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dzlhda-container\",nodeId:\"FzVMhfelf\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Set a performance target and work with Sawyer as it loops through potential improvements - tirelessly iterating towards your goal.\",height:\"100%\",id:\"FzVMhfelf\",layoutId:\"FzVMhfelf\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/cOWZdwXuas2PTkreJpI96bdXL38.png\"},\"\"),QIohYzwxR:\"Optimization\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+303},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+606}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-givj0a-container\",nodeId:\"pw961ihj9\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Go from product description to working mechanic in minutes. Use Sawyer to plan, generate new script and modify existing code.\",height:\"100%\",id:\"pw961ihj9\",layoutId:\"pw961ihj9\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NDBhC2LRZH82fyXAKvyhOom71Y.png\"},\"background image\"),QIohYzwxR:\"Rapid Prototyping\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+303},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+909}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-193xm52-container\",nodeId:\"qmIik5t7N\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Let Sawyer comb through your pull requests \u2014 spotting issues, suggesting fixes, and flagging risks before they hit production. A second pair of eyes.\",height:\"100%\",id:\"qmIik5t7N\",layoutId:\"qmIik5t7N\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NDBhC2LRZH82fyXAKvyhOom71Y.png\"},\"background image\"),QIohYzwxR:\"Code Review\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+606},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+1212}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+303,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y4rtqk-container\",nodeId:\"FttJGAMz9\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Integrate SDKs at the speed of light. Sawyer will research, review documentation, plan and implement integration.\",height:\"100%\",id:\"FttJGAMz9\",layoutId:\"FttJGAMz9\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NDBhC2LRZH82fyXAKvyhOom71Y.png\"},\"background image\"),QIohYzwxR:\"SDK Integration\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+606},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+1515}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+303,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13n540n-container\",nodeId:\"TUjQRrvg4\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Analyze your game for porting with Sawyer. Get a clear plan, platform risks, and system-level blockers.\",height:\"100%\",id:\"TUjQRrvg4\",layoutId:\"TUjQRrvg4\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NDBhC2LRZH82fyXAKvyhOom71Y.png\"},\"background image\"),QIohYzwxR:\"Porting plan\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+909},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+1818}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+303,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r0ry6i-container\",nodeId:\"MQysuprW7\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Import your Figma files and let Sawyer translate them into working Unity UI \u2014 clean, styled, and ready to hook up.\",height:\"100%\",id:\"MQysuprW7\",layoutId:\"MQysuprW7\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mGXNkijik0wysgb8MBLPBNnKpdM.png\"},\"background image\"),QIohYzwxR:\"UI Creation\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+1798+80+0+0+347+0+0+0+909},nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) * 0.75)`,y:(componentViewport?.y||0)+0+1436+60+0+0+347+0+0+0+2121}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:287,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2005+218+0+0+345+0+0+0+303,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-re421v-container\",nodeId:\"Siz8YCmQT\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Card,{bXHUK_vFy:\"Wherever your player feedback is stored, Sawyer surfaces sentiment, spots trends, and highlights what matters most.\",height:\"100%\",id:\"Siz8YCmQT\",layoutId:\"Siz8YCmQT\",lMgvTExrL:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mGXNkijik0wysgb8MBLPBNnKpdM.png\"},\"background image\"),QIohYzwxR:\"Feedback Analysis\",style:{width:\"100%\"},variant:\"SPMwdml_8\",width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-131l32k\",\"data-framer-name\":\"Services section\",id:elementId2,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9zchct\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1axuf5l\",\"data-framer-name\":\"Text block\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fapwn3\",\"data-framer-name\":\"Tile & label\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+3461+80+0+0+0+0+0+0+0},nqbeV6Nc5:{y:(componentViewport?.y||0)+0+4281+60+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+3176+162+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-adsztz-container\",nodeId:\"ZXN4KIbUE\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"ZXN4KIbUE\",layoutId:\"ZXN4KIbUE\",U8tjQN6hq:\"Sawyer's superpowers\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:[\"For gamedevs, generic AI systems don't work. \",/*#__PURE__*/_jsx(\"br\",{}),\"Sawyer does.\"]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:[\"For gamedevs, generic AI sytems don't work. \",/*#__PURE__*/_jsx(\"br\",{}),\"Sawyer does.\"]})})}),className:\"framer-1g0zr6r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-x4mo7r\",\"data-styles-preset\":\"Z5HZ7GY6C\",style:{\"--framer-text-alignment\":\"center\"},children:\"Here's why Sawyer can supercharge your team:\"})}),className:\"framer-1re19l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15nue1o\",\"data-framer-name\":\"Testimonials 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xnsw3s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gc7j55\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kh60bz\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c5dom4\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i3pl8i\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:\"Tackles complex tasks\"})}),className:\"framer-1qny0hr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",children:\"Forget about one-time simple questions; instead, delegate real, complex work to Sawyer. \"})}),className:\"framer-seylir\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pe0kon\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7yml8\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5v33mv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:\" Repeatable workflows\"})}),className:\"framer-megqmv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",children:\"To solve niche painpoints, you can use our 'Playbook' system; you'll be able to direct Sawyer to follow a very specific plan of action. \"})}),className:\"framer-vol7fk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0bzh7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15hdryq\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fdosr1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wm9392\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:\"Complete context\"})}),className:\"framer-s8v6b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",children:\"Our proprietary context engine means that Sawyer understands all your relevant context - from code to design docs, from profiling data to scene data. \"})}),className:\"framer-11z8796\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obc9zp\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xbjp4f\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hd1uv0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:[\"Top-performing AI \",/*#__PURE__*/_jsx(\"br\",{}),\"systems\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:\"Top-performing AI systems\"})}),className:\"framer-1se12t7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",children:\"Our internal benchmarking system ensures that we continually monitor and improve outcomes for real gamedev painpoints. \"})}),className:\"framer-17xv7cs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i6mfz8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jv68q\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2l1b41\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ax7hbz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:\"Multi-purpose\"})}),className:\"framer-1dtzhhm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",children:\"Sawyer is a flexible AI system; whether you're planning to port a game, prototyping new features or integrating SDKs - Sawyer is here to help. \"})}),className:\"framer-1vcky3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pejt4j\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iqacik\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17383c2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:[\"Agent-led. \",/*#__PURE__*/_jsx(\"br\",{}),\"Human-controlled\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:\"Agent-led. Human-controlled\"})}),className:\"framer-lcbd7r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",children:\"Humans are always in the loop; watch Sawyer work, but retain control and approve any major changes. \"})}),className:\"framer-b6ez7k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-sjfucs hidden-1eb61eq\",\"data-framer-name\":\"Pricing section\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127zcpw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jtz4fg\",\"data-framer-name\":\"Text block\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xv4xs0\",\"data-framer-name\":\"Tile & label\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{y:(componentViewport?.y||0)+0+6387.6+120+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+4386.2+100+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qbjngc-container\",nodeId:\"Jq_HEKOIM\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"Jq_HEKOIM\",layoutId:\"Jq_HEKOIM\",U8tjQN6hq:\"Join the forward-thinkers\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:\"We're now running private betas with top studios\"})})}),className:\"framer-1bp6jtv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Contact us to find out if you're a good fit. \"})}),className:\"framer-dsohix\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tngzz9\",\"data-framer-name\":\"Pricing section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pfw1cw\",\"data-framer-name\":\"Free pricing outline\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wigeti\",\"data-framer-name\":\"Free try\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130q26h\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qmssqy\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ivoebf\",\"data-styles-preset\":\"msF5jkMei\",children:\"Join our beta programme\"})}),className:\"framer-1iigwtw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-po6ipa\",\"data-styles-preset\":\"VZUCCigf0\",children:\"Book in a call with our founding team see if the beta programme is a good fit for your company. \"})}),className:\"framer-1a0yxn1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{y:(componentViewport?.y||0)+0+6387.6+120+0+0+325+0+0+.7+30+0+0+161.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+4386.2+100+0+0+327+0+0+.7+30+0+161.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zl9qq1-container\",nodeId:\"oAnnR53ZW\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(ButtonAnimatedOutline,{GACnUDKtq:false,GS3bSUXSK:\"https://calendly.com/ollie-unakin\",height:\"100%\",id:\"oAnnR53ZW\",layoutId:\"oAnnR53ZW\",ofLqZhEO8:\"Book in a call\",pFCLjP9RJ:\"var(--token-70b4ad58-9042-4a72-8dea-68d8a9efadf0, rgb(13, 13, 13))\",variant:\"o2JnstQpK\",width:\"100%\",xrPej3fKU:\"rgb(32, 32, 32)\",yAq_i_mXy:\"arrow-up-right\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 61.4px)`,y:(componentViewport?.y||0)+0+6387.6+120+0+0+325+0+0+.7+30+238.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 91.4px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4386.2+100+0+0+327+0+0+.7+54.1,children:/*#__PURE__*/_jsx(Container,{className:\"framer-107alwx-container\",\"data-framer-name\":\"pills\",name:\"pills\",nodeId:\"cjRmi7c4o\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(HelperPricingPointsTicker,{height:\"100%\",id:\"cjRmi7c4o\",layoutId:\"cjRmi7c4o\",name:\"pills\",style:{width:\"100%\"},width:\"100%\"})})})})]})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ceq2lo\",\"data-framer-name\":\"Testimonials section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1goqod5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jcnu05\",\"data-framer-name\":\"Text block\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1if44kd\",\"data-framer-name\":\"Tile & label\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+4599.2+80+0+0+0+0+0+0+0},nqbeV6Nc5:{y:(componentViewport?.y||0)+0+7322.2+100+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+5162.8+100+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-183s7cs-container\",nodeId:\"FHCnqola9\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"FHCnqola9\",layoutId:\"FHCnqola9\",U8tjQN6hq:\"Success Stories\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:\"We're enabling the next generation of AI-native game creators.\"})})}),className:\"framer-5l5hu2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",style:{\"--framer-text-alignment\":\"center\"},children:\"It's hard enough to build a studio right now. Give yourself every advantage.\"})}),className:\"framer-1y75s6u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g3a628\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f4votv\",\"data-framer-name\":\"Testmonial\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1syd6q3 hidden-1vbm2y9\",\"data-framer-name\":\"Client details\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{background:{alt:\"user image\",fit:\"fill\",intrinsicHeight:130,intrinsicWidth:130,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4599.2+80+0+0+321+0+0+0+0+0),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/bwzV94laBq51o2ydYKgxDaDueM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"user image\",fit:\"fill\",intrinsicHeight:130,intrinsicWidth:130,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5162.8+100+0+0+327+0+0+0+33.3),pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/bwzV94laBq51o2ydYKgxDaDueM.png\"},className:\"framer-1dzlh65\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5zcjbp\",\"data-framer-name\":\"Client info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-16kvls1\",\"data-styles-preset\":\"BQtkQe3qM\",children:\"Justin Harold\"})}),className:\"framer-1w2ssg4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-po6ipa\",\"data-styles-preset\":\"VZUCCigf0\",children:\"Rave House Studios\"})}),className:\"framer-kz3oe9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-loizjw\",\"data-framer-name\":\"Client testimonial\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ivoebf\",\"data-styles-preset\":\"msF5jkMei\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:\"\u201CSawyer instantly solved a bug I'd been struggling with for a over a week.\u201D\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ivoebf\",\"data-styles-preset\":\"msF5jkMei\",style:{\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:\"\u201CSawyer instantly solved a bug I'd been struggling with for a over a week.\u201D\"})}),className:\"framer-16ba8zc hidden-1vbm2y9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l48tkr\",\"data-framer-name\":\"Line\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xuhwhi hidden-1vbm2y9\",\"data-framer-name\":\"Metrics\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} - 60px, 768px), 648px) * 0.36)`,y:(componentViewport?.y||0)+0+4599.2+80+0+0+321+0+0+0+97+0+80.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:\"439px\",y:(componentViewport?.y||0)+0+5162.8+100+0+0+327+0+0+0+0+80.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-94zzyw-container\",nodeId:\"CvmOdHj9R\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(SectionWorkStatistic,{height:\"100%\",id:\"CvmOdHj9R\",layoutId:\"CvmOdHj9R\",lYRUVwspR:\"2.8x\",style:{width:\"100%\"},variant:\"NGZXpmV1K\",width:\"100%\",xKpqwDArW:\"Calculated productivity gains\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bo628\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dsaush\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 2px, 1px)`,y:(componentViewport?.y||0)+0+4599.2+80+0+0+321+0+341.2+0},nqbeV6Nc5:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+7322.2+100+0+0+325+0+49+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:330,width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 2px, 1px)`,y:(componentViewport?.y||0)+0+5162.8+100+0+0+327+0+244.2+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3igr88-container\",nodeId:\"c8xhR0tq5\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{eZiFcQlN4:\"Rave House Studios\",FruYj3qUZ:\"Justin\",jwEMprM2X:addImageAlt({pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/bwzV94laBq51o2ydYKgxDaDueM.png\"},\"\"),WGVWrlrPl:\"\u201CSawyer instantly solved a bug I'd been struggling with for a over a week.\u201D\"}},children:/*#__PURE__*/_jsx(SectionTestimonialTestimonialCard,{eZiFcQlN4:\"Virtual Verse\",FruYj3qUZ:\"Mohamed\",height:\"100%\",id:\"c8xhR0tq5\",layoutId:\"c8xhR0tq5\",style:{width:\"100%\"},variant:\"YUu7FWcZc\",WGVWrlrPl:\"Sawyer is an exceptional AI companion that deeply understands our codebase, assisting with feature development, bug fixes, and smart suggestions. It\u2019s fast, intelligent, and a game-changer for our workflow. Highly recommended\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nqbeV6Nc5:{height:330,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+7322.2+100+0+0+325+0+49+0+363}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qm1o36-container hidden-g7za46 hidden-1eb61eq\",nodeId:\"sO3lYCEkJ\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(SectionTestimonialTestimonialCard,{eZiFcQlN4:\"Virtual Verse\",FruYj3qUZ:\"Mohamed\",height:\"100%\",id:\"sO3lYCEkJ\",layoutId:\"sO3lYCEkJ\",style:{width:\"100%\"},variant:\"YUu7FWcZc\",WGVWrlrPl:\"Sawyer is an exceptional AI companion that deeply understands our codebase, assisting with feature development, bug fixes, and smart suggestions. It\u2019s fast, intelligent, and a game-changer for our workflow. Highly recommended\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jm9jhu\",\"data-framer-name\":\"Line\"})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-1rtriec hidden-g7za46 hidden-1vbm2y9\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8qfwo\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4fzy2t\",\"data-framer-name\":\"Text block\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nynm3o\",\"data-framer-name\":\"Tile & label\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:\"We're now running private betas with top studios\"})})}),className:\"framer-ov2bzi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+5711.4+40+-37.3+0+0+0+0+0+68}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x8fow4-container\",nodeId:\"nIgk5W3UO\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"nIgk5W3UO\",layoutId:\"nIgk5W3UO\",U8tjQN6hq:\"Join the forward-thinkers\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",style:{\"--framer-text-alignment\":\"center\"},children:\"Contact us to find out if you're a good fit. \"})}),className:\"framer-1y4fnsx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ejl3u\",\"data-framer-name\":\"Pricing section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13qys1s\",\"data-framer-name\":\"Free pricing outline\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ktc6nh\",\"data-framer-name\":\"Free try\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h4bnh6\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y2q914\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ivoebf\",\"data-styles-preset\":\"msF5jkMei\",children:\"Join our beta programme\"})}),className:\"framer-16f530w\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-po6ipa\",\"data-styles-preset\":\"VZUCCigf0\",children:\"Book in a call with our founding team see if the beta programme is a good fit for your company. \"})}),className:\"framer-lhfm1d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+5711.4+40+-37.3+0+325+0+0+.7+30+0+161.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fhippp-container\",nodeId:\"XOnq0VNDa\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(ButtonAnimatedOutline,{GACnUDKtq:false,GS3bSUXSK:\"https://calendly.com/ollie-unakin\",height:\"100%\",id:\"XOnq0VNDa\",layoutId:\"XOnq0VNDa\",ofLqZhEO8:\"Book in a call\",pFCLjP9RJ:\"var(--token-70b4ad58-9042-4a72-8dea-68d8a9efadf0, rgb(13, 13, 13))\",variant:\"o2JnstQpK\",width:\"100%\",xrPej3fKU:\"rgb(32, 32, 32)\",yAq_i_mXy:\"arrow-up-right\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 768px) - 91.4px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5711.4+40+-37.3+0+325+0+0+.7+54.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,children:/*#__PURE__*/_jsx(Container,{className:\"framer-71e8dc-container\",\"data-framer-name\":\"pills\",name:\"pills\",nodeId:\"ugSWNwBUC\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(HelperPricingPointsTicker,{height:\"100%\",id:\"ugSWNwBUC\",layoutId:\"ugSWNwBUC\",name:\"pills\",style:{width:\"100%\"},width:\"100%\"})})})})]})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+6311.4},nqbeV6Nc5:{y:(componentViewport?.y||0)+0+8576.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:642,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6244,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f13r79-container\",id:elementId4,nodeId:\"N55ymu2Zh\",ref:ref5,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{variant:\"K7mYsuysY\"},nqbeV6Nc5:{variant:\"sf35uWUZN\"}},children:/*#__PURE__*/_jsx(TeamSectionToScroll,{height:\"100%\",id:\"N55ymu2Zh\",layoutId:\"N55ymu2Zh\",style:{width:\"100%\"},variant:\"T9uscEIMl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-unn3vz\",\"data-framer-name\":\"Faq's section\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1si8ew7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rgwz24\",\"data-framer-name\":\"Text block\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10uqpne\",\"data-framer-name\":\"Tile & label\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+6953.4+80+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+6886+100+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ov2bpa-container hidden-1vbm2y9\",nodeId:\"H3Oa13fh_\",scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"H3Oa13fh_\",layoutId:\"H3Oa13fh_\",U8tjQN6hq:\"FAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:[\"Frequently Asked \",/*#__PURE__*/_jsx(\"br\",{}),\"Questions\"]})})})},nqbeV6Nc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:[\"Frequently Asked \",/*#__PURE__*/_jsx(\"br\",{}),\"Questions\"]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1omql7f\",\"data-styles-preset\":\"ZU9lZDIxs\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4448baec-b799-4862-9658-e0c2208a658f, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(41, 41, 41) 0%, rgb(255, 255, 255) 83.7838%)\"},children:[\"Frequently Asked \",/*#__PURE__*/_jsx(\"br\",{}),\"Questions\"]})})}),className:\"framer-pdm1xo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",style:{\"--framer-text-alignment\":\"center\"},children:\"What do you wanna know?\"})})},nqbeV6Nc5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",style:{\"--framer-text-alignment\":\"center\"},children:\"What do you wanna know?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nsqjgg\",\"data-styles-preset\":\"q4wPL8vyB\",style:{\"--framer-text-alignment\":\"left\"},children:\"What do you wanna know?\"})}),className:\"framer-k86lae\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,y:(componentViewport?.y||0)+0+6953.4+80+0+0+325},nqbeV6Nc5:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+9218.2+80+0+0+272}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:367,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 66px) / 2, 1px)`,y:(componentViewport?.y||0)+0+6886+100+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11fx9xn-container\",nodeId:\"q9Jy1sYvI\",rendersWithMotion:true,scopeId:\"RK0cqq2rI\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQs,{height:\"100%\",id:\"q9Jy1sYvI\",layoutId:\"q9Jy1sYvI\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{y:(componentViewport?.y||0)+0+7765.4},nqbeV6Nc5:{y:(componentViewport?.y||0)+0+9977.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:673,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7433,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h5vxlp-container\",id:elementId6,nodeId:\"Q0MWcGcCl\",ref:ref7,scopeId:\"RK0cqq2rI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dCy6eEeEj:{variant:\"wFt4H9VxC\"},nqbeV6Nc5:{variant:\"HU7qCMfHB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Q0MWcGcCl\",layoutId:\"Q0MWcGcCl\",style:{width:\"100%\"},variant:\"YqdmpglvG\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3iDHZ.framer-73yyni, .framer-3iDHZ .framer-73yyni { display: block; }\",\".framer-3iDHZ.framer-g7za46 { align-content: center; align-items: center; background-color: var(--token-559d765a-19e8-4942-a800-6127032dcef8, #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-3iDHZ .framer-14h9ahl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 16px 0px 0px 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-3iDHZ .framer-9qrd5z-container { flex: 1 0 0px; height: auto; max-width: 1080px; position: relative; width: 1px; }\",\".framer-3iDHZ .framer-1iffmn7-container { flex: none; height: 100vh; position: relative; width: 100%; z-index: 0; }\",\".framer-3iDHZ .framer-2hp2t4 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: 873px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1h7g3ik { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-1ip1zsa { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 734px; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-1jsvnwc-container { flex: none; height: 400px; position: relative; width: 600px; }\",\".framer-3iDHZ .framer-6aly5x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 22px; position: relative; white-space: pre-wrap; width: 166px; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-c0lemp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-3iDHZ .framer-1glvad3 { 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: 924px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-xyjtdx-container { flex: none; height: 110px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-k9fgb5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-3iDHZ .framer-err7h4-container, .framer-3iDHZ .framer-hdvokt-container, .framer-3iDHZ .framer-1s6dzln-container, .framer-3iDHZ .framer-1wd3z46-container, .framer-3iDHZ .framer-cofg21-container { flex: none; height: 62px; position: relative; width: 187px; }\",\".framer-3iDHZ .framer-1kxyr5f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 130px; height: min-content; justify-content: center; overflow: visible; padding: 218px 30px 18px 30px; position: relative; width: 100%; z-index: 0; }\",\".framer-3iDHZ .framer-v5jpc9, .framer-3iDHZ .framer-127zcpw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: flex-start; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-zrnkmw, .framer-3iDHZ .framer-1axuf5l, .framer-3iDHZ .framer-1jtz4fg, .framer-3iDHZ .framer-1jcnu05 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 52%; }\",\".framer-3iDHZ .framer-fw61ai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-aqldut-container, .framer-3iDHZ .framer-adsztz-container, .framer-3iDHZ .framer-qbjngc-container, .framer-3iDHZ .framer-zl9qq1-container, .framer-3iDHZ .framer-183s7cs-container, .framer-3iDHZ .framer-1x8fow4-container, .framer-3iDHZ .framer-fhippp-container, .framer-3iDHZ .framer-ov2bpa-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3iDHZ .framer-l1f3ab { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-mm08od { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1.9 0 0px; height: auto; max-height: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-114dy2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-zwyqja, .framer-3iDHZ .framer-1iigwtw, .framer-3iDHZ .framer-1a0yxn1, .framer-3iDHZ .framer-16f530w, .framer-3iDHZ .framer-lhfm1d { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-1levuj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1tvmbuw { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1rb68s7-container, .framer-3iDHZ .framer-dzlhda-container, .framer-3iDHZ .framer-givj0a-container, .framer-3iDHZ .framer-193xm52-container, .framer-3iDHZ .framer-y4rtqk-container, .framer-3iDHZ .framer-13n540n-container, .framer-3iDHZ .framer-1r0ry6i-container, .framer-3iDHZ .framer-re421v-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-131l32k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 162px 30px 30px 30px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-9zchct, .framer-3iDHZ .framer-1goqod5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1fapwn3, .framer-3iDHZ .framer-1xv4xs0, .framer-3iDHZ .framer-1if44kd, .framer-3iDHZ .framer-1nynm3o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1g0zr6r, .framer-3iDHZ .framer-1bp6jtv, .framer-3iDHZ .framer-5l5hu2, .framer-3iDHZ .framer-1w2ssg4, .framer-3iDHZ .framer-kz3oe9, .framer-3iDHZ .framer-16ba8zc, .framer-3iDHZ .framer-pdm1xo { --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-3iDHZ .framer-1re19l, .framer-3iDHZ .framer-dsohix, .framer-3iDHZ .framer-1y75s6u, .framer-3iDHZ .framer-k86lae { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-15nue1o { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-xnsw3s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-3iDHZ .framer-gc7j55, .framer-3iDHZ .framer-1e0bzh7, .framer-3iDHZ .framer-1i6mfz8 { align-content: center; align-items: center; 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; }\",\".framer-3iDHZ .framer-kh60bz, .framer-3iDHZ .framer-pe0kon, .framer-3iDHZ .framer-15hdryq, .framer-3iDHZ .framer-1obc9zp, .framer-3iDHZ .framer-1jv68q, .framer-3iDHZ .framer-1pejt4j { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1c5dom4, .framer-3iDHZ .framer-1k7yml8, .framer-3iDHZ .framer-fdosr1, .framer-3iDHZ .framer-xbjp4f, .framer-3iDHZ .framer-2l1b41, .framer-3iDHZ .framer-iqacik { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1i3pl8i, .framer-3iDHZ .framer-5v33mv, .framer-3iDHZ .framer-1wm9392, .framer-3iDHZ .framer-1hd1uv0, .framer-3iDHZ .framer-1ax7hbz, .framer-3iDHZ .framer-17383c2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3iDHZ .framer-1qny0hr, .framer-3iDHZ .framer-megqmv, .framer-3iDHZ .framer-s8v6b, .framer-3iDHZ .framer-1se12t7, .framer-3iDHZ .framer-1dtzhhm, .framer-3iDHZ .framer-lcbd7r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-3iDHZ .framer-seylir, .framer-3iDHZ .framer-vol7fk, .framer-3iDHZ .framer-11z8796, .framer-3iDHZ .framer-17xv7cs, .framer-3iDHZ .framer-1vcky3i, .framer-3iDHZ .framer-b6ez7k { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-sjfucs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 30px 80px 30px; position: relative; width: 100%; z-index: 0; }\",\".framer-3iDHZ .framer-tngzz9, .framer-3iDHZ .framer-6ejl3u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1pfw1cw, .framer-3iDHZ .framer-13qys1s { align-content: center; align-items: center; background: linear-gradient(180deg, #000000 0%, rgb(255, 255, 255) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0.7px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3iDHZ .framer-wigeti, .framer-3iDHZ .framer-ktc6nh { align-content: center; align-items: center; background: linear-gradient(180deg, #000000 0%, rgb(0, 0, 0) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3iDHZ .framer-130q26h, .framer-3iDHZ .framer-h4bnh6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-3iDHZ .framer-1qmssqy, .framer-3iDHZ .framer-y2q914 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-107alwx-container, .framer-3iDHZ .framer-3igr88-container, .framer-3iDHZ .framer-1qm1o36-container, .framer-3iDHZ .framer-71e8dc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-3iDHZ .framer-ceq2lo { 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: 100px 30px 80px 30px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-g3a628 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-f4votv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 968px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1syd6q3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40%; }\",\".framer-3iDHZ .framer-1dzlh65 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); position: relative; width: 65px; }\",\".framer-3iDHZ .framer-5zcjbp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3iDHZ .framer-loizjw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3iDHZ .framer-l48tkr { background: linear-gradient(90deg, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, #3d3d3d) 0%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 75.82584415470158%, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) 100%); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1xuhwhi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-94zzyw-container { flex: none; height: auto; position: relative; width: 439px; }\",\".framer-3iDHZ .framer-bo628 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-1dsaush, .framer-3iDHZ .framer-1jm9jhu { background: linear-gradient(0deg, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) 0%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 23.971996410472975%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 75.82584415470158%, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) 100%); flex: none; height: 233px; overflow: hidden; position: relative; width: 1px; z-index: 1; }\",\".framer-3iDHZ .framer-1rtriec { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-i8qfwo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 768px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-4fzy2t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-3iDHZ .framer-ov2bzi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 490px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-1y4fnsx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3iDHZ .framer-f13r79-container, .framer-3iDHZ .framer-h5vxlp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-unn3vz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 100px 30px 80px 30px; position: relative; width: 100%; z-index: 0; }\",\".framer-3iDHZ .framer-1si8ew7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: flex-start; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-rgwz24 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 40%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-3iDHZ .framer-10uqpne { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3iDHZ .framer-11fx9xn-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-3iDHZ[data-border=\"true\"]::after, .framer-3iDHZ [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-3iDHZ.framer-g7za46 { width: 810px; } .framer-3iDHZ .framer-14h9ahl { padding: 0px; } .framer-3iDHZ .framer-1iffmn7-container { height: auto; } .framer-3iDHZ .framer-2hp2t4 { height: 850px; } .framer-3iDHZ .framer-c0lemp { padding: 8px 0px 8px 0px; } .framer-3iDHZ .framer-1kxyr5f, .framer-3iDHZ .framer-unn3vz { gap: 80px; padding: 80px 30px 40px 30px; } .framer-3iDHZ .framer-v5jpc9 { gap: 64px; justify-content: center; max-width: 768px; } .framer-3iDHZ .framer-zrnkmw, .framer-3iDHZ .framer-1axuf5l, .framer-3iDHZ .framer-1jcnu05 { width: 80%; } .framer-3iDHZ .framer-fw61ai { gap: 16px; } .framer-3iDHZ .framer-l1f3ab { max-width: 590px; } .framer-3iDHZ .framer-mm08od, .framer-3iDHZ .framer-1g0zr6r, .framer-3iDHZ .framer-5l5hu2, .framer-3iDHZ .framer-pdm1xo { max-width: 490px; } .framer-3iDHZ .framer-114dy2n { gap: 32px; } .framer-3iDHZ .framer-zwyqja, .framer-3iDHZ .framer-1re19l, .framer-3iDHZ .framer-1y75s6u, .framer-3iDHZ .framer-k86lae { max-width: 520px; } .framer-3iDHZ .framer-1tvmbuw { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-3iDHZ .framer-131l32k, .framer-3iDHZ .framer-ceq2lo { padding: 80px 30px 40px 30px; } .framer-3iDHZ .framer-9zchct { gap: 50px; max-width: 768px; } .framer-3iDHZ .framer-1goqod5 { gap: 60px; max-width: 768px; } .framer-3iDHZ .framer-f4votv { align-content: center; align-items: center; flex-direction: column; gap: 32px; max-width: 648px; } .framer-3iDHZ .framer-1syd6q3 { order: 0; width: min-content; } .framer-3iDHZ .framer-5zcjbp { align-content: flex-start; align-items: flex-start; flex: none; width: min-content; } .framer-3iDHZ .framer-1w2ssg4, .framer-3iDHZ .framer-kz3oe9 { white-space: pre; width: auto; } .framer-3iDHZ .framer-loizjw { flex: none; order: 1; width: 100%; } .framer-3iDHZ .framer-l48tkr { background: linear-gradient(90deg, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) 0%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 22%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 75.82584415470158%, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) 100%); } .framer-3iDHZ .framer-1xuhwhi { gap: 24px; justify-content: center; } .framer-3iDHZ .framer-94zzyw-container { width: 36%; } .framer-3iDHZ .framer-1si8ew7 { align-content: center; align-items: center; flex-direction: column; gap: 64px; justify-content: center; max-width: 768px; } .framer-3iDHZ .framer-rgwz24 { align-content: center; align-items: center; flex: none; max-width: unset; width: 80%; } .framer-3iDHZ .framer-10uqpne { align-content: center; align-items: center; } .framer-3iDHZ .framer-11fx9xn-container { flex: none; width: 100%; }}\",\"@media (max-width: 809px) { .framer-3iDHZ.framer-g7za46 { width: 390px; } .framer-3iDHZ .framer-14h9ahl { gap: 0px; order: 0; padding: 0px; } .framer-3iDHZ .framer-1iffmn7-container { height: 537px; order: 1; } .framer-3iDHZ .framer-2hp2t4 { gap: 38px; height: 899px; order: 3; padding: 60px; } .framer-3iDHZ .framer-1jsvnwc-container { height: 289px; width: 433px; } .framer-3iDHZ .framer-1kxyr5f { gap: 60px; order: 4; padding: 60px 20px 30px 20px; } .framer-3iDHZ .framer-v5jpc9, .framer-3iDHZ .framer-127zcpw { gap: 64px; justify-content: center; max-width: 390px; } .framer-3iDHZ .framer-zrnkmw, .framer-3iDHZ .framer-1axuf5l, .framer-3iDHZ .framer-1jtz4fg, .framer-3iDHZ .framer-1jcnu05 { width: 100%; } .framer-3iDHZ .framer-fw61ai { gap: 16px; } .framer-3iDHZ .framer-l1f3ab { gap: 6px; } .framer-3iDHZ .framer-mm08od { max-width: 400px; order: 0; } .framer-3iDHZ .framer-1tvmbuw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-3iDHZ .framer-1rb68s7-container, .framer-3iDHZ .framer-dzlhda-container, .framer-3iDHZ .framer-givj0a-container, .framer-3iDHZ .framer-193xm52-container, .framer-3iDHZ .framer-y4rtqk-container, .framer-3iDHZ .framer-13n540n-container, .framer-3iDHZ .framer-1r0ry6i-container, .framer-3iDHZ .framer-re421v-container { align-self: unset; height: auto; width: 75%; } .framer-3iDHZ .framer-131l32k { order: 5; padding: 60px 20px 30px 20px; } .framer-3iDHZ .framer-9zchct { gap: 40px; max-width: 390px; } .framer-3iDHZ .framer-1g0zr6r, .framer-3iDHZ .framer-1bp6jtv, .framer-3iDHZ .framer-5l5hu2 { max-width: 400px; } .framer-3iDHZ .framer-15nue1o { order: 6; padding: 40px; } .framer-3iDHZ .framer-xnsw3s, .framer-3iDHZ .framer-wigeti { flex-direction: column; } .framer-3iDHZ .framer-gc7j55, .framer-3iDHZ .framer-1e0bzh7, .framer-3iDHZ .framer-1i6mfz8, .framer-3iDHZ .framer-130q26h, .framer-3iDHZ .framer-107alwx-container, .framer-3iDHZ .framer-11fx9xn-container { flex: none; width: 100%; } .framer-3iDHZ .framer-kh60bz, .framer-3iDHZ .framer-pe0kon, .framer-3iDHZ .framer-15hdryq, .framer-3iDHZ .framer-1obc9zp, .framer-3iDHZ .framer-1jv68q, .framer-3iDHZ .framer-1pejt4j { width: 75%; } .framer-3iDHZ .framer-sjfucs { gap: 60px; order: 7; padding: 120px 20px 30px 20px; } .framer-3iDHZ .framer-1qmssqy { order: 0; } .framer-3iDHZ .framer-zl9qq1-container { order: 1; } .framer-3iDHZ .framer-ceq2lo { order: 8; padding: 100px 20px 30px 20px; } .framer-3iDHZ .framer-1goqod5 { gap: 64px; max-width: 390px; } .framer-3iDHZ .framer-f4votv { align-content: center; align-items: center; flex-direction: column; gap: 30px; } .framer-3iDHZ .framer-loizjw, .framer-3iDHZ .framer-3igr88-container { flex: none; order: 0; width: 100%; } .framer-3iDHZ .framer-l48tkr { background: linear-gradient(90deg, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) 0%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 22%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 75.82584415470158%, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) 100%); order: 1; } .framer-3iDHZ .framer-bo628 { flex-direction: column; gap: 16px; padding: 0px 0px 40px 0px; } .framer-3iDHZ .framer-1dsaush { background: linear-gradient(90deg, rgba(61, 61, 61, 0) 0%, rgb(61, 61, 61) 23.971996410472975%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 75.82584415470158%, rgba(0, 80, 138, 0) 100%); height: 1px; order: 1; width: 100%; } .framer-3iDHZ .framer-1qm1o36-container { flex: none; order: 2; width: 100%; } .framer-3iDHZ .framer-1jm9jhu { background: linear-gradient(90deg, rgba(61, 61, 61, 0) 0%, rgb(61, 61, 61) 23.971996410472975%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) 75.82584415470158%, rgba(0, 80, 138, 0) 100%); height: 1px; order: 3; width: 100%; } .framer-3iDHZ .framer-f13r79-container { order: 9; } .framer-3iDHZ .framer-unn3vz { gap: 60px; order: 11; padding: 80px 20px 40px 20px; } .framer-3iDHZ .framer-1si8ew7 { align-content: center; align-items: center; flex-direction: column; gap: 64px; justify-content: center; max-width: 390px; } .framer-3iDHZ .framer-rgwz24 { flex: none; max-width: unset; width: 100%; } .framer-3iDHZ .framer-pdm1xo { max-width: 400px; order: 1; } .framer-3iDHZ .framer-h5vxlp-container { order: 12; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7634\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dCy6eEeEj\":{\"layout\":[\"fixed\",\"auto\"]},\"nqbeV6Nc5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"rRzFZsxGl\":{\"pattern\":\":rRzFZsxGl\",\"name\":\"hero\"},\"Dyal5ntEh\":{\"pattern\":\":Dyal5ntEh\",\"name\":\"whatcansawyerdo\"},\"ayfibBmrj\":{\"pattern\":\":ayfibBmrj\",\"name\":\"services\"},\"prEkCnRNW\":{\"pattern\":\":prEkCnRNW\",\"name\":\"pricing\"},\"N55ymu2Zh\":{\"pattern\":\":N55ymu2Zh\",\"name\":\"teamcomponent\"},\"lseSnSQep\":{\"pattern\":\":lseSnSQep\",\"name\":\"faqs\"},\"Q0MWcGcCl\":{\"pattern\":\":Q0MWcGcCl\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerRK0cqq2rI=withCSS(Component,css,\"framer-3iDHZ\");export default FramerRK0cqq2rI;FramerRK0cqq2rI.displayName=\"Home\";FramerRK0cqq2rI.defaultProps={height:7634,width:1200};addFonts(FramerRK0cqq2rI,[{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:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/O462VY6O6FTQCS72XVMTQHXAM4NN5CY3/TWF57ITZORMJ3MEWLQQIVO6BMXIB6FUR/MJQFMMOTEGNXDVM7HBBDTQHTVB2M7Y6G.woff2\",weight:\"400\"}]},...NavbarFonts,...DSectionForSawyerFonts,...EmbedFonts,...DifferentialVCFonts,...MercuriLogoFonts,...GreycroftlogoFonts,...MozillaVCFonts,...BETAWORKSLOGOFonts,...TickerFonts,...LabelFonts,...CardFonts,...ButtonAnimatedOutlineFonts,...HelperPricingPointsTickerFonts,...SectionWorkStatisticFonts,...SectionTestimonialTestimonialCardFonts,...TeamSectionToScrollFonts,...FAQsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRK0cqq2rI\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dCy6eEeEj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nqbeV6Nc5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7634\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"rRzFZsxGl\\\":{\\\"pattern\\\":\\\":rRzFZsxGl\\\",\\\"name\\\":\\\"hero\\\"},\\\"Dyal5ntEh\\\":{\\\"pattern\\\":\\\":Dyal5ntEh\\\",\\\"name\\\":\\\"whatcansawyerdo\\\"},\\\"ayfibBmrj\\\":{\\\"pattern\\\":\\\":ayfibBmrj\\\",\\\"name\\\":\\\"services\\\"},\\\"prEkCnRNW\\\":{\\\"pattern\\\":\\\":prEkCnRNW\\\",\\\"name\\\":\\\"pricing\\\"},\\\"N55ymu2Zh\\\":{\\\"pattern\\\":\\\":N55ymu2Zh\\\",\\\"name\\\":\\\"teamcomponent\\\"},\\\"lseSnSQep\\\":{\\\"pattern\\\":\\\":lseSnSQep\\\",\\\"name\\\":\\\"faqs\\\"},\\\"Q0MWcGcCl\\\":{\\\"pattern\\\":\\\":Q0MWcGcCl\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramercD9idU_Kt", "withCSS", "cD9idU_Kt_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerhIHp54olC", "withCSS", "hIHp54olC_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerkzIi2dOhh", "withCSS", "kzIi2dOhh_default", "addFonts", "LabelFonts", "getFonts", "JjjfuEcCA_default", "MotionDivWithFX", "withFX", "motion", "InfoCardFonts", "WF0rzITpe_default", "SmartComponentScopedContainerWithFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "addImageAlt", "image", "alt", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "RichText", "css", "FramerLRDqVkHt8", "withCSS", "LRDqVkHt8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerTqoQNMN91", "withCSS", "TqoQNMN91_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "Frameryi9bS_Dw7", "withCSS", "yi9bS_Dw7_default", "addFonts", "NavbarFonts", "getFonts", "qjYMKrkpL_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "MotionHeaderWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "DSectionForSawyerFonts", "gB4rlSWrd_default", "EmbedFonts", "Embed", "DifferentialVCFonts", "TqoQNMN91_default", "MercuriLogoFonts", "kzIi2dOhh_default", "GreycroftlogoFonts", "hIHp54olC_default", "MozillaVCFonts", "cD9idU_Kt_default", "BETAWORKSLOGOFonts", "yi9bS_Dw7_default", "TickerFonts", "Ticker", "LabelFonts", "JjjfuEcCA_default", "MotionDivWithFX", "withFX", "CardFonts", "Zchkc5TVU_default", "ContainerWithFX", "Container", "ButtonAnimatedOutlineFonts", "Dbb9H4Eqf_default", "HelperPricingPointsTickerFonts", "o8Bd3lkuB_default", "SectionWorkStatisticFonts", "ZOeoaF481_default", "SectionTestimonialTestimonialCardFonts", "l1I7IU59_default", "TeamSectionToScrollFonts", "LRDqVkHt8_default", "FAQsFonts", "hTLngTl1D_default", "FooterFonts", "QJgb5uHXr_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "animation2", "transition2", "transition3", "animation3", "addImageAlt", "image", "alt", "transition4", "animation4", "transition5", "animation5", "animation6", "transition6", "animation7", "transition7", "transition8", "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", "ref1", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "elementId2", "isDisplayed1", "elementId3", "ref4", "isDisplayed2", "isDisplayed3", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "RichText", "getLoadingLazyAtYPosition", "Image2", "css", "FramerRK0cqq2rI", "withCSS", "RK0cqq2rI_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
