{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/FCYp8FRx320SWq9QcLcn/qpET2t2Z0ryTCtBpcD2G/magtext.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/eaIteH3qvwTLGl7uXQf9/5P0Y9qBl9XgJt6qhcBVQ/augiA20Il.js", "ssg:https://framerusercontent.com/modules/rgzZFZUwqGPbjgZnAQM3/LjaTCbFRNiAStdllXsIG/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{motion,useMotionTemplate,useSpring,useTransform,useMotionValue,useMotionValueEvent,transform}from\"framer-motion\";import{useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerDisableUnlink\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */ export default function MagText(props){const mouseX=useMotionValue(0);return /*#__PURE__*/ _jsx(\"div\",{style:{position:\"relative\",cursor:\"default\",whiteSpace:\"pre\",fontFamily:props.font.fontFamily,color:props.color,fontSize:props.font.fontSize,fontWeight:props.font.fontWeight,letterSpacing:props.font.letterSpacing,lineHeight:props.font.lineHeight},onMouseLeave:()=>{mouseX.set(Infinity);},onMouseMove:e=>{mouseX.set(e.clientX);},children:props.text.split(\"\").map((c,idx)=>/*#__PURE__*/ _jsx(Character,{c:c,mouseX:mouseX},idx))});};function Character({c,mouseX}){const ref=useRef(null);const scaleRange=[1,1.2];const scaleX=useSpring(1,{stiffness:350,damping:40});const w=useTransform(scaleX,scaleRange,[0,.07]);const padding=useTransform(scaleX,scaleRange,[0,.05]);const scaleY=useTransform(scaleX,scaleRange,[1,.95]);useMotionValueEvent(mouseX,\"change\",mx=>{if(ref.current){const{left,width}=ref.current.getBoundingClientRect();const characterCenter=left+width/2;const distance=Math.abs(characterCenter-mx);scaleX.set(transform(distance,[70,0],scaleRange));}});return /*#__PURE__*/ _jsx(motion.span,{ref:ref,style:{display:\"inline-block\",scaleX:scaleX,scaleY:scaleY,WebkitTextStrokeColor:\"currentColor\",WebkitTextStrokeWidth:useMotionTemplate`${w}em`,paddingInline:useMotionTemplate`${padding}em`},children:c});}MagText.displayName=\"MagText\";MagText.defaultProps={text:\"Colorless green ideas sleep furiously\",color:\"black\"};addPropertyControls(MagText,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"Colorless green ideas sleep furiously\",displayTextArea:true},font:{title:\"Font\",type:\"font\",controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#000\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MagText\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"* @framerSupportedLayoutWidth auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./magtext.map", "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 (68888f7)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={wLiXqRvUF:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Pattern from\"https://framerusercontent.com/modules/2rGdY3xNPdGAC1LGc2Ew/gQcpGdBaDKqalAQX5HN3/Pattern.js\";import Grain from\"https://framerusercontent.com/modules/cKGD16u2MGB7MfqfVXFp/wiztTCbXokZrMicHAmZc/Grain.js\";import MagText from\"https://framerusercontent.com/modules/FCYp8FRx320SWq9QcLcn/qpET2t2Z0ryTCtBpcD2G/magtext.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/I0BNwkDq86NkxvMxt7DV/Smooth_Scroll.js\";import Button from\"#framer/local/canvasComponent/CkRTG7XfJ/CkRTG7XfJ.js\";import NavDesktop from\"#framer/local/canvasComponent/eqEJE8q3b/eqEJE8q3b.js\";import Footer from\"#framer/local/canvasComponent/HMcdkng6m/HMcdkng6m.js\";import NavPhone from\"#framer/local/canvasComponent/sw5C5lmaa/sw5C5lmaa.js\";import Grid from\"#framer/local/canvasComponent/VhEq4RqWR/VhEq4RqWR.js\";import*as sharedStyle2 from\"#framer/local/css/bbwc7KHpZ/bbwc7KHpZ.js\";import*as sharedStyle from\"#framer/local/css/hQzy1Lgpk/hQzy1Lgpk.js\";import*as sharedStyle3 from\"#framer/local/css/MDCbgDp0H/MDCbgDp0H.js\";import*as sharedStyle1 from\"#framer/local/css/UZL0jKOoy/UZL0jKOoy.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavPhoneFonts=getFonts(NavPhone);const NavDesktopFonts=getFonts(NavDesktop);const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const GrainFonts=getFonts(Grain);const GridFonts=getFonts(Grid);const MagTextFonts=getFonts(MagText);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const PatternFonts=getFonts(Pattern);const FooterFonts=getFonts(Footer);const breakpoints={KezeJqVqk:\"(max-width: 809px)\",rf0xHQIUQ:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zRChq\";const variantClassNames={KezeJqVqk:\"framer-v-9o5f7p\",rf0xHQIUQ:\"framer-v-n2alci\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.2,duration:2.7,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:-4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const transition2={delay:0,duration:3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"KezeJqVqk\",Tablet:\"rf0xHQIUQ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-zRChq`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-zRChq`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"rf0xHQIUQ\",\"KezeJqVqk\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"rf0xHQIUQ\",\"KezeJqVqk\"].includes(baseVariant))return false;return true;};usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId=useRouteElementId(\"VOoAIfj11\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"MGbWlVP9_\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-foun8u-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"IvmHhEgzx\",intensity:8,layoutId:\"IvmHhEgzx\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1k3ckod\",\"data-framer-name\":\"Header\",name:\"Header\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{height:64,width:\"100vw\",y:200},rf0xHQIUQ:{height:64,width:\"100vw\",y:200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f20h4h-container hidden-72rtr7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{variant:\"RREk25pnr\"},rf0xHQIUQ:{variant:\"RREk25pnr\"}},children:/*#__PURE__*/_jsx(NavPhone,{height:\"100%\",id:\"Cwmr8AqCJ\",layoutId:\"Cwmr8AqCJ\",style:{height:\"100%\",width:\"100%\"},variant:\"Ov8xFVOKl\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:\"100vw\",y:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cj7og9-container hidden-n2alci hidden-9o5f7p\",children:/*#__PURE__*/_jsx(NavDesktop,{height:\"100%\",id:\"C7DluJFKS\",layoutId:\"C7DluJFKS\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-he14qf\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9w1rg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1izmteu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jofxa3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sixdbv\",\"data-styles-preset\":\"hQzy1Lgpk\",children:\"ETH Address:\"})}),className:\"framer-g4dj4x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{width:\"calc(min(100vw, 1440px) - 64px)\",y:925},rf0xHQIUQ:{width:\"calc((min(100vw, 1440px) - 128px) * 0.45)\",y:926}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:392.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x0ccc2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{style:{width:\"100%\"}},rf0xHQIUQ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ooTfPntqa\",juhZ0MzBF:\"Button Text\",layoutId:\"ooTfPntqa\",variant:\"c26iFoI1V\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fk8w0o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sixdbv\",\"data-styles-preset\":\"hQzy1Lgpk\",children:\"SHIB Address:\"})}),className:\"framer-bana0x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{width:\"calc(min(100vw, 1440px) - 64px)\",y:1094},rf0xHQIUQ:{width:\"calc((min(100vw, 1440px) - 128px) * 0.45)\",y:1095}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:392.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rivowh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{style:{width:\"100%\"}},rf0xHQIUQ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"vs9jtOhvS\",juhZ0MzBF:\"Button Text\",layoutId:\"vs9jtOhvS\",variant:\"Z5Rzq4LYj\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-km5uj7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12x1yb0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xpb396\",\"data-styles-preset\":\"UZL0jKOoy\",children:\"Maybe this is all just a\u2026\"})}),className:\"framer-1cgcou5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 294 61\"><g><defs><linearGradient id=\"idss10072129584_1g-1052639275\" x1=\"1.2260869825037093\" x2=\"0.055044528209285404\" y1=\"0.7333293817794333\" y2=\"0.35701274412838935\"><stop offset=\"0\" stop-color=\"var(--token-9ec835a5-f423-485c-89b8-74d23af079d2, rgb(235, 206, 120)) /* {&quot;name&quot;:&quot;SECONDARY&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-ecd5a730-2ac8-420e-af9d-4849c31c7c02, rgb(153, 255, 253)) /* {&quot;name&quot;:&quot;Main&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 28.32 2.029 C 30.111 2.029 31.818 2.201 33.44 2.544 C 35.062 2.887 36.565 3.371 37.949 3.998 C 39.334 4.624 40.585 5.384 41.705 6.28 C 42.825 7.175 43.774 8.179 44.555 9.288 C 45.336 10.4 45.94 11.605 46.367 12.904 C 46.794 14.203 47.008 15.573 47.008 17.014 C 47.008 18.724 46.716 20.323 46.133 21.81 C 45.549 23.297 44.732 24.611 43.68 25.749 C 42.628 26.886 41.383 27.826 39.943 28.566 C 38.504 29.306 36.93 29.778 35.22 29.981 C 37.311 30.169 39.227 30.657 40.972 31.445 C 42.716 32.233 44.22 33.252 45.481 34.505 C 46.743 35.758 47.723 37.212 48.423 38.867 C 49.122 40.522 49.471 42.321 49.471 44.26 C 49.471 45.781 49.254 47.222 48.82 48.581 C 48.393 49.926 47.758 51.197 46.937 52.348 C 46.116 53.499 45.122 54.532 43.954 55.447 C 42.787 56.362 41.472 57.144 40.015 57.79 C 38.556 58.436 36.964 58.931 35.24 59.274 C 33.517 59.617 31.69 59.788 29.764 59.788 L 0 59.788 L 0 2.029 Z M 27.913 26.972 C 29.501 26.972 30.946 26.758 32.249 26.326 C 33.552 25.895 34.668 25.292 35.597 24.519 C 36.526 23.744 37.246 22.812 37.755 21.721 C 38.263 20.631 38.517 19.426 38.517 18.105 C 38.517 16.785 38.273 15.682 37.785 14.671 C 37.296 13.662 36.593 12.803 35.677 12.096 C 34.761 11.389 33.645 10.848 32.328 10.471 C 31.012 10.093 29.52 9.905 27.849 9.905 L 8.551 9.905 L 8.551 26.97 L 27.913 26.97 Z M 28.544 51.914 C 36.837 51.914 40.984 48.993 40.984 43.148 C 40.984 40.214 39.958 38.029 37.909 36.595 C 35.86 35.161 32.746 34.444 28.564 34.444 L 8.551 34.444 L 8.551 51.913 L 28.542 51.913 Z M 51.903 30.767 C 51.903 28.208 52.378 25.9 53.327 23.839 C 54.278 21.779 55.637 20.023 57.409 18.569 C 59.181 17.115 61.325 15.997 63.842 15.217 C 66.36 14.436 69.194 14.046 72.342 14.046 C 75.667 14.046 78.645 14.488 81.28 15.369 C 83.912 16.251 86.146 17.52 87.977 19.175 C 89.81 20.831 91.215 22.855 92.192 25.244 C 93.169 27.635 93.658 30.343 93.658 33.374 L 93.658 59.79 L 85.413 59.79 L 85.413 47.814 C 84.869 49.862 84.045 51.698 82.94 53.327 C 81.833 54.956 80.49 56.339 78.91 57.477 C 77.329 58.614 75.526 59.487 73.505 60.092 C 71.482 60.697 69.29 61 66.929 61 C 64.567 61 62.239 60.677 60.231 60.031 C 58.222 59.384 56.502 58.476 55.071 57.304 C 53.638 56.133 52.533 54.722 51.752 53.073 C 50.971 51.425 50.582 49.59 50.582 47.57 C 50.582 45.551 50.985 43.706 51.793 42.077 C 52.601 40.448 53.761 39.065 55.275 37.927 C 56.789 36.79 58.627 35.917 60.793 35.312 C 62.958 34.707 65.39 34.404 68.092 34.404 L 85.418 34.404 L 85.418 33.374 C 85.418 31.542 85.109 29.89 84.492 28.416 C 83.874 26.942 82.996 25.689 81.856 24.66 C 80.716 23.63 79.332 22.84 77.703 22.288 C 76.074 21.736 74.241 21.46 72.205 21.46 C 70.169 21.46 68.333 21.683 66.821 22.127 C 65.307 22.57 64.058 23.2 63.075 24.014 C 62.091 24.829 61.358 25.808 60.876 26.952 C 60.394 28.096 60.153 29.369 60.153 30.769 L 51.908 30.769 Z M 68.007 41.269 C 64.953 41.269 62.642 41.777 61.075 42.794 C 59.508 43.811 58.724 45.315 58.724 47.308 C 58.724 48.358 58.951 49.295 59.405 50.116 C 59.86 50.937 60.528 51.624 61.411 52.176 C 62.293 52.729 63.382 53.149 64.678 53.439 C 65.975 53.729 67.464 53.873 69.147 53.873 C 71.536 53.873 73.724 53.594 75.714 53.035 C 77.701 52.476 79.415 51.695 80.854 50.693 C 82.293 49.69 83.412 48.492 84.213 47.097 C 85.014 45.704 85.415 44.172 85.415 42.502 L 85.415 41.271 L 68.007 41.271 Z M 139.754 0.01 L 139.754 59.79 L 131.509 59.79 L 131.509 46.057 C 130.926 48.345 130.111 50.412 129.066 52.257 C 128.02 54.102 126.786 55.67 125.361 56.962 C 123.935 58.255 122.338 59.251 120.567 59.951 C 118.795 60.652 116.892 61.002 114.856 61.002 C 113.01 61.002 111.26 60.74 109.603 60.214 C 107.947 59.689 106.417 58.934 105.012 57.952 C 103.608 56.969 102.338 55.78 101.205 54.387 C 100.071 52.994 99.111 51.425 98.325 49.682 C 97.537 47.938 96.93 46.043 96.503 43.997 C 96.076 41.952 95.862 39.79 95.862 37.515 C 95.862 35.24 96.076 33.078 96.503 31.033 C 96.93 28.987 97.539 27.094 98.325 25.358 C 99.112 23.62 100.071 22.056 101.205 20.663 C 102.338 19.269 103.608 18.081 105.012 17.098 C 106.417 16.116 107.947 15.36 109.603 14.836 C 111.258 14.31 113.01 14.048 114.856 14.048 C 116.892 14.048 118.795 14.398 120.567 15.098 C 122.338 15.799 123.935 16.795 125.361 18.087 C 126.787 19.38 128.02 20.944 129.066 22.783 C 130.111 24.621 130.926 26.683 131.509 28.973 L 131.509 0.01 Z M 131.509 37.513 C 131.509 34.968 131.193 32.689 130.562 30.676 C 129.93 28.663 129.018 26.957 127.823 25.557 C 126.628 24.158 125.177 23.088 123.467 22.346 C 121.757 21.606 119.822 21.235 117.665 21.235 C 115.508 21.235 113.522 21.587 111.831 22.295 C 110.141 23.002 108.727 24.042 107.587 25.416 C 106.447 26.789 105.581 28.489 104.991 30.515 C 104.401 32.541 104.105 34.874 104.105 37.513 C 104.105 40.153 104.401 42.486 104.991 44.512 C 105.581 46.538 106.447 48.241 107.587 49.621 C 108.727 51.001 110.141 52.045 111.831 52.752 C 113.522 53.459 115.466 53.812 117.665 53.812 C 119.864 53.812 121.757 53.438 123.467 52.691 C 125.177 51.944 126.629 50.871 127.823 49.469 C 129.018 48.07 129.93 46.363 130.562 44.35 C 131.193 42.337 131.509 40.059 131.509 37.513 Z M 158.359 59.79 L 149.809 59.79 L 149.809 0 L 158.359 0 Z M 204.354 0.01 L 204.354 59.79 L 196.109 59.79 L 196.109 46.057 C 195.526 48.345 194.711 50.412 193.666 52.257 C 192.621 54.102 191.386 55.67 189.962 56.962 C 188.536 58.255 186.938 59.251 185.167 59.951 C 183.395 60.652 181.492 61.002 179.456 61.002 C 177.61 61.002 175.86 60.74 174.203 60.214 C 172.548 59.689 171.017 58.934 169.613 57.952 C 168.208 56.969 166.938 55.78 165.805 54.387 C 164.672 52.994 163.711 51.425 162.925 49.682 C 162.137 47.938 161.53 46.043 161.103 43.997 C 160.676 41.952 160.462 39.79 160.462 37.515 C 160.462 35.24 160.676 33.078 161.103 31.033 C 161.53 28.987 162.139 27.094 162.925 25.358 C 163.713 23.62 164.672 22.056 165.805 20.663 C 166.938 19.269 168.208 18.081 169.613 17.098 C 171.017 16.116 172.548 15.36 174.203 14.836 C 175.858 14.31 177.61 14.048 179.456 14.048 C 181.492 14.048 183.395 14.398 185.167 15.098 C 186.938 15.799 188.536 16.795 189.962 18.087 C 191.388 19.38 192.621 20.944 193.666 22.783 C 194.711 24.621 195.526 26.683 196.109 28.973 L 196.109 0.01 Z M 196.109 37.513 C 196.109 34.968 195.793 32.689 195.162 30.676 C 194.53 28.663 193.618 26.957 192.423 25.557 C 191.228 24.158 189.777 23.088 188.067 22.346 C 186.357 21.606 184.422 21.235 182.265 21.235 C 180.108 21.235 178.122 21.587 176.432 22.295 C 174.741 23.002 173.327 24.042 172.187 25.416 C 171.047 26.789 170.181 28.489 169.591 30.515 C 169.001 32.541 168.705 34.874 168.705 37.513 C 168.705 40.153 169.001 42.486 169.591 44.512 C 170.181 46.538 171.047 48.241 172.187 49.621 C 173.327 51.001 174.741 52.045 176.432 52.752 C 178.122 53.459 180.066 53.812 182.265 53.812 C 184.464 53.812 186.357 53.438 188.067 52.691 C 189.777 51.944 191.23 50.871 192.423 49.469 C 193.618 48.07 194.53 46.363 195.162 44.35 C 195.793 42.337 196.109 40.059 196.109 37.513 Z M 249.214 45.026 C 248.63 47.517 247.72 49.753 246.485 51.731 C 245.25 53.71 243.746 55.386 241.976 56.76 C 240.204 58.133 238.192 59.183 235.94 59.91 C 233.686 60.637 231.243 61.002 228.61 61.002 C 226.412 61.002 224.337 60.746 222.391 60.233 C 220.444 59.722 218.652 58.985 217.017 58.023 C 215.389 57.066 213.908 55.883 212.619 54.509 C 211.323 53.129 210.222 51.568 209.322 49.824 C 208.419 48.08 207.73 46.169 207.256 44.088 C 206.781 42.008 206.543 39.797 206.543 37.454 C 206.543 35.111 206.781 32.91 207.256 30.85 C 207.731 28.789 208.413 26.891 209.302 25.155 C 210.191 23.417 211.273 21.863 212.549 20.489 C 213.826 19.116 215.27 17.952 216.885 16.996 C 218.501 16.04 220.272 15.309 222.199 14.805 C 224.125 14.3 226.176 14.048 228.348 14.048 C 231.564 14.048 234.469 14.597 237.061 15.693 C 239.654 16.791 241.866 18.349 243.698 20.369 C 245.531 22.389 246.942 24.832 247.932 27.701 C 248.923 30.569 249.418 33.779 249.418 37.334 C 249.418 37.845 249.408 38.351 249.388 38.849 C 249.368 39.347 249.33 39.899 249.277 40.504 L 214.951 40.504 C 215.195 42.537 215.687 44.365 216.427 45.987 C 217.166 47.61 218.13 48.986 219.317 50.117 C 220.505 51.248 221.899 52.114 223.5 52.712 C 225.102 53.311 226.872 53.611 228.813 53.611 C 231.798 53.611 234.296 52.894 236.305 51.459 C 238.313 50.025 239.868 47.882 240.967 45.026 L 249.212 45.026 Z M 240.887 33.433 C 240.616 31.494 240.141 29.781 239.461 28.292 C 238.783 26.805 237.914 25.552 236.855 24.535 C 235.797 23.518 234.559 22.748 233.139 22.222 C 231.72 21.696 230.136 21.434 228.386 21.434 C 226.636 21.434 224.952 21.706 223.458 22.252 C 221.966 22.798 220.651 23.584 219.519 24.614 C 218.386 25.645 217.445 26.903 216.699 28.391 C 215.953 29.878 215.423 31.558 215.112 33.43 L 240.886 33.43 Z M 252.174 30.767 C 252.174 28.208 252.649 25.9 253.598 23.839 C 254.549 21.779 255.908 20.023 257.68 18.569 C 259.451 17.115 261.595 15.997 264.113 15.217 C 266.631 14.436 269.465 14.046 272.612 14.046 C 275.938 14.046 278.916 14.488 281.55 15.369 C 284.183 16.251 286.417 17.52 288.248 19.175 C 290.081 20.831 291.485 22.855 292.463 25.244 C 293.44 27.635 293.929 30.343 293.929 33.374 L 293.929 59.79 L 285.684 59.79 L 285.684 47.814 C 285.14 49.862 284.316 51.698 283.211 53.327 C 282.104 54.956 280.761 56.339 279.18 57.477 C 277.6 58.614 275.797 59.487 273.776 60.092 C 271.753 60.697 269.561 61 267.199 61 C 264.838 61 262.509 60.677 260.502 60.031 C 258.492 59.384 256.772 58.476 255.341 57.304 C 253.909 56.133 252.803 54.722 252.022 53.073 C 251.241 51.425 250.852 49.59 250.852 47.57 C 250.852 45.551 251.256 43.706 252.064 42.077 C 252.872 40.448 254.032 39.065 255.546 37.927 C 257.06 36.79 258.898 35.917 261.063 35.312 C 263.229 34.707 265.66 34.404 268.363 34.404 L 285.689 34.404 L 285.689 33.374 C 285.689 31.542 285.379 29.89 284.763 28.416 C 284.145 26.942 283.267 25.689 282.127 24.66 C 280.987 23.63 279.602 22.84 277.974 22.288 C 276.345 21.736 274.512 21.46 272.476 21.46 C 270.44 21.46 268.604 21.683 267.091 22.127 C 265.577 22.57 264.329 23.2 263.345 24.014 C 262.361 24.829 261.628 25.808 261.146 26.952 C 260.664 28.096 260.424 29.369 260.424 30.769 L 252.179 30.769 Z M 268.278 41.269 C 265.223 41.269 262.913 41.777 261.346 42.794 C 259.779 43.811 258.994 45.315 258.994 47.308 C 258.994 48.358 259.222 49.295 259.676 50.116 C 260.131 50.937 260.799 51.624 261.682 52.176 C 262.564 52.729 263.653 53.149 264.949 53.439 C 266.245 53.729 267.734 53.873 269.418 53.873 C 271.806 53.873 273.995 53.594 275.984 53.035 C 277.972 52.476 279.686 51.695 281.125 50.693 C 282.564 49.69 283.683 48.492 284.484 47.097 C 285.285 45.704 285.685 44.172 285.685 42.502 L 285.685 41.271 L 268.278 41.271 Z\" fill=\"url(#idss10072129584_1g-1052639275)\"></path></g></svg>',svgContentId:10072129584},rf0xHQIUQ:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 299 62\"><g><defs><linearGradient id=\"idss10650118826_1g-1052639275\" x1=\"1.2260869825037093\" x2=\"0.055044528209285404\" y1=\"0.7333293817794333\" y2=\"0.35701274412838935\"><stop offset=\"0\" stop-color=\"var(--token-9ec835a5-f423-485c-89b8-74d23af079d2, rgb(235, 206, 120)) /* {&quot;name&quot;:&quot;SECONDARY&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-ecd5a730-2ac8-420e-af9d-4849c31c7c02, rgb(153, 255, 253)) /* {&quot;name&quot;:&quot;Main&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 28.801 2.063 C 30.623 2.063 32.359 2.237 34.009 2.586 C 35.659 2.934 37.187 3.427 38.594 4.064 C 40.002 4.7 41.275 5.473 42.414 6.383 C 43.554 7.293 44.519 8.313 45.313 9.441 C 46.108 10.57 46.721 11.795 47.155 13.116 C 47.59 14.436 47.808 15.828 47.808 17.293 C 47.808 19.031 47.51 20.656 46.917 22.168 C 46.324 23.679 45.492 25.014 44.422 26.171 C 43.352 27.327 42.086 28.282 40.623 29.034 C 39.159 29.787 37.558 30.266 35.819 30.472 C 37.945 30.663 39.894 31.159 41.669 31.96 C 43.442 32.761 44.972 33.797 46.255 35.07 C 47.537 36.344 48.535 37.822 49.246 39.504 C 49.958 41.186 50.313 43.015 50.313 44.985 C 50.313 46.532 50.091 47.996 49.65 49.377 C 49.216 50.744 48.57 52.036 47.735 53.206 C 46.9 54.376 45.889 55.426 44.701 56.356 C 43.515 57.286 42.178 58.081 40.695 58.737 C 39.211 59.394 37.592 59.897 35.839 60.246 C 34.087 60.594 32.229 60.768 30.27 60.768 L 0 60.768 L 0 2.063 Z M 28.387 27.414 C 30.003 27.414 31.472 27.196 32.797 26.757 C 34.122 26.32 35.258 25.707 36.203 24.921 C 37.148 24.133 37.88 23.186 38.397 22.077 C 38.914 20.969 39.173 19.744 39.173 18.402 C 39.173 17.06 38.924 15.939 38.427 14.912 C 37.93 13.886 37.215 13.013 36.284 12.294 C 35.353 11.576 34.217 11.026 32.878 10.642 C 31.54 10.258 30.022 10.067 28.323 10.067 L 8.696 10.067 L 8.696 27.412 L 28.387 27.412 Z M 29.03 52.765 C 37.464 52.765 41.681 49.796 41.681 43.856 C 41.681 40.873 40.638 38.653 38.554 37.195 C 36.47 35.737 33.302 35.008 29.05 35.008 L 8.696 35.008 L 8.696 52.764 L 29.028 52.764 Z M 52.786 31.271 C 52.786 28.671 53.269 26.325 54.234 24.23 C 55.201 22.136 56.584 20.351 58.385 18.873 C 60.187 17.395 62.367 16.259 64.928 15.466 C 67.489 14.672 70.371 14.277 73.572 14.277 C 76.954 14.277 79.983 14.726 82.662 15.621 C 85.339 16.517 87.611 17.807 89.474 19.49 C 91.338 21.172 92.766 23.23 93.76 25.658 C 94.754 28.088 95.251 30.841 95.251 33.921 L 95.251 60.77 L 86.866 60.77 L 86.866 48.598 C 86.313 50.679 85.474 52.546 84.35 54.201 C 83.225 55.857 81.859 57.263 80.252 58.419 C 78.644 59.575 76.81 60.462 74.755 61.077 C 72.698 61.692 70.469 62 68.067 62 C 65.665 62 63.297 61.672 61.255 61.015 C 59.212 60.358 57.462 59.435 56.007 58.243 C 54.55 57.053 53.426 55.619 52.632 53.943 C 51.837 52.268 51.442 50.403 51.442 48.35 C 51.442 46.297 51.853 44.422 52.674 42.767 C 53.495 41.111 54.675 39.705 56.215 38.549 C 57.755 37.393 59.624 36.506 61.827 35.891 C 64.029 35.276 66.502 34.968 69.25 34.968 L 86.871 34.968 L 86.871 33.921 C 86.871 32.059 86.556 30.38 85.929 28.882 C 85.3 27.384 84.408 26.11 83.248 25.065 C 82.089 24.017 80.681 23.215 79.025 22.653 C 77.368 22.092 75.504 21.812 73.433 21.812 C 71.363 21.812 69.495 22.038 67.957 22.489 C 66.417 22.94 65.148 23.58 64.147 24.408 C 63.147 25.236 62.401 26.231 61.911 27.394 C 61.421 28.557 61.176 29.85 61.176 31.273 L 52.791 31.273 Z M 69.164 41.946 C 66.057 41.946 63.708 42.462 62.114 43.496 C 60.52 44.529 59.722 46.058 59.722 48.084 C 59.722 49.151 59.954 50.103 60.415 50.937 C 60.878 51.772 61.558 52.47 62.455 53.032 C 63.353 53.593 64.46 54.02 65.778 54.315 C 67.097 54.61 68.611 54.756 70.323 54.756 C 72.752 54.756 74.978 54.473 77.001 53.905 C 79.023 53.337 80.765 52.542 82.229 51.524 C 83.693 50.505 84.83 49.287 85.645 47.869 C 86.46 46.453 86.867 44.896 86.867 43.199 L 86.867 41.947 L 69.164 41.947 Z M 142.131 0.01 L 142.131 60.77 L 133.745 60.77 L 133.745 46.812 C 133.152 49.138 132.324 51.239 131.261 53.114 C 130.198 54.989 128.942 56.583 127.493 57.896 C 126.043 59.21 124.419 60.222 122.617 60.934 C 120.815 61.646 118.88 62.002 116.809 62.002 C 114.932 62.002 113.152 61.735 111.467 61.201 C 109.783 60.668 108.227 59.9 106.798 58.902 C 105.37 57.903 104.079 56.695 102.926 55.279 C 101.773 53.863 100.796 52.268 99.997 50.496 C 99.196 48.724 98.579 46.798 98.144 44.719 C 97.71 42.639 97.492 40.442 97.492 38.13 C 97.492 35.818 97.71 33.621 98.144 31.541 C 98.579 29.462 99.197 27.538 99.997 25.774 C 100.798 24.007 101.773 22.417 102.926 21.001 C 104.079 19.585 105.37 18.377 106.798 17.378 C 108.227 16.38 109.783 15.612 111.467 15.079 C 113.15 14.545 114.932 14.278 116.809 14.278 C 118.88 14.278 120.815 14.634 122.617 15.346 C 124.419 16.058 126.043 17.07 127.493 18.384 C 128.944 19.698 130.198 21.288 131.261 23.156 C 132.324 25.025 133.152 27.121 133.745 29.448 L 133.745 0.01 Z M 133.745 38.128 C 133.745 35.541 133.424 33.225 132.782 31.179 C 132.14 29.133 131.212 27.399 129.997 25.976 C 128.781 24.554 127.306 23.466 125.566 22.712 C 123.827 21.96 121.86 21.583 119.666 21.583 C 117.472 21.583 115.452 21.941 113.733 22.66 C 112.014 23.379 110.576 24.436 109.416 25.832 C 108.257 27.228 107.376 28.956 106.776 31.015 C 106.176 33.074 105.875 35.446 105.875 38.128 C 105.875 40.811 106.176 43.182 106.776 45.242 C 107.376 47.301 108.257 49.032 109.416 50.434 C 110.576 51.837 112.014 52.898 113.733 53.617 C 115.452 54.335 117.43 54.694 119.666 54.694 C 121.902 54.694 123.827 54.314 125.566 53.555 C 127.306 52.796 128.783 51.705 129.997 50.28 C 131.212 48.858 132.14 47.123 132.782 45.077 C 133.424 43.031 133.745 40.716 133.745 38.128 Z M 161.053 60.77 L 152.356 60.77 L 152.356 0 L 161.053 0 Z M 207.83 0.01 L 207.83 60.77 L 199.444 60.77 L 199.444 46.812 C 198.851 49.138 198.023 51.239 196.96 53.114 C 195.897 54.989 194.641 56.583 193.192 57.896 C 191.742 59.21 190.118 60.222 188.316 60.934 C 186.514 61.646 184.579 62.002 182.508 62.002 C 180.63 62.002 178.851 61.735 177.166 61.201 C 175.482 60.668 173.925 59.9 172.497 58.902 C 171.069 57.903 169.778 56.695 168.625 55.279 C 167.472 53.863 166.495 52.268 165.696 50.496 C 164.895 48.724 164.278 46.798 163.843 44.719 C 163.409 42.639 163.191 40.442 163.191 38.13 C 163.191 35.818 163.409 33.621 163.843 31.541 C 164.278 29.462 164.896 27.538 165.696 25.774 C 166.497 24.007 167.472 22.417 168.625 21.001 C 169.778 19.585 171.069 18.377 172.497 17.378 C 173.925 16.38 175.482 15.612 177.166 15.079 C 178.849 14.545 180.63 14.278 182.508 14.278 C 184.579 14.278 186.514 14.634 188.316 15.346 C 190.118 16.058 191.742 17.07 193.192 18.384 C 194.642 19.698 195.897 21.288 196.96 23.156 C 198.023 25.025 198.851 27.121 199.444 29.448 L 199.444 0.01 Z M 199.444 38.128 C 199.444 35.541 199.123 33.225 198.481 31.179 C 197.839 29.133 196.911 27.399 195.695 25.976 C 194.48 24.554 193.005 23.466 191.265 22.712 C 189.526 21.96 187.559 21.583 185.365 21.583 C 183.171 21.583 181.151 21.941 179.432 22.66 C 177.713 23.379 176.275 24.436 175.115 25.832 C 173.956 27.228 173.075 28.956 172.475 31.015 C 171.875 33.074 171.574 35.446 171.574 38.128 C 171.574 40.811 171.875 43.182 172.475 45.242 C 173.075 47.301 173.956 49.032 175.115 50.434 C 176.275 51.837 177.713 52.898 179.432 53.617 C 181.151 54.335 183.129 54.694 185.365 54.694 C 187.601 54.694 189.526 54.314 191.265 53.555 C 193.005 52.796 194.482 51.705 195.695 50.28 C 196.911 48.858 197.839 47.123 198.481 45.077 C 199.123 43.031 199.444 40.716 199.444 38.128 Z M 253.452 45.764 C 252.859 48.296 251.932 50.569 250.677 52.579 C 249.421 54.59 247.891 56.294 246.091 57.69 C 244.289 59.086 242.242 60.153 239.952 60.892 C 237.66 61.631 235.176 62.002 232.498 62.002 C 230.262 62.002 228.153 61.742 226.173 61.221 C 224.193 60.701 222.37 59.952 220.707 58.974 C 219.052 58.002 217.546 56.799 216.235 55.403 C 214.917 54 213.798 52.413 212.882 50.641 C 211.964 48.868 211.262 46.926 210.781 44.811 C 210.297 42.696 210.056 40.449 210.056 38.068 C 210.056 35.687 210.297 33.45 210.781 31.355 C 211.264 29.261 211.957 27.332 212.861 25.567 C 213.766 23.801 214.866 22.221 216.164 20.825 C 217.462 19.429 218.931 18.246 220.574 17.275 C 222.217 16.303 224.018 15.56 225.977 15.048 C 227.936 14.535 230.022 14.278 232.231 14.278 C 235.502 14.278 238.456 14.836 241.093 15.951 C 243.73 17.067 245.979 18.65 247.842 20.703 C 249.706 22.756 251.141 25.239 252.149 28.155 C 253.156 31.07 253.66 34.333 253.66 37.946 C 253.66 38.465 253.65 38.98 253.629 39.486 C 253.609 39.992 253.57 40.553 253.516 41.168 L 218.606 41.168 C 218.855 43.234 219.355 45.092 220.107 46.741 C 220.859 48.39 221.84 49.789 223.047 50.939 C 224.255 52.088 225.673 52.968 227.301 53.576 C 228.93 54.185 230.73 54.49 232.704 54.49 C 235.74 54.49 238.281 53.761 240.324 52.303 C 242.366 50.845 243.948 48.667 245.065 45.764 L 253.45 45.764 Z M 244.984 33.981 C 244.708 32.01 244.225 30.269 243.534 28.756 C 242.844 27.245 241.96 25.971 240.883 24.937 C 239.807 23.904 238.548 23.121 237.104 22.586 C 235.661 22.052 234.05 21.785 232.27 21.785 C 230.49 21.785 228.778 22.062 227.259 22.617 C 225.741 23.171 224.404 23.971 223.253 25.018 C 222.1 26.065 221.143 27.344 220.385 28.857 C 219.626 30.368 219.086 32.076 218.77 33.978 L 244.982 33.978 Z M 256.462 31.271 C 256.462 28.671 256.946 26.325 257.911 24.23 C 258.878 22.136 260.26 20.351 262.062 18.873 C 263.864 17.395 266.044 16.259 268.605 15.466 C 271.165 14.672 274.047 14.277 277.249 14.277 C 280.631 14.277 283.66 14.726 286.339 15.621 C 289.016 16.517 291.288 17.807 293.15 19.49 C 295.014 21.172 296.443 23.23 297.437 25.658 C 298.43 28.088 298.927 30.841 298.927 33.921 L 298.927 60.77 L 290.542 60.77 L 290.542 48.598 C 289.989 50.679 289.151 52.546 288.027 54.201 C 286.901 55.857 285.536 57.263 283.928 58.419 C 282.321 59.575 280.487 60.462 278.432 61.077 C 276.375 61.692 274.145 62 271.744 62 C 269.342 62 266.974 61.672 264.932 61.015 C 262.888 60.358 261.139 59.435 259.684 58.243 C 258.227 57.053 257.103 55.619 256.308 53.943 C 255.514 52.268 255.118 50.403 255.118 48.35 C 255.118 46.297 255.529 44.422 256.351 42.767 C 257.172 41.111 258.352 39.705 259.892 38.549 C 261.431 37.393 263.301 36.506 265.503 35.891 C 267.706 35.276 270.178 34.968 272.927 34.968 L 290.547 34.968 L 290.547 33.921 C 290.547 32.059 290.233 30.38 289.606 28.882 C 288.977 27.384 288.085 26.11 286.925 25.065 C 285.766 24.017 284.358 23.215 282.701 22.653 C 281.045 22.092 279.18 21.812 277.11 21.812 C 275.039 21.812 273.172 22.038 271.634 22.489 C 270.094 22.94 268.824 23.58 267.824 24.408 C 266.823 25.236 266.078 26.231 265.588 27.394 C 265.098 28.557 264.852 29.85 264.852 31.273 L 256.467 31.273 Z M 272.84 41.946 C 269.734 41.946 267.384 42.462 265.791 43.496 C 264.197 44.529 263.399 46.058 263.399 48.084 C 263.399 49.151 263.63 50.103 264.092 50.937 C 264.555 51.772 265.234 52.47 266.132 53.032 C 267.029 53.593 268.137 54.02 269.455 54.315 C 270.773 54.61 272.288 54.756 274 54.756 C 276.429 54.756 278.655 54.473 280.678 53.905 C 282.699 53.337 284.442 52.542 285.906 51.524 C 287.37 50.505 288.507 49.287 289.322 47.869 C 290.136 46.453 290.544 44.896 290.544 43.199 L 290.544 41.947 L 272.84 41.947 Z\" fill=\"url(#idss10650118826_1g-1052639275)\"></path></g></svg>',svgContentId:10650118826}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qedqch\",\"data-framer-name\":\"BADIDEATEXT\",layout:\"position\",name:\"BADIDEATEXT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 456 95\"><g><defs><linearGradient id=\"idss11898971364_1g-1052639275\" x1=\"1.2260869825037093\" x2=\"0.055044528209285404\" y1=\"0.7333293817794333\" y2=\"0.35701274412838935\"><stop offset=\"0\" stop-color=\"var(--token-9ec835a5-f423-485c-89b8-74d23af079d2, rgb(235, 206, 120)) /* {&quot;name&quot;:&quot;SECONDARY&quot;} */\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-ecd5a730-2ac8-420e-af9d-4849c31c7c02, rgb(153, 255, 253)) /* {&quot;name&quot;:&quot;Main&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 43.924 3.161 C 46.703 3.161 49.351 3.428 51.866 3.962 C 54.382 4.496 56.713 5.251 58.86 6.226 C 61.007 7.202 62.948 8.386 64.685 9.78 C 66.423 11.174 67.895 12.738 69.106 14.466 C 70.318 16.196 71.254 18.073 71.916 20.096 C 72.578 22.12 72.911 24.253 72.911 26.497 C 72.911 29.16 72.457 31.65 71.553 33.966 C 70.648 36.282 69.38 38.329 67.748 40.1 C 66.116 41.872 64.185 43.335 61.953 44.488 C 59.721 45.641 57.28 46.375 54.627 46.691 C 57.87 46.984 60.842 47.744 63.549 48.971 C 66.253 50.199 68.586 51.785 70.542 53.737 C 72.499 55.688 74.019 57.953 75.105 60.53 C 76.19 63.108 76.731 65.909 76.731 68.929 C 76.731 71.299 76.394 73.543 75.721 75.659 C 75.059 77.753 74.073 79.733 72.8 81.525 C 71.527 83.318 69.985 84.927 68.173 86.352 C 66.364 87.777 64.325 88.994 62.064 90.001 C 59.801 91.007 57.331 91.778 54.658 92.312 C 51.985 92.846 49.152 93.113 46.165 93.113 L 0 93.113 L 0 3.161 Z M 43.293 42.005 C 45.757 42.005 47.997 41.672 50.018 40.999 C 52.039 40.329 53.771 39.389 55.212 38.185 C 56.653 36.978 57.769 35.527 58.558 33.828 C 59.347 32.131 59.741 30.254 59.741 28.197 C 59.741 26.14 59.362 24.423 58.605 22.849 C 57.847 21.277 56.756 19.94 55.336 18.838 C 53.916 17.737 52.184 16.895 50.142 16.307 C 48.1 15.719 45.786 15.426 43.195 15.426 L 13.262 15.426 L 13.262 42.003 L 43.293 42.003 Z M 44.272 80.85 C 57.135 80.85 63.567 76.3 63.567 67.198 C 63.567 62.628 61.976 59.226 58.798 56.992 C 55.62 54.759 50.789 53.642 44.303 53.642 L 13.262 53.642 L 13.262 80.848 L 44.27 80.848 Z M 80.502 47.916 C 80.502 43.931 81.24 40.336 82.712 37.127 C 84.186 33.918 86.295 31.183 89.042 28.919 C 91.79 26.654 95.116 24.913 99.021 23.699 C 102.926 22.482 107.321 21.876 112.203 21.876 C 117.361 21.876 121.981 22.564 126.066 23.935 C 130.149 25.309 133.614 27.286 136.455 29.863 C 139.298 32.441 141.476 35.594 142.992 39.315 C 144.507 43.038 145.265 47.256 145.265 51.975 L 145.265 93.115 L 132.477 93.115 L 132.477 74.465 C 131.634 77.654 130.356 80.514 128.641 83.051 C 126.925 85.587 124.842 87.741 122.391 89.513 C 119.939 91.285 117.142 92.643 114.008 93.585 C 110.871 94.528 107.471 95 103.808 95 C 100.145 95 96.533 94.497 93.419 93.49 C 90.303 92.484 87.635 91.069 85.416 89.244 C 83.194 87.421 81.479 85.223 80.268 82.655 C 79.056 80.088 78.453 77.23 78.453 74.085 C 78.453 70.939 79.08 68.066 80.332 65.529 C 81.585 62.993 83.384 60.839 85.733 59.067 C 88.081 57.295 90.932 55.937 94.291 54.995 C 97.649 54.052 101.421 53.58 105.612 53.58 L 132.485 53.58 L 132.485 51.975 C 132.485 49.123 132.005 46.55 131.049 44.255 C 130.09 41.959 128.729 40.008 126.961 38.406 C 125.192 36.801 123.045 35.571 120.519 34.711 C 117.993 33.851 115.15 33.422 111.992 33.422 C 108.834 33.422 105.986 33.769 103.64 34.459 C 101.292 35.15 99.356 36.131 97.83 37.399 C 96.304 38.668 95.167 40.193 94.42 41.975 C 93.672 43.756 93.298 45.739 93.298 47.919 L 80.51 47.919 Z M 105.481 64.271 C 100.743 64.271 97.16 65.062 94.729 66.646 C 92.298 68.231 91.081 70.572 91.081 73.676 C 91.081 75.312 91.435 76.77 92.138 78.049 C 92.845 79.328 93.881 80.398 95.25 81.258 C 96.618 82.119 98.307 82.773 100.317 83.225 C 102.328 83.677 104.638 83.9 107.249 83.9 C 110.953 83.9 114.348 83.466 117.434 82.596 C 120.516 81.726 123.174 80.509 125.406 78.948 C 127.639 77.386 129.374 75.52 130.616 73.348 C 131.859 71.178 132.48 68.793 132.48 66.192 L 132.48 64.274 L 105.481 64.274 Z M 216.761 0.015 L 216.761 93.115 L 203.973 93.115 L 203.973 71.728 C 203.068 75.291 201.805 78.511 200.184 81.384 C 198.562 84.257 196.647 86.699 194.438 88.712 C 192.226 90.725 189.749 92.276 187.001 93.367 C 184.253 94.458 181.302 95.003 178.144 95.003 C 175.28 95.003 172.566 94.594 169.996 93.775 C 167.429 92.959 165.054 91.783 162.876 90.253 C 160.698 88.722 158.729 86.871 156.971 84.701 C 155.213 82.532 153.723 80.088 152.504 77.374 C 151.282 74.657 150.341 71.707 149.678 68.521 C 149.016 65.334 148.683 61.968 148.683 58.425 C 148.683 54.882 149.016 51.516 149.678 48.329 C 150.341 45.143 151.284 42.195 152.504 39.492 C 153.725 36.786 155.213 34.349 156.971 32.179 C 158.729 30.01 160.698 28.159 162.876 26.628 C 165.054 25.098 167.429 23.922 169.996 23.106 C 172.563 22.286 175.28 21.878 178.144 21.878 C 181.302 21.878 184.253 22.423 187.001 23.514 C 189.749 24.605 192.226 26.156 194.438 28.169 C 196.65 30.182 198.562 32.618 200.184 35.481 C 201.805 38.344 203.068 41.556 203.973 45.122 L 203.973 0.015 Z M 203.973 58.422 C 203.973 54.458 203.483 50.91 202.504 47.775 C 201.524 44.64 200.109 41.982 198.256 39.802 C 196.402 37.623 194.152 35.956 191.499 34.801 C 188.847 33.648 185.846 33.07 182.501 33.07 C 179.155 33.07 176.074 33.62 173.453 34.721 C 170.831 35.823 168.637 37.443 166.869 39.582 C 165.101 41.72 163.758 44.368 162.843 47.523 C 161.928 50.679 161.469 54.312 161.469 58.422 C 161.469 62.533 161.928 66.166 162.843 69.322 C 163.758 72.477 165.101 75.13 166.869 77.279 C 168.637 79.428 170.831 81.053 173.453 82.154 C 176.074 83.256 179.09 83.805 182.501 83.805 C 185.911 83.805 188.847 83.223 191.499 82.059 C 194.152 80.896 196.405 79.225 198.256 77.042 C 200.109 74.863 201.524 72.205 202.504 69.07 C 203.483 65.935 203.973 62.387 203.973 58.422 Z M 245.619 93.115 L 232.356 93.115 L 232.356 0 L 245.619 0 Z M 316.957 0.015 L 316.957 93.115 L 304.169 93.115 L 304.169 71.728 C 303.265 75.291 302.001 78.511 300.38 81.384 C 298.759 84.257 296.843 86.699 294.634 88.712 C 292.423 90.725 289.945 92.276 287.198 93.367 C 284.45 94.458 281.498 95.003 278.34 95.003 C 275.477 95.003 272.762 94.594 270.192 93.775 C 267.625 92.959 265.251 91.783 263.073 90.253 C 260.894 88.722 258.925 86.871 257.167 84.701 C 255.409 82.532 253.919 80.088 252.7 77.374 C 251.478 74.657 250.537 71.707 249.875 68.521 C 249.212 65.334 248.88 61.968 248.88 58.425 C 248.88 54.882 249.212 51.516 249.875 48.329 C 250.537 45.143 251.481 42.195 252.7 39.492 C 253.922 36.786 255.409 34.349 257.167 32.179 C 258.925 30.01 260.894 28.159 263.073 26.628 C 265.251 25.098 267.625 23.922 270.192 23.106 C 272.76 22.286 275.477 21.878 278.34 21.878 C 281.498 21.878 284.45 22.423 287.198 23.514 C 289.945 24.605 292.423 26.156 294.634 28.169 C 296.846 30.182 298.759 32.618 300.38 35.481 C 302.001 38.344 303.265 41.556 304.169 45.122 L 304.169 0.015 Z M 304.169 58.422 C 304.169 54.458 303.679 50.91 302.7 47.775 C 301.72 44.64 300.305 41.982 298.452 39.802 C 296.598 37.623 294.348 35.956 291.696 34.801 C 289.043 33.648 286.043 33.07 282.697 33.07 C 279.351 33.07 276.27 33.62 273.649 34.721 C 271.027 35.823 268.834 37.443 267.065 39.582 C 265.297 41.72 263.954 44.368 263.039 47.523 C 262.124 50.679 261.665 54.312 261.665 58.422 C 261.665 62.533 262.124 66.166 263.039 69.322 C 263.954 72.477 265.297 75.13 267.065 77.279 C 268.834 79.428 271.027 81.053 273.649 82.154 C 276.27 83.256 279.286 83.805 282.697 83.805 C 286.107 83.805 289.043 83.223 291.696 82.059 C 294.348 80.896 296.601 79.225 298.452 77.042 C 300.305 74.863 301.72 72.205 302.7 69.07 C 303.679 65.935 304.169 62.387 304.169 58.422 Z M 386.535 70.123 C 385.631 74.002 384.218 77.484 382.303 80.565 C 380.388 83.646 378.055 86.257 375.309 88.396 C 372.562 90.535 369.44 92.171 365.947 93.303 C 362.452 94.435 358.662 95.003 354.579 95.003 C 351.169 95.003 347.952 94.605 344.933 93.806 C 341.912 93.01 339.134 91.862 336.597 90.363 C 334.072 88.873 331.776 87.031 329.776 84.891 C 327.766 82.742 326.059 80.311 324.662 77.594 C 323.262 74.878 322.193 71.902 321.458 68.662 C 320.721 65.422 320.352 61.979 320.352 58.33 C 320.352 54.681 320.721 51.254 321.458 48.044 C 322.195 44.835 323.252 41.88 324.631 39.176 C 326.01 36.47 327.688 34.049 329.668 31.91 C 331.648 29.771 333.888 27.958 336.393 26.469 C 338.899 24.98 341.647 23.842 344.634 23.057 C 347.622 22.271 350.803 21.878 354.172 21.878 C 359.16 21.878 363.666 22.733 367.687 24.441 C 371.708 26.151 375.139 28.577 377.98 31.722 C 380.823 34.868 383.012 38.673 384.548 43.14 C 386.084 47.608 386.852 52.607 386.852 58.143 C 386.852 58.939 386.837 59.727 386.806 60.502 C 386.775 61.278 386.716 62.138 386.633 63.08 L 333.393 63.08 C 333.772 66.246 334.535 69.093 335.682 71.62 C 336.829 74.146 338.324 76.29 340.165 78.051 C 342.008 79.813 344.17 81.161 346.653 82.093 C 349.138 83.025 351.883 83.492 354.894 83.492 C 359.523 83.492 363.398 82.375 366.514 80.141 C 369.628 77.908 372.041 74.57 373.745 70.123 L 386.533 70.123 Z M 373.621 52.068 C 373.201 49.048 372.464 46.381 371.409 44.062 C 370.358 41.746 369.009 39.795 367.367 38.211 C 365.725 36.626 363.805 35.427 361.604 34.608 C 359.402 33.789 356.946 33.381 354.231 33.381 C 351.517 33.381 348.906 33.805 346.588 34.654 C 344.274 35.504 342.235 36.729 340.479 38.334 C 338.721 39.939 337.262 41.898 336.105 44.216 C 334.947 46.532 334.125 49.148 333.643 52.063 L 373.618 52.063 Z M 391.126 47.916 C 391.126 43.931 391.864 40.336 393.335 37.127 C 394.81 33.918 396.919 31.183 399.666 28.919 C 402.414 26.654 405.739 24.913 409.645 23.699 C 413.55 22.482 417.945 21.876 422.827 21.876 C 427.985 21.876 432.605 22.564 436.69 23.935 C 440.773 25.309 444.238 27.286 447.079 29.863 C 449.922 32.441 452.1 35.594 453.616 39.315 C 455.131 43.038 455.889 47.256 455.889 51.975 L 455.889 93.115 L 443.101 93.115 L 443.101 74.465 C 442.258 77.654 440.98 80.514 439.265 83.051 C 437.549 85.587 435.466 87.741 433.014 89.513 C 430.563 91.285 427.766 92.643 424.632 93.585 C 421.495 94.528 418.095 95 414.432 95 C 410.769 95 407.157 94.497 404.043 93.49 C 400.927 92.484 398.259 91.069 396.039 89.244 C 393.817 87.421 392.103 85.223 390.892 82.655 C 389.68 80.088 389.077 77.23 389.077 74.085 C 389.077 70.939 389.703 68.066 390.956 65.529 C 392.209 62.993 394.008 60.839 396.357 59.067 C 398.705 57.295 401.556 55.937 404.915 54.995 C 408.273 54.052 412.045 53.58 416.236 53.58 L 443.109 53.58 L 443.109 51.975 C 443.109 49.123 442.629 46.55 441.673 44.255 C 440.714 41.959 439.353 40.008 437.585 38.406 C 435.816 36.801 433.669 35.571 431.143 34.711 C 428.617 33.851 425.774 33.422 422.616 33.422 C 419.458 33.422 416.61 33.769 414.264 34.459 C 411.916 35.15 409.98 36.131 408.454 37.399 C 406.928 38.668 405.791 40.193 405.044 41.975 C 404.296 43.756 403.922 45.739 403.922 47.919 L 391.134 47.919 Z M 416.105 64.271 C 411.367 64.271 407.784 65.062 405.353 66.646 C 402.922 68.231 401.705 70.572 401.705 73.676 C 401.705 75.312 402.058 76.77 402.762 78.049 C 403.468 79.328 404.505 80.398 405.874 81.258 C 407.242 82.119 408.931 82.773 410.941 83.225 C 412.952 83.677 415.262 83.9 417.873 83.9 C 421.577 83.9 424.972 83.466 428.057 82.596 C 431.14 81.726 433.798 80.509 436.03 78.948 C 438.263 77.386 439.997 75.52 441.24 73.348 C 442.482 71.178 443.104 68.793 443.104 66.192 L 443.104 64.274 L 416.105 64.274 Z\" fill=\"url(#idss11898971364_1g-1052639275)\"></path></g></svg>',svgContentId:11898971364,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xpb396\",\"data-styles-preset\":\"UZL0jKOoy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Will artificial intelligence overtake humanity? Not if we have anything to say about it! Instead, they\u2019ll work for us. But, that might be a BAD IDEA\u2026\"})}),className:\"framer-a3zmy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15vuyww\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VgNdu7gAD\"},implicitPathVariables:undefined},{href:{webPageId:\"VgNdu7gAD\"},implicitPathVariables:undefined},{href:{webPageId:\"VgNdu7gAD\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{width:\"calc(min(100vw, 1440px) - 64px)\",y:661},rf0xHQIUQ:{width:\"calc((min(100vw, 1440px) - 128px) * 0.45)\",y:662}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:870.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qk327f-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{ESL9j3oNV:resolvedLinks[2],style:{width:\"100%\"},variant:\"HiatQUoDU\"},rf0xHQIUQ:{ESL9j3oNV:resolvedLinks[1],style:{width:\"100%\"},variant:\"HiatQUoDU\"}},children:/*#__PURE__*/_jsx(Button,{ESL9j3oNV:resolvedLinks[0],height:\"100%\",id:\"f9kzHc2zi\",juhZ0MzBF:\"About Bad Idea\",layoutId:\"f9kzHc2zi\",variant:\"LQY5qkCI0\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MGbWlVP9_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MGbWlVP9_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MGbWlVP9_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{width:\"calc(min(100vw, 1440px) - 64px)\",y:724},rf0xHQIUQ:{width:\"calc((min(100vw, 1440px) - 128px) * 0.45)\",y:725}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:870.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15blwls-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{ESL9j3oNV:resolvedLinks1[2],style:{width:\"100%\"},variant:\"HiatQUoDU\"},rf0xHQIUQ:{ESL9j3oNV:resolvedLinks1[1],style:{width:\"100%\"},variant:\"HiatQUoDU\"}},children:/*#__PURE__*/_jsx(Button,{ESL9j3oNV:resolvedLinks1[0],height:\"100%\",id:\"USR_Mq45c\",juhZ0MzBF:\"Swap for $BAD\",layoutId:\"USR_Mq45c\",variant:\"LQY5qkCI0\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-96lmfg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(1191),pixelHeight:1024,pixelWidth:1024,sizes:\"126px\",src:\"https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png\",srcSet:\"https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png?scale-down-to=512 512w,https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png 1024w\"},transformTemplate:undefined},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(484),pixelHeight:1024,pixelWidth:1024,sizes:\"126px\",src:\"https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png\",srcSet:\"https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png?scale-down-to=512 512w,https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(367),pixelHeight:1024,pixelWidth:1024,sizes:\"188px\",src:\"https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png\",srcSet:\"https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png?scale-down-to=512 512w,https://framerusercontent.com/images/KOnb48qR3Nt6Pi0KRl0wkW3dSCw.png 1024w\"},className:\"framer-lqdux7\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_8\",name:\"bad_idea_ai_chat_bot_crypto_8\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:538,loading:getLoadingLazyAtYPosition(1190),pixelHeight:1024,pixelWidth:538,sizes:\"339px\",src:\"https://framerusercontent.com/images/xkq08pJbLhdCcbJBR15odh4DCQQ.png\",srcSet:\"https://framerusercontent.com/images/xkq08pJbLhdCcbJBR15odh4DCQQ.png 538w\"},transformTemplate:transformTemplate1},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:538,loading:getLoadingLazyAtYPosition(495.5000000000003),pixelHeight:1024,pixelWidth:538,sizes:\"386px\",src:\"https://framerusercontent.com/images/xkq08pJbLhdCcbJBR15odh4DCQQ.png\",srcSet:\"https://framerusercontent.com/images/xkq08pJbLhdCcbJBR15odh4DCQQ.png 538w\"},transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:538,loading:getLoadingLazyAtYPosition(374.5000000000003),pixelHeight:1024,pixelWidth:538,sizes:\"490px\",src:\"https://framerusercontent.com/images/xkq08pJbLhdCcbJBR15odh4DCQQ.png\",srcSet:\"https://framerusercontent.com/images/xkq08pJbLhdCcbJBR15odh4DCQQ.png 538w\"},className:\"framer-1eeh1ai\",\"data-framer-name\":\"graphics8_A_full_body_human_like_robot_with_matte_white_panels_76c6fc03_f1be_4189_8349_062eaf2378b2_removebg\",name:\"graphics8_A_full_body_human_like_robot_with_matte_white_panels_76c6fc03_f1be_4189_8349_062eaf2378b2_removebg\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(1350),pixelHeight:1024,pixelWidth:1024,sizes:\"77px\",src:\"https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png\",srcSet:\"https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png 1024w\"},transformTemplate:undefined},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(663),pixelHeight:1024,pixelWidth:1024,sizes:\"90px\",src:\"https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png\",srcSet:\"https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png 1024w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(611.0000000000002),pixelHeight:1024,pixelWidth:1024,sizes:\"124px\",src:\"https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png\",srcSet:\"https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQ69z2meswr94fPCQHijxqw.png 1024w\"},className:\"framer-pghpnn\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_9\",name:\"bad_idea_ai_chat_bot_crypto_9\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1boj4kb-container\",\"data-framer-name\":\"Texture\",name:\"Texture\",children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"t5r1WNGnS\",layoutId:\"t5r1WNGnS\",name:\"Texture\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{height:1465,width:\"calc(min(100vw, 1440px) + 824px)\"},rf0xHQIUQ:{height:1006,width:\"calc(min(100vw, 1440px) + 242px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:880,width:\"min(100vw, 1440px)\",y:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9433r3-container\",\"data-framer-name\":\"Grid Pattern\",name:\"Grid Pattern\",children:/*#__PURE__*/_jsx(Grid,{height:\"100%\",id:\"berf5J0xU\",layoutId:\"berf5J0xU\",name:\"Grid Pattern\",style:{height:\"100%\",width:\"100%\"},variant:\"jDOakXFZM\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1epnvwj\",\"data-framer-name\":\"Features Large\",name:\"Features Large\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(1897),pixelHeight:816,pixelWidth:1456,sizes:\"126px\",src:\"https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png\",srcSet:\"https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png?scale-down-to=512 512w,https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png 1456w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(1655),pixelHeight:816,pixelWidth:1456,sizes:\"190px\",src:\"https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png\",srcSet:\"https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png?scale-down-to=512 512w,https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png 1456w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:2890,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:.5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(1529),pixelHeight:816,pixelWidth:1456,sizes:\"190px\",src:\"https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png\",srcSet:\"https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png?scale-down-to=512 512w,https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XXRl9lYE49SfY95OcAlv95svU.png 1456w\"},className:\"framer-8b2eq7\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_14\",name:\"bad_idea_ai_chat_bot_crypto_14\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(2729),pixelHeight:816,pixelWidth:1456,sizes:\"198px\",src:\"https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png\",srcSet:\"https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png 1456w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(2410),pixelHeight:816,pixelWidth:1456,sizes:\"402px\",src:\"https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png\",srcSet:\"https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png 1456w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3430,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(2335),pixelHeight:816,pixelWidth:1456,sizes:\"402px\",src:\"https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png\",srcSet:\"https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G7gKymbAxLU54b4OcpLzuX3Q.png 1456w\"},className:\"framer-1hg9cyk\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_13\",name:\"bad_idea_ai_chat_bot_crypto_13\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:738,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(3017),pixelHeight:738,pixelWidth:1456,sizes:\"calc(100vw + 194px)\",src:\"https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png\",srcSet:\"https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png 1456w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:738,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(1955),pixelHeight:738,pixelWidth:1456,sizes:\"100vw\",src:\"https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png\",srcSet:\"https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png 1456w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:112,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:738,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition(1999),pixelHeight:738,pixelWidth:1456,sizes:\"100vw\",src:\"https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png\",srcSet:\"https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png?scale-down-to=512 512w,https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FLj5baPZG9SZJTUrtnZZkjduK0.png 1456w\"},className:\"framer-10lk2vb\",\"data-framer-name\":\"graphics8_out_of_focus_jungle_style_plants_at_the_bottom_sides_db1597c7_d5b3_49e1_9990_c2daf151832d_removebg\",name:\"graphics8_out_of_focus_jungle_style_plants_at_the_bottom_sides_db1597c7_d5b3_49e1_9990_c2daf151832d_removebg\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{__framer__speed:96,background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition(2533),pixelHeight:816,pixelWidth:1412,sizes:\"calc(100vw + 460px)\",src:\"https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png\",srcSet:\"https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png?scale-down-to=512 512w,https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png 1412w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition(2120.5),pixelHeight:816,pixelWidth:1412,sizes:\"calc(100vw + 176px)\",src:\"https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png\",srcSet:\"https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png?scale-down-to=512 512w,https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png 1412w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1412,loading:getLoadingLazyAtYPosition(2146.5),pixelHeight:816,pixelWidth:1412,sizes:\"calc(100vw + 176px)\",src:\"https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png\",srcSet:\"https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png?scale-down-to=512 512w,https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sNkydOKR6tfx0XrbUla6fQF0NE.png 1412w\"},className:\"framer-116yts4\",\"data-framer-name\":\"graphics8_mostly_clear_blue_sky_e79ac35f_9386_4f06_b94c_d9d21dcbf27d1\",name:\"graphics8_mostly_clear_blue_sky_e79ac35f_9386_4f06_b94c_d9d21dcbf27d1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v3gucc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-181fgne\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7nyt7b\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wmtz1y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"22px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},rf0xHQIUQ:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"38px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(MagText,{color:\"var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, rgb(255, 255, 255))\",font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"48px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"MpE3pl2si\",layoutId:\"MpE3pl2si\",text:\"\u201CI visualize a time when we\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b90rc8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"22px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},rf0xHQIUQ:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"38px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(MagText,{color:\"var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, rgb(255, 255, 255))\",font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"48px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"dH9jfKCJb\",layoutId:\"dH9jfKCJb\",text:\"will be to robots what dogs\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9ul0z-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"22px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},rf0xHQIUQ:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"38px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(MagText,{color:\"var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, rgb(255, 255, 255))\",font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"48px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"NZ9rcHMAC\",layoutId:\"NZ9rcHMAC\",text:\"are to humans. And I am\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d1idq2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"22px\",letterSpacing:\"0em\",lineHeight:\"1em\"}},rf0xHQIUQ:{font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"38px\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(MagText,{color:\"var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, rgb(255, 255, 255))\",font:{fontFamily:'\"Nohemi Medium\", \"Nohemi Medium Placeholder\", sans-serif',fontSize:\"48px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"rC1JWIHWJ\",layoutId:\"rC1JWIHWJ\",text:\"rooting for the machines.\u201D\u200A\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1izjf5c\",\"data-styles-preset\":\"bbwc7KHpZ\",style:{\"--framer-text-color\":\"var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, rgb(255, 255, 255))\"},children:\"Claude Shannon\"})}),className:\"framer-utn0v4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",backgroundSize:1.4,fit:\"tile\",loading:getLoadingLazyAtYPosition(1665),pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"}},rf0xHQIUQ:{background:{alt:\"\",backgroundSize:1.4,fit:\"tile\",loading:getLoadingLazyAtYPosition(1206),pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1.4,fit:\"tile\",loading:getLoadingLazyAtYPosition(1080),pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"},className:\"framer-s8wyxk\",\"data-framer-name\":\"Grid\",name:\"Grid\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w6845k\",\"data-framer-name\":\"Grid Fade\",name:\"Grid Fade\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j6ihgs-container\",\"data-framer-name\":\"Texture\",name:\"Texture\",children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"pZqWUOKry\",layoutId:\"pZqWUOKry\",name:\"Texture\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dovl1\",\"data-framer-name\":\"Features Large\",id:elementId,name:\"Features Large\",ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lqcegv-container\",\"data-framer-name\":\"Texture\",name:\"Texture\",children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"ZjBF9rOai\",layoutId:\"ZjBF9rOai\",name:\"Texture\",opacity:.2,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vsrpxc\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yqt9lq-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"Zvc2bj9Fh\",layoutId:\"Zvc2bj9Fh\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://swapwiz.openocean.finance?hash=0e2042a61b2ebba391048106c00e6169\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tfwyp6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1jggksl\",\"data-styles-preset\":\"MDCbgDp0H\",style:{\"--framer-text-color\":\"var(--token-87be4e07-f500-42be-a757-3057f0ba29ed, rgb(2, 12, 26))\"},children:\"Thinking about buying $BAD?\"})}),className:\"framer-jnfq5r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t58xt2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xpb396\",\"data-styles-preset\":\"UZL0jKOoy\",style:{\"--framer-text-color\":\"var(--token-4e5f993f-3231-4c65-ada2-4c5176dc6802, rgb(13, 11, 9))\"},children:\"Get ready to join a vibrant community that thrives on creativity and a good laugh while investing in a project that aims to shake up the crypto scene!\"})}),className:\"framer-1xratnb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"il4PcfEMI\"},implicitPathVariables:undefined},{href:{webPageId:\"il4PcfEMI\"},implicitPathVariables:undefined},{href:{webPageId:\"il4PcfEMI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{width:\"min(min(max(100vw - 64px, 1px), 1184px), 944px)\",y:3363.6},rf0xHQIUQ:{y:3198}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:3313.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ldlz3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{ESL9j3oNV:resolvedLinks2[2],style:{width:\"100%\"},variant:\"BHJfrMKJn\"},rf0xHQIUQ:{ESL9j3oNV:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{ESL9j3oNV:resolvedLinks2[0],height:\"100%\",id:\"jSItQ98_c\",juhZ0MzBF:\"View all listings\",layoutId:\"jSItQ98_c\",variant:\"oG5pm2hTA\",width:\"100%\"})})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n5xqny\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1woxbf0\",\"data-framer-name\":\"Features Large\",name:\"Features Large\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2z5six\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2624,intrinsicWidth:1995,loading:getLoadingLazyAtYPosition(5296.200000000001),pixelHeight:2624,pixelWidth:1995,sizes:\"366px\",src:\"https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp\",srcSet:\"https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp?scale-down-to=1024 778w,https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp?scale-down-to=2048 1557w,https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp 1995w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2624,intrinsicWidth:1995,loading:getLoadingLazyAtYPosition(5106),pixelHeight:2624,pixelWidth:1995,sizes:\"582px\",src:\"https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp\",srcSet:\"https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp?scale-down-to=1024 778w,https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp?scale-down-to=2048 1557w,https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp 1995w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2624,intrinsicWidth:1995,loading:getLoadingLazyAtYPosition(4779),pixelHeight:2624,pixelWidth:1995,sizes:\"800px\",src:\"https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp\",srcSet:\"https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp?scale-down-to=1024 778w,https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp?scale-down-to=2048 1557w,https://framerusercontent.com/images/EuaIjyonzNLwr5qccVr4FDHYQ.webp 1995w\"},className:\"framer-wl87j8\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto\",name:\"bad_idea_ai_chat_bot_crypto\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x4u1oy-container\",\"data-framer-name\":\"Texture\",name:\"Texture\",children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"WnJKQ3Tvr\",layoutId:\"WnJKQ3Tvr\",name:\"Texture\",opacity:.2,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w73o5j-container\",\"data-framer-name\":\"Circle Pattern\",name:\"Circle Pattern\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{scale:38}},children:/*#__PURE__*/_jsx(Pattern,{back:\"rgb(250, 250, 250)\",diagonal:true,direction:\"left\",duration:5,front:\"rgb(0, 0, 0)\",height:\"100%\",id:\"hrgPvs84L\",layoutId:\"hrgPvs84L\",name:\"Circle Pattern\",patternType:\"wave\",radius:0,scale:48,shouldAnimate:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i483aq\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1jggksl\",\"data-styles-preset\":\"MDCbgDp0H\",style:{\"--framer-text-color\":\"var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, rgb(255, 255, 255))\"},children:\"Talk to S.A.R.A.H.\"})}),className:\"framer-1exrwns\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pcnc5e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xpb396\",\"data-styles-preset\":\"UZL0jKOoy\",style:{\"--framer-text-color\":\"var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, rgb(255, 255, 255))\"},children:\"I'll guide you through the maze of cryptocurrency investment with a sprinkle of wit and a heap of insights. Imagine understanding the blockchain's role in making digital transactions as transparent as a freshly cleaned window.\"})}),className:\"framer-1z0p5hm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{y:5143.200000000001},rf0xHQIUQ:{y:5001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:4660,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oi9x6l-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"hG4zeiBhS\",juhZ0MzBF:\"Button Text\",layoutId:\"hG4zeiBhS\",variant:\"NYl7s9yR_\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(5744.200000000001),pixelHeight:1024,pixelWidth:1024,sizes:\"52px\",src:\"https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp\",srcSet:\"https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp 1024w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(5771),pixelHeight:1024,pixelWidth:1024,sizes:\"88px\",src:\"https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp\",srcSet:\"https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:126,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(5632),pixelHeight:1024,pixelWidth:1024,sizes:\"106px\",src:\"https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp\",srcSet:\"https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nxIb8oWrj0Vo2CuO98j1Ft1sHQ.webp 1024w\"},className:\"framer-1e7frbd\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_1\",name:\"bad_idea_ai_chat_bot_crypto_1\",style:{rotate:14},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(5594.200000000001),pixelHeight:1024,pixelWidth:1024,sizes:\"145px\",src:\"https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp\",srcSet:\"https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp 1024w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(5480.243752921401),pixelHeight:1024,pixelWidth:1024,sizes:\"248px\",src:\"https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp\",srcSet:\"https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(5255),pixelHeight:1024,pixelWidth:1024,sizes:\"341px\",src:\"https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp\",srcSet:\"https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/9qCR9CkZ7WZlDDamexKEvwRVHo.webp 1024w\"},className:\"framer-101oehc\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_3\",name:\"bad_idea_ai_chat_bot_crypto_3\",style:{rotate:-11},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(6012.200000000001),pixelHeight:1024,pixelWidth:1024,sizes:\"194px\",src:\"https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp\",srcSet:\"https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp 1024w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(6178),pixelHeight:1024,pixelWidth:1024,sizes:\"331px\",src:\"https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp\",srcSet:\"https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:122,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(6111),pixelHeight:1024,pixelWidth:1024,sizes:\"427px\",src:\"https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp\",srcSet:\"https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/SIfpiyLjFsgr8ON1LySfq2nJjxo.webp 1024w\"},className:\"framer-um0apl\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_2\",name:\"bad_idea_ai_chat_bot_crypto_2\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(5983.200000000001),pixelHeight:1024,pixelWidth:1024,sizes:\"67px\",src:\"https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp\",srcSet:\"https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp 1024w\"}},rf0xHQIUQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(6128),pixelHeight:1024,pixelWidth:1024,sizes:\"114px\",src:\"https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp\",srcSet:\"https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp 1024w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:130,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition(6064),pixelHeight:1024,pixelWidth:1024,sizes:\"138px\",src:\"https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp\",srcSet:\"https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/VP6zkOBAZUBGOyy7fKmrUaaSPg.webp 1024w\"},className:\"framer-1vqidvx\",\"data-framer-name\":\"bad_idea_ai_chat_bot_crypto_4\",name:\"bad_idea_ai_chat_bot_crypto_4\",style:{rotate:-26},transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{y:5744.200000000001},rf0xHQIUQ:{y:5829}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:826,width:\"100vw\",y:5667,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b6u38c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KezeJqVqk:{variant:\"C_fRSNPnP\"},rf0xHQIUQ:{variant:\"mFE5ft7Oc\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ztTHXFWIT\",layoutId:\"ztTHXFWIT\",style:{width:\"100%\"},variant:\"VHVhwRR_O\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-zRChq { background: var(--token-87be4e07-f500-42be-a757-3057f0ba29ed, rgb(2, 12, 26)) /* {\"name\":\"DARK\"} */; }`,\".framer-zRChq.framer-lux5qc, .framer-zRChq .framer-lux5qc { display: block; }\",\".framer-zRChq.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-87be4e07-f500-42be-a757-3057f0ba29ed, #020c1a); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-zRChq .framer-foun8u-container, .framer-zRChq .framer-1x0ccc2-container, .framer-zRChq .framer-1rivowh-container, .framer-zRChq .framer-qk327f-container, .framer-zRChq .framer-15blwls-container, .framer-zRChq .framer-1wmtz1y-container, .framer-zRChq .framer-b90rc8-container, .framer-zRChq .framer-1h9ul0z-container, .framer-zRChq .framer-d1idq2-container, .framer-zRChq .framer-13ldlz3-container, .framer-zRChq .framer-1oi9x6l-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zRChq .framer-1k3ckod { 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-zRChq .framer-1f20h4h-container { flex: none; height: 64px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 10; }\",\".framer-zRChq .framer-1cj7og9-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 10; }\",'.framer-zRChq .framer-he14qf { align-content: flex-start; align-items: flex-start; background: radial-gradient(41% 92% at 50% 100%, #0f3247 0%, var(--token-87be4e07-f500-42be-a757-3057f0ba29ed, rgb(2, 12, 26)) /* {\"name\":\"DARK\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 880px; justify-content: center; max-width: 1440px; overflow: visible; padding: 128px; position: relative; width: 100%; z-index: 6; }',\".framer-zRChq .framer-1v9w1rg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 7; }\",\".framer-zRChq .framer-1izmteu { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; z-index: 2; }\",\".framer-zRChq .framer-1jofxa3, .framer-zRChq .framer-fk8w0o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zRChq .framer-g4dj4x, .framer-zRChq .framer-bana0x { flex: none; height: auto; max-width: 100%; opacity: 0.8; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 6; }\",\".framer-zRChq .framer-km5uj7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zRChq .framer-12x1yb0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zRChq .framer-1cgcou5 { --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; z-index: 6; }\",\".framer-zRChq .framer-qedqch { flex: none; height: 95px; position: relative; width: 456px; z-index: 6; }\",\".framer-zRChq .framer-a3zmy { align-self: stretch; flex: none; height: auto; max-width: 100%; opacity: 0.7; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 6; }\",\".framer-zRChq .framer-15vuyww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-zRChq .framer-96lmfg { align-content: center; align-items: center; bottom: -412px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1135px; justify-content: center; left: 581px; overflow: hidden; padding: 0px; position: absolute; right: 28px; z-index: 6; }\",\".framer-zRChq .framer-lqdux7 { -webkit-filter: blur(2px); aspect-ratio: 1 / 1; filter: blur(2px); flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 23%; overflow: visible; position: absolute; top: 10px; transform: translateX(-50%); width: 188px; z-index: 5; }\",\".framer-zRChq .framer-1eeh1ai { aspect-ratio: 0.5220417633410673 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 939px); left: 51%; overflow: visible; position: absolute; top: 43%; transform: translate(-50%, -50%); width: 490px; z-index: 6; }\",\".framer-zRChq .framer-pghpnn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 124px); left: 83%; overflow: visible; position: absolute; top: 28%; transform: translate(-50%, -50%); width: 124px; z-index: 6; }\",\".framer-zRChq .framer-1boj4kb-container, .framer-zRChq .framer-j6ihgs-container, .framer-zRChq .framer-lqcegv-container, .framer-zRChq .framer-1x4u1oy-container { bottom: 0px; flex: none; left: 0px; opacity: 0.2; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-zRChq .framer-9433r3-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-zRChq .framer-1epnvwj { align-content: center; align-items: center; background-color: var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 128px 800px 128px; position: relative; width: 100%; z-index: 2; }\",\".framer-zRChq .framer-8b2eq7 { aspect-ratio: 1.7843137254901962 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); left: -190px; opacity: 0.5; overflow: visible; position: absolute; top: 449px; width: 190px; z-index: 2; }\",\".framer-zRChq .framer-1hg9cyk { aspect-ratio: 1.7843137254901962 / 1; bottom: 344px; flex: none; height: var(--framer-aspect-ratio-supported, 225px); overflow: visible; position: absolute; right: -402px; width: 402px; z-index: 4; }\",\".framer-zRChq .framer-10lk2vb { -webkit-filter: blur(2px); bottom: -232px; filter: blur(2px); flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 919px; z-index: 5; }\",\".framer-zRChq .framer-116yts4 { aspect-ratio: 1.728643216080402 / 1; bottom: -38px; flex: none; height: var(--framer-aspect-ratio-supported, 935px); left: -163px; overflow: visible; position: absolute; right: -13px; z-index: 3; }\",\".framer-zRChq .framer-1v3gucc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zRChq .framer-181fgne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; mix-blend-mode: difference; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-zRChq .framer-7nyt7b { 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: min-content; }\",\".framer-zRChq .framer-utn0v4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.5; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-zRChq .framer-s8wyxk { bottom: 0px; flex: none; left: 0px; opacity: 0.02; position: absolute; right: 0px; top: 0px; z-index: 1; }\",'.framer-zRChq .framer-w6845k { background: linear-gradient(0deg, var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, #ffffff) /* {\"name\":\"WHITE\"} */ 48%, rgba(255, 255, 255, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }',\".framer-zRChq .framer-dovl1 { align-content: flex-start; align-items: flex-start; background-color: var(--token-1d2c987d-1ea2-4253-914b-1fdd10f71502, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 128px; position: relative; width: 100%; }\",\".framer-zRChq .framer-vsrpxc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 128px; height: min-content; justify-content: flex-start; max-width: 1184px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 128px; width: 1px; }\",\".framer-zRChq .framer-1yqt9lq-container { flex: none; height: 1180px; position: relative; width: 660px; z-index: 3; }\",\".framer-zRChq .framer-1tfwyp6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 944px; padding: 0px; position: sticky; top: 160px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-zRChq .framer-jnfq5r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zRChq .framer-1t58xt2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zRChq .framer-1xratnb, .framer-zRChq .framer-1z0p5hm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zRChq .framer-1n5xqny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zRChq .framer-1woxbf0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; overflow: hidden; padding: 128px 128px 960px 128px; position: relative; width: 1px; }\",\".framer-zRChq .framer-2z5six { -webkit-filter: blur(100px); background-color: #ffffff; border-bottom-left-radius: 453px; border-bottom-right-radius: 453px; border-top-left-radius: 453px; border-top-right-radius: 453px; bottom: -654px; filter: blur(100px); flex: none; height: 1424px; left: calc(50.00000000000002% - 1067px / 2); opacity: 0.2; overflow: hidden; position: absolute; width: 1067px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-zRChq .framer-wl87j8 { aspect-ratio: 0.7858546168958742 / 1; bottom: -130px; flex: none; height: var(--framer-aspect-ratio-supported, 1018px); left: 50%; max-width: 800px; overflow: visible; position: absolute; transform: translateX(-50%); width: 800px; z-index: 2; }\",\".framer-zRChq .framer-1w73o5j-container { bottom: -1308px; flex: none; left: 0px; opacity: 0.03; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-zRChq .framer-1i483aq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1184px; padding: 0px; position: relative; width: 100%; }\",\".framer-zRChq .framer-1exrwns { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-zRChq .framer-pcnc5e { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zRChq .framer-1e7frbd { aspect-ratio: 1 / 1; bottom: -71px; flex: none; height: var(--framer-aspect-ratio-supported, 106px); left: 85%; overflow: visible; position: absolute; transform: translateX(-50%); width: 106px; z-index: 1; }\",\".framer-zRChq .framer-101oehc { -webkit-filter: blur(2px); aspect-ratio: 1 / 1; bottom: 71px; filter: blur(2px); flex: none; height: var(--framer-aspect-ratio-supported, 341px); left: 6%; overflow: visible; position: absolute; transform: translateX(-50%); width: 341px; z-index: 1; }\",\".framer-zRChq .framer-um0apl { -webkit-filter: blur(3px); aspect-ratio: 1 / 1; bottom: -871px; filter: blur(3px); flex: none; height: var(--framer-aspect-ratio-supported, 427px); left: 85%; overflow: visible; position: absolute; transform: translateX(-50%); width: 427px; z-index: 3; }\",\".framer-zRChq .framer-1vqidvx { aspect-ratio: 1 / 1; bottom: -535px; flex: none; height: var(--framer-aspect-ratio-supported, 138px); left: 21%; overflow: visible; position: absolute; transform: translateX(-50%); width: 138px; z-index: 1; }\",\".framer-zRChq .framer-b6u38c-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zRChq.framer-72rtr7, .framer-zRChq .framer-1k3ckod, .framer-zRChq .framer-he14qf, .framer-zRChq .framer-1v9w1rg, .framer-zRChq .framer-1izmteu, .framer-zRChq .framer-1jofxa3, .framer-zRChq .framer-fk8w0o, .framer-zRChq .framer-km5uj7, .framer-zRChq .framer-12x1yb0, .framer-zRChq .framer-15vuyww, .framer-zRChq .framer-96lmfg, .framer-zRChq .framer-1epnvwj, .framer-zRChq .framer-1v3gucc, .framer-zRChq .framer-181fgne, .framer-zRChq .framer-7nyt7b, .framer-zRChq .framer-dovl1, .framer-zRChq .framer-vsrpxc, .framer-zRChq .framer-1tfwyp6, .framer-zRChq .framer-1t58xt2, .framer-zRChq .framer-1n5xqny, .framer-zRChq .framer-1woxbf0, .framer-zRChq .framer-1i483aq, .framer-zRChq .framer-pcnc5e { gap: 0px; } .framer-zRChq.framer-72rtr7 > *, .framer-zRChq .framer-1k3ckod > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zRChq.framer-72rtr7 > :first-child, .framer-zRChq .framer-1k3ckod > :first-child, .framer-zRChq .framer-he14qf > :first-child, .framer-zRChq .framer-1v9w1rg > :first-child, .framer-zRChq .framer-1jofxa3 > :first-child, .framer-zRChq .framer-fk8w0o > :first-child, .framer-zRChq .framer-km5uj7 > :first-child, .framer-zRChq .framer-12x1yb0 > :first-child, .framer-zRChq .framer-96lmfg > :first-child, .framer-zRChq .framer-1v3gucc > :first-child, .framer-zRChq .framer-181fgne > :first-child, .framer-zRChq .framer-7nyt7b > :first-child, .framer-zRChq .framer-1tfwyp6 > :first-child, .framer-zRChq .framer-1t58xt2 > :first-child, .framer-zRChq .framer-1woxbf0 > :first-child, .framer-zRChq .framer-pcnc5e > :first-child { margin-top: 0px; } .framer-zRChq.framer-72rtr7 > :last-child, .framer-zRChq .framer-1k3ckod > :last-child, .framer-zRChq .framer-he14qf > :last-child, .framer-zRChq .framer-1v9w1rg > :last-child, .framer-zRChq .framer-1jofxa3 > :last-child, .framer-zRChq .framer-fk8w0o > :last-child, .framer-zRChq .framer-km5uj7 > :last-child, .framer-zRChq .framer-12x1yb0 > :last-child, .framer-zRChq .framer-96lmfg > :last-child, .framer-zRChq .framer-1v3gucc > :last-child, .framer-zRChq .framer-181fgne > :last-child, .framer-zRChq .framer-7nyt7b > :last-child, .framer-zRChq .framer-1tfwyp6 > :last-child, .framer-zRChq .framer-1t58xt2 > :last-child, .framer-zRChq .framer-1woxbf0 > :last-child, .framer-zRChq .framer-pcnc5e > :last-child { margin-bottom: 0px; } .framer-zRChq .framer-he14qf > *, .framer-zRChq .framer-km5uj7 > *, .framer-zRChq .framer-1tfwyp6 > *, .framer-zRChq .framer-1t58xt2 > *, .framer-zRChq .framer-pcnc5e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zRChq .framer-1v9w1rg > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-zRChq .framer-1izmteu > *, .framer-zRChq .framer-15vuyww > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-zRChq .framer-1izmteu > :first-child, .framer-zRChq .framer-15vuyww > :first-child, .framer-zRChq .framer-1epnvwj > :first-child, .framer-zRChq .framer-dovl1 > :first-child, .framer-zRChq .framer-vsrpxc > :first-child, .framer-zRChq .framer-1n5xqny > :first-child, .framer-zRChq .framer-1i483aq > :first-child { margin-left: 0px; } .framer-zRChq .framer-1izmteu > :last-child, .framer-zRChq .framer-15vuyww > :last-child, .framer-zRChq .framer-1epnvwj > :last-child, .framer-zRChq .framer-dovl1 > :last-child, .framer-zRChq .framer-vsrpxc > :last-child, .framer-zRChq .framer-1n5xqny > :last-child, .framer-zRChq .framer-1i483aq > :last-child { margin-right: 0px; } .framer-zRChq .framer-1jofxa3 > *, .framer-zRChq .framer-fk8w0o > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-zRChq .framer-12x1yb0 > *, .framer-zRChq .framer-7nyt7b > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zRChq .framer-96lmfg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zRChq .framer-1epnvwj > *, .framer-zRChq .framer-1n5xqny > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zRChq .framer-1v3gucc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-zRChq .framer-181fgne > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zRChq .framer-dovl1 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-zRChq .framer-vsrpxc > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } .framer-zRChq .framer-1woxbf0 > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-zRChq .framer-1i483aq > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-zRChq { background: var(--token-87be4e07-f500-42be-a757-3057f0ba29ed, rgb(2, 12, 26)) /* {\"name\":\"DARK\"} */; } .framer-zRChq.framer-72rtr7 { width: 810px; } .framer-zRChq .framer-he14qf { height: min-content; padding: 128px 64px 64px 64px; } .framer-zRChq .framer-1v9w1rg { width: 45%; } .framer-zRChq .framer-1izmteu { align-content: flex-start; align-items: flex-start; align-self: unset; flex-direction: column; gap: 32px; order: 1; width: 100%; } .framer-zRChq .framer-1jofxa3, .framer-zRChq .framer-1x0ccc2-container, .framer-zRChq .framer-fk8w0o, .framer-zRChq .framer-1rivowh-container, .framer-zRChq .framer-12x1yb0 { width: 100%; } .framer-zRChq .framer-g4dj4x, .framer-zRChq .framer-bana0x { width: 297px; } .framer-zRChq .framer-km5uj7 { order: 0; width: 100%; } .framer-zRChq .framer-qedqch { height: 62px; width: 299px; } .framer-zRChq .framer-a3zmy { align-self: unset; width: 100%; } .framer-zRChq .framer-15vuyww { flex-direction: column; width: 100%; } .framer-zRChq .framer-qk327f-container, .framer-zRChq .framer-15blwls-container { width: 100%; z-index: 3; } .framer-zRChq .framer-96lmfg { bottom: -529px; height: 1242px; left: calc(74.9382716049383% - 601px / 2); overflow: visible; right: unset; width: 601px; } .framer-zRChq .framer-lqdux7 { height: var(--framer-aspect-ratio-supported, 126px); left: 27%; top: -9px; width: 126px; } .framer-zRChq .framer-1eeh1ai { height: var(--framer-aspect-ratio-supported, 739px); left: unset; right: 107px; top: 30%; transform: translateY(-50%); width: 386px; } .framer-zRChq .framer-pghpnn { height: var(--framer-aspect-ratio-supported, 90px); left: 386px; top: 170px; transform: unset; width: 90px; } .framer-zRChq .framer-9433r3-container { left: -121px; right: -121px; } .framer-zRChq .framer-1epnvwj { padding: 128px 128px 640px 128px; } .framer-zRChq .framer-1hg9cyk { bottom: 243px; } .framer-zRChq .framer-10lk2vb { bottom: -62px; top: 749px; } .framer-zRChq .framer-116yts4 { height: var(--framer-aspect-ratio-supported, 571px); } .framer-zRChq .framer-dovl1 { padding: 128px 64px 128px 64px; } .framer-zRChq .framer-vsrpxc { flex-direction: column; } .framer-zRChq .framer-1yqt9lq-container { order: 1; width: 100%; } .framer-zRChq .framer-1tfwyp6 { flex: none; flex-direction: row; gap: 64px; justify-content: flex-start; order: 0; position: relative; top: unset; width: 100%; } .framer-zRChq .framer-jnfq5r { order: 0; width: 291px; } .framer-zRChq .framer-1t58xt2 { flex: 1 0 0px; justify-content: flex-start; order: 1; width: 1px; } .framer-zRChq .framer-13ldlz3-container, .framer-zRChq .framer-1oi9x6l-container { z-index: 3; } .framer-zRChq .framer-1woxbf0 { padding: 128px 64px 781px 64px; } .framer-zRChq .framer-2z5six { bottom: -559px; height: 1083px; left: calc(50.00000000000002% - 753px / 2); width: 753px; } .framer-zRChq .framer-wl87j8 { bottom: -18px; height: var(--framer-aspect-ratio-supported, 741px); width: 582px; } .framer-zRChq .framer-1exrwns { white-space: pre-wrap; width: 257px; word-break: break-word; word-wrap: break-word; } .framer-zRChq .framer-1e7frbd { bottom: -30px; height: var(--framer-aspect-ratio-supported, 88px); left: 91%; width: 88px; } .framer-zRChq .framer-101oehc { bottom: 101px; height: var(--framer-aspect-ratio-supported, 248px); left: 1%; width: 248px; } .framer-zRChq .framer-um0apl { bottom: -680px; height: var(--framer-aspect-ratio-supported, 331px); left: 96%; width: 331px; } .framer-zRChq .framer-1vqidvx { bottom: -413px; height: var(--framer-aspect-ratio-supported, 114px); left: 17%; width: 114px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zRChq .framer-1izmteu, .framer-zRChq .framer-15vuyww, .framer-zRChq .framer-vsrpxc, .framer-zRChq .framer-1tfwyp6 { gap: 0px; } .framer-zRChq .framer-1izmteu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zRChq .framer-1izmteu > :first-child, .framer-zRChq .framer-15vuyww > :first-child, .framer-zRChq .framer-vsrpxc > :first-child { margin-top: 0px; } .framer-zRChq .framer-1izmteu > :last-child, .framer-zRChq .framer-15vuyww > :last-child, .framer-zRChq .framer-vsrpxc > :last-child { margin-bottom: 0px; } .framer-zRChq .framer-15vuyww > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zRChq .framer-vsrpxc > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-zRChq .framer-1tfwyp6 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-zRChq .framer-1tfwyp6 > :first-child { margin-left: 0px; } .framer-zRChq .framer-1tfwyp6 > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-zRChq { background: var(--token-87be4e07-f500-42be-a757-3057f0ba29ed, rgb(2, 12, 26)) /* {\"name\":\"DARK\"} */; } .framer-zRChq.framer-72rtr7 { width: 390px; } .framer-zRChq .framer-he14qf { align-content: center; align-items: center; height: min-content; padding: 128px 32px 524px 32px; } .framer-zRChq .framer-1v9w1rg, .framer-zRChq .framer-g4dj4x, .framer-zRChq .framer-1x0ccc2-container, .framer-zRChq .framer-bana0x, .framer-zRChq .framer-1rivowh-container { width: 100%; } .framer-zRChq .framer-1izmteu { align-content: flex-start; align-items: flex-start; align-self: unset; flex-direction: column; gap: 32px; order: 1; width: 100%; } .framer-zRChq .framer-1jofxa3, .framer-zRChq .framer-km5uj7 { order: 0; width: 100%; } .framer-zRChq .framer-fk8w0o { order: 1; width: 100%; } .framer-zRChq .framer-qedqch { height: 61px; width: 294px; } .framer-zRChq .framer-a3zmy { align-self: unset; width: 100%; } .framer-zRChq .framer-15vuyww { flex-direction: column; width: 100%; } .framer-zRChq .framer-qk327f-container, .framer-zRChq .framer-15blwls-container, .framer-zRChq .framer-13ldlz3-container { width: 100%; z-index: 3; } .framer-zRChq .framer-96lmfg { bottom: -503px; height: 978px; left: calc(57.1794871794872% - 473px / 2); right: unset; width: 473px; } .framer-zRChq .framer-lqdux7 { bottom: 851px; height: var(--framer-aspect-ratio-supported, 126px); left: 23px; top: unset; transform: unset; width: 126px; } .framer-zRChq .framer-1eeh1ai { bottom: 329px; height: var(--framer-aspect-ratio-supported, 649px); left: 46%; top: unset; transform: translateX(-50%); width: 339px; } .framer-zRChq .framer-pghpnn { height: var(--framer-aspect-ratio-supported, 77px); left: unset; right: 74px; top: 160px; transform: unset; width: 77px; } .framer-zRChq .framer-9433r3-container { left: -412px; right: -412px; } .framer-zRChq .framer-1epnvwj { flex-direction: column; padding: 128px 32px 321px 32px; } .framer-zRChq .framer-8b2eq7 { height: var(--framer-aspect-ratio-supported, 71px); left: -126px; top: 232px; width: 126px; } .framer-zRChq .framer-1hg9cyk { bottom: 178px; height: var(--framer-aspect-ratio-supported, 111px); right: -310px; width: 198px; } .framer-zRChq .framer-10lk2vb { bottom: -243px; height: 244px; left: -97px; right: -97px; top: unset; } .framer-zRChq .framer-116yts4 { bottom: -7px; height: var(--framer-aspect-ratio-supported, 492px); left: -307px; right: -152px; } .framer-zRChq .framer-1v3gucc, .framer-zRChq .framer-pcnc5e { flex: none; width: 100%; } .framer-zRChq .framer-dovl1 { padding: 64px 32px 64px 32px; } .framer-zRChq .framer-vsrpxc { align-content: center; align-items: center; flex-direction: column; gap: 64px; } .framer-zRChq .framer-1yqt9lq-container { height: 1195px; order: 1; width: 103%; } .framer-zRChq .framer-1tfwyp6 { flex: none; order: 0; position: relative; top: unset; width: 100%; } .framer-zRChq .framer-1n5xqny { background-color: var(--token-87be4e07-f500-42be-a757-3057f0ba29ed, #020c1a); flex-direction: column; } .framer-zRChq .framer-1woxbf0 { flex: none; padding: 128px 32px 554px 32px; width: 100%; } .framer-zRChq .framer-2z5six { bottom: -367px; height: 855px; left: -103px; right: -102px; width: unset; } .framer-zRChq .framer-wl87j8 { bottom: -18px; height: var(--framer-aspect-ratio-supported, 465px); width: 366px; } .framer-zRChq .framer-1i483aq { flex-direction: column; gap: 32px; } .framer-zRChq .framer-1exrwns { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-zRChq .framer-1oi9x6l-container { z-index: 3; } .framer-zRChq .framer-1e7frbd { bottom: -52px; height: var(--framer-aspect-ratio-supported, 52px); left: 90%; width: 52px; } .framer-zRChq .framer-101oehc { bottom: 5px; height: var(--framer-aspect-ratio-supported, 145px); left: 4%; width: 145px; z-index: 4; } .framer-zRChq .framer-um0apl { bottom: -462px; height: var(--framer-aspect-ratio-supported, 194px); left: 100%; width: 194px; } .framer-zRChq .framer-1vqidvx { bottom: -306px; height: var(--framer-aspect-ratio-supported, 67px); left: 26%; width: 67px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zRChq .framer-1izmteu, .framer-zRChq .framer-15vuyww, .framer-zRChq .framer-1epnvwj, .framer-zRChq .framer-vsrpxc, .framer-zRChq .framer-1n5xqny, .framer-zRChq .framer-1i483aq { gap: 0px; } .framer-zRChq .framer-1izmteu > *, .framer-zRChq .framer-1i483aq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zRChq .framer-1izmteu > :first-child, .framer-zRChq .framer-15vuyww > :first-child, .framer-zRChq .framer-1epnvwj > :first-child, .framer-zRChq .framer-vsrpxc > :first-child, .framer-zRChq .framer-1n5xqny > :first-child, .framer-zRChq .framer-1i483aq > :first-child { margin-top: 0px; } .framer-zRChq .framer-1izmteu > :last-child, .framer-zRChq .framer-15vuyww > :last-child, .framer-zRChq .framer-1epnvwj > :last-child, .framer-zRChq .framer-vsrpxc > :last-child, .framer-zRChq .framer-1n5xqny > :last-child, .framer-zRChq .framer-1i483aq > :last-child { margin-bottom: 0px; } .framer-zRChq .framer-15vuyww > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zRChq .framer-1epnvwj > *, .framer-zRChq .framer-1n5xqny > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zRChq .framer-vsrpxc > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5902\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rf0xHQIUQ\":{\"layout\":[\"fixed\",\"auto\"]},\"KezeJqVqk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-zRChq\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5902,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Nohemi Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/FXAwv2Ajdmiki57RVQMf7f0.woff2\"}]},...SmoothScrollFonts,...NavPhoneFonts,...NavDesktopFonts,...ButtonFonts,...GrainFonts,...GridFonts,...MagTextFonts,...EmbedFonts,...PatternFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rf0xHQIUQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KezeJqVqk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"5902\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MagText", "props", "mouseX", "useMotionValue", "p", "e", "c", "idx", "Character", "ref", "pe", "scaleRange", "scaleX", "useSpring", "w", "useTransform", "padding", "scaleY", "useMotionValueEvent", "mx", "left", "width", "characterCenter", "distance", "transform", "motion", "useMotionTemplate", "addPropertyControls", "ControlType", "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", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavPhoneFonts", "sw5C5lmaa_default", "NavDesktopFonts", "eqEJE8q3b_default", "ButtonFonts", "CkRTG7XfJ_default", "ImageWithFX", "withFX", "Image2", "GrainFonts", "Grain", "GridFonts", "VhEq4RqWR_default", "MagTextFonts", "MagText", "MotionDivWithFX", "motion", "EmbedFonts", "Embed", "PatternFonts", "Pattern", "FooterFonts", "HMcdkng6m_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "transformTemplate2", "transformTemplate3", "transition2", "animation1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "usePreloadLocalizedValues", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "getLocalizedValue", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
