{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/kUqpvN7ar0t18fHTiD0v/lqm81JTmw2oGFEJCNiy3/ejdy7mEfl.js", "ssg:https://framerusercontent.com/modules/c7ofaKgVe0e7JHsONNvJ/fosZnbLraIXesYjZkm6w/GTtxNe6jv.js", "ssg:https://ga.jspm.io/npm:react-type-animation@3.2.0/dist/esm/index.es.js", "ssg:https://framerusercontent.com/modules/pxR06Sm95WNJFq1zfoCG/1Og7hkxn5irtumkXyUIv/TypingAnimation.js", "ssg:https://framerusercontent.com/modules/ts4xAkyZqwXV0IOXTT1H/c5aqK3HJ9rBgXp98UlYG/rG2bsOETx.js", "ssg:https://framerusercontent.com/modules/31b2ixr4ZETP0dQBYEAN/vY84NZgZpljyfLm9vGB6/YaNrgy4wf.js", "ssg:https://framerusercontent.com/modules/YiV9WXkx0cDhqfJBgxQU/RKkWr82ZGA7srFQLmMHU/yvbiKMT7t.js", "ssg:https://framerusercontent.com/modules/hEWKNIj7ECConRNR0zIe/D49KVRIz1lqdcXPner4u/J8RigA4p8.js", "ssg:https://framerusercontent.com/modules/1FJcx7AOl0MLYJIGuB9e/BaBgAicCASpf2n9nNW0J/Q1uFEGL4K.js", "ssg:https://framerusercontent.com/modules/7SvOSswY73Trdb0E3sVh/MM8W90gYH2Ukr5AI8DIg/BWCZZbh3B.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";const SVGFonts=getFonts(SVG);const enabledGestures={yg4qFf68p:{hover:true}};const serializationHash=\"framer-6k81b\";const variantClassNames={yg4qFf68p:\"framer-v-196txmq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,icon,id,link,padding,width,...props})=>{var _ref,_ref1;return{...props,Lu_S_OFZX:(_ref=padding!==null&&padding!==void 0?padding:props.Lu_S_OFZX)!==null&&_ref!==void 0?_ref:\"0px\",Xd4newzG5:link!==null&&link!==void 0?link:props.Xd4newzG5,YHsHyaVze:(_ref1=icon!==null&&icon!==void 0?icon:props.YHsHyaVze)!==null&&_ref1!==void 0?_ref1:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"200\" height=\"200\" viewBox=\"0 0 200 200\" fill=\"none\">   <g clip-path=\"url(#clip0_126_66575)\">     <mask id=\"mask0_126_66575\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"200\" height=\"200\">       <path d=\"M200 0H0V200H200V0Z\" fill=\"white\"/>     </mask>     <g mask=\"url(#mask0_126_66575)\">       <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.25 24.2175C58.7661 22.7648 62.434 22.3172 67.6644 23.8763C72.9122 25.4406 79.1424 28.8788 85.9534 34.2382C87.642 35.567 89.3504 37.0012 91.0716 38.5361C85.7771 44.1754 80.5299 50.5395 75.469 57.5062C66.9054 58.4057 58.7705 59.768 51.2395 61.5333C50.7709 59.2752 50.383 57.0786 50.0765 54.9517C48.8406 46.3736 48.9781 39.259 50.2474 33.9321C51.5124 28.6228 53.7339 25.6702 56.25 24.2175ZM93.6833 24.4148C95.7781 26.0632 97.8865 27.8452 99.9999 29.7531C102.113 27.8452 104.222 26.0632 106.316 24.4148C113.865 18.475 121.498 14.0633 128.765 11.8972C136.049 9.7259 143.548 9.6672 150 13.3922C156.451 17.1172 160.15 23.6408 161.913 31.035C163.67 38.4113 163.665 47.2269 162.295 56.7343C161.915 59.3727 161.426 62.0897 160.831 64.874C163.54 65.7502 166.137 66.6852 168.613 67.6752C177.531 71.2426 185.167 75.6468 190.678 80.8571C196.2 86.0797 200 92.5447 200 99.9947C200 107.445 196.2 113.91 190.678 119.132C185.167 124.343 177.531 128.747 168.613 132.315C166.137 133.305 163.54 134.24 160.831 135.116C161.426 137.9 161.915 140.617 162.296 143.255C163.665 152.762 163.67 161.578 161.913 168.955C160.15 176.348 156.451 182.872 150 186.597C143.549 190.322 136.049 190.263 128.765 188.092C121.498 185.926 113.865 181.515 106.317 175.575C104.222 173.926 102.113 172.143 99.9999 170.236C97.8864 172.143 95.7779 173.926 93.683 175.575C86.1344 181.515 78.5018 185.926 71.2349 188.092C63.9506 190.263 56.4516 190.322 49.9997 186.597C43.5479 182.872 39.8493 176.348 38.0875 168.955C36.33 161.578 36.3343 152.762 37.704 143.255C38.0841 140.617 38.5732 137.9 39.1689 135.116C36.4599 134.238 33.8625 133.305 31.3875 132.315C22.469 128.747 14.8322 124.343 9.32291 119.132C3.80035 113.91 0 107.445 0 99.9947C0 92.5447 3.80035 86.0797 9.32291 80.8571C14.8322 75.6468 22.469 71.2426 31.3875 67.6752C33.8625 66.6852 36.46 65.7502 39.169 64.874C38.5734 62.0897 38.0844 59.3727 37.7043 56.7343C36.3345 47.2269 36.3302 38.4112 38.0877 31.0348C39.8495 23.6408 43.5481 17.1172 50 13.3922C56.4519 9.66718 63.9509 9.72589 71.2351 11.8972C78.502 14.0633 86.1346 18.4748 93.6833 24.4148ZM92.0934 56.3728C94.7169 53.144 97.3601 50.1106 99.9999 47.2892C102.64 50.1106 105.283 53.144 107.906 56.3728C105.296 56.288 102.659 56.2447 100 56.2447C97.3406 56.2447 94.7038 56.2878 92.0934 56.3728ZM108.928 38.5361C114.223 44.1756 119.47 50.5395 124.531 57.5062C133.094 58.4057 141.229 59.768 148.76 61.5333C149.229 59.2752 149.616 57.0786 149.924 54.9518C151.159 46.3736 151.021 39.259 149.753 33.9321C148.488 28.6228 146.266 25.6702 143.75 24.2175C141.234 22.7648 137.566 22.3172 132.335 23.8763C127.087 25.4407 120.857 28.8788 114.046 34.2382C112.358 35.567 110.649 37.0012 108.928 38.5361ZM100 68.7447C106.054 68.7447 111.955 68.9803 117.648 69.4267C120.882 74.1345 124.036 79.1267 127.064 84.3697C130.09 89.6127 132.836 94.8405 135.296 99.9945C132.836 105.149 130.09 110.377 127.062 115.62C124.036 120.863 120.882 125.855 117.648 130.562C111.954 131.01 106.054 131.245 100 131.245C93.9459 131.245 88.0454 131.01 82.3516 130.562C79.1181 125.855 75.9638 120.863 72.9368 115.62C69.9096 110.377 67.1632 105.149 64.703 99.9945C67.1632 94.8403 69.9094 89.6127 72.9365 84.3697C75.9635 79.1267 79.1178 74.1345 82.3512 69.4267C88.0451 68.9802 93.9457 68.7447 100 68.7447ZM137.889 78.1197C139.219 80.4226 140.499 82.7277 141.731 85.0306C143.215 81.1443 144.52 77.3387 145.644 73.6419C141.881 72.7666 137.933 71.9942 133.825 71.3367C135.204 73.5547 136.559 75.8167 137.889 78.1197ZM137.889 121.87C139.217 119.567 140.499 117.261 141.731 114.958C143.215 118.845 144.521 122.65 145.644 126.347C141.881 127.222 137.932 127.995 133.824 128.652C135.202 126.435 136.559 124.173 137.889 121.87ZM149.061 99.9945C152.564 107.861 155.452 115.587 157.689 122.992C159.879 122.269 161.975 121.506 163.97 120.708C172.018 117.489 178.11 113.813 182.089 110.05C186.054 106.3 187.5 102.9 187.5 99.9947C187.5 97.0893 186.054 93.6891 182.089 89.9389C178.11 86.1763 172.018 82.4999 163.97 79.2812C161.975 78.4831 159.879 77.7207 157.689 76.9975C155.452 84.4022 152.564 92.1283 149.061 99.9945ZM124.53 142.483C133.094 141.583 141.229 140.221 148.76 138.456C149.229 140.715 149.618 142.911 149.924 145.037C151.16 153.616 151.021 160.731 149.753 166.057C148.488 171.367 146.266 174.32 143.75 175.772C141.234 177.225 137.566 177.672 132.335 176.113C127.087 174.548 120.858 171.111 114.047 165.751C112.358 164.422 110.649 162.988 108.928 161.453C114.223 155.813 119.47 149.45 124.53 142.483ZM107.906 143.617C105.283 146.846 102.64 149.878 99.9999 152.7C97.3601 149.878 94.7171 146.846 92.0936 143.616C94.7039 143.701 97.3408 143.745 100 143.745C102.659 143.745 105.296 143.701 107.906 143.617ZM62.1114 121.87C63.441 124.173 64.7969 126.435 66.1755 128.652C62.0675 127.995 58.1189 127.222 54.3555 126.347C55.4791 122.65 56.7845 118.845 58.269 114.958C59.5006 117.261 60.7818 119.567 62.1114 121.87ZM75.4692 142.483C66.9055 141.583 58.7704 140.221 51.2393 138.456C50.7706 140.715 50.3828 142.911 50.0763 145.037C48.8404 153.616 48.9779 160.731 50.2471 166.057C51.5121 171.367 53.7336 174.32 56.2497 175.772C58.7659 177.225 62.4337 177.672 67.6641 176.113C72.912 174.548 79.1421 171.111 85.9531 165.751C87.6419 164.422 89.3503 162.988 91.0716 161.453C85.7771 155.813 80.53 149.45 75.4692 142.483ZM50.9384 99.9945C47.4355 107.861 44.5476 115.587 42.3111 122.992C40.1211 122.269 38.025 121.506 36.0299 120.708C27.983 117.489 21.8904 113.813 17.9118 110.05C13.9464 106.3 12.5 102.9 12.5 99.9947C12.5 97.0893 13.9464 93.6891 17.9118 89.9389C21.8904 86.1763 27.983 82.4999 36.0299 79.2812C38.025 78.4831 40.1213 77.7207 42.3113 76.9975C44.5479 84.4023 47.4355 92.1283 50.9384 99.9945ZM58.269 85.0306C56.7846 81.1443 55.4794 77.3387 54.3558 73.6419C58.119 72.7666 62.0674 71.9942 66.1753 71.3367C64.7966 73.5547 63.4408 75.8167 62.1111 78.1197C60.7816 80.4226 59.5006 82.7277 58.269 85.0306ZM115.625 99.9947C115.625 108.624 108.63 115.62 100 115.62C91.3705 115.62 84.375 108.624 84.375 99.9947C84.375 91.3653 91.3705 84.3697 100 84.3697C108.63 84.3697 115.625 91.3653 115.625 99.9947Z\" fill=\"#FAFAFA\"/>     </g>   </g>   <defs>     <clipPath id=\"clip0_126_66575\">       <rect width=\"200\" height=\"200\" fill=\"white\"/>     </clipPath>   </defs> </svg>'};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YHsHyaVze,Xd4newzG5,Lu_S_OFZX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"yg4qFf68p\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Xd4newzG5,nodeId:\"yg4qFf68p\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-196txmq\",className,classNames)} framer-12gtmnj`,\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"yg4qFf68p\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1kll0gw\":numberToPixelString(Lu_S_OFZX),\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(0, 0, 0))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999,...style},...addPropertyOverrides({\"yg4qFf68p-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16s6wvb-container\",layoutDependency:layoutDependency,layoutId:\"Vj6UUkHSR-container\",style:{opacity:.5},variants:{\"yg4qFf68p-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customPadding:0,customStrokeWidth:2,customSvgCode:YHsHyaVze,height:\"100%\",id:\"Vj6UUkHSR\",layoutId:\"Vj6UUkHSR\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6k81b.framer-12gtmnj, .framer-6k81b .framer-12gtmnj { display: block; }\",\".framer-6k81b.framer-196txmq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; overflow: hidden; padding: var(--1kll0gw); position: relative; text-decoration: none; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6k81b .framer-16s6wvb-container { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6k81b.framer-196txmq { gap: 0px; } .framer-6k81b.framer-196txmq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6k81b.framer-196txmq > :first-child { margin-left: 0px; } .framer-6k81b.framer-196txmq > :last-child { margin-right: 0px; } }\",\".framer-6k81b.framer-v-196txmq.hover.framer-196txmq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 36px); }\",'.framer-6k81b[data-border=\"true\"]::after, .framer-6k81b [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 36\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HYn6mpT2L\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"YHsHyaVze\":\"icon\",\"Xd4newzG5\":\"link\",\"Lu_S_OFZX\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerejdy7mEfl=withCSS(Component,css,\"framer-6k81b\");export default Framerejdy7mEfl;Framerejdy7mEfl.displayName=\"Connect / Framework Icon\";Framerejdy7mEfl.defaultProps={height:36,width:36};addPropertyControls(Framerejdy7mEfl,{YHsHyaVze:{defaultValue:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"200\" height=\"200\" viewBox=\"0 0 200 200\" fill=\"none\">   <g clip-path=\"url(#clip0_126_66575)\">     <mask id=\"mask0_126_66575\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"200\" height=\"200\">       <path d=\"M200 0H0V200H200V0Z\" fill=\"white\"/>     </mask>     <g mask=\"url(#mask0_126_66575)\">       <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.25 24.2175C58.7661 22.7648 62.434 22.3172 67.6644 23.8763C72.9122 25.4406 79.1424 28.8788 85.9534 34.2382C87.642 35.567 89.3504 37.0012 91.0716 38.5361C85.7771 44.1754 80.5299 50.5395 75.469 57.5062C66.9054 58.4057 58.7705 59.768 51.2395 61.5333C50.7709 59.2752 50.383 57.0786 50.0765 54.9517C48.8406 46.3736 48.9781 39.259 50.2474 33.9321C51.5124 28.6228 53.7339 25.6702 56.25 24.2175ZM93.6833 24.4148C95.7781 26.0632 97.8865 27.8452 99.9999 29.7531C102.113 27.8452 104.222 26.0632 106.316 24.4148C113.865 18.475 121.498 14.0633 128.765 11.8972C136.049 9.7259 143.548 9.6672 150 13.3922C156.451 17.1172 160.15 23.6408 161.913 31.035C163.67 38.4113 163.665 47.2269 162.295 56.7343C161.915 59.3727 161.426 62.0897 160.831 64.874C163.54 65.7502 166.137 66.6852 168.613 67.6752C177.531 71.2426 185.167 75.6468 190.678 80.8571C196.2 86.0797 200 92.5447 200 99.9947C200 107.445 196.2 113.91 190.678 119.132C185.167 124.343 177.531 128.747 168.613 132.315C166.137 133.305 163.54 134.24 160.831 135.116C161.426 137.9 161.915 140.617 162.296 143.255C163.665 152.762 163.67 161.578 161.913 168.955C160.15 176.348 156.451 182.872 150 186.597C143.549 190.322 136.049 190.263 128.765 188.092C121.498 185.926 113.865 181.515 106.317 175.575C104.222 173.926 102.113 172.143 99.9999 170.236C97.8864 172.143 95.7779 173.926 93.683 175.575C86.1344 181.515 78.5018 185.926 71.2349 188.092C63.9506 190.263 56.4516 190.322 49.9997 186.597C43.5479 182.872 39.8493 176.348 38.0875 168.955C36.33 161.578 36.3343 152.762 37.704 143.255C38.0841 140.617 38.5732 137.9 39.1689 135.116C36.4599 134.238 33.8625 133.305 31.3875 132.315C22.469 128.747 14.8322 124.343 9.32291 119.132C3.80035 113.91 0 107.445 0 99.9947C0 92.5447 3.80035 86.0797 9.32291 80.8571C14.8322 75.6468 22.469 71.2426 31.3875 67.6752C33.8625 66.6852 36.46 65.7502 39.169 64.874C38.5734 62.0897 38.0844 59.3727 37.7043 56.7343C36.3345 47.2269 36.3302 38.4112 38.0877 31.0348C39.8495 23.6408 43.5481 17.1172 50 13.3922C56.4519 9.66718 63.9509 9.72589 71.2351 11.8972C78.502 14.0633 86.1346 18.4748 93.6833 24.4148ZM92.0934 56.3728C94.7169 53.144 97.3601 50.1106 99.9999 47.2892C102.64 50.1106 105.283 53.144 107.906 56.3728C105.296 56.288 102.659 56.2447 100 56.2447C97.3406 56.2447 94.7038 56.2878 92.0934 56.3728ZM108.928 38.5361C114.223 44.1756 119.47 50.5395 124.531 57.5062C133.094 58.4057 141.229 59.768 148.76 61.5333C149.229 59.2752 149.616 57.0786 149.924 54.9518C151.159 46.3736 151.021 39.259 149.753 33.9321C148.488 28.6228 146.266 25.6702 143.75 24.2175C141.234 22.7648 137.566 22.3172 132.335 23.8763C127.087 25.4407 120.857 28.8788 114.046 34.2382C112.358 35.567 110.649 37.0012 108.928 38.5361ZM100 68.7447C106.054 68.7447 111.955 68.9803 117.648 69.4267C120.882 74.1345 124.036 79.1267 127.064 84.3697C130.09 89.6127 132.836 94.8405 135.296 99.9945C132.836 105.149 130.09 110.377 127.062 115.62C124.036 120.863 120.882 125.855 117.648 130.562C111.954 131.01 106.054 131.245 100 131.245C93.9459 131.245 88.0454 131.01 82.3516 130.562C79.1181 125.855 75.9638 120.863 72.9368 115.62C69.9096 110.377 67.1632 105.149 64.703 99.9945C67.1632 94.8403 69.9094 89.6127 72.9365 84.3697C75.9635 79.1267 79.1178 74.1345 82.3512 69.4267C88.0451 68.9802 93.9457 68.7447 100 68.7447ZM137.889 78.1197C139.219 80.4226 140.499 82.7277 141.731 85.0306C143.215 81.1443 144.52 77.3387 145.644 73.6419C141.881 72.7666 137.933 71.9942 133.825 71.3367C135.204 73.5547 136.559 75.8167 137.889 78.1197ZM137.889 121.87C139.217 119.567 140.499 117.261 141.731 114.958C143.215 118.845 144.521 122.65 145.644 126.347C141.881 127.222 137.932 127.995 133.824 128.652C135.202 126.435 136.559 124.173 137.889 121.87ZM149.061 99.9945C152.564 107.861 155.452 115.587 157.689 122.992C159.879 122.269 161.975 121.506 163.97 120.708C172.018 117.489 178.11 113.813 182.089 110.05C186.054 106.3 187.5 102.9 187.5 99.9947C187.5 97.0893 186.054 93.6891 182.089 89.9389C178.11 86.1763 172.018 82.4999 163.97 79.2812C161.975 78.4831 159.879 77.7207 157.689 76.9975C155.452 84.4022 152.564 92.1283 149.061 99.9945ZM124.53 142.483C133.094 141.583 141.229 140.221 148.76 138.456C149.229 140.715 149.618 142.911 149.924 145.037C151.16 153.616 151.021 160.731 149.753 166.057C148.488 171.367 146.266 174.32 143.75 175.772C141.234 177.225 137.566 177.672 132.335 176.113C127.087 174.548 120.858 171.111 114.047 165.751C112.358 164.422 110.649 162.988 108.928 161.453C114.223 155.813 119.47 149.45 124.53 142.483ZM107.906 143.617C105.283 146.846 102.64 149.878 99.9999 152.7C97.3601 149.878 94.7171 146.846 92.0936 143.616C94.7039 143.701 97.3408 143.745 100 143.745C102.659 143.745 105.296 143.701 107.906 143.617ZM62.1114 121.87C63.441 124.173 64.7969 126.435 66.1755 128.652C62.0675 127.995 58.1189 127.222 54.3555 126.347C55.4791 122.65 56.7845 118.845 58.269 114.958C59.5006 117.261 60.7818 119.567 62.1114 121.87ZM75.4692 142.483C66.9055 141.583 58.7704 140.221 51.2393 138.456C50.7706 140.715 50.3828 142.911 50.0763 145.037C48.8404 153.616 48.9779 160.731 50.2471 166.057C51.5121 171.367 53.7336 174.32 56.2497 175.772C58.7659 177.225 62.4337 177.672 67.6641 176.113C72.912 174.548 79.1421 171.111 85.9531 165.751C87.6419 164.422 89.3503 162.988 91.0716 161.453C85.7771 155.813 80.53 149.45 75.4692 142.483ZM50.9384 99.9945C47.4355 107.861 44.5476 115.587 42.3111 122.992C40.1211 122.269 38.025 121.506 36.0299 120.708C27.983 117.489 21.8904 113.813 17.9118 110.05C13.9464 106.3 12.5 102.9 12.5 99.9947C12.5 97.0893 13.9464 93.6891 17.9118 89.9389C21.8904 86.1763 27.983 82.4999 36.0299 79.2812C38.025 78.4831 40.1213 77.7207 42.3113 76.9975C44.5479 84.4023 47.4355 92.1283 50.9384 99.9945ZM58.269 85.0306C56.7846 81.1443 55.4794 77.3387 54.3558 73.6419C58.119 72.7666 62.0674 71.9942 66.1753 71.3367C64.7966 73.5547 63.4408 75.8167 62.1111 78.1197C60.7816 80.4226 59.5006 82.7277 58.269 85.0306ZM115.625 99.9947C115.625 108.624 108.63 115.62 100 115.62C91.3705 115.62 84.375 108.624 84.375 99.9947C84.375 91.3653 91.3705 84.3697 100 84.3697C108.63 84.3697 115.625 91.3653 115.625 99.9947Z\" fill=\"#FAFAFA\"/>     </g>   </g>   <defs>     <clipPath id=\"clip0_126_66575\">       <rect width=\"200\" height=\"200\" fill=\"white\"/>     </clipPath>   </defs> </svg>',displayTextArea:false,title:\"Icon\",type:ControlType.String},Xd4newzG5:{title:\"Link\",type:ControlType.Link},Lu_S_OFZX:{defaultValue:\"0px\",title:\"Padding\",type:ControlType.Padding}});addFonts(Framerejdy7mEfl,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerejdy7mEfl\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"36\",\"framerVariables\":\"{\\\"YHsHyaVze\\\":\\\"icon\\\",\\\"Xd4newzG5\\\":\\\"link\\\",\\\"Lu_S_OFZX\\\":\\\"padding\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HYn6mpT2L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"36\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ejdy7mEfl.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={natoHcqGH:{hover:true}};const serializationHash=\"framer-M8qab\";const variantClassNames={natoHcqGH:\"framer-v-w8g0g0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"natoHcqGH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w8g0g0\",className,classNames),\"data-framer-name\":\"Desktop: Connect / Sign In\",layoutDependency:layoutDependency,layoutId:\"natoHcqGH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"natoHcqGH-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15injli\",\"data-framer-name\":\"Contracts Color\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:228,intrinsicWidth:487,layoutDependency:layoutDependency,layoutId:\"Vf3RzibBW\",style:{filter:\"brightness(1.5) saturate(0)\",WebkitFilter:\"brightness(1.5) saturate(0)\"},svg:'<svg width=\"487\" height=\"228\" viewBox=\"0 0 487 228\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.9528 110.063L152.913 10.083C157.183 7.23296 162.533 6.52296 167.403 8.14296L482.113 113.043C485.414 114.143 487.095 117.228 486.878 120.222C486.732 122.234 485.728 124.205 483.783 125.503L337.003 223.363C331.123 227.283 323.773 228.263 317.063 226.033L4.5328 121.853C1.62117 120.884 0.0391531 118.285 0.000717372 115.644C-0.0298867 113.54 0.918139 111.409 2.9528 110.053V110.063Z\" fill=\"#2A0212\" stroke=\"#BF185D\" stroke-miterlimit=\"10\"/>\\n<path d=\"M2.9528 102.773L152.913 2.79292C157.183 -0.0570788 162.533 -0.767079 167.403 0.852921L482.113 105.753C487.633 107.593 488.623 114.983 483.783 118.213L337.003 216.073C331.123 219.993 323.773 220.973 317.063 218.743L4.5328 114.563C-0.697197 112.823 -1.6372 105.823 2.9528 102.763V102.773Z\" fill=\"#2A0212\" stroke=\"#BF185D\" stroke-miterlimit=\"10\"/>\\n<path d=\"M204.722 30.8533C205.652 30.2033 206.822 30.0333 207.902 30.3833L281.352 54.6433C282.692 55.0833 282.952 56.8633 281.792 57.6633C280.612 58.4933 279.112 58.7133 277.742 58.2533L205.232 34.3033C203.702 33.7933 203.402 31.7633 204.722 30.8433V30.8533Z\" fill=\"#831743\"/>\\n<path d=\"M194.932 37.2225C195.862 36.5725 197.032 36.4025 198.112 36.7525L229.972 46.8725C231.312 47.3125 231.572 49.0925 230.412 49.8925C229.232 50.7225 227.732 50.9425 226.362 50.4825L195.442 40.6725C193.912 40.1625 193.612 38.1325 194.932 37.2125V37.2225Z\" fill=\"#831743\"/>\\n<path d=\"M110.579 66.2684C110.579 66.2684 110.579 66.2683 110.579 66.2682C109.488 65.904 109.24 64.5112 110.07 63.7917L110.198 63.7026C110.998 63.1436 112.004 62.9963 112.936 63.298C112.936 63.2981 112.937 63.2983 112.937 63.2984L186.385 87.5575L186.385 87.5578C187.335 87.8696 187.515 89.1272 186.697 89.6911L186.694 89.6938C185.644 90.4325 184.309 90.628 183.091 90.2188L183.088 90.218L110.579 66.2684Z\" fill=\"#831743\" stroke=\"#831743\"/>\\n<path d=\"M100.797 72.6277C99.708 72.2621 99.4617 70.8709 100.291 70.152L100.419 70.0629C101.219 69.5037 102.225 69.3566 103.158 69.6588L103.161 69.6597L135.016 79.7782C135.017 79.7784 135.017 79.7786 135.018 79.7788C135.966 80.0917 136.145 81.348 135.328 81.9115L135.324 81.9142C134.274 82.6528 132.94 82.8484 131.721 82.4391L131.721 82.4391L131.713 82.4365L100.8 72.6288C100.799 72.6284 100.798 72.6281 100.797 72.6277Z\" fill=\"#831743\" stroke=\"#831743\"/>\\n<path d=\"M92.1898 79.0487C92.1896 79.0486 92.1894 79.0486 92.1892 79.0485C91.0981 78.6843 90.8507 77.2914 91.6807 76.572L91.8082 76.4829C92.608 75.9238 93.6141 75.7766 94.5463 76.0783C94.5467 76.0784 94.5471 76.0785 94.5476 76.0787L167.995 100.338L167.996 100.338C168.945 100.65 169.126 101.908 168.308 102.471L168.304 102.474C167.254 103.213 165.92 103.408 164.701 102.999L164.699 102.998L92.1898 79.0487Z\" fill=\"#831743\" stroke=\"#831743\"/>\\n<path d=\"M82.3966 85.407C81.3076 85.0414 81.0613 83.6502 81.8906 82.9313L82.0181 82.8422C82.8183 82.283 83.825 82.1359 84.7575 82.4381L84.7603 82.439L116.616 92.5575C116.616 92.5577 116.617 92.5579 116.618 92.5581C117.565 92.871 117.745 94.1273 116.928 94.6908L116.924 94.6935C115.874 95.4321 114.54 95.6277 113.321 95.2184L113.321 95.2184L113.313 95.2158L82.3998 85.4081C82.3987 85.4077 82.3977 85.4074 82.3966 85.407Z\" fill=\"#831743\" stroke=\"#831743\"/>\\n<path d=\"M73.5362 92.4871C72.4473 92.1215 72.2009 90.7303 73.0303 90.0114L73.1578 89.9223C73.958 89.363 74.9647 89.2159 75.8972 89.5181L75.9 89.519L107.755 99.6375C107.756 99.6378 107.757 99.638 107.757 99.6382C108.705 99.9511 108.885 101.207 108.067 101.771L108.064 101.774C107.014 102.512 105.679 102.708 104.46 102.298L104.46 102.298L104.453 102.296L73.5394 92.4882C73.5384 92.4878 73.5373 92.4874 73.5362 92.4871Z\" fill=\"#831743\" stroke=\"#831743\"/>\\n<path d=\"M256.076 115.347C254.987 114.982 254.741 113.591 255.57 112.872L255.698 112.783C256.498 112.223 257.505 112.076 258.437 112.378L258.44 112.379L290.295 122.498C290.296 122.498 290.297 122.498 290.297 122.499C291.245 122.811 291.425 124.068 290.607 124.631L290.604 124.634C289.554 125.373 288.219 125.568 287.001 125.159L287.001 125.159L286.993 125.156L256.079 115.349C256.078 115.348 256.077 115.348 256.076 115.347Z\" fill=\"#831743\" stroke=\"#831743\"/>\\n<path d=\"M247.217 122.418C246.128 122.052 245.882 120.661 246.711 119.942L246.838 119.853C247.639 119.294 248.645 119.147 249.578 119.449L249.581 119.45L281.436 129.568C281.437 129.568 281.437 129.569 281.438 129.569C282.386 129.882 282.565 131.138 281.748 131.702L281.744 131.704C280.694 132.443 279.36 132.638 278.141 132.229L278.141 132.229L278.133 132.227L247.22 122.419C247.219 122.418 247.218 122.418 247.217 122.418Z\" fill=\"#831743\" stroke=\"#831743\"/>\\n<path d=\"M171.972 36.8732C183.382 36.8732 192.632 31.8812 192.632 25.7232C192.632 19.5653 183.382 14.5732 171.972 14.5732C160.561 14.5732 151.312 19.5653 151.312 25.7232C151.312 31.8812 160.561 36.8732 171.972 36.8732Z\" fill=\"#831743\" stroke=\"#262626\" stroke-width=\"0.86\" stroke-miterlimit=\"10\"/>\\n<path d=\"M112.342 29.833L446.342 143.833\" stroke=\"#BF185D\" stroke-miterlimit=\"10\"/>\\n<path d=\"M16.6113 117.663L112.341 53.7227L232.881 95.7427L139.551 159.003\" stroke=\"#BF185D\" stroke-width=\"0.86\" stroke-miterlimit=\"10\"/>\\n<path d=\"M159.722 165.723L255.452 101.793L390.662 148.383L297.332 211.643\" stroke=\"#BF185D\" stroke-width=\"0.86\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',variants:{\"natoHcqGH-hover\":{filter:\"brightness(1) saturate(1.2)\",WebkitFilter:\"brightness(1) saturate(1.2)\"}},withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nrqzu5\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"wbYBFXsXD\",style:{filter:\"brightness(1.5) saturate(0)\",WebkitFilter:\"brightness(1.5) saturate(0)\"},variants:{\"natoHcqGH-hover\":{filter:\"brightness(1) saturate(1.2)\",WebkitFilter:\"brightness(1) saturate(1.2)\"}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qehvqt\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"cGu6rD4pK\",style:{backgroundColor:\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q29tbWl0TW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"CommitMono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(219, 40, 119))\"},children:\"CONTRACTS\"})}),className:\"framer-wlbfkx\",\"data-framer-name\":\"CONTRACTS\",fonts:[\"GF;CommitMono-regular\"],layoutDependency:layoutDependency,layoutId:\"u1HuBuM6i\",style:{\"--extracted-r6o4lv\":\"rgb(219, 40, 119)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xjn21q\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:229,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"WfYmgybsW\",svg:'<svg width=\"6\" height=\"229\" viewBox=\"0 0 6 229\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.6582 226.221C5.6582 227.602 4.53892 228.721 3.1582 228.721C1.77749 228.721 0.658203 227.602 0.658203 226.221C0.658203 224.84 1.77749 223.721 3.1582 223.721C4.53892 223.721 5.6582 224.84 5.6582 226.221Z\" fill=\"#DB2877\"/>\\n<path d=\"M2.6582 1.22119C2.6582 0.945053 2.88206 0.721191 3.1582 0.721191C3.43435 0.721191 3.6582 0.945049 3.6582 1.22119V226.221C3.6582 226.497 3.43435 226.721 3.1582 226.721C2.88206 226.721 2.6582 226.497 2.6582 226.221V1.22119Z\" fill=\"#DB2877\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M8qab.framer-b6a7rn, .framer-M8qab .framer-b6a7rn { display: block; }\",\".framer-M8qab.framer-w8g0g0 { cursor: pointer; height: 228px; overflow: visible; position: relative; width: 487px; }\",\".framer-M8qab .framer-15injli { bottom: 0px; flex: none; left: calc(50.00000000000002% - 487px / 2); position: absolute; top: 0px; width: 487px; }\",\".framer-M8qab .framer-nrqzu5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: -21px; top: -145px; width: min-content; }\",\".framer-M8qab .framer-qehvqt { 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: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-M8qab .framer-wlbfkx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-M8qab .framer-1xjn21q { flex: none; height: 229px; position: relative; width: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M8qab .framer-nrqzu5, .framer-M8qab .framer-qehvqt { gap: 0px; } .framer-M8qab .framer-nrqzu5 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-M8qab .framer-nrqzu5 > :first-child { margin-top: 0px; } .framer-M8qab .framer-nrqzu5 > :last-child { margin-bottom: 0px; } .framer-M8qab .framer-qehvqt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-M8qab .framer-qehvqt > :first-child { margin-left: 0px; } .framer-M8qab .framer-qehvqt > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 228\n * @framerIntrinsicWidth 487\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zRT6YPJxd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGTtxNe6jv=withCSS(Component,css,\"framer-M8qab\");export default FramerGTtxNe6jv;FramerGTtxNe6jv.displayName=\"Home / Contracts Hero Asset\";FramerGTtxNe6jv.defaultProps={height:228,width:487};addFonts(FramerGTtxNe6jv,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGTtxNe6jv\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"228\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"487\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zRT6YPJxd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GTtxNe6jv.map", "import e,{memo as t,forwardRef as r,useRef as n,useEffect as o,useState as a}from\"react\";function i(e,t,r,n){return new(r||(r=Promise))((function(o,a){function i(e){try{c(n.next(e))}catch(e){a(e)}}function u(e){try{c(n.throw(e))}catch(e){a(e)}}function c(e){var t;e.done?o(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(i,u)}c((n=n.apply(e,t||[])).next())}))}function u(e,t){var r,n,o,a,b={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:u(0),throw:u(1),return:u(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function u(a){return function(m){return function(a){if(r)throw new TypeError(\"Generator is already executing.\");for(;b;)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;switch(n=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return b.label++,{value:a[1],done:!1};case 5:b.label++,n=a[1],a=[0];continue;case 7:a=b.ops.pop(),b.trys.pop();continue;default:if(!(o=b.trys,(o=o.length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){b=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){b.label=a[1];break}if(6===a[0]&&b.label<o[1]){b.label=o[1],o=a;break}if(o&&b.label<o[2]){b.label=o[2],b.ops.push(a);break}o[2]&&b.ops.pop(),b.trys.pop();continue}a=t.call(e,b)}catch(e){a=[6,e],n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,m])}}}function c(e){var t=\"function\"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"==typeof e.length)return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function l(e,t){var r=\"function\"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),b=[];try{for(;(void 0===t||t-- >0)&&!(n=a.next()).done;)b.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return b}function s(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)!n&&o in t||(n||(n=Array.prototype.slice.call(t,0,o)),n[o]=t[o]);return e.concat(n||Array.prototype.slice.call(t))}function f(e,t,r,n,o){for(var a=[],b=5;b<arguments.length;b++)a[b-5]=arguments[b];return i(this,void 0,void 0,(function(){var b,m,w,g,x,S;return u(this,(function(E){switch(E.label){case 0:E.trys.push([0,12,13,14]),b=c(a),m=b.next(),E.label=1;case 1:if(m.done)return[3,11];switch(w=m.value,typeof w){case\"string\":return[3,2];case\"number\":return[3,4];case\"function\":return[3,6]}return[3,8];case 2:return[4,d(e,t,w,r,n,o)];case 3:return E.sent(),[3,10];case 4:return[4,p(w)];case 5:return E.sent(),[3,10];case 6:return[4,w.apply(void 0,s([e,t,r,n,o],l(a),!1))];case 7:return E.sent(),[3,10];case 8:return[4,w];case 9:E.sent(),E.label=10;case 10:return m=b.next(),[3,1];case 11:return[3,14];case 12:return g=E.sent(),x={error:g},[3,14];case 13:try{m&&!m.done&&(S=b.return)&&S.call(b)}finally{if(x)throw x.error}return[7];case 14:return[2]}}))}))}function d(e,t,r,n,o,a){return i(this,void 0,void 0,(function(){var b,m;return u(this,(function(w){switch(w.label){case 0:return b=e.textContent||\"\",m=function(e,t){var r=l(t).slice(0);return s(s([],l(e),!1),[NaN],!1).findIndex((function(e,t){return r[t]!==e}))}(b,r),[4,h(e,s(s([],l(v(b,t,m)),!1),l(y(r,t,m)),!1),n,o,a)];case 1:return w.sent(),[2]}}))}))}function p(e){return i(this,void 0,void 0,(function(){return u(this,(function(t){switch(t.label){case 0:return[4,new Promise((function(t){return setTimeout(t,e)}))];case 1:return t.sent(),[2]}}))}))}function h(e,t,r,n,o){return i(this,void 0,void 0,(function(){var a,b,m,w,g,x,S,E,_,k,O,T,A;return u(this,(function(C){switch(C.label){case 0:if(a=t,o){for(b=0,m=1;m<t.length;m++)if(w=l([t[m-1],t[m]],2),g=w[0],(x=w[1]).length>g.length||\"\"===x){b=m;break}a=t.slice(b,t.length)}C.label=1;case 1:C.trys.push([1,6,7,8]),S=c(function(e){var t,r,n,o,a,b,m;return u(this,(function(w){switch(w.label){case 0:t=function(e){return u(this,(function(t){switch(t.label){case 0:return[4,{op:function(t){return requestAnimationFrame((function(){return t.textContent=e}))},opCode:function(t){var r=t.textContent||\"\";return\"\"===e||r.length>e.length?\"DELETE\":\"WRITING\"}}];case 1:return t.sent(),[2]}}))},w.label=1;case 1:w.trys.push([1,6,7,8]),r=c(e),n=r.next(),w.label=2;case 2:return n.done?[3,5]:(o=n.value,[5,t(o)]);case 3:w.sent(),w.label=4;case 4:return n=r.next(),[3,2];case 5:return[3,8];case 6:return a=w.sent(),b={error:a},[3,8];case 7:try{n&&!n.done&&(m=r.return)&&m.call(r)}finally{if(b)throw b.error}return[7];case 8:return[2]}}))}(a)),E=S.next(),C.label=2;case 2:return E.done?[3,5]:(_=E.value,k=\"WRITING\"===_.opCode(e)?r+r*(Math.random()-.5):n+n*(Math.random()-.5),_.op(e),[4,p(k)]);case 3:C.sent(),C.label=4;case 4:return E=S.next(),[3,2];case 5:return[3,8];case 6:return O=C.sent(),T={error:O},[3,8];case 7:try{E&&!E.done&&(A=S.return)&&A.call(S)}finally{if(T)throw T.error}return[7];case 8:return[2]}}))}))}function y(e,t,r){var n,o;return void 0===r&&(r=0),u(this,(function(a){switch(a.label){case 0:n=t(e),o=n.length,a.label=1;case 1:return r<o?[4,n.slice(0,++r).join(\"\")]:[3,3];case 2:return a.sent(),[3,1];case 3:return[2]}}))}function v(e,t,r){var n,o;return void 0===r&&(r=0),u(this,(function(a){switch(a.label){case 0:n=t(e),o=n.length,a.label=1;case 1:return o>r?[4,n.slice(0,--o).join(\"\")]:[3,3];case 2:return a.sent(),[3,1];case 3:return[2]}}))}var b=\"index-module_type__E-SaG\";!function(e,t){void 0===t&&(t={});var r=t.insertAt;if(e&&\"undefined\"!=typeof document){var n=document.head||document.getElementsByTagName(\"head\")[0],o=document.createElement(\"style\");o.type=\"text/css\",\"top\"===r&&n.firstChild?n.insertBefore(o,n.firstChild):n.appendChild(o),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(document.createTextNode(e))}}(\".index-module_type__E-SaG::after {\\n  content: '|';\\n  animation: index-module_cursor__PQg0P 1.1s infinite step-start;\\n}\\n\\n@keyframes index-module_cursor__PQg0P {\\n  50% {\\n    opacity: 0;\\n  }\\n}\\n\");var m=t(r((function(t,r){var m=t.sequence,w=t.repeat,g=t.className,x=t.speed,S=void 0===x?40:x,E=t.deletionSpeed,_=t.omitDeletionAnimation,k=void 0!==_&&_,O=t.preRenderFirstString,T=void 0!==O&&O,A=t.wrapper,C=void 0===A?\"span\":A,N=t.splitter,P=void 0===N?function(e){return s([],l(e),!1)}:N,j=t.cursor,I=void 0===j||j,G=t.style,D=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"==typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}(t,[\"sequence\",\"repeat\",\"className\",\"speed\",\"deletionSpeed\",\"omitDeletionAnimation\",\"preRenderFirstString\",\"wrapper\",\"splitter\",\"cursor\",\"style\"]),M=D[\"aria-label\"],R=D[\"aria-hidden\"],q=D.role;E||(E=S);var F=new Array(2).fill(40);[S,E].forEach((function(e,t){switch(typeof e){case\"number\":F[t]=Math.abs(e-100);break;case\"object\":var r=e.type,n=e.value;if(\"number\"!=typeof n)break;\"keyStrokeDelayInMs\"===r&&(F[t]=n)}}));var B,Q,W,L,z,H,J=F[0],K=F[1],U=function(e,t){void 0===t&&(t=null);var r=n(t);return o((function(){e&&(\"function\"==typeof e?e(r.current):e.current=r.current)}),[e]),r}(r),V=b;B=g?\"\".concat(I?V+\" \":\"\").concat(g):I?V:\"\",Q=n((function(){var e,t=m;w===1/0?e=f:\"number\"==typeof w&&(t=Array(1+w).fill(m).flat());var r=e?s(s([],l(t),!1),[e],!1):s([],l(t),!1);return f.apply(void 0,s([U.current,P,J,K,k],l(r),!1)),function(){U.current}})),W=n(),L=n(!1),z=n(!1),H=l(a(0),2)[1],L.current&&(z.current=!0),o((function(){return L.current||(W.current=Q.current(),L.current=!0),H((function(e){return e+1})),function(){z.current&&W.current&&W.current()}}),[]);var X=C,Y=T?m.find((function(e){return\"string\"==typeof e}))||\"\":null;return e.createElement(X,{\"aria-hidden\":R,\"aria-label\":M,role:q,style:G,className:B,children:M?e.createElement(\"span\",{\"aria-hidden\":\"true\",ref:U,children:Y}):Y,ref:M?void 0:U})})),(function(e,t){return!0}));export{m as TypeAnimation};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{TypeAnimation}from\"react-type-animation\";import{addPropertyControls,ControlType}from\"framer\";/*\n * Typing Animation\n * By Kanishak M\n * Library Used : React type Animation\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function TypingAnimation({speed,options,font,RepeatType,RepeatValue}){const sequenceArr=[];for(let i=0;i<options.length;i++){sequenceArr.push(options[i].text);sequenceArr.push(options[i].duration);}return /*#__PURE__*/_jsx(TypeAnimation,{sequence:sequenceArr,wrapper:\"span\",speed:speed,style:{...font.font,color:font.color,display:\"flex\",alignItems:font.alignItems,justifyContent:font.justifyContent,margin:0,padding:0,width:\"100%\",height:\"100%\",position:\"relative\"},repeat:RepeatType?Infinity:RepeatValue,cursor:false});}addPropertyControls(TypingAnimation,{options:{type:ControlType.Array,control:{type:ControlType.Object,controls:{text:{type:ControlType.String,defaultValue:\"Typing String\"},duration:{type:ControlType.Number,displayStepper:true,defaultValue:1e3}}},defaultValue:[{text:\"I am a developer.\",duration:1e3},{text:\"I am a designer.\",duration:1e3}]},RepeatType:{type:ControlType.Boolean,title:\"RepeatType\",enabledTitle:\"Infinite\",disabledTitle:\"Specific\",defaultValue:true},RepeatValue:{type:ControlType.Number,displayStepper:true,hidden(props){return props.RepeatType===true;},defaultValue:2},speed:{type:ControlType.Number,displayStepper:true,defaultValue:50},font:{type:ControlType.Object,controls:{font:{type:\"font\",controls:\"extended\"},color:{type:ControlType.Color,defaultValue:\"#ffffff\"},alignItems:{type:ControlType.Enum,displaySegmentedControl:true,title:\"alignItems\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\"},justifyContent:{type:ControlType.Enum,displaySegmentedControl:true,title:\"justifyContent\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TypingAnimation\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TypingAnimation.map", "// Generated by Framer (679ce5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG as SVG1,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/OobIpExjjda7YDjHO9YN/SVG.js\";import TypingAnimation from\"https://framerusercontent.com/modules/pxR06Sm95WNJFq1zfoCG/1Og7hkxn5irtumkXyUIv/TypingAnimation.js\";const SVGFonts=getFonts(SVG);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const TypingAnimationFonts=getFonts(TypingAnimation);const cycleOrder=[\"gAZWgLOh0\",\"a_sAt0xDC\",\"WVDdPnYIl\",\"TXMYYocIo\",\"SVEIuzm2w\",\"jecvkB2mz\",\"a4OKOk8Vw\",\"yaWbXSlhr\",\"A0TcHlA0_\"];const serializationHash=\"framer-roTIl\";const variantClassNames={a_sAt0xDC:\"framer-v-2n9q2y\",A0TcHlA0_:\"framer-v-1d3q2i4\",a4OKOk8Vw:\"framer-v-1n6qyq0\",gAZWgLOh0:\"framer-v-qhjv10\",jecvkB2mz:\"framer-v-1mfjbzb\",SVEIuzm2w:\"framer-v-1iszakw\",TXMYYocIo:\"framer-v-1ieztnr\",WVDdPnYIl:\"framer-v-bbgfqv\",yaWbXSlhr:\"framer-v-8dqecn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.1,delay:0,duration:.4,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:-120,y:24};const transition3={bounce:0,delay:0,duration:.4,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"gAZWgLOh0\",\"2\":\"a_sAt0xDC\",\"3\":\"WVDdPnYIl\",\"4\":\"TXMYYocIo\",\"5\":\"SVEIuzm2w\",\"6\":\"jecvkB2mz\",\"7\":\"a4OKOk8Vw\",\"8\":\"yaWbXSlhr\",\"Variant 9\":\"A0TcHlA0_\"};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:\"gAZWgLOh0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gAZWgLOh0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearmnohkl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"a_sAt0xDC\"),800);});const onAppear6by6g1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"WVDdPnYIl\"),200);});const onAppearjdyzxx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TXMYYocIo\"),400);});const onAppear17it2lu=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SVEIuzm2w\"),750);});const onAppeare8uwlk=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jecvkB2mz\"),2500);});const onAppear162312o=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"a4OKOk8Vw\"),1e3);});const onAppear15bbyse=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"yaWbXSlhr\"),1e3);});const onAppear13ar89m=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"A0TcHlA0_\"),5e3);});const onAppear12ivqu6=activeVariantCallback(async(...args)=>{setVariant(\"gAZWgLOh0\");});useOnVariantChange(baseVariant,{a_sAt0xDC:onAppear6by6g1,A0TcHlA0_:onAppear12ivqu6,a4OKOk8Vw:onAppear15bbyse,default:onAppearmnohkl,jecvkB2mz:onAppear162312o,SVEIuzm2w:onAppeare8uwlk,TXMYYocIo:onAppear17it2lu,WVDdPnYIl:onAppearjdyzxx,yaWbXSlhr:onAppear13ar89m});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"TXMYYocIo\",\"SVEIuzm2w\",\"jecvkB2mz\",\"a4OKOk8Vw\",\"yaWbXSlhr\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"TXMYYocIo\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"SVEIuzm2w\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"jecvkB2mz\")return false;return true;};const isDisplayed4=()=>{if([\"jecvkB2mz\",\"a4OKOk8Vw\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"jecvkB2mz\",\"a4OKOk8Vw\",\"yaWbXSlhr\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"TXMYYocIo\",\"SVEIuzm2w\",\"jecvkB2mz\",\"a4OKOk8Vw\",\"yaWbXSlhr\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qhjv10\",className,classNames),\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gAZWgLOh0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({a_sAt0xDC:{\"data-framer-name\":\"2\"},A0TcHlA0_:{\"data-framer-name\":\"Variant 9\"},a4OKOk8Vw:{\"data-framer-name\":\"7\"},jecvkB2mz:{\"data-framer-name\":\"6\"},SVEIuzm2w:{\"data-framer-name\":\"5\"},TXMYYocIo:{\"data-framer-name\":\"4\"},WVDdPnYIl:{\"data-framer-name\":\"3\"},yaWbXSlhr:{\"data-framer-name\":\"8\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ng62hs\",\"data-framer-name\":\"Homepage Section\",layoutDependency:layoutDependency,layoutId:\"BArVIdySQ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pfqhor\",\"data-framer-name\":\"Chat\",layoutDependency:layoutDependency,layoutId:\"veGnqjqNv\",children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1p47t1b\",\"data-framer-appear-id\":\"1p47t1b\",\"data-framer-name\":\"Chat Container\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"KMiJqaH9c\",optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pkcelw\",\"data-framer-name\":\"User Message 1\",layoutDependency:layoutDependency,layoutId:\"NC2Hj5NNz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8004im\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"z5MrOmjve\",style:{backgroundColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10)))\"},children:\"Swap 0.3 ETH to USDC\"})}),className:\"framer-1hcsspx\",\"data-framer-name\":\"User Question\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"z1l2herw_\",style:{\"--extracted-r6o4lv\":\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sog2q\",\"data-border\":true,\"data-framer-name\":\"User\",layoutDependency:layoutDependency,layoutId:\"nKRZsjrfJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-c577e02e-f43d-46dc-969d-cdb91fd83990, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w71bq5-container\",layoutDependency:layoutDependency,layoutId:\"UpOHs5Amk-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M20 21C20 19.6044 20 18.9067 19.8278 18.3389C19.44 17.0605 18.4395 16.06 17.1611 15.6722C16.5933 15.5 15.8956 15.5 14.5 15.5H9.5C8.10444 15.5 7.40665 15.5 6.83886 15.6722C5.56045 16.06 4.56004 17.0605 4.17224 18.3389C4 18.9067 4 19.6044 4 21M16.5 7.5C16.5 9.98528 14.4853 12 12 12C9.51472 12 7.5 9.98528 7.5 7.5C7.5 5.01472 9.51472 3 12 3C14.4853 3 16.5 5.01472 16.5 7.5Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"UpOHs5Amk\",layoutId:\"UpOHs5Amk\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-nryxav\",\"data-framer-appear-id\":\"nryxav\",\"data-framer-name\":\"Swapping\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"vY7J12mPk\",optimized:true,children:[/*#__PURE__*/_jsx(SVG1,{className:\"framer-1xx2jcz\",\"data-framer-name\":\"Avatar\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:52,layoutDependency:layoutDependency,layoutId:\"psQ2WcwI8\",svg:'<svg width=\"52\" height=\"52\" viewBox=\"0 0 52 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26 51.5C11.9167 51.5 0.5 40.0833 0.5 26C0.5 11.9167 11.9167 0.5 26 0.5C40.0833 0.5 51.5 11.9167 51.5 26C51.5 40.0833 40.0833 51.5 26 51.5Z\" fill=\"#0A0A0A\"/>\\n<path d=\"M26 51.5C11.9167 51.5 0.5 40.0833 0.5 26C0.5 11.9167 11.9167 0.5 26 0.5C40.0833 0.5 51.5 11.9167 51.5 26C51.5 40.0833 40.0833 51.5 26 51.5Z\" stroke=\"#262626\"/>\\n<path d=\"M26 45C15.5066 45 7 36.4934 7 26C7 15.5066 15.5066 7 26 7C36.4934 7 45 15.5066 45 26C45 36.4934 36.4934 45 26 45Z\" fill=\"#171717\"/>\\n<path d=\"M26 45C15.5066 45 7 36.4934 7 26C7 15.5066 15.5066 7 26 7C36.4934 7 45 15.5066 45 26C45 36.4934 36.4934 45 26 45Z\" stroke=\"#262626\"/>\\n<path d=\"M26.0001 24.3382C26.9178 24.3382 27.6618 25.0822 27.6618 26C27.6618 26.9177 26.9178 27.6617 26.0001 27.6617C25.0823 27.6617 24.3383 26.9177 24.3383 26C24.3383 25.0822 25.0823 24.3382 26.0001 24.3382Z\" fill=\"#A3A3A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.9072 22.8593C20.3306 22.3265 20.7954 21.8045 21.3 21.2999C25.6263 16.9736 31.2377 15.5707 33.8335 18.1665C35.0209 19.3539 35.3716 21.1722 34.9886 23.2099C35.9016 23.8023 36.5055 24.8306 36.5055 26C36.5055 27.8355 35.0176 29.3234 33.1821 29.3234C32.8005 29.3234 32.434 29.2591 32.0928 29.1408C31.6695 29.6735 31.2047 30.1955 30.7001 30.7C26.3738 35.0263 20.7624 36.4292 18.1666 33.8334C16.9793 32.6461 16.6286 30.8279 17.0115 28.7903C16.0983 28.198 15.4941 27.1695 15.4941 26C15.4941 24.1645 16.9821 22.6765 18.8176 22.6765C19.1993 22.6765 19.5659 22.7409 19.9072 22.8593ZM22.475 22.4749C24.4618 20.4881 26.6892 19.2319 28.6187 18.7495C30.5856 18.2578 31.9355 18.6185 32.6585 19.3415C33.2925 19.9756 33.648 21.0916 33.3942 22.6832C33.3241 22.6788 33.2533 22.6765 33.1821 22.6765C31.3466 22.6765 29.8586 24.1645 29.8586 26C29.8586 26.8511 30.1786 27.6276 30.7048 28.2156C30.3457 28.6596 29.9523 29.0979 29.5251 29.525C27.5383 31.5118 25.3109 32.768 23.3814 33.2504C21.4145 33.7421 20.0646 33.3814 19.3416 32.6584C18.7076 32.0244 18.3522 30.9083 18.6059 29.3168C18.6759 29.3212 18.7465 29.3234 18.8176 29.3234C20.6531 29.3234 22.1411 27.8355 22.1411 26C22.1411 25.1489 21.8212 24.3726 21.2951 23.7847C21.6543 23.3405 22.0478 22.9022 22.475 22.4749ZM18.8178 27.6617C18.286 27.6616 17.8125 27.4117 17.5084 27.0229C17.5085 27.0227 17.5084 27.023 17.5084 27.0229C17.2876 26.7408 17.1559 26.386 17.1559 26C17.1559 25.0822 17.8998 24.3382 18.8176 24.3382C19.7353 24.3382 20.4793 25.0822 20.4793 26C20.4793 26.909 19.7495 27.6475 18.8438 27.6615C18.8353 27.6616 18.8264 27.6617 18.8178 27.6617ZM33.1466 27.6613C33.1584 27.6616 33.1702 27.6617 33.1821 27.6617C34.0998 27.6617 34.8438 26.9177 34.8438 26C34.8438 25.6142 34.7123 25.2591 34.4917 24.9771C34.2066 24.6125 33.7725 24.37 33.2811 24.3411C33.2483 24.3392 33.2153 24.3382 33.1821 24.3382C33.1034 24.3382 33.026 24.3437 32.9502 24.3543C32.1422 24.4671 31.5203 25.1609 31.5203 26C31.5203 26.29 31.5946 26.5626 31.7252 26.7999C32.0025 27.3039 32.5338 27.6485 33.1466 27.6613Z\" fill=\"#A3A3A3\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1awza4y\",\"data-framer-appear-id\":\"1awza4y\",\"data-framer-name\":\"Text Container\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"hs3LXP4kB\",optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18dhnvg\",\"data-border\":true,\"data-framer-name\":\"Question List Label\",layoutDependency:layoutDependency,layoutId:\"rTjLzSzQ4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sekxt-container\",layoutDependency:layoutDependency,layoutId:\"QwoAzpEq7-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"rgb(100, 22, 251)\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"QwoAzpEq7\",layoutId:\"QwoAzpEq7\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Transaction successful!\"})}),className:\"framer-a86dm0\",\"data-framer-name\":\"Transactions Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"zt54LZNxX\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1xspbwn\",\"data-border\":true,\"data-framer-appear-id\":\"1xspbwn\",\"data-framer-name\":\"Question List Label\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"brnVYSrQt\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-3b98b97f-17e0-41b1-8bc6-f8dae04475db, rgb(10, 10, 10))\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Your user now has received 928.236 USDC.\"})}),className:\"framer-104lxer\",\"data-framer-name\":\"Transactions Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MkW6snUyQ\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1e9wuld\",\"data-border\":true,\"data-framer-appear-id\":\"1e9wuld\",\"data-framer-name\":\"Transaction Row\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"Uylta9mVF\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lrwja9\",\"data-border\":true,\"data-framer-name\":\"Transaction Icon Container\",layoutDependency:layoutDependency,layoutId:\"kIG5l3bVt\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(23, 23, 23)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nnwm7q-container\",layoutDependency:layoutDependency,layoutId:\"WgZAmwugA-container\",children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M21.2 22C21.48 22 21.62 22 21.727 21.9455C21.8211 21.8976 21.8976 21.8211 21.9455 21.727C22 21.62 22 21.48 22 21.2V10.8C22 10.52 22 10.38 21.9455 10.273C21.8976 10.1789 21.8211 10.1024 21.727 10.0545C21.62 10 21.48 10 21.2 10L18.8 10C18.52 10 18.38 10 18.273 10.0545C18.1789 10.1024 18.1024 10.1789 18.0545 10.273C18 10.38 18 10.52 18 10.8V13.2C18 13.48 18 13.62 17.9455 13.727C17.8976 13.8211 17.8211 13.8976 17.727 13.9455C17.62 14 17.48 14 17.2 14H14.8C14.52 14 14.38 14 14.273 14.0545C14.1789 14.1024 14.1024 14.1789 14.0545 14.273C14 14.38 14 14.52 14 14.8V17.2C14 17.48 14 17.62 13.9455 17.727C13.8976 17.8211 13.8211 17.8976 13.727 17.9455C13.62 18 13.48 18 13.2 18H10.8C10.52 18 10.38 18 10.273 18.0545C10.1789 18.1024 10.1024 18.1789 10.0545 18.273C10 18.38 10 18.52 10 18.8V21.2C10 21.48 10 21.62 10.0545 21.727C10.1024 21.8211 10.1789 21.8976 10.273 21.9455C10.38 22 10.52 22 10.8 22L21.2 22Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M10 6.8C10 6.51997 10 6.37996 10.0545 6.273C10.1024 6.17892 10.1789 6.10243 10.273 6.0545C10.38 6 10.52 6 10.8 6H13.2C13.48 6 13.62 6 13.727 6.0545C13.8211 6.10243 13.8976 6.17892 13.9455 6.273C14 6.37996 14 6.51997 14 6.8V9.2C14 9.48003 14 9.62004 13.9455 9.727C13.8976 9.82108 13.8211 9.89757 13.727 9.9455C13.62 10 13.48 10 13.2 10H10.8C10.52 10 10.38 10 10.273 9.9455C10.1789 9.89757 10.1024 9.82108 10.0545 9.727C10 9.62004 10 9.48003 10 9.2V6.8Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M3 12.8C3 12.52 3 12.38 3.0545 12.273C3.10243 12.1789 3.17892 12.1024 3.273 12.0545C3.37996 12 3.51997 12 3.8 12H6.2C6.48003 12 6.62004 12 6.727 12.0545C6.82108 12.1024 6.89757 12.1789 6.9455 12.273C7 12.38 7 12.52 7 12.8V15.2C7 15.48 7 15.62 6.9455 15.727C6.89757 15.8211 6.82108 15.8976 6.727 15.9455C6.62004 16 6.48003 16 6.2 16H3.8C3.51997 16 3.37996 16 3.273 15.9455C3.17892 15.8976 3.10243 15.8211 3.0545 15.727C3 15.62 3 15.48 3 15.2V12.8Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M2 2.8C2 2.51997 2 2.37996 2.0545 2.273C2.10243 2.17892 2.17892 2.10243 2.273 2.0545C2.37996 2 2.51997 2 2.8 2H5.2C5.48003 2 5.62004 2 5.727 2.0545C5.82108 2.10243 5.89757 2.17892 5.9455 2.273C6 2.37996 6 2.51997 6 2.8V5.2C6 5.48003 6 5.62004 5.9455 5.727C5.89757 5.82108 5.82108 5.89757 5.727 5.9455C5.62004 6 5.48003 6 5.2 6H2.8C2.51997 6 2.37996 6 2.273 5.9455C2.17892 5.89757 2.10243 5.82108 2.0545 5.727C2 5.62004 2 5.48003 2 5.2V2.8Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"WgZAmwugA\",layoutId:\"WgZAmwugA\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f855h9\",\"data-framer-name\":\"Transaction Details\",layoutDependency:layoutDependency,layoutId:\"WEIU6cjnR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rqf4kk\",\"data-framer-name\":\"Transaction Title\",layoutDependency:layoutDependency,layoutId:\"RI5WW6z2c\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m4nhb7\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"A1V6KYO7Q\",style:{backgroundColor:\"rgb(38, 38, 38)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1660x48\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"L0CWLFw4X\",style:{backgroundColor:\"rgb(38, 38, 38)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1akz59v\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"O8534paIT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"View Transaction\"})}),className:\"framer-z667eb\",\"data-framer-name\":\"Button Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"OuGNo_Pql\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-127gsbi-container\",layoutDependency:layoutDependency,layoutId:\"bYJDGPhla-container\",children:/*#__PURE__*/_jsx(TypingAnimation,{font:{alignItems:\"start\",color:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"24px\",textAlign:\"left\"},justifyContent:\"left\"},height:\"100%\",id:\"bYJDGPhla\",layoutId:\"bYJDGPhla\",options:[{duration:250,text:\"Swapping.\"},{duration:250,text:\"Swapping..\"},{duration:250,text:\"Swapping...\"}],RepeatType:true,RepeatValue:2,speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),isDisplayed6()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-7vnfhp\",\"data-framer-appear-id\":\"7vnfhp\",\"data-framer-name\":\"Swap\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"CSO_2qJGb\",optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g4n8w0\",\"data-framer-name\":\"Tab Bar\",layoutDependency:layoutDependency,layoutId:\"d5JACwWUy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oqu5ry\",\"data-framer-name\":\"Tab Items\",layoutDependency:layoutDependency,layoutId:\"rhXGhPPG2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g9w5hp\",\"data-border\":true,\"data-framer-name\":\"Question List Label\",layoutDependency:layoutDependency,layoutId:\"rrqIXfWg3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(23, 23, 23)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Swap\"})}),className:\"framer-1xb6mv9\",\"data-framer-name\":\"Transactions Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"K4u8jpKuf\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a4t1ky\",\"data-framer-name\":\"Question List Label\",layoutDependency:layoutDependency,layoutId:\"JPiZn_Rlw\",style:{borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Send\"})}),className:\"framer-yzq4e3\",\"data-framer-name\":\"Transactions Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ayPhicyoB\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nhg1rq\",\"data-framer-name\":\"Question List Label\",layoutDependency:layoutDependency,layoutId:\"JHt7T4K5n\",style:{borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Buy\"})}),className:\"framer-o7p259\",\"data-framer-name\":\"Transactions Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"oXpnBrzxe\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-1tz12jl\",\"data-framer-name\":\"Button\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:36,layoutDependency:layoutDependency,layoutId:\"AKZpJSDyN\",svg:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.4398 11.2523C16.8148 10.8772 17.3236 10.6665 17.854 10.6665H18.1473C18.6778 10.6665 19.1865 10.8772 19.5615 11.2523C19.9366 11.6274 20.1473 12.1361 20.1473 12.6665L20.1473 12.7858C20.1473 12.786 20.1473 12.7862 20.1473 12.7864C20.1475 12.9031 20.1784 13.0177 20.2368 13.1188C20.2953 13.22 20.3794 13.304 20.4807 13.3625C20.4812 13.3628 20.4818 13.3632 20.4824 13.3635L20.7673 13.5292C20.7676 13.5293 20.7678 13.5294 20.768 13.5296C20.8692 13.5878 20.9839 13.6185 21.1007 13.6185C21.2177 13.6185 21.3326 13.5877 21.434 13.5292C21.4405 13.5254 21.447 13.5218 21.4536 13.5183L21.5448 13.4696C22.0015 13.2099 22.5423 13.1402 23.0502 13.276C23.562 13.4129 23.9987 13.7472 24.2642 14.2057L24.4115 14.4601C24.6762 14.919 24.748 15.4642 24.6112 15.9761C24.4748 16.4861 24.1423 16.9214 23.6864 17.1872L23.5903 17.2448C23.5871 17.2468 23.5839 17.2487 23.5806 17.2505C23.4789 17.3093 23.3945 17.3938 23.336 17.4957C23.2774 17.5975 23.2468 17.713 23.2473 17.8305C23.2473 17.8314 23.2473 17.8323 23.2473 17.8332V18.1665C23.2473 18.1674 23.2473 18.1683 23.2473 18.1692C23.2468 18.2866 23.2774 18.4021 23.336 18.504C23.393 18.6032 23.4745 18.6859 23.5726 18.7445L23.661 18.7916C23.6679 18.7953 23.6747 18.7991 23.6815 18.803C24.1399 19.0685 24.4743 19.5051 24.6112 20.017C24.7477 20.5277 24.6765 21.0716 24.4132 21.5299L24.268 21.7874C24.2667 21.7896 24.2655 21.7918 24.2642 21.794C23.9987 22.2524 23.562 22.5868 23.0502 22.7237C22.5423 22.8595 22.0015 22.7898 21.5448 22.53L21.4536 22.4814C21.447 22.4779 21.4405 22.4743 21.434 22.4705C21.3326 22.412 21.2177 22.3812 21.1007 22.3812C20.9839 22.3812 20.8692 22.4119 20.768 22.4701C20.7678 22.4702 20.7676 22.4704 20.7673 22.4705L20.4816 22.6366L20.4807 22.6372C20.3794 22.6956 20.2953 22.7797 20.2368 22.8809C20.1784 22.982 20.1475 23.0966 20.1473 23.2133C20.1473 23.2135 20.1473 23.2137 20.1473 23.2139L20.1473 23.3332C20.1473 23.8636 19.9366 24.3723 19.5615 24.7474C19.1865 25.1225 18.6778 25.3332 18.1473 25.3332H17.854C17.3236 25.3332 16.8148 25.1225 16.4398 24.7474C16.0647 24.3723 15.854 23.8636 15.854 23.3332L15.854 23.2139C15.854 23.2137 15.854 23.2136 15.854 23.2135C15.8538 23.0967 15.823 22.982 15.7645 22.8809C15.706 22.7797 15.6219 22.6956 15.5207 22.6372C15.5201 22.6369 15.5195 22.6365 15.5189 22.6362L15.234 22.4705C15.2338 22.4704 15.2335 22.4702 15.2333 22.4701C15.1321 22.4119 15.0174 22.3812 14.9007 22.3812C14.7836 22.3812 14.6687 22.412 14.5673 22.4705C14.5608 22.4743 14.5543 22.4779 14.5477 22.4814L14.4565 22.5301C13.9998 22.7898 13.459 22.8595 12.9511 22.7237C12.4393 22.5868 12.0027 22.2524 11.7371 21.794L11.5898 21.5396C11.3251 21.0807 11.2533 20.5355 11.3902 20.0236C11.5265 19.5136 11.859 19.0783 12.315 18.8125L12.411 18.7548C12.4142 18.7529 12.4174 18.751 12.4207 18.7492C12.5224 18.6904 12.6068 18.6058 12.6653 18.504C12.7239 18.4021 12.7545 18.2866 12.754 18.1692C12.754 18.1683 12.754 18.1674 12.754 18.1665V17.8289C12.753 17.7131 12.7219 17.5996 12.6637 17.4995C12.6052 17.3989 12.5214 17.3154 12.4207 17.2572C12.4083 17.25 12.3961 17.2425 12.3842 17.2345L12.2999 17.1783C11.8517 16.9118 11.525 16.4804 11.3902 15.9761C11.2533 15.4642 11.3251 14.919 11.5898 14.4601L11.7371 14.2057C12.0027 13.7472 12.4393 13.4129 12.9511 13.276C13.459 13.1402 13.9998 13.2099 14.4565 13.4696L14.5477 13.5183C14.5543 13.5218 14.5608 13.5254 14.5673 13.5292C14.6687 13.5877 14.7836 13.6185 14.9007 13.6185C15.0174 13.6185 15.1321 13.5878 15.2333 13.5296C15.2335 13.5294 15.2338 13.5293 15.234 13.5292L15.5189 13.3635C15.5195 13.3632 15.5201 13.3628 15.5207 13.3625C15.6219 13.304 15.706 13.22 15.7645 13.1188C15.823 13.0176 15.8538 12.9029 15.854 12.7861C15.854 12.786 15.854 12.7859 15.854 12.7858L15.854 12.6665C15.854 12.1361 16.0647 11.6274 16.4398 11.2523ZM17.854 11.9998C17.6772 11.9998 17.5076 12.0701 17.3826 12.1951C17.2576 12.3201 17.1873 12.4897 17.1873 12.6665L17.1873 12.7872C17.187 13.1379 17.0944 13.4824 16.9189 13.786C16.7435 14.0894 16.4916 14.3413 16.1883 14.5166C16.188 14.5168 16.1876 14.517 16.1873 14.5172L15.9024 14.6828C15.9018 14.6832 15.9012 14.6835 15.9007 14.6839C15.5966 14.8594 15.2517 14.9518 14.9007 14.9518C14.5537 14.9518 14.2128 14.8615 13.9114 14.69L13.8203 14.6414C13.8137 14.6379 13.8073 14.6343 13.8009 14.6306C13.6479 14.5424 13.4661 14.5185 13.2955 14.5641C13.125 14.6097 12.9795 14.7211 12.8909 14.8739C12.8909 14.8739 12.8909 14.8739 12.8909 14.874L12.7448 15.1263C12.7447 15.1264 12.7447 15.1265 12.7446 15.1267C12.6565 15.2796 12.6326 15.4611 12.6782 15.6316C12.7239 15.8022 12.8353 15.9478 12.9881 16.0363C13.0002 16.0433 13.0121 16.0507 13.0238 16.0585L13.1077 16.1144C13.4009 16.2883 13.6449 16.5344 13.8164 16.8293C13.9918 17.1311 14.0852 17.4735 14.0873 17.8225C14.0873 17.8238 14.0873 17.8252 14.0873 17.8265V18.1653C14.0885 18.5172 13.9967 18.8632 13.8214 19.1684C13.6468 19.4721 13.3955 19.7247 13.0926 19.9008L12.997 19.9582C12.994 19.9599 12.9911 19.9617 12.9881 19.9634C12.8353 20.0519 12.7239 20.1974 12.6782 20.3681C12.6327 20.5385 12.6565 20.7201 12.7446 20.873C12.7446 20.8731 12.7447 20.8732 12.7448 20.8734L12.8909 21.1257C12.8909 21.1257 12.8909 21.1258 12.8909 21.1258C12.9795 21.2786 13.125 21.39 13.2955 21.4356C13.4661 21.4812 13.6479 21.4573 13.8009 21.369C13.8073 21.3653 13.8137 21.3617 13.8203 21.3583L13.9114 21.3097C14.2128 21.1381 14.5537 21.0479 14.9007 21.0479C15.2517 21.0479 15.5966 21.1403 15.9007 21.3158L15.9015 21.3163L16.1873 21.4825C16.1877 21.4827 16.188 21.4829 16.1883 21.4831C16.4916 21.6584 16.7435 21.9103 16.9189 22.2136C17.0944 22.5173 17.187 22.8618 17.1873 23.2125L17.1873 23.3332C17.1873 23.51 17.2576 23.6795 17.3826 23.8046C17.5076 23.9296 17.6772 23.9998 17.854 23.9998H18.1473C18.3241 23.9998 18.4937 23.9296 18.6187 23.8046C18.7437 23.6795 18.814 23.51 18.814 23.3332V23.2125C18.8143 22.8618 18.9069 22.5173 19.0824 22.2136C19.2578 21.9103 19.5097 21.6584 19.813 21.483C19.8134 21.4828 19.8137 21.4827 19.814 21.4825L20.0989 21.3168C20.0993 21.3166 20.0998 21.3163 20.1002 21.3161L20.1007 21.3158C20.4047 21.1403 20.7496 21.0479 21.1007 21.0479C21.4476 21.0479 21.7885 21.1381 22.0899 21.3097L22.181 21.3583C22.1876 21.3617 22.194 21.3653 22.2004 21.369C22.3534 21.4573 22.5352 21.4812 22.7058 21.4356C22.8754 21.3902 23.0202 21.2799 23.1088 21.1284L23.2533 20.8723C23.2544 20.8704 23.2554 20.8686 23.2565 20.8667C23.3448 20.7137 23.3687 20.532 23.3231 20.3614C23.2783 20.1939 23.1701 20.0506 23.0215 19.9616L22.9336 19.9147C22.927 19.9112 22.9205 19.9076 22.914 19.9039C22.6088 19.7276 22.3556 19.4739 22.1799 19.1684C22.0046 18.8633 21.9129 18.5173 21.914 18.1655V17.8342C21.9129 17.4824 22.0046 17.1364 22.1799 16.8313C22.3545 16.5275 22.6058 16.275 22.9086 16.0989L23.0043 16.0415C23.0073 16.0397 23.0102 16.038 23.0132 16.0363C23.166 15.9478 23.2775 15.8022 23.3231 15.6316C23.3687 15.4611 23.3448 15.2794 23.2566 15.1265C23.2566 15.1264 23.2566 15.1264 23.2565 15.1263L23.1104 14.874C23.1104 14.8739 23.1104 14.8739 23.1104 14.8739C23.0218 14.7211 22.8763 14.6097 22.7058 14.5641C22.5352 14.5185 22.3534 14.5424 22.2004 14.6306C22.194 14.6343 22.1876 14.6379 22.181 14.6414L22.0899 14.69C21.7885 14.8615 21.4476 14.9518 21.1007 14.9518C20.7496 14.9518 20.4047 14.8594 20.1007 14.6839C20.1001 14.6835 20.0995 14.6832 20.0989 14.6828L19.814 14.5172C19.8137 14.517 19.8134 14.5168 19.8131 14.5167C19.5098 14.3413 19.2578 14.0894 19.0824 13.786C18.9069 13.4824 18.8143 13.1379 18.814 12.7872V12.6665C18.814 12.4897 18.7437 12.3201 18.6187 12.1951C18.4937 12.0701 18.3241 11.9998 18.1473 11.9998H17.854Z\" fill=\"#A3A3A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.0007 16.6668C17.2643 16.6668 16.6673 17.2638 16.6673 18.0002C16.6673 18.7365 17.2643 19.3335 18.0007 19.3335C18.737 19.3335 19.334 18.7365 19.334 18.0002C19.334 17.2638 18.737 16.6668 18.0007 16.6668ZM15.334 18.0002C15.334 16.5274 16.5279 15.3335 18.0007 15.3335C19.4734 15.3335 20.6673 16.5274 20.6673 18.0002C20.6673 19.4729 19.4734 20.6668 18.0007 20.6668C16.5279 20.6668 15.334 19.4729 15.334 18.0002Z\" fill=\"#A3A3A3\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5cmpmr\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"AFFrSRb36\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3m1my\",\"data-framer-name\":\"Swap Container\",layoutDependency:layoutDependency,layoutId:\"HyqdkHFbO\",children:[/*#__PURE__*/_jsx(SVG1,{className:\"framer-12ivcuc\",\"data-framer-name\":\"Button\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"YgEVBdFBa\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0.5H24C28.1421 0.5 31.5 3.85786 31.5 8V24C31.5 28.1421 28.1421 31.5 24 31.5H8C3.85786 31.5 0.5 28.1421 0.5 24V8C0.5 3.85786 3.85786 0.5 8 0.5Z\" fill=\"#0A0A0A\"/>\\n<path d=\"M8 0.5H24C28.1421 0.5 31.5 3.85786 31.5 8V24C31.5 28.1421 28.1421 31.5 24 31.5H8C3.85786 31.5 0.5 28.1421 0.5 24V8C0.5 3.85786 3.85786 0.5 8 0.5Z\" stroke=\"#262626\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.52925 18.1953C9.7896 17.9349 10.2117 17.9349 10.4721 18.1953L12.6673 20.3905L14.8626 18.1953C15.1229 17.9349 15.545 17.9349 15.8054 18.1953C16.0657 18.4556 16.0657 18.8777 15.8054 19.1381L13.1387 21.8047C12.8784 22.0651 12.4563 22.0651 12.1959 21.8047L9.52925 19.1381C9.2689 18.8777 9.2689 18.4556 9.52925 18.1953Z\" fill=\"#FAFAFA\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.6667 10C13.0349 10 13.3333 10.2985 13.3333 10.6667V21.3333C13.3333 21.7015 13.0349 22 12.6667 22C12.2985 22 12 21.7015 12 21.3333V10.6667C12 10.2985 12.2985 10 12.6667 10Z\" fill=\"#FAFAFA\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.8619 10.1953C19.1223 9.93491 19.5444 9.93491 19.8047 10.1953L22.4714 12.8619C22.7318 13.1223 22.7318 13.5444 22.4714 13.8047C22.2111 14.0651 21.7889 14.0651 21.5286 13.8047L19.3333 11.6095L17.1381 13.8047C16.8777 14.0651 16.4556 14.0651 16.1953 13.8047C15.9349 13.5444 15.9349 13.1223 16.1953 12.8619L18.8619 10.1953Z\" fill=\"#FAFAFA\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.3327 10C19.7009 10 19.9993 10.2985 19.9993 10.6667V21.3333C19.9993 21.7015 19.7009 22 19.3327 22C18.9645 22 18.666 21.7015 18.666 21.3333V10.6667C18.666 10.2985 18.9645 10 19.3327 10Z\" fill=\"#FAFAFA\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d0yhla\",\"data-framer-name\":\"Text Area\",layoutDependency:layoutDependency,layoutId:\"POkhyESAW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j7vnob\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"mGl5qbsMg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1do5ub8\",\"data-framer-name\":\"Pay Container\",layoutDependency:layoutDependency,layoutId:\"Iu55epsd5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y0fivm\",\"data-framer-name\":\"Pay Info\",layoutDependency:layoutDependency,layoutId:\"rtYwQ9SJI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"You pay\"})}),className:\"framer-uo5l0i\",\"data-framer-name\":\"Pay Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"P0ttjPmLJ\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"0.3\"})}),className:\"framer-oe8x4a\",\"data-framer-name\":\"Pay Amount\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"qZuXhG4e4\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"$928.236\"})}),className:\"framer-9d6nkc\",\"data-framer-name\":\"Pay Value\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yGvXOZRls\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7pei7d\",\"data-framer-name\":\"Pay Balance Container\",layoutDependency:layoutDependency,layoutId:\"t768bm_jX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sgd8e9\",\"data-framer-name\":\"Pay Balance Info\",layoutDependency:layoutDependency,layoutId:\"jEC4dTfRs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"You Pay\"})}),className:\"framer-1i6tqaf\",\"data-framer-name\":\"You Pay\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"j7doz_dKb\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-po5nf8\",\"data-framer-name\":\"Pay Selector Container\",layoutDependency:layoutDependency,layoutId:\"qird4p7tQ\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18hcyf2\",\"data-border\":true,\"data-framer-name\":\"Selector\",layoutDependency:layoutDependency,layoutId:\"cknQ1eEeD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(23, 23, 23)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yxdne6\",\"data-framer-name\":\"Pay Selector\",layoutDependency:layoutDependency,layoutId:\"Z8aJiMjq4\",children:[/*#__PURE__*/_jsx(SVG1,{className:\"framer-cvhj6w\",\"data-framer-name\":\"Pay Icon Container\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"hgqeZYzJV\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.5\" y=\"0.5\" width=\"23\" height=\"23\" rx=\"11.5\" fill=\"#809EF4\"/>\\n<rect x=\"0.5\" y=\"0.5\" width=\"23\" height=\"23\" rx=\"11.5\" stroke=\"#748FDC\"/>\\n<path d=\"M11.998 2.40186V9.49786L17.9956 12.1779L11.998 2.40186Z\" fill=\"white\" fill-opacity=\"0.6\"/>\\n<path d=\"M11.9984 2.40186L6 12.1779L11.9984 9.49786V2.40186Z\" fill=\"white\"/>\\n<path d=\"M11.998 16.776V21.5976L17.9996 13.2944L11.998 16.776Z\" fill=\"white\" fill-opacity=\"0.6\"/>\\n<path d=\"M11.9984 21.5976V16.7752L6 13.2944L11.9984 21.5976Z\" fill=\"white\"/>\\n<path d=\"M11.998 15.6608L17.9956 12.1784L11.998 9.5V15.6608Z\" fill=\"white\" fill-opacity=\"0.2\"/>\\n<path d=\"M6 12.1784L11.9984 15.6608V9.5L6 12.1784Z\" fill=\"white\" fill-opacity=\"0.6\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"ETH\"})}),className:\"framer-17jlsjh\",\"data-framer-name\":\"Pay Currency\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kL4aqo3Sa\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG1,{className:\"framer-1exwuwb\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"jwtKzmVoe\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.41009 8.91058C6.73553 8.58514 7.26317 8.58514 7.5886 8.91058L11.9993 13.3213L16.4101 8.91058C16.7355 8.58514 17.2632 8.58514 17.5886 8.91058C17.914 9.23602 17.914 9.76366 17.5886 10.0891L12.5886 15.0891C12.2632 15.4145 11.7355 15.4145 11.4101 15.0891L6.41009 10.0891C6.08466 9.76366 6.08466 9.23602 6.41009 8.91058Z\" fill=\"#FAFAFA\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:[\"Balance: 0.509 \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(250, 250, 250))\"},children:\"Max\"})]})}),className:\"framer-16w9v06\",\"data-framer-name\":\"Pay Balance\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I_QKGr7Yk\",style:{\"--extracted-1w3ko1f\":\"rgb(250, 250, 250)\",\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jh7nux\",\"data-framer-name\":\"Text Area\",layoutDependency:layoutDependency,layoutId:\"fvcRth2H6\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nlkrfh\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"cgCumBoSy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jiwfa2\",\"data-framer-name\":\"Receive Container\",layoutDependency:layoutDependency,layoutId:\"EOdZdWoAP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-guvrw5\",\"data-framer-name\":\"Receive Info\",layoutDependency:layoutDependency,layoutId:\"iPzE_Oc2Z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"You receive\"})}),className:\"framer-v1uu1f\",\"data-framer-name\":\"Receive Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gnL3LJiel\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"928.236\"})}),className:\"framer-1ug545u\",\"data-framer-name\":\"Receive Amount\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"b37GPZIHr\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"$928.236\"})}),className:\"framer-weejaw\",\"data-framer-name\":\"Receive Value\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"JjA6INqSS\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1johl92\",\"data-framer-name\":\"Receive Balance Container\",layoutDependency:layoutDependency,layoutId:\"JxgduYtge\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tqmyf5\",\"data-framer-name\":\"Receive Balance Info\",layoutDependency:layoutDependency,layoutId:\"aijez8X0I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"You Pay\"})}),className:\"framer-1ase9mx\",\"data-framer-name\":\"You Pay\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"O7sHYzebU\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\",opacity:0},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-199inky\",\"data-framer-name\":\"Receive Selector Container\",layoutDependency:layoutDependency,layoutId:\"LZkl5L5w_\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mcrjp3\",\"data-border\":true,\"data-framer-name\":\"Selector\",layoutDependency:layoutDependency,layoutId:\"wjjPtlHJQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(23, 23, 23)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wtlond\",\"data-framer-name\":\"Receive Selector\",layoutDependency:layoutDependency,layoutId:\"EK3WGtTt6\",children:[/*#__PURE__*/_jsx(SVG1,{className:\"framer-zub01g\",\"data-framer-name\":\"usd-coin-usdc-logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"xP3pR2or6\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_933_16434)\">\\n<path d=\"M12 24C18.65 24 24 18.65 24 12C24 5.34996 18.65 0 12 0C5.34996 0 0 5.34996 0 12C0 18.65 5.34996 24 12 24Z\" fill=\"#2775CA\"/>\\n<path d=\"M23.5 12C23.5 18.3739 18.3739 23.5 12 23.5C5.6261 23.5 0.5 18.3739 0.5 12C0.5 5.6261 5.6261 0.5 12 0.5C18.3739 0.5 23.5 5.6261 23.5 12Z\" stroke=\"white\" stroke-opacity=\"0.08\"/>\\n<path d=\"M15.2996 13.9001C15.2996 12.1501 14.2496 11.5501 12.1496 11.3002C10.6496 11.1001 10.3496 10.7002 10.3496 10.0001C10.3496 9.30002 10.8496 8.85014 11.8496 8.85014C12.7496 8.85014 13.2496 9.15014 13.4996 9.90014C13.5496 10.0501 13.6996 10.1501 13.8496 10.1501H14.6495C14.8496 10.1501 14.9996 10.0001 14.9996 9.80018V9.75014C14.7995 8.6501 13.8995 7.80014 12.7496 7.70018V6.50018C12.7496 6.30014 12.5996 6.15014 12.3496 6.1001H11.5996C11.3996 6.1001 11.2496 6.2501 11.1995 6.50018V7.65014C9.69953 7.85018 8.74961 8.85014 8.74961 10.1002C8.74961 11.7502 9.74957 12.4001 11.8496 12.6502C13.2496 12.9001 13.6996 13.2001 13.6996 14.0002C13.6996 14.8002 12.9995 15.3502 12.0496 15.3502C10.7495 15.3502 10.2995 14.8001 10.1495 14.0501C10.0996 13.8502 9.94961 13.7501 9.79961 13.7501H8.94953C8.74961 13.7501 8.59961 13.9001 8.59961 14.1001V14.1502C8.79953 15.4001 9.59957 16.3001 11.2496 16.5502V17.7502C11.2496 17.9501 11.3996 18.1001 11.6495 18.1501H12.3995C12.5996 18.1501 12.7496 18.0001 12.7996 17.7502V16.5502C14.2996 16.3001 15.2996 15.2501 15.2996 13.9001Z\" fill=\"white\"/>\\n<path d=\"M9.44902 19.1499C5.54902 17.75 3.54898 13.4 4.99906 9.54992C5.74906 7.44992 7.39906 5.84996 9.44902 5.09996C9.64906 5 9.74902 4.85 9.74902 4.59992V3.89996C9.74902 3.69992 9.64906 3.54992 9.44902 3.5C9.39898 3.5 9.29902 3.5 9.24898 3.54992C4.49902 5.04992 1.89898 10.1 3.39898 14.85C4.29898 17.6499 6.44902 19.8 9.24898 20.7C9.44902 20.7999 9.64906 20.7 9.69898 20.4999C9.74902 20.45 9.74902 20.4 9.74902 20.3V19.5999C9.74902 19.4499 9.59902 19.25 9.44902 19.1499ZM14.7491 3.54992C14.549 3.44996 14.349 3.54992 14.2991 3.74996C14.249 3.8 14.249 3.84992 14.249 3.95V4.64996C14.249 4.85 14.399 5.04992 14.549 5.15C18.449 6.54992 20.4491 10.8999 18.999 14.75C18.249 16.85 16.599 18.45 14.549 19.2C14.349 19.2999 14.249 19.4499 14.249 19.7V20.4C14.249 20.6 14.349 20.75 14.549 20.7999C14.5991 20.7999 14.699 20.7999 14.7491 20.75C19.499 19.25 22.0991 14.1999 20.5991 9.44996C19.6991 6.59996 17.499 4.44992 14.7491 3.54992Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_933_16434\">\\n<rect width=\"24\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"USDC\"})}),className:\"framer-kzpgln\",\"data-framer-name\":\"Receive Currency\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"X14wWwAAR\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yvauqn\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"isHh7CEgO\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qhto1g\",\"data-framer-name\":\"li:chevron-down\",layoutDependency:layoutDependency,layoutId:\"AXCil8E9x\",children:/*#__PURE__*/_jsx(SVG1,{className:\"framer-e1nh9t\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"iMxQmQ0wj\",svg:'<svg width=\"14\" height=\"10\" viewBox=\"-1 -1 14 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.410093 0.910582C0.73553 0.585145 1.26317 0.585145 1.5886 0.910582L5.99935 5.32133L10.4101 0.910582C10.7355 0.585145 11.2632 0.585145 11.5886 0.910582C11.914 1.23602 11.914 1.76366 11.5886 2.08909L6.5886 7.08909C6.26317 7.41453 5.73553 7.41453 5.41009 7.08909L0.410093 2.08909C0.0846564 1.76366 0.0846564 1.23602 0.410093 0.910582Z\" fill=\"#FAFAFA\"/>\\n</svg>\\n',withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"Balance: 12.26\"})}),className:\"framer-c3mfbv\",\"data-framer-name\":\"Receive Balance\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ri4vYQUKy\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e45wfd\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"IM7rDbVF6\",style:{backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,scale:1},variants:{a_sAt0xDC:{scale:.95}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Swap\"})}),className:\"framer-56urmq\",\"data-framer-name\":\"Create\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"s1qoyGWd6\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-roTIl.framer-5t3riw, .framer-roTIl .framer-5t3riw { display: block; }\",\".framer-roTIl.framer-qhjv10 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 428px; justify-content: center; padding: 0px; position: relative; width: 584px; }\",\".framer-roTIl .framer-1ng62hs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 428px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 584px; }\",\".framer-roTIl .framer-pfqhor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 380px; justify-content: center; left: calc(50.00000000000002% - 512px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 380px / 2); width: 512px; z-index: 1; }\",\".framer-roTIl .framer-1p47t1b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 276px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-roTIl .framer-pkcelw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-8004im, .framer-roTIl .framer-1xspbwn { 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: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1hcsspx, .framer-roTIl .framer-a86dm0, .framer-roTIl .framer-104lxer { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-roTIl .framer-1sog2q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-w71bq5-container, .framer-roTIl .framer-1sekxt-container, .framer-roTIl .framer-nnwm7q-container, .framer-roTIl .framer-cvhj6w, .framer-roTIl .framer-1exwuwb, .framer-roTIl .framer-zub01g { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-roTIl .framer-nryxav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-1xx2jcz { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-roTIl .framer-1awza4y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-roTIl .framer-18dhnvg { 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: 12px 16px 12px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1e9wuld { 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: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1lrwja9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1f855h9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-roTIl .framer-rqf4kk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-1m4nhb7 { flex: none; height: 16px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1660x48 { flex: none; height: 16px; overflow: hidden; position: relative; width: 132px; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1akz59v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-z667eb, .framer-roTIl .framer-1xb6mv9, .framer-roTIl .framer-yzq4e3, .framer-roTIl .framer-o7p259, .framer-roTIl .framer-17jlsjh, .framer-roTIl .framer-kzpgln, .framer-roTIl .framer-56urmq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-roTIl .framer-127gsbi-container { flex: none; height: 24px; position: relative; width: 92px; }\",\".framer-roTIl .framer-7vnfhp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 380px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 512px; }\",\".framer-roTIl .framer-1g4n8w0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-oqu5ry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-roTIl .framer-1g9w5hp, .framer-roTIl .framer-1a4t1ky, .framer-roTIl .framer-1nhg1rq { 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: 6px 16px 6px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1tz12jl { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-roTIl .framer-5cmpmr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-3m1my { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-12ivcuc { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; z-index: 1; }\",\".framer-roTIl .framer-d0yhla { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-j7vnob { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 132px; justify-content: flex-start; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-1do5ub8, .framer-roTIl .framer-1jiwfa2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-roTIl .framer-1y0fivm, .framer-roTIl .framer-sgd8e9, .framer-roTIl .framer-guvrw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-uo5l0i, .framer-roTIl .framer-oe8x4a, .framer-roTIl .framer-9d6nkc, .framer-roTIl .framer-1i6tqaf, .framer-roTIl .framer-16w9v06, .framer-roTIl .framer-v1uu1f, .framer-roTIl .framer-1ug545u, .framer-roTIl .framer-weejaw, .framer-roTIl .framer-1ase9mx, .framer-roTIl .framer-c3mfbv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 235px; word-break: break-word; word-wrap: break-word; }\",\".framer-roTIl .framer-7pei7d, .framer-roTIl .framer-1johl92 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-roTIl .framer-po5nf8, .framer-roTIl .framer-199inky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-roTIl .framer-18hcyf2, .framer-roTIl .framer-mcrjp3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 4px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-yxdne6, .framer-roTIl .framer-1wtlond { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-roTIl .framer-jh7nux { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 132px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-1nlkrfh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-roTIl .framer-tqmyf5 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-roTIl .framer-1yvauqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-roTIl .framer-qhto1g { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-roTIl .framer-e1nh9t { bottom: 8px; flex: none; left: 3px; position: absolute; right: 5px; top: 5px; }\",\".framer-roTIl .framer-1e45wfd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 48px; justify-content: center; overflow: hidden; padding: 10px 16px 10px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-roTIl.framer-qhjv10, .framer-roTIl .framer-1ng62hs, .framer-roTIl .framer-pfqhor, .framer-roTIl .framer-1p47t1b, .framer-roTIl .framer-pkcelw, .framer-roTIl .framer-8004im, .framer-roTIl .framer-1sog2q, .framer-roTIl .framer-nryxav, .framer-roTIl .framer-1awza4y, .framer-roTIl .framer-18dhnvg, .framer-roTIl .framer-1xspbwn, .framer-roTIl .framer-1e9wuld, .framer-roTIl .framer-1lrwja9, .framer-roTIl .framer-1f855h9, .framer-roTIl .framer-rqf4kk, .framer-roTIl .framer-1akz59v, .framer-roTIl .framer-7vnfhp, .framer-roTIl .framer-oqu5ry, .framer-roTIl .framer-1g9w5hp, .framer-roTIl .framer-1a4t1ky, .framer-roTIl .framer-1nhg1rq, .framer-roTIl .framer-5cmpmr, .framer-roTIl .framer-3m1my, .framer-roTIl .framer-d0yhla, .framer-roTIl .framer-j7vnob, .framer-roTIl .framer-1y0fivm, .framer-roTIl .framer-sgd8e9, .framer-roTIl .framer-po5nf8, .framer-roTIl .framer-18hcyf2, .framer-roTIl .framer-yxdne6, .framer-roTIl .framer-jh7nux, .framer-roTIl .framer-1nlkrfh, .framer-roTIl .framer-guvrw5, .framer-roTIl .framer-tqmyf5, .framer-roTIl .framer-199inky, .framer-roTIl .framer-mcrjp3, .framer-roTIl .framer-1wtlond, .framer-roTIl .framer-1yvauqn, .framer-roTIl .framer-1e45wfd { gap: 0px; } .framer-roTIl.framer-qhjv10 > *, .framer-roTIl .framer-pfqhor > *, .framer-roTIl .framer-8004im > *, .framer-roTIl .framer-1sog2q > *, .framer-roTIl .framer-18dhnvg > *, .framer-roTIl .framer-1xspbwn > *, .framer-roTIl .framer-1lrwja9 > *, .framer-roTIl .framer-1g9w5hp > *, .framer-roTIl .framer-1a4t1ky > *, .framer-roTIl .framer-1nhg1rq > *, .framer-roTIl .framer-j7vnob > *, .framer-roTIl .framer-1nlkrfh > *, .framer-roTIl .framer-1yvauqn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-roTIl.framer-qhjv10 > :first-child, .framer-roTIl .framer-pfqhor > :first-child, .framer-roTIl .framer-pkcelw > :first-child, .framer-roTIl .framer-8004im > :first-child, .framer-roTIl .framer-1sog2q > :first-child, .framer-roTIl .framer-nryxav > :first-child, .framer-roTIl .framer-18dhnvg > :first-child, .framer-roTIl .framer-1xspbwn > :first-child, .framer-roTIl .framer-1e9wuld > :first-child, .framer-roTIl .framer-1lrwja9 > :first-child, .framer-roTIl .framer-rqf4kk > :first-child, .framer-roTIl .framer-1akz59v > :first-child, .framer-roTIl .framer-oqu5ry > :first-child, .framer-roTIl .framer-1g9w5hp > :first-child, .framer-roTIl .framer-1a4t1ky > :first-child, .framer-roTIl .framer-1nhg1rq > :first-child, .framer-roTIl .framer-j7vnob > :first-child, .framer-roTIl .framer-18hcyf2 > :first-child, .framer-roTIl .framer-yxdne6 > :first-child, .framer-roTIl .framer-1nlkrfh > :first-child, .framer-roTIl .framer-mcrjp3 > :first-child, .framer-roTIl .framer-1wtlond > :first-child, .framer-roTIl .framer-1yvauqn > :first-child, .framer-roTIl .framer-1e45wfd > :first-child { margin-left: 0px; } .framer-roTIl.framer-qhjv10 > :last-child, .framer-roTIl .framer-pfqhor > :last-child, .framer-roTIl .framer-pkcelw > :last-child, .framer-roTIl .framer-8004im > :last-child, .framer-roTIl .framer-1sog2q > :last-child, .framer-roTIl .framer-nryxav > :last-child, .framer-roTIl .framer-18dhnvg > :last-child, .framer-roTIl .framer-1xspbwn > :last-child, .framer-roTIl .framer-1e9wuld > :last-child, .framer-roTIl .framer-1lrwja9 > :last-child, .framer-roTIl .framer-rqf4kk > :last-child, .framer-roTIl .framer-1akz59v > :last-child, .framer-roTIl .framer-oqu5ry > :last-child, .framer-roTIl .framer-1g9w5hp > :last-child, .framer-roTIl .framer-1a4t1ky > :last-child, .framer-roTIl .framer-1nhg1rq > :last-child, .framer-roTIl .framer-j7vnob > :last-child, .framer-roTIl .framer-18hcyf2 > :last-child, .framer-roTIl .framer-yxdne6 > :last-child, .framer-roTIl .framer-1nlkrfh > :last-child, .framer-roTIl .framer-mcrjp3 > :last-child, .framer-roTIl .framer-1wtlond > :last-child, .framer-roTIl .framer-1yvauqn > :last-child, .framer-roTIl .framer-1e45wfd > :last-child { margin-right: 0px; } .framer-roTIl .framer-1ng62hs > *, .framer-roTIl .framer-po5nf8 > *, .framer-roTIl .framer-199inky > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-roTIl .framer-1ng62hs > :first-child, .framer-roTIl .framer-1p47t1b > :first-child, .framer-roTIl .framer-1awza4y > :first-child, .framer-roTIl .framer-1f855h9 > :first-child, .framer-roTIl .framer-7vnfhp > :first-child, .framer-roTIl .framer-5cmpmr > :first-child, .framer-roTIl .framer-3m1my > :first-child, .framer-roTIl .framer-d0yhla > :first-child, .framer-roTIl .framer-1y0fivm > :first-child, .framer-roTIl .framer-sgd8e9 > :first-child, .framer-roTIl .framer-po5nf8 > :first-child, .framer-roTIl .framer-jh7nux > :first-child, .framer-roTIl .framer-guvrw5 > :first-child, .framer-roTIl .framer-tqmyf5 > :first-child, .framer-roTIl .framer-199inky > :first-child { margin-top: 0px; } .framer-roTIl .framer-1ng62hs > :last-child, .framer-roTIl .framer-1p47t1b > :last-child, .framer-roTIl .framer-1awza4y > :last-child, .framer-roTIl .framer-1f855h9 > :last-child, .framer-roTIl .framer-7vnfhp > :last-child, .framer-roTIl .framer-5cmpmr > :last-child, .framer-roTIl .framer-3m1my > :last-child, .framer-roTIl .framer-d0yhla > :last-child, .framer-roTIl .framer-1y0fivm > :last-child, .framer-roTIl .framer-sgd8e9 > :last-child, .framer-roTIl .framer-po5nf8 > :last-child, .framer-roTIl .framer-jh7nux > :last-child, .framer-roTIl .framer-guvrw5 > :last-child, .framer-roTIl .framer-tqmyf5 > :last-child, .framer-roTIl .framer-199inky > :last-child { margin-bottom: 0px; } .framer-roTIl .framer-1p47t1b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-roTIl .framer-pkcelw > *, .framer-roTIl .framer-nryxav > *, .framer-roTIl .framer-1e9wuld > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-roTIl .framer-1awza4y > *, .framer-roTIl .framer-7vnfhp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-roTIl .framer-1f855h9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-roTIl .framer-rqf4kk > *, .framer-roTIl .framer-18hcyf2 > *, .framer-roTIl .framer-mcrjp3 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-roTIl .framer-1akz59v > *, .framer-roTIl .framer-yxdne6 > *, .framer-roTIl .framer-1wtlond > *, .framer-roTIl .framer-1e45wfd > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-roTIl .framer-oqu5ry > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-roTIl .framer-5cmpmr > *, .framer-roTIl .framer-3m1my > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-roTIl .framer-d0yhla > *, .framer-roTIl .framer-1y0fivm > *, .framer-roTIl .framer-sgd8e9 > *, .framer-roTIl .framer-jh7nux > *, .framer-roTIl .framer-guvrw5 > *, .framer-roTIl .framer-tqmyf5 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-roTIl.framer-v-2n9q2y.framer-qhjv10, .framer-roTIl.framer-v-2n9q2y .framer-1ng62hs, .framer-roTIl.framer-v-bbgfqv.framer-qhjv10, .framer-roTIl.framer-v-1d3q2i4 .framer-1ng62hs { height: min-content; }\",\".framer-roTIl.framer-v-1ieztnr .framer-1ng62hs, .framer-roTIl.framer-v-1mfjbzb .framer-1ng62hs, .framer-roTIl.framer-v-1n6qyq0 .framer-1ng62hs, .framer-roTIl.framer-v-8dqecn .framer-1ng62hs { height: min-content; min-height: 428px; }\",\".framer-roTIl.framer-v-1iszakw .framer-1ng62hs { height: min-content; min-height: 428px; order: 0; }\",\".framer-roTIl.framer-v-1mfjbzb .framer-nryxav, .framer-roTIl.framer-v-1n6qyq0 .framer-nryxav, .framer-roTIl.framer-v-8dqecn .framer-nryxav { align-content: flex-start; align-items: flex-start; }\",\".framer-roTIl.framer-v-1mfjbzb .framer-18dhnvg, .framer-roTIl.framer-v-1n6qyq0 .framer-18dhnvg, .framer-roTIl.framer-v-8dqecn .framer-18dhnvg { order: 0; }\",\".framer-roTIl.framer-v-1n6qyq0 .framer-1xspbwn, .framer-roTIl.framer-v-8dqecn .framer-1xspbwn { order: 1; }\",\".framer-roTIl.framer-v-8dqecn .framer-1e9wuld { order: 2; }\",'.framer-roTIl[data-border=\"true\"]::after, .framer-roTIl [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 428\n * @framerIntrinsicWidth 584\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"a_sAt0xDC\":{\"layout\":[\"fixed\",\"auto\"]},\"WVDdPnYIl\":{\"layout\":[\"fixed\",\"auto\"]},\"TXMYYocIo\":{\"layout\":[\"fixed\",\"fixed\"]},\"SVEIuzm2w\":{\"layout\":[\"fixed\",\"fixed\"]},\"jecvkB2mz\":{\"layout\":[\"fixed\",\"fixed\"]},\"a4OKOk8Vw\":{\"layout\":[\"fixed\",\"fixed\"]},\"yaWbXSlhr\":{\"layout\":[\"fixed\",\"fixed\"]},\"A0TcHlA0_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrG2bsOETx=withCSS(Component,css,\"framer-roTIl\");export default FramerrG2bsOETx;FramerrG2bsOETx.displayName=\"Nebula / Swap Hero\";FramerrG2bsOETx.defaultProps={height:428,width:584};addPropertyControls(FramerrG2bsOETx,{variant:{options:[\"gAZWgLOh0\",\"a_sAt0xDC\",\"WVDdPnYIl\",\"TXMYYocIo\",\"SVEIuzm2w\",\"jecvkB2mz\",\"a4OKOk8Vw\",\"yaWbXSlhr\",\"A0TcHlA0_\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"Variant 9\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrG2bsOETx,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"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:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...SVGFonts,...TypingAnimationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrG2bsOETx\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"584\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a_sAt0xDC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WVDdPnYIl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TXMYYocIo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SVEIuzm2w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jecvkB2mz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a4OKOk8Vw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yaWbXSlhr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A0TcHlA0_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"428\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rG2bsOETx.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={C_Yrqbchu:{hover:true}};const serializationHash=\"framer-figVu\";const variantClassNames={C_Yrqbchu:\"framer-v-1t1vtbs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"C_Yrqbchu\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1t1vtbs\",className,classNames),\"data-framer-name\":\"Desktop: Connect / Sign In\",layoutDependency:layoutDependency,layoutId:\"C_Yrqbchu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"C_Yrqbchu-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9jtx9x\",\"data-framer-name\":\"Connect Color\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:228,intrinsicWidth:489,layoutDependency:layoutDependency,layoutId:\"Ef3WW4Zt1\",style:{filter:\"brightness(1.5) saturate(0)\",WebkitFilter:\"brightness(1.5) saturate(0)\"},svg:'<svg width=\"489\" height=\"228\" viewBox=\"0 0 489 228\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_439_14217)\">\\n<path d=\"M3.72526 103.767L153.685 3.78706C157.955 0.937062 163.305 0.227062 168.175 1.84706L482.885 106.747C488.405 108.587 489.395 115.977 484.555 119.207L337.775 217.067C331.895 220.987 324.545 221.967 317.835 219.737L5.30526 115.557C0.075264 113.817 -0.864737 106.817 3.72526 103.757V103.767Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-miterlimit=\"10\"/>\\n<path d=\"M101.075 147.31L268.145 34.9502\" stroke=\"#1E4ED8\" stroke-width=\"0.86\" stroke-miterlimit=\"10\"/>\\n<path d=\"M228.065 89.05L239.615 81.56C241.175 80.55 243.095 80.3 244.865 80.87L394.775 129.45C396.915 130.14 397.305 132.99 395.435 134.24L385.785 140.69C384.165 141.77 382.135 142.05 380.285 141.45L228.465 92.09C227.105 91.65 226.865 89.83 228.065 89.05Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<path d=\"M126.255 33.1101L138.075 25.4501C139.465 24.5501 141.185 24.3101 142.775 24.7901L223.015 49.4101C224.575 49.8901 224.885 51.9701 223.525 52.8801L212.695 60.1201C211.055 61.2201 209.005 61.5201 207.115 60.9301L126.675 36.0901C125.325 35.6701 125.075 33.8801 126.265 33.1101H126.255Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<path d=\"M103.355 47.9002L115.175 40.2402C116.565 39.3402 118.285 39.1002 119.875 39.5802L200.115 64.2002C201.675 64.6802 201.985 66.7602 200.625 67.6702L189.795 74.9102C188.155 76.0102 186.105 76.3102 184.215 75.7202L103.775 50.8802C102.425 50.4602 102.175 48.6702 103.365 47.9002H103.355Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<path d=\"M80.4654 62.7009L92.2854 55.0409C93.6754 54.1409 95.3954 53.9009 96.9854 54.3809L177.225 79.0009C178.785 79.4809 179.095 81.5609 177.735 82.4709L166.905 89.7109C165.265 90.8109 163.215 91.1109 161.325 90.5209L80.8854 65.6809C79.5354 65.2609 79.2854 63.4709 80.4754 62.7009H80.4654Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<path d=\"M57.565 77.5007L69.385 69.8407C70.775 68.9407 72.495 68.7007 74.085 69.1807L154.325 93.8007C155.885 94.2807 156.195 96.3607 154.835 97.2707L144.005 104.511C142.365 105.611 140.315 105.911 138.425 105.321L57.985 80.4807C56.635 80.0607 56.385 78.2707 57.575 77.5007H57.565Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<path d=\"M34.6656 92.2908L46.4856 84.6308C47.8756 83.7308 49.5956 83.4908 51.1856 83.9708L131.426 108.591C132.986 109.071 133.296 111.151 131.936 112.061L121.106 119.301C119.466 120.401 117.416 120.701 115.526 120.111L35.0856 95.2708C33.7356 94.8508 33.4856 93.0608 34.6756 92.2908H34.6656Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<path d=\"M202.055 106.261L213.605 98.771C215.165 97.761 217.085 97.511 218.855 98.081L368.765 146.661C370.905 147.351 371.295 150.201 369.425 151.451L359.775 157.901C358.155 158.981 356.125 159.261 354.275 158.661L202.455 109.301C201.095 108.861 200.855 107.041 202.055 106.261Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<path d=\"M176.055 123.481L187.605 115.991C189.165 114.981 191.085 114.731 192.855 115.301L342.765 163.881C344.905 164.571 345.295 167.421 343.425 168.671L333.775 175.121C332.155 176.201 330.125 176.481 328.275 175.881L176.455 126.521C175.095 126.081 174.855 124.261 176.055 123.481Z\" fill=\"#040A1F\" stroke=\"#1E4ED8\" stroke-width=\"0.63\" stroke-miterlimit=\"10\"/>\\n<mask id=\"path-11-inside-1_439_14217\" fill=\"white\">\\n<path d=\"M165.105 12.5201C165.385 12.2901 165.485 12.0701 165.385 11.8601C165.285 11.6501 165.035 11.4801 164.615 11.3501C164.315 11.2601 164.015 11.2001 163.705 11.2001C163.395 11.2001 163.105 11.2201 162.835 11.2901C162.555 11.3601 162.325 11.4601 162.125 11.5901C161.955 11.7001 161.855 11.8101 161.815 11.9201C161.775 12.0301 161.785 12.1301 161.835 12.2301C161.885 12.3301 161.965 12.4201 162.065 12.5001C162.165 12.5901 162.265 12.6601 162.375 12.7301L162.905 13.0801C163.085 13.1901 163.245 13.3201 163.395 13.4601C163.545 13.6001 163.645 13.7601 163.705 13.9301C163.765 14.1001 163.735 14.2801 163.645 14.4801C163.545 14.6701 163.345 14.8801 163.025 15.0901C162.625 15.3601 162.175 15.5601 161.655 15.7101C161.135 15.8501 160.585 15.9201 160.015 15.9101C159.435 15.9101 158.865 15.8101 158.305 15.6201C157.745 15.4301 157.375 15.2401 157.145 15.0001C156.915 14.7601 156.845 14.5001 156.925 14.2201C157.005 13.9401 157.245 13.6601 157.635 13.3701L158.735 13.7201C158.505 13.9001 158.385 14.0701 158.365 14.2301C158.345 14.3901 158.415 14.5401 158.575 14.6701C158.725 14.8001 158.945 14.9101 159.225 15.0001C159.535 15.1001 159.855 15.1601 160.195 15.1701C160.535 15.1801 160.855 15.1601 161.165 15.0901C161.475 15.0201 161.745 14.9101 161.965 14.7501C162.175 14.6101 162.285 14.4701 162.295 14.3501C162.305 14.2201 162.255 14.0901 162.135 13.9701C162.015 13.8501 161.855 13.7201 161.665 13.5901L161.035 13.1601C160.605 12.8701 160.375 12.5701 160.325 12.2701C160.285 11.9601 160.505 11.6401 160.985 11.3201C161.385 11.0501 161.845 10.8501 162.375 10.7201C162.905 10.5901 163.445 10.5301 163.995 10.5401C164.545 10.5401 165.075 10.6301 165.555 10.7801C166.035 10.9301 166.395 11.1301 166.615 11.3601C166.825 11.5901 166.895 11.8401 166.825 12.1101C166.755 12.3801 166.535 12.6401 166.165 12.9001L165.105 12.5701V12.5201Z\"/>\\n<path d=\"M168.925 12.8301C168.745 12.7701 168.645 12.6801 168.635 12.5601C168.625 12.4401 168.705 12.3201 168.865 12.2101C169.025 12.1001 169.245 12.0201 169.495 11.9801C169.745 11.9401 169.965 11.9501 170.145 12.0101C170.325 12.0701 170.425 12.1601 170.435 12.2801C170.445 12.4001 170.365 12.5201 170.205 12.6301C170.045 12.7401 169.825 12.8201 169.575 12.8601C169.325 12.9001 169.105 12.8901 168.925 12.8301ZM162.325 16.7801L167.575 13.2101L168.635 13.5501L163.385 17.1301L162.335 16.7901L162.325 16.7801Z\"/>\\n<path d=\"M164.985 19.7501C164.555 19.6101 164.245 19.4501 164.045 19.2801C163.845 19.1001 163.735 18.9201 163.725 18.7401C163.715 18.5501 163.765 18.3701 163.885 18.1901L165.155 18.2401C165.115 18.3301 165.095 18.4301 165.095 18.5401C165.095 18.6501 165.135 18.7701 165.245 18.8801C165.345 18.9901 165.545 19.1001 165.835 19.1901C166.235 19.3201 166.655 19.3601 167.105 19.3201C167.555 19.2801 167.985 19.1101 168.395 18.8301L169.435 18.1201L169.365 18.1001C169.185 18.1601 168.975 18.2101 168.715 18.2701C168.455 18.3301 168.175 18.3501 167.865 18.3601C167.555 18.3601 167.235 18.3101 166.905 18.2001C166.475 18.0601 166.185 17.8701 166.045 17.6301C165.895 17.3901 165.915 17.1001 166.095 16.7801C166.275 16.4601 166.645 16.1001 167.205 15.7201C167.765 15.3401 168.345 15.0401 168.935 14.8301C169.535 14.6201 170.105 14.5001 170.665 14.4601C171.225 14.4201 171.725 14.4701 172.155 14.6101C172.495 14.7201 172.715 14.8401 172.815 14.9801C172.915 15.1201 172.955 15.2601 172.925 15.3901C172.895 15.5301 172.865 15.6401 172.815 15.7401L172.895 15.7601L173.755 15.1701L174.795 15.5001L169.395 19.2001C168.945 19.5101 168.465 19.7301 167.955 19.8601C167.445 19.9901 166.945 20.0401 166.435 20.0201C165.925 20.0001 165.445 19.9101 164.985 19.7601V19.7501ZM167.995 17.6801C168.295 17.7801 168.625 17.8101 168.975 17.7901C169.325 17.7601 169.685 17.6801 170.055 17.5401C170.425 17.4001 170.795 17.2001 171.155 16.9501C171.515 16.7001 171.765 16.4801 171.935 16.2601C172.095 16.0401 172.145 15.8501 172.095 15.6701C172.035 15.5001 171.855 15.3601 171.545 15.2701C171.235 15.1801 170.885 15.1401 170.505 15.1801C170.135 15.2201 169.755 15.3201 169.375 15.4701C168.995 15.6201 168.635 15.8101 168.305 16.0401C167.975 16.2701 167.715 16.5001 167.555 16.7101C167.405 16.9201 167.365 17.1101 167.425 17.2801C167.495 17.4501 167.685 17.5801 167.995 17.6801Z\"/>\\n<path d=\"M175.135 17.7601L171.995 19.9201L170.945 19.5801L176.235 15.9601L177.255 16.2801L176.395 16.8701L176.465 16.8901C176.875 16.7401 177.295 16.6501 177.735 16.6101C178.175 16.5801 178.595 16.6301 179.005 16.7601C179.375 16.8801 179.625 17.0301 179.755 17.2201C179.885 17.4101 179.875 17.6301 179.735 17.8901C179.595 18.1401 179.305 18.4201 178.865 18.7201L175.485 21.0401L174.435 20.7001L177.685 18.4701C178.065 18.2101 178.265 17.9701 178.275 17.7501C178.285 17.5301 178.115 17.3701 177.755 17.2601C177.505 17.1801 177.235 17.1501 176.945 17.1601C176.655 17.1701 176.355 17.2301 176.045 17.3301C175.735 17.4301 175.445 17.5801 175.165 17.7701L175.135 17.7601Z\"/>\\n<path d=\"M186.185 18.2801C186.005 18.2201 185.905 18.1301 185.895 18.0101C185.895 17.8801 185.965 17.7601 186.135 17.6501C186.305 17.5401 186.515 17.4501 186.775 17.4101C187.025 17.3701 187.245 17.3801 187.435 17.4301C187.625 17.4801 187.715 17.5801 187.725 17.7001C187.735 17.8201 187.655 17.9501 187.485 18.0601C187.315 18.1701 187.105 18.2601 186.845 18.3001C186.595 18.3401 186.375 18.3301 186.185 18.2801ZM179.505 22.3501L184.835 18.6701L185.895 19.0101L180.565 22.6901L179.515 22.3501H179.505Z\"/>\\n<path d=\"M186.205 21.3001L183.035 23.4901L181.985 23.1501L187.325 19.4601L188.345 19.7801L187.475 20.3801L187.545 20.4001C187.955 20.2401 188.375 20.1501 188.815 20.1201C189.255 20.0901 189.675 20.1301 190.085 20.2601C190.455 20.3801 190.705 20.5301 190.835 20.7301C190.965 20.9201 190.955 21.1501 190.805 21.4101C190.655 21.6701 190.365 21.9501 189.925 22.2501L186.515 24.6101L185.465 24.2701L188.745 22.0001C189.135 21.7301 189.335 21.4901 189.345 21.2701C189.355 21.0501 189.185 20.8901 188.825 20.7701C188.575 20.6901 188.305 20.6601 188.015 20.6701C187.725 20.6801 187.415 20.7401 187.105 20.8401C186.795 20.9401 186.495 21.0901 186.215 21.2901L186.205 21.3001Z\"/>\\n</mask>\\n<path d=\"M165.105 12.5201C165.385 12.2901 165.485 12.0701 165.385 11.8601C165.285 11.6501 165.035 11.4801 164.615 11.3501C164.315 11.2601 164.015 11.2001 163.705 11.2001C163.395 11.2001 163.105 11.2201 162.835 11.2901C162.555 11.3601 162.325 11.4601 162.125 11.5901C161.955 11.7001 161.855 11.8101 161.815 11.9201C161.775 12.0301 161.785 12.1301 161.835 12.2301C161.885 12.3301 161.965 12.4201 162.065 12.5001C162.165 12.5901 162.265 12.6601 162.375 12.7301L162.905 13.0801C163.085 13.1901 163.245 13.3201 163.395 13.4601C163.545 13.6001 163.645 13.7601 163.705 13.9301C163.765 14.1001 163.735 14.2801 163.645 14.4801C163.545 14.6701 163.345 14.8801 163.025 15.0901C162.625 15.3601 162.175 15.5601 161.655 15.7101C161.135 15.8501 160.585 15.9201 160.015 15.9101C159.435 15.9101 158.865 15.8101 158.305 15.6201C157.745 15.4301 157.375 15.2401 157.145 15.0001C156.915 14.7601 156.845 14.5001 156.925 14.2201C157.005 13.9401 157.245 13.6601 157.635 13.3701L158.735 13.7201C158.505 13.9001 158.385 14.0701 158.365 14.2301C158.345 14.3901 158.415 14.5401 158.575 14.6701C158.725 14.8001 158.945 14.9101 159.225 15.0001C159.535 15.1001 159.855 15.1601 160.195 15.1701C160.535 15.1801 160.855 15.1601 161.165 15.0901C161.475 15.0201 161.745 14.9101 161.965 14.7501C162.175 14.6101 162.285 14.4701 162.295 14.3501C162.305 14.2201 162.255 14.0901 162.135 13.9701C162.015 13.8501 161.855 13.7201 161.665 13.5901L161.035 13.1601C160.605 12.8701 160.375 12.5701 160.325 12.2701C160.285 11.9601 160.505 11.6401 160.985 11.3201C161.385 11.0501 161.845 10.8501 162.375 10.7201C162.905 10.5901 163.445 10.5301 163.995 10.5401C164.545 10.5401 165.075 10.6301 165.555 10.7801C166.035 10.9301 166.395 11.1301 166.615 11.3601C166.825 11.5901 166.895 11.8401 166.825 12.1101C166.755 12.3801 166.535 12.6401 166.165 12.9001L165.105 12.5701V12.5201Z\" fill=\"#404040\"/>\\n<path d=\"M168.925 12.8301C168.745 12.7701 168.645 12.6801 168.635 12.5601C168.625 12.4401 168.705 12.3201 168.865 12.2101C169.025 12.1001 169.245 12.0201 169.495 11.9801C169.745 11.9401 169.965 11.9501 170.145 12.0101C170.325 12.0701 170.425 12.1601 170.435 12.2801C170.445 12.4001 170.365 12.5201 170.205 12.6301C170.045 12.7401 169.825 12.8201 169.575 12.8601C169.325 12.9001 169.105 12.8901 168.925 12.8301ZM162.325 16.7801L167.575 13.2101L168.635 13.5501L163.385 17.1301L162.335 16.7901L162.325 16.7801Z\" fill=\"#404040\"/>\\n<path d=\"M164.985 19.7501C164.555 19.6101 164.245 19.4501 164.045 19.2801C163.845 19.1001 163.735 18.9201 163.725 18.7401C163.715 18.5501 163.765 18.3701 163.885 18.1901L165.155 18.2401C165.115 18.3301 165.095 18.4301 165.095 18.5401C165.095 18.6501 165.135 18.7701 165.245 18.8801C165.345 18.9901 165.545 19.1001 165.835 19.1901C166.235 19.3201 166.655 19.3601 167.105 19.3201C167.555 19.2801 167.985 19.1101 168.395 18.8301L169.435 18.1201L169.365 18.1001C169.185 18.1601 168.975 18.2101 168.715 18.2701C168.455 18.3301 168.175 18.3501 167.865 18.3601C167.555 18.3601 167.235 18.3101 166.905 18.2001C166.475 18.0601 166.185 17.8701 166.045 17.6301C165.895 17.3901 165.915 17.1001 166.095 16.7801C166.275 16.4601 166.645 16.1001 167.205 15.7201C167.765 15.3401 168.345 15.0401 168.935 14.8301C169.535 14.6201 170.105 14.5001 170.665 14.4601C171.225 14.4201 171.725 14.4701 172.155 14.6101C172.495 14.7201 172.715 14.8401 172.815 14.9801C172.915 15.1201 172.955 15.2601 172.925 15.3901C172.895 15.5301 172.865 15.6401 172.815 15.7401L172.895 15.7601L173.755 15.1701L174.795 15.5001L169.395 19.2001C168.945 19.5101 168.465 19.7301 167.955 19.8601C167.445 19.9901 166.945 20.0401 166.435 20.0201C165.925 20.0001 165.445 19.9101 164.985 19.7601V19.7501ZM167.995 17.6801C168.295 17.7801 168.625 17.8101 168.975 17.7901C169.325 17.7601 169.685 17.6801 170.055 17.5401C170.425 17.4001 170.795 17.2001 171.155 16.9501C171.515 16.7001 171.765 16.4801 171.935 16.2601C172.095 16.0401 172.145 15.8501 172.095 15.6701C172.035 15.5001 171.855 15.3601 171.545 15.2701C171.235 15.1801 170.885 15.1401 170.505 15.1801C170.135 15.2201 169.755 15.3201 169.375 15.4701C168.995 15.6201 168.635 15.8101 168.305 16.0401C167.975 16.2701 167.715 16.5001 167.555 16.7101C167.405 16.9201 167.365 17.1101 167.425 17.2801C167.495 17.4501 167.685 17.5801 167.995 17.6801Z\" fill=\"#404040\"/>\\n<path d=\"M175.135 17.7601L171.995 19.9201L170.945 19.5801L176.235 15.9601L177.255 16.2801L176.395 16.8701L176.465 16.8901C176.875 16.7401 177.295 16.6501 177.735 16.6101C178.175 16.5801 178.595 16.6301 179.005 16.7601C179.375 16.8801 179.625 17.0301 179.755 17.2201C179.885 17.4101 179.875 17.6301 179.735 17.8901C179.595 18.1401 179.305 18.4201 178.865 18.7201L175.485 21.0401L174.435 20.7001L177.685 18.4701C178.065 18.2101 178.265 17.9701 178.275 17.7501C178.285 17.5301 178.115 17.3701 177.755 17.2601C177.505 17.1801 177.235 17.1501 176.945 17.1601C176.655 17.1701 176.355 17.2301 176.045 17.3301C175.735 17.4301 175.445 17.5801 175.165 17.7701L175.135 17.7601Z\" fill=\"#404040\"/>\\n<path d=\"M186.185 18.2801C186.005 18.2201 185.905 18.1301 185.895 18.0101C185.895 17.8801 185.965 17.7601 186.135 17.6501C186.305 17.5401 186.515 17.4501 186.775 17.4101C187.025 17.3701 187.245 17.3801 187.435 17.4301C187.625 17.4801 187.715 17.5801 187.725 17.7001C187.735 17.8201 187.655 17.9501 187.485 18.0601C187.315 18.1701 187.105 18.2601 186.845 18.3001C186.595 18.3401 186.375 18.3301 186.185 18.2801ZM179.505 22.3501L184.835 18.6701L185.895 19.0101L180.565 22.6901L179.515 22.3501H179.505Z\" fill=\"#404040\"/>\\n<path d=\"M186.205 21.3001L183.035 23.4901L181.985 23.1501L187.325 19.4601L188.345 19.7801L187.475 20.3801L187.545 20.4001C187.955 20.2401 188.375 20.1501 188.815 20.1201C189.255 20.0901 189.675 20.1301 190.085 20.2601C190.455 20.3801 190.705 20.5301 190.835 20.7301C190.965 20.9201 190.955 21.1501 190.805 21.4101C190.655 21.6701 190.365 21.9501 189.925 22.2501L186.515 24.6101L185.465 24.2701L188.745 22.0001C189.135 21.7301 189.335 21.4901 189.345 21.2701C189.355 21.0501 189.185 20.8901 188.825 20.7701C188.575 20.6901 188.305 20.6601 188.015 20.6701C187.725 20.6801 187.415 20.7401 187.105 20.8401C186.795 20.9401 186.495 21.0901 186.215 21.2901L186.205 21.3001Z\" fill=\"#404040\"/>\\n<path d=\"M165.105 12.5201C165.385 12.2901 165.485 12.0701 165.385 11.8601C165.285 11.6501 165.035 11.4801 164.615 11.3501C164.315 11.2601 164.015 11.2001 163.705 11.2001C163.395 11.2001 163.105 11.2201 162.835 11.2901C162.555 11.3601 162.325 11.4601 162.125 11.5901C161.955 11.7001 161.855 11.8101 161.815 11.9201C161.775 12.0301 161.785 12.1301 161.835 12.2301C161.885 12.3301 161.965 12.4201 162.065 12.5001C162.165 12.5901 162.265 12.6601 162.375 12.7301L162.905 13.0801C163.085 13.1901 163.245 13.3201 163.395 13.4601C163.545 13.6001 163.645 13.7601 163.705 13.9301C163.765 14.1001 163.735 14.2801 163.645 14.4801C163.545 14.6701 163.345 14.8801 163.025 15.0901C162.625 15.3601 162.175 15.5601 161.655 15.7101C161.135 15.8501 160.585 15.9201 160.015 15.9101C159.435 15.9101 158.865 15.8101 158.305 15.6201C157.745 15.4301 157.375 15.2401 157.145 15.0001C156.915 14.7601 156.845 14.5001 156.925 14.2201C157.005 13.9401 157.245 13.6601 157.635 13.3701L158.735 13.7201C158.505 13.9001 158.385 14.0701 158.365 14.2301C158.345 14.3901 158.415 14.5401 158.575 14.6701C158.725 14.8001 158.945 14.9101 159.225 15.0001C159.535 15.1001 159.855 15.1601 160.195 15.1701C160.535 15.1801 160.855 15.1601 161.165 15.0901C161.475 15.0201 161.745 14.9101 161.965 14.7501C162.175 14.6101 162.285 14.4701 162.295 14.3501C162.305 14.2201 162.255 14.0901 162.135 13.9701C162.015 13.8501 161.855 13.7201 161.665 13.5901L161.035 13.1601C160.605 12.8701 160.375 12.5701 160.325 12.2701C160.285 11.9601 160.505 11.6401 160.985 11.3201C161.385 11.0501 161.845 10.8501 162.375 10.7201C162.905 10.5901 163.445 10.5301 163.995 10.5401C164.545 10.5401 165.075 10.6301 165.555 10.7801C166.035 10.9301 166.395 11.1301 166.615 11.3601C166.825 11.5901 166.895 11.8401 166.825 12.1101C166.755 12.3801 166.535 12.6401 166.165 12.9001L165.105 12.5701V12.5201Z\" stroke=\"#1E4ED8\" stroke-width=\"2\" mask=\"url(#path-11-inside-1_439_14217)\"/>\\n<path d=\"M168.925 12.8301C168.745 12.7701 168.645 12.6801 168.635 12.5601C168.625 12.4401 168.705 12.3201 168.865 12.2101C169.025 12.1001 169.245 12.0201 169.495 11.9801C169.745 11.9401 169.965 11.9501 170.145 12.0101C170.325 12.0701 170.425 12.1601 170.435 12.2801C170.445 12.4001 170.365 12.5201 170.205 12.6301C170.045 12.7401 169.825 12.8201 169.575 12.8601C169.325 12.9001 169.105 12.8901 168.925 12.8301ZM162.325 16.7801L167.575 13.2101L168.635 13.5501L163.385 17.1301L162.335 16.7901L162.325 16.7801Z\" stroke=\"#1E4ED8\" stroke-width=\"2\" mask=\"url(#path-11-inside-1_439_14217)\"/>\\n<path d=\"M164.985 19.7501C164.555 19.6101 164.245 19.4501 164.045 19.2801C163.845 19.1001 163.735 18.9201 163.725 18.7401C163.715 18.5501 163.765 18.3701 163.885 18.1901L165.155 18.2401C165.115 18.3301 165.095 18.4301 165.095 18.5401C165.095 18.6501 165.135 18.7701 165.245 18.8801C165.345 18.9901 165.545 19.1001 165.835 19.1901C166.235 19.3201 166.655 19.3601 167.105 19.3201C167.555 19.2801 167.985 19.1101 168.395 18.8301L169.435 18.1201L169.365 18.1001C169.185 18.1601 168.975 18.2101 168.715 18.2701C168.455 18.3301 168.175 18.3501 167.865 18.3601C167.555 18.3601 167.235 18.3101 166.905 18.2001C166.475 18.0601 166.185 17.8701 166.045 17.6301C165.895 17.3901 165.915 17.1001 166.095 16.7801C166.275 16.4601 166.645 16.1001 167.205 15.7201C167.765 15.3401 168.345 15.0401 168.935 14.8301C169.535 14.6201 170.105 14.5001 170.665 14.4601C171.225 14.4201 171.725 14.4701 172.155 14.6101C172.495 14.7201 172.715 14.8401 172.815 14.9801C172.915 15.1201 172.955 15.2601 172.925 15.3901C172.895 15.5301 172.865 15.6401 172.815 15.7401L172.895 15.7601L173.755 15.1701L174.795 15.5001L169.395 19.2001C168.945 19.5101 168.465 19.7301 167.955 19.8601C167.445 19.9901 166.945 20.0401 166.435 20.0201C165.925 20.0001 165.445 19.9101 164.985 19.7601V19.7501ZM167.995 17.6801C168.295 17.7801 168.625 17.8101 168.975 17.7901C169.325 17.7601 169.685 17.6801 170.055 17.5401C170.425 17.4001 170.795 17.2001 171.155 16.9501C171.515 16.7001 171.765 16.4801 171.935 16.2601C172.095 16.0401 172.145 15.8501 172.095 15.6701C172.035 15.5001 171.855 15.3601 171.545 15.2701C171.235 15.1801 170.885 15.1401 170.505 15.1801C170.135 15.2201 169.755 15.3201 169.375 15.4701C168.995 15.6201 168.635 15.8101 168.305 16.0401C167.975 16.2701 167.715 16.5001 167.555 16.7101C167.405 16.9201 167.365 17.1101 167.425 17.2801C167.495 17.4501 167.685 17.5801 167.995 17.6801Z\" stroke=\"#1E4ED8\" stroke-width=\"2\" mask=\"url(#path-11-inside-1_439_14217)\"/>\\n<path d=\"M175.135 17.7601L171.995 19.9201L170.945 19.5801L176.235 15.9601L177.255 16.2801L176.395 16.8701L176.465 16.8901C176.875 16.7401 177.295 16.6501 177.735 16.6101C178.175 16.5801 178.595 16.6301 179.005 16.7601C179.375 16.8801 179.625 17.0301 179.755 17.2201C179.885 17.4101 179.875 17.6301 179.735 17.8901C179.595 18.1401 179.305 18.4201 178.865 18.7201L175.485 21.0401L174.435 20.7001L177.685 18.4701C178.065 18.2101 178.265 17.9701 178.275 17.7501C178.285 17.5301 178.115 17.3701 177.755 17.2601C177.505 17.1801 177.235 17.1501 176.945 17.1601C176.655 17.1701 176.355 17.2301 176.045 17.3301C175.735 17.4301 175.445 17.5801 175.165 17.7701L175.135 17.7601Z\" stroke=\"#1E4ED8\" stroke-width=\"2\" mask=\"url(#path-11-inside-1_439_14217)\"/>\\n<path d=\"M186.185 18.2801C186.005 18.2201 185.905 18.1301 185.895 18.0101C185.895 17.8801 185.965 17.7601 186.135 17.6501C186.305 17.5401 186.515 17.4501 186.775 17.4101C187.025 17.3701 187.245 17.3801 187.435 17.4301C187.625 17.4801 187.715 17.5801 187.725 17.7001C187.735 17.8201 187.655 17.9501 187.485 18.0601C187.315 18.1701 187.105 18.2601 186.845 18.3001C186.595 18.3401 186.375 18.3301 186.185 18.2801ZM179.505 22.3501L184.835 18.6701L185.895 19.0101L180.565 22.6901L179.515 22.3501H179.505Z\" stroke=\"#1E4ED8\" stroke-width=\"2\" mask=\"url(#path-11-inside-1_439_14217)\"/>\\n<path d=\"M186.205 21.3001L183.035 23.4901L181.985 23.1501L187.325 19.4601L188.345 19.7801L187.475 20.3801L187.545 20.4001C187.955 20.2401 188.375 20.1501 188.815 20.1201C189.255 20.0901 189.675 20.1301 190.085 20.2601C190.455 20.3801 190.705 20.5301 190.835 20.7301C190.965 20.9201 190.955 21.1501 190.805 21.4101C190.655 21.6701 190.365 21.9501 189.925 22.2501L186.515 24.6101L185.465 24.2701L188.745 22.0001C189.135 21.7301 189.335 21.4901 189.345 21.2701C189.355 21.0501 189.185 20.8901 188.825 20.7701C188.575 20.6901 188.305 20.6601 188.015 20.6701C187.725 20.6801 187.415 20.7401 187.105 20.8401C186.795 20.9401 186.495 21.0901 186.215 21.2901L186.205 21.3001Z\" stroke=\"#1E4ED8\" stroke-width=\"2\" mask=\"url(#path-11-inside-1_439_14217)\"/>\\n<g clip-path=\"url(#clip1_439_14217)\">\\n<path d=\"M263.883 63.6903C267.083 61.5411 272.641 60.787 276.298 62.0059L289.541 66.4202C293.198 67.6391 293.568 70.3695 290.368 72.5187L278.78 80.3016C275.58 82.4508 270.022 83.2049 266.365 81.986L253.122 77.5718C249.465 76.3528 249.095 73.6224 252.295 71.4732L263.883 63.6903Z\" fill=\"#040A1F\"/>\\n<g clip-path=\"url(#clip2_439_14217)\">\\n<path d=\"M278.216 74.4086C278.73 74.0632 279.057 73.7952 279.343 73.4994L272.632 71.2622L270.31 72.8213L274.25 74.1345C273.594 74.4955 272.296 74.9361 270.759 75.0104L270.668 75.0582L271.352 76.7317L271.486 76.7893C273.927 76.5065 276.311 75.6877 278.216 74.4086Z\" fill=\"#1E4ED8\"/>\\n<path d=\"M265.237 76.229C267.167 76.8723 269.343 77.039 271.486 76.7893L270.759 75.0104C269.787 75.0566 268.72 74.9592 267.656 74.6045C265.765 73.9744 265.252 72.7067 266.188 71.5031L266.098 71.4793L262.397 71.7474L262.298 71.7849C261.431 73.5492 262.441 75.297 265.237 76.229Z\" fill=\"#1E4ED8\"/>\\n<path d=\"M266.189 71.5028C266.427 71.1911 266.757 70.8819 267.188 70.5925C267.619 70.303 268.123 70.0521 268.655 69.8383L268.734 69.7813L268.018 68.0168L267.915 68.0129C266.582 68.4209 265.352 68.9678 264.344 69.6446C263.336 70.3215 262.662 71.0537 262.299 71.7847L266.189 71.5028Z\" fill=\"#1E4ED8\"/>\\n<path d=\"M275.329 69.4504C276.671 69.8978 277.069 70.5404 277.161 70.9973L280.902 70.5121C280.671 69.4222 279.677 68.4693 277.747 67.8259C274.951 66.894 271.133 67.032 267.914 68.0126L268.655 69.8381C270.743 69.0184 273.438 68.8203 275.329 69.4504Z\" fill=\"#1E4ED8\"/>\\n</g>\\n</g>\\n<path d=\"M264.159 63.7822C267.225 61.7226 272.552 60.9999 276.057 62.1681L289.299 66.5823C292.804 67.7505 293.159 70.3671 290.092 72.4268L278.504 80.2097C275.438 82.2693 270.111 82.992 266.606 81.8238L253.364 77.4096C249.859 76.2415 249.504 73.6248 252.571 71.5652L264.159 63.7822Z\" stroke=\"#1E4ED8\" stroke-width=\"0.581624\"/>\\n<g clip-path=\"url(#clip3_439_14217)\">\\n<path d=\"M296.989 74.7259C300.189 72.5767 305.748 71.8226 309.405 73.0416L322.647 77.4558C326.304 78.6747 326.674 81.4052 323.475 83.5544L311.887 91.3373C308.687 93.4865 303.128 94.2406 299.471 93.0216L286.229 88.6074C282.572 87.3885 282.201 84.658 285.401 82.5088L296.989 74.7259Z\" fill=\"#040A1F\"/>\\n<g clip-path=\"url(#clip4_439_14217)\">\\n<path d=\"M314.284 81.8663C313.679 81.2433 312.893 80.682 311.948 80.1974C311.59 80.2986 311.132 80.4428 310.786 80.5633C309.742 80.0568 308.552 79.6601 307.215 79.3732C307.338 79.1782 307.468 78.9245 307.547 78.7304C306.263 78.472 304.88 78.3112 303.435 78.2522C298.7 79.3833 295.518 80.9649 293.203 82.7977C293.671 83.842 294.445 84.6394 295.382 85.3048C296.088 85.1528 296.779 84.9731 297.448 84.7678C297.14 84.5101 296.884 84.2338 296.683 83.9424C296.867 83.931 297.051 83.9167 297.236 83.8994C298.754 85.4622 301.546 86.3929 305.136 86.5328C305.165 86.6206 305.198 86.7076 305.237 86.7936C304.588 86.8025 303.951 86.7814 303.333 86.7305C303.149 87.0995 303.023 87.4679 302.96 87.8317C304.6 88.0257 306.449 88.1024 308.686 87.9589C312.015 86.049 313.742 84.0067 314.284 81.8663ZM299.944 83.4431C299.173 83.186 299.17 82.5519 299.938 82.0365C300.705 81.5212 301.955 81.3036 302.74 81.5652C303.525 81.8268 303.528 82.4609 302.746 82.9725C301.98 83.4882 300.729 83.7047 299.944 83.4431ZM305.132 85.1725C304.361 84.9153 304.359 84.2813 305.126 83.7659C305.893 83.2506 307.144 83.033 307.928 83.2946C308.713 83.5562 308.716 84.1902 307.934 84.7019C307.166 85.2172 305.917 85.4341 305.132 85.1725Z\" fill=\"#1E4ED8\"/>\\n</g>\\n</g>\\n<path d=\"M297.265 74.8179C300.332 72.7582 305.659 72.0356 309.163 73.2037L322.406 77.6179C325.91 78.7861 326.265 81.4028 323.199 83.4624L311.611 91.2453C308.544 93.305 303.217 94.0276 299.713 92.8595L286.47 88.4453C282.966 87.2771 282.611 84.6604 285.677 82.6008L297.265 74.8179Z\" stroke=\"#1E4ED8\" stroke-width=\"0.581624\"/>\\n<g clip-path=\"url(#clip5_439_14217)\">\\n<path d=\"M330.096 85.7616C333.296 83.6124 338.854 82.8583 342.511 84.0772L355.754 88.4914C359.41 89.7104 359.781 92.4408 356.581 94.59L344.993 102.373C341.793 104.522 336.235 105.276 332.578 104.057L319.335 99.643C315.678 98.4241 315.308 95.6937 318.508 93.5445L330.096 85.7616Z\" fill=\"#040A1F\"/>\\n<g clip-path=\"url(#clip6_439_14217)\">\\n<path d=\"M348.125 91.2861L339.518 88.4169C337.933 87.8887 335.524 88.2154 334.138 89.1467L326.606 94.2056C325.219 95.137 325.379 96.3201 326.964 96.8484L335.572 99.7176C337.156 100.246 339.565 99.919 340.952 98.9877L348.484 93.9288C349.871 92.9975 349.71 91.8143 348.125 91.2861Z\" fill=\"#071441\"/>\\n<path d=\"M338.394 90.0044L345.343 92.321L336.695 98.1294L335.675 97.7893L339.637 95.1287L339.627 95.1254C340.609 94.3525 340.415 93.4257 339.135 92.9989C337.854 92.5721 335.945 92.7978 334.737 93.4955L334.727 93.4922L330.766 96.1528L329.746 95.8127L338.394 90.0044Z\" fill=\"#1E4ED8\"/>\\n<path d=\"M335.317 90.2134L334.504 91.1759L334.855 91.2928L329.889 94.628C329.713 94.5693 329.446 94.6056 329.292 94.7091L328.957 94.9339L328.893 94.9126C328.717 94.854 328.449 94.8903 328.295 94.9937L327.961 95.2186L331.531 96.4088L331.866 96.1839C332.02 96.0805 332.002 95.949 331.826 95.8903L331.762 95.8691L332.097 95.6442C332.251 95.5407 332.233 95.4093 332.057 95.3506L331.675 95.2231L337.868 91.0635L335.317 90.2134Z\" fill=\"#1E4ED8\"/>\\n<path d=\"M336.967 96.9866C336.791 96.9279 336.524 96.9642 336.369 97.0677L336.035 97.2925L335.971 97.2713C335.795 97.2126 335.527 97.2489 335.373 97.3524L335.038 97.5772L338.609 98.7674L338.944 98.5426C339.098 98.4391 339.08 98.3076 338.904 98.2489L338.84 98.2277L339.175 98.0028C339.329 97.8994 339.311 97.7679 339.135 97.7092L344.101 94.3741L344.451 94.491L346.093 93.8047L343.543 92.9546L337.35 97.1141L336.967 96.9866Z\" fill=\"#1E4ED8\"/>\\n</g>\\n</g>\\n<path d=\"M330.372 85.8535C333.438 83.7939 338.765 83.0712 342.27 84.2394L355.512 88.6536C359.017 89.8217 359.372 92.4384 356.305 94.498L344.717 102.281C341.651 104.341 336.324 105.063 332.819 103.895L319.577 99.4809C316.072 98.3127 315.717 95.6961 318.784 93.6365L330.372 85.8535Z\" stroke=\"#1E4ED8\" stroke-width=\"0.581624\"/>\\n<g clip-path=\"url(#clip7_439_14217)\">\\n<path d=\"M363.203 96.7967C366.403 94.6475 371.962 93.8934 375.618 95.1124L388.861 99.5266C392.518 100.746 392.888 103.476 389.688 105.625L378.101 113.408C374.901 115.557 369.342 116.311 365.685 115.092L352.443 110.678C348.786 109.459 348.415 106.729 351.615 104.58L363.203 96.7967Z\" fill=\"#040A1F\"/>\\n<g clip-path=\"url(#clip8_439_14217)\">\\n<path d=\"M364.375 109.319C368.337 110.639 374.359 109.822 377.825 107.494C381.292 105.166 380.891 102.208 376.929 100.887C372.967 99.5666 366.946 100.384 363.479 102.712C360.013 105.04 360.414 107.998 364.375 109.319Z\" fill=\"#071441\"/>\\n<path d=\"M367.876 104.638L366.666 106.306C366.666 106.306 366.579 106.471 366.693 106.509C366.807 106.547 370.045 106.076 370.045 106.076L375.114 104.565L368.439 104.291L367.876 104.638Z\" fill=\"#1E4ED8\"/>\\n<path d=\"M368.475 105.37L366.792 106.336C366.792 106.336 366.258 106.626 367.256 106.49C368.253 106.355 369.121 106.284 369.121 106.284\" fill=\"#2040AF\"/>\\n<path d=\"M367.818 104.693L366.567 103.774C366.567 103.774 366.432 103.655 366.668 103.564C366.716 103.545 366.774 103.535 366.908 103.528C367.533 103.499 376.46 104.328 376.46 104.328C376.46 104.328 376.709 104.354 376.784 104.417C376.805 104.431 376.816 104.449 376.817 104.468C376.818 104.488 376.808 104.508 376.789 104.527C376.757 104.56 376.717 104.593 376.669 104.623C376.629 104.649 376.587 104.671 376.526 104.708C375.901 105.087 370.304 107.602 370.304 107.602C370.304 107.602 369.975 107.748 369.701 107.666C369.634 107.645 369.579 107.617 369.539 107.583C369.498 107.549 369.474 107.51 369.467 107.467C369.338 107.03 368.597 105.72 368.432 105.431C368.428 105.424 368.428 105.417 368.43 105.41C368.433 105.402 368.438 105.395 368.446 105.388C368.465 105.37 368.526 105.36 368.526 105.36C368.526 105.36 374.097 104.767 374.437 104.623C374.463 104.612 374.448 104.597 374.407 104.592C374.132 104.568 368.53 104.704 367.911 104.719C367.875 104.715 367.843 104.706 367.818 104.693Z\" fill=\"#2040AF\"/>\\n</g>\\n</g>\\n<path d=\"M363.479 96.8887C366.546 94.829 371.872 94.1064 375.377 95.2745L388.62 99.6887C392.124 100.857 392.479 103.474 389.413 105.533L377.825 113.316C374.758 115.376 369.431 116.098 365.927 114.93L352.684 110.516C349.18 109.348 348.825 106.731 351.891 104.672L363.479 96.8887Z\" stroke=\"#1E4ED8\" stroke-width=\"0.581624\"/>\\n<g clip-path=\"url(#clip9_439_14217)\">\\n<path d=\"M396.309 107.832C399.509 105.683 405.067 104.929 408.724 106.148L421.967 110.562C425.623 111.781 425.994 114.512 422.794 116.661L411.206 124.444C408.006 126.593 402.448 127.347 398.791 126.128L385.548 121.714C381.891 120.495 381.521 117.764 384.721 115.615L396.309 107.832Z\" fill=\"#040A1F\"/>\\n<g clip-path=\"url(#clip10_439_14217)\">\\n<g clip-path=\"url(#clip11_439_14217)\">\\n<path d=\"M405.404 115.943L413.508 114.537L412.556 114.22L405.519 115.44L406.281 112.128L403.067 111.057L401.915 116.065L393.416 117.539L394.368 117.856L401.799 116.568L400.995 120.065L404.208 121.137L405.403 115.942L405.404 115.943ZM402.773 116.399L402.881 115.898L403.735 111.91L405.198 112.397L404.508 115.615L404.4 116.117L403.504 120.3L402.041 119.813L402.773 116.399L402.773 116.399Z\" fill=\"#1E4ED8\"/>\\n</g>\\n</g>\\n</g>\\n<path d=\"M396.584 107.924C399.651 105.865 404.978 105.142 408.482 106.31L421.725 110.724C425.23 111.893 425.585 114.509 422.518 116.569L410.93 124.352C407.864 126.411 402.537 127.134 399.032 125.966L385.789 121.552C382.285 120.384 381.93 117.767 384.997 115.707L396.584 107.924Z\" stroke=\"#1E4ED8\" stroke-width=\"0.581624\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_439_14217\">\\n<rect width=\"487.9\" height=\"227.21\" fill=\"white\" transform=\"translate(0.275391 0.49707)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_439_14217\">\\n<path d=\"M263.883 63.6903C267.083 61.5411 272.641 60.787 276.298 62.0059L289.541 66.4202C293.198 67.6391 293.568 70.3695 290.368 72.5187L278.78 80.3016C275.58 82.4508 270.022 83.2049 266.365 81.986L253.122 77.5718C249.465 76.3528 249.095 73.6224 252.295 71.4732L263.883 63.6903Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip2_439_14217\">\\n<rect width=\"14.7759\" height=\"15.1222\" fill=\"white\" transform=\"matrix(0.948683 0.316228 -0.830139 0.557556 270.6 65.4438)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_439_14217\">\\n<path d=\"M296.989 74.7259C300.189 72.5767 305.748 71.8226 309.405 73.0416L322.647 77.4558C326.304 78.6747 326.674 81.4052 323.475 83.5544L311.887 91.3373C308.687 93.4865 303.128 94.2406 299.471 93.0216L286.229 88.6074C282.572 87.3885 282.201 84.658 285.401 82.5088L296.989 74.7259Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip4_439_14217\">\\n<rect width=\"16.4608\" height=\"12.7957\" fill=\"white\" transform=\"matrix(0.948683 0.316228 -0.830139 0.557556 301.941 76.8618)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_439_14217\">\\n<path d=\"M330.096 85.7616C333.296 83.6124 338.854 82.8583 342.511 84.0772L355.754 88.4914C359.41 89.7104 359.781 92.4408 356.581 94.59L344.993 102.373C341.793 104.522 336.235 105.276 332.578 104.057L319.335 99.643C315.678 98.4241 315.308 95.6937 318.508 93.5445L330.096 85.7616Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip6_439_14217\">\\n<rect width=\"15.1222\" height=\"15.1222\" fill=\"white\" transform=\"matrix(0.948683 0.316228 -0.830139 0.557556 336.648 87.4604)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_439_14217\">\\n<path d=\"M363.203 96.7967C366.403 94.6475 371.962 93.8934 375.618 95.1124L388.861 99.5266C392.518 100.746 392.888 103.476 389.688 105.625L378.101 113.408C374.901 115.557 369.342 116.311 365.685 115.092L352.443 110.678C348.786 109.459 348.415 106.729 351.615 104.58L363.203 96.7967Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip8_439_14217\">\\n<rect width=\"15.1222\" height=\"15.1222\" fill=\"white\" transform=\"matrix(0.948683 0.316228 -0.830139 0.557556 369.756 98.4956)\"/>\\n</clipPath>\\n<clipPath id=\"clip9_439_14217\">\\n<path d=\"M396.309 107.832C399.509 105.683 405.067 104.929 408.724 106.148L421.967 110.562C425.623 111.781 425.994 114.512 422.794 116.661L411.206 124.444C408.006 126.593 402.448 127.347 398.791 126.128L385.548 121.714C381.891 120.495 381.521 117.764 384.721 115.615L396.309 107.832Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip10_439_14217\">\\n<path d=\"M399.964 111.477C401.564 110.402 404.344 110.025 406.172 110.635L413.897 113.21C415.725 113.819 415.911 115.184 414.311 116.259L407.551 120.799C405.951 121.874 403.172 122.251 401.343 121.641L393.618 119.066C391.79 118.457 391.605 117.092 393.205 116.017L399.964 111.477Z\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip11_439_14217\">\\n<rect width=\"11.3765\" height=\"11.6325\" fill=\"white\" transform=\"matrix(0.948683 0.316228 -0.830139 0.557556 403.067 111.057)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',variants:{\"C_Yrqbchu-hover\":{filter:\"brightness(1) saturate(1.2)\",WebkitFilter:\"brightness(1) saturate(1.2)\"}},withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l002ql\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"fxUSDx4V1\",style:{filter:\"brightness(1.5) saturate(0)\",WebkitFilter:\"brightness(1.5) saturate(0)\"},variants:{\"C_Yrqbchu-hover\":{filter:\"brightness(1) saturate(1.2)\",WebkitFilter:\"brightness(1) saturate(1.2)\"}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ddgxkk\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"IfwCCXSKd\",style:{backgroundColor:\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q29tbWl0TW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"CommitMono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(38, 99, 235))\"},children:\"CONNECT\"})}),className:\"framer-xezn01\",\"data-framer-name\":\"CONNECT\",fonts:[\"GF;CommitMono-regular\"],layoutDependency:layoutDependency,layoutId:\"cwj39CjE0\",style:{\"--extracted-r6o4lv\":\"rgb(38, 99, 235)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lrm9la\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:93,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"a6tz_40Z2\",svg:'<svg width=\"6\" height=\"93\" viewBox=\"0 0 6 93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.69336 0.684082C2.69336 0.407939 2.91722 0.184082 3.19336 0.184082C3.4695 0.184082 3.69336 0.40794 3.69336 0.684082V87.6841C3.69336 87.9602 3.4695 88.1841 3.19336 88.1841C2.91722 88.1841 2.69336 87.9602 2.69336 87.6841V0.684082Z\" fill=\"#2663EB\"/>\\n<path d=\"M0.693359 89.6841C0.693359 88.3034 1.81265 87.1841 3.19336 87.1841C4.57407 87.1841 5.69336 88.3034 5.69336 89.6841C5.69336 91.0648 4.57407 92.1841 3.19336 92.1841C1.81265 92.1841 0.693359 91.0648 0.693359 89.6841Z\" fill=\"#2663EB\"/>\\n</svg>\\n',withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-figVu.framer-tfgvfo, .framer-figVu .framer-tfgvfo { display: block; }\",\".framer-figVu.framer-1t1vtbs { cursor: pointer; height: 228px; overflow: visible; position: relative; width: 488px; }\",\".framer-figVu .framer-9jtx9x { bottom: 0px; flex: none; left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-figVu .framer-l002ql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; left: -23px; overflow: visible; padding: 0px; position: absolute; top: -15px; width: min-content; }\",\".framer-figVu .framer-1ddgxkk { 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: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-figVu .framer-xezn01 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-figVu .framer-lrm9la { flex: none; height: 93px; position: relative; width: 6px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-figVu .framer-l002ql, .framer-figVu .framer-1ddgxkk { gap: 0px; } .framer-figVu .framer-l002ql > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-figVu .framer-l002ql > :first-child { margin-top: 0px; } .framer-figVu .framer-l002ql > :last-child { margin-bottom: 0px; } .framer-figVu .framer-1ddgxkk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-figVu .framer-1ddgxkk > :first-child { margin-left: 0px; } .framer-figVu .framer-1ddgxkk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 228\n * @framerIntrinsicWidth 488\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"M8aQ_IFQE\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYaNrgy4wf=withCSS(Component,css,\"framer-figVu\");export default FramerYaNrgy4wf;FramerYaNrgy4wf.displayName=\"Home / Connect Hero Asset\";FramerYaNrgy4wf.defaultProps={height:228,width:488};addFonts(FramerYaNrgy4wf,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYaNrgy4wf\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"228\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"488\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M8aQ_IFQE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YaNrgy4wf.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={yy1ncXI6T:{hover:true}};const serializationHash=\"framer-VtHVL\";const variantClassNames={yy1ncXI6T:\"framer-v-1i7vnaa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"yy1ncXI6T\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i7vnaa\",className,classNames),\"data-framer-name\":\"Desktop: Connect / Sign In\",layoutDependency:layoutDependency,layoutId:\"yy1ncXI6T\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"yy1ncXI6T-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-60bmpp\",\"data-framer-name\":\"Engine Color\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:203,intrinsicWidth:401,layoutDependency:layoutDependency,layoutId:\"D8Ps6HP4E\",style:{filter:\"brightness(1.5) saturate(0)\",WebkitFilter:\"brightness(1.5) saturate(0)\"},svg:'<svg width=\"401\" height=\"203\" viewBox=\"0 0 401 203\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M284.589 202.113C285.693 202.113 286.589 201.218 286.589 200.113C286.589 199.009 285.693 198.113 284.589 198.113C283.484 198.113 282.589 199.009 282.589 200.113C282.589 201.218 283.484 202.113 284.589 202.113Z\" fill=\"#5B20B6\"/>\\n<path d=\"M190.817 176.075L108.817 122.075L2.27734 111.285L190.817 176.075ZM190.817 176.075L286.947 6.46875L397.491 157.006L396.844 35.4414L285.199 199.919L190.817 176.075Z\" stroke=\"#5B20B6\" stroke-linejoin=\"round\"/>\\n<path d=\"M398.138 157.653L187.907 95.876L294.032 74.5625L348.671 31.8848L398.138 157.653Z\" stroke=\"#5B20B6\" stroke-linejoin=\"round\"/>\\n<path d=\"M190.817 176.076L106.817 180.076L108.817 122.076L50.0173 13.7257M50.0173 13.7257L187.907 95.8757L234.007 139.766L185.465 2.06836V37.2187L50.0173 13.7257ZM50.0173 13.7257L2.27734 111.286\" stroke=\"#5B20B6\" stroke-linejoin=\"round\"/>\\n<path d=\"M187.908 95.8753L114.918 78.6642M187.908 95.8753L185.342 36.7207L293.65 73.6881M187.908 95.8753L108.818 122.075M114.918 78.6642L50.0176 13.7253L185.306 2L293.65 73.6881M114.918 78.6642L108.818 122.075M293.65 73.6881L283.774 123.685L284.765 201.113L321.798 111.285M293.65 73.6881L321.798 111.285M108.818 122.075L234.008 139.765L321.798 111.285\" stroke=\"#5B20B6\" stroke-linejoin=\"round\"/>\\n<path d=\"M190.817 176.076L234.007 139.766\" stroke=\"#5B20B6\" stroke-miterlimit=\"10\"/>\\n<path d=\"M2.27734 113.285C3.38191 113.285 4.27734 112.39 4.27734 111.285C4.27734 110.181 3.38191 109.285 2.27734 109.285C1.17277 109.285 0.277344 110.181 0.277344 111.285C0.277344 112.39 1.17277 113.285 2.27734 113.285Z\" fill=\"#5B20B6\"/>\\n<path d=\"M106.817 182.075C107.922 182.075 108.817 181.18 108.817 180.075C108.817 178.971 107.922 178.075 106.817 178.075C105.713 178.075 104.817 178.971 104.817 180.075C104.817 181.18 105.713 182.075 106.817 182.075Z\" fill=\"#5B20B6\"/>\\n<path d=\"M190.817 178.075C191.922 178.075 192.817 177.18 192.817 176.075C192.817 174.971 191.922 174.075 190.817 174.075C189.713 174.075 188.817 174.971 188.817 176.075C188.817 177.18 189.713 178.075 190.817 178.075Z\" fill=\"#5B20B6\"/>\\n<path d=\"M321.798 113.518C322.902 113.518 323.798 112.622 323.798 111.518C323.798 110.413 322.902 109.518 321.798 109.518C320.693 109.518 319.798 110.413 319.798 111.518C319.798 112.622 320.693 113.518 321.798 113.518Z\" fill=\"#5B20B6\"/>\\n<path d=\"M348.776 33.8848C349.881 33.8848 350.776 32.9893 350.776 31.8848C350.776 30.7802 349.881 29.8848 348.776 29.8848C347.672 29.8848 346.776 30.7802 346.776 31.8848C346.776 32.9893 347.672 33.8848 348.776 33.8848Z\" fill=\"#5B20B6\"/>\\n<path d=\"M396.796 37.8848C397.9 37.8848 398.796 36.9893 398.796 35.8848C398.796 34.7802 397.9 33.8848 396.796 33.8848C395.691 33.8848 394.796 34.7802 394.796 35.8848C394.796 36.9893 395.691 37.8848 396.796 37.8848Z\" fill=\"#5B20B6\"/>\\n<path d=\"M287.022 8.4834C288.127 8.4834 289.022 7.58797 289.022 6.4834C289.022 5.37883 288.127 4.4834 287.022 4.4834C285.918 4.4834 285.022 5.37883 285.022 6.4834C285.022 7.58797 285.918 8.4834 287.022 8.4834Z\" fill=\"#5B20B6\"/>\\n<path d=\"M398.138 159.653C399.242 159.653 400.138 158.758 400.138 157.653C400.138 156.549 399.242 155.653 398.138 155.653C397.033 155.653 396.138 156.549 396.138 157.653C396.138 158.758 397.033 159.653 398.138 159.653Z\" fill=\"#5B20B6\"/>\\n<path d=\"M115.062 80.7305C116.167 80.7305 117.062 79.835 117.062 78.7305C117.062 77.6259 116.167 76.7305 115.062 76.7305C113.958 76.7305 113.062 77.6259 113.062 78.7305C113.062 79.835 113.958 80.7305 115.062 80.7305Z\" fill=\"#5B20B6\"/>\\n<path d=\"M109.022 123.614C110.127 123.614 111.022 122.719 111.022 121.614C111.022 120.51 110.127 119.614 109.022 119.614C107.918 119.614 107.022 120.51 107.022 121.614C107.022 122.719 107.918 123.614 109.022 123.614Z\" fill=\"#5B20B6\"/>\\n<path d=\"M50.0176 15.498C51.1221 15.498 52.0176 14.6026 52.0176 13.498C52.0176 12.3935 51.1221 11.498 50.0176 11.498C48.913 11.498 48.0176 12.3935 48.0176 13.498C48.0176 14.6026 48.913 15.498 50.0176 15.498Z\" fill=\"#5B20B6\"/>\\n<path d=\"M185.907 4C187.012 4 187.907 3.10457 187.907 2C187.907 0.89543 187.012 0 185.907 0C184.803 0 183.907 0.89543 183.907 2C183.907 3.10457 184.803 4 185.907 4Z\" fill=\"#5B20B6\"/>\\n<path d=\"M283.611 125.726C284.716 125.726 285.611 124.83 285.611 123.726C285.611 122.621 284.716 121.726 283.611 121.726C282.507 121.726 281.611 122.621 281.611 123.726C281.611 124.83 282.507 125.726 283.611 125.726Z\" fill=\"#5B20B6\"/>\\n<path d=\"M293.022 76.4043C294.127 76.4043 295.022 75.5089 295.022 74.4043C295.022 73.2997 294.127 72.4043 293.022 72.4043C291.918 72.4043 291.022 73.2997 291.022 74.4043C291.022 75.5089 291.918 76.4043 293.022 76.4043Z\" fill=\"#5B20B6\"/>\\n<path d=\"M234.008 141.995C235.112 141.995 236.008 141.1 236.008 139.995C236.008 138.891 235.112 137.995 234.008 137.995C232.903 137.995 232.008 138.891 232.008 139.995C232.008 141.1 232.903 141.995 234.008 141.995Z\" fill=\"#5B20B6\"/>\\n<path d=\"M287.022 6.4834L347.536 31.475C348.322 31.7998 349.156 31.9971 350.005 32.0593L396.795 35.4899\" stroke=\"#5B20B6\"/>\\n</svg>\\n',variants:{\"yy1ncXI6T-hover\":{filter:\"brightness(1) saturate(1.2)\",WebkitFilter:\"brightness(1) saturate(1.2)\"}},withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zei632\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"LWPiGBAS7\",style:{filter:\"brightness(1.5) saturate(0)\",WebkitFilter:\"brightness(1.5) saturate(0)\"},transformTemplate:transformTemplate1,variants:{\"yy1ncXI6T-hover\":{filter:\"brightness(1) saturate(1.2)\",WebkitFilter:\"brightness(1) saturate(1.2)\"}},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zwln77\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:73,intrinsicWidth:6,layoutDependency:layoutDependency,layoutId:\"Q43jcPYGQ\",svg:'<svg width=\"6\" height=\"73\" viewBox=\"0 0 6 73\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.05469 5.31592C2.05469 5.03978 2.27855 4.81592 2.55469 4.81592C2.83083 4.81592 3.05469 5.03978 3.05469 5.31592V72.3159C3.05469 72.5921 2.83083 72.8159 2.55469 72.8159C2.27855 72.8159 2.05469 72.5921 2.05469 72.3159V5.31592Z\" fill=\"#6D26D9\"/>\\n<path d=\"M0.0546875 3.31592C0.0546875 1.93521 1.17398 0.815918 2.55469 0.815918C3.9354 0.815918 5.05469 1.93521 5.05469 3.31592C5.05469 4.69663 3.9354 5.81592 2.55469 5.81592C1.17398 5.81592 0.0546875 4.69663 0.0546875 3.31592Z\" fill=\"#6D26D9\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wo66q\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"b07RMiEdm\",style:{backgroundColor:\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Q29tbWl0TW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"CommitMono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(109, 38, 217))\"},children:\"ENGINE\"})}),className:\"framer-1sz74ko\",\"data-framer-name\":\"ENGINE\",fonts:[\"GF;CommitMono-regular\"],layoutDependency:layoutDependency,layoutId:\"ytifIARaP\",style:{\"--extracted-r6o4lv\":\"rgb(109, 38, 217)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VtHVL.framer-1n1897b, .framer-VtHVL .framer-1n1897b { display: block; }\",\".framer-VtHVL.framer-1i7vnaa { cursor: pointer; height: 203px; overflow: visible; position: relative; width: 401px; }\",\".framer-VtHVL .framer-60bmpp { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-VtHVL .framer-zei632 { align-content: center; align-items: center; bottom: -74px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; left: 48%; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-VtHVL .framer-zwln77 { flex: none; height: 73px; position: relative; width: 6px; }\",\".framer-VtHVL .framer-9wo66q { 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: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-VtHVL .framer-1sz74ko { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VtHVL .framer-zei632, .framer-VtHVL .framer-9wo66q { gap: 0px; } .framer-VtHVL .framer-zei632 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-VtHVL .framer-zei632 > :first-child { margin-top: 0px; } .framer-VtHVL .framer-zei632 > :last-child { margin-bottom: 0px; } .framer-VtHVL .framer-9wo66q > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-VtHVL .framer-9wo66q > :first-child { margin-left: 0px; } .framer-VtHVL .framer-9wo66q > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 203\n * @framerIntrinsicWidth 401\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JXIPSNOsY\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryvbiKMT7t=withCSS(Component,css,\"framer-VtHVL\");export default FrameryvbiKMT7t;FrameryvbiKMT7t.displayName=\"Home / Engine Hero Asset\";FrameryvbiKMT7t.defaultProps={height:203,width:401};addFonts(FrameryvbiKMT7t,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryvbiKMT7t\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JXIPSNOsY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"203\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"401\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yvbiKMT7t.map", "// Generated by Framer (b6cf623)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import HomeContractsHeroAsset from\"https://framerusercontent.com/modules/c7ofaKgVe0e7JHsONNvJ/fosZnbLraIXesYjZkm6w/GTtxNe6jv.js\";import NebulaSwapHero from\"https://framerusercontent.com/modules/ts4xAkyZqwXV0IOXTT1H/c5aqK3HJ9rBgXp98UlYG/rG2bsOETx.js\";import HomeConnectHeroAsset from\"https://framerusercontent.com/modules/31b2ixr4ZETP0dQBYEAN/vY84NZgZpljyfLm9vGB6/YaNrgy4wf.js\";import HomeEngineHeroAsset from\"https://framerusercontent.com/modules/YiV9WXkx0cDhqfJBgxQU/RKkWr82ZGA7srFQLmMHU/yvbiKMT7t.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const HomeEngineHeroAssetFonts=getFonts(HomeEngineHeroAsset);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const HomeContractsHeroAssetFonts=getFonts(HomeContractsHeroAsset);const HomeConnectHeroAssetFonts=getFonts(HomeConnectHeroAsset);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const NebulaSwapHeroFonts=getFonts(NebulaSwapHero);const cycleOrder=[\"eqjmYO2iY\",\"e7VOIJVzJ\",\"lcdtvc8q_\",\"CkwfORWuh\",\"VEu4NSob6\",\"IJpACZeQ0\",\"mxFxfCs7N\",\"dV04X605P\",\"mtrNX8bpQ\",\"p3gcNyjKV\",\"h_x8aSnTc\",\"lh2JT_odC\",\"zJpyswde7\",\"UB8I5ja0e\",\"jJDYm_vDJ\",\"JcYSBLoQV\",\"if75caNG1\",\"TFPMljFOA\",\"sqMes8rwf\",\"RghOnyH8l\",\"oXmRrICTi\",\"IE8VJAwx9\",\"V6GrSmkWQ\",\"apJv3IXAY\",\"kSz32M85D\",\"j88hlsATo\",\"dEG3lNoms\",\"NriW4YQh8\",\"B1oazAVgH\",\"gdaro8Vow\",\"J9UEfnLwV\",\"eXOXjJTTc\",\"TqVeiQfDv\",\"dZVtzj9Pm\",\"X8iJkR4nI\",\"wENaJvaoL\",\"lmrNjhBnI\",\"GVrdrZUhD\",\"LCqfg85ZN\",\"KAm4Iz97I\",\"RQxmr7OBE\",\"zMyRewCuk\",\"feSdTcYCC\",\"V2EIeycJI\",\"Y3tMT11W4\",\"ZaFdWB6He\",\"F_iygkKGr\",\"GA175OLpZ\",\"enkFpwD0T\",\"axeCK8Oqq\",\"mHL_Abx7h\",\"nHlV05vZw\",\"RthNQ8ubL\",\"SiELG_nrf\",\"EbksMd9ik\",\"gPhg4ywy2\",\"upI3SgLGr\",\"tSNdXUXVa\",\"tR6UbfD2k\",\"CCTFo2Qhx\",\"vbH2FtAdB\",\"NrUIHqtWD\",\"sLMOJw_YU\"];const serializationHash=\"framer-qMDGv\";const variantClassNames={apJv3IXAY:\"framer-v-1xv41jl\",axeCK8Oqq:\"framer-v-x6mn5z\",B1oazAVgH:\"framer-v-16hq6e6\",CCTFo2Qhx:\"framer-v-178ff7t\",CkwfORWuh:\"framer-v-1umzwym\",dEG3lNoms:\"framer-v-ifhdme\",dV04X605P:\"framer-v-d4de0m\",dZVtzj9Pm:\"framer-v-6x5w0\",e7VOIJVzJ:\"framer-v-3su90t\",EbksMd9ik:\"framer-v-7n4uuj\",enkFpwD0T:\"framer-v-5bxeh0\",eqjmYO2iY:\"framer-v-1vpuw5f\",eXOXjJTTc:\"framer-v-cd56lh\",F_iygkKGr:\"framer-v-u6em4u\",feSdTcYCC:\"framer-v-anieln\",GA175OLpZ:\"framer-v-19gvlsw\",gdaro8Vow:\"framer-v-arzj2f\",gPhg4ywy2:\"framer-v-jj5oxm\",GVrdrZUhD:\"framer-v-1tm3fba\",h_x8aSnTc:\"framer-v-tpo70o\",IE8VJAwx9:\"framer-v-11lvszr\",if75caNG1:\"framer-v-1xfr5rz\",IJpACZeQ0:\"framer-v-rcta9e\",j88hlsATo:\"framer-v-1bjusbr\",J9UEfnLwV:\"framer-v-18szf4i\",JcYSBLoQV:\"framer-v-o4zbj5\",jJDYm_vDJ:\"framer-v-15w8387\",KAm4Iz97I:\"framer-v-1hiapky\",kSz32M85D:\"framer-v-1raxdwy\",lcdtvc8q_:\"framer-v-vtsfv5\",LCqfg85ZN:\"framer-v-12je8by\",lh2JT_odC:\"framer-v-1h5vbxl\",lmrNjhBnI:\"framer-v-1wlcdi2\",mHL_Abx7h:\"framer-v-1x2el1q\",mtrNX8bpQ:\"framer-v-1wa9tls\",mxFxfCs7N:\"framer-v-1su9rzx\",nHlV05vZw:\"framer-v-12s2hm9\",NriW4YQh8:\"framer-v-1qoa3ji\",NrUIHqtWD:\"framer-v-1hrk5bj\",oXmRrICTi:\"framer-v-1mzcsgy\",p3gcNyjKV:\"framer-v-12hc1c1\",RghOnyH8l:\"framer-v-uqsn5r\",RQxmr7OBE:\"framer-v-bn1647\",RthNQ8ubL:\"framer-v-ib3fmn\",SiELG_nrf:\"framer-v-1brb0q5\",sLMOJw_YU:\"framer-v-px7w4q\",sqMes8rwf:\"framer-v-bety99\",TFPMljFOA:\"framer-v-lpcczk\",TqVeiQfDv:\"framer-v-1aphoc\",tR6UbfD2k:\"framer-v-1ogm8oq\",tSNdXUXVa:\"framer-v-7ogt8r\",UB8I5ja0e:\"framer-v-qmhu3\",upI3SgLGr:\"framer-v-3en1i3\",V2EIeycJI:\"framer-v-b4hxj1\",V6GrSmkWQ:\"framer-v-ycdufb\",vbH2FtAdB:\"framer-v-72yqff\",VEu4NSob6:\"framer-v-1lxjgg7\",wENaJvaoL:\"framer-v-1nrvv0w\",X8iJkR4nI:\"framer-v-3awm3q\",Y3tMT11W4:\"framer-v-10vwe9y\",ZaFdWB6He:\"framer-v-s6b7b8\",zJpyswde7:\"framer-v-1t0qphs\",zMyRewCuk:\"framer-v-jdatvi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={bounce:.2,delay:.7,duration:.7,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.65,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:0,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={bounce:0,delay:.1,duration:.4,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={bounce:0,delay:.2,duration:.4,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={bounce:0,delay:.3,duration:.4,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={bounce:0,delay:.4,duration:.4,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={bounce:0,delay:.5,duration:.4,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={bounce:0,delay:.6,duration:.4,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={bounce:.1,delay:0,duration:.4,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation14={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:200};const transition12={bounce:.1,delay:.3,duration:.4,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-200};const transition13={bounce:.1,delay:.6,duration:.4,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={bounce:.1,delay:.9,duration:.4,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const transition15={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop: AA\":\"ZaFdWB6He\",\"Desktop: Auth\":\"tSNdXUXVa\",\"Desktop: Connect / Sign In\":\"eqjmYO2iY\",\"Desktop: Contracts / Deploy\":\"zJpyswde7\",\"Desktop: Contracts / Explore\":\"lh2JT_odC\",\"Desktop: Contracts\":\"J9UEfnLwV\",\"Desktop: Ecosystem\":\"lmrNjhBnI\",\"Desktop: Engine\":\"JcYSBLoQV\",\"Desktop: Faucets\":\"EbksMd9ik\",\"Desktop: Home\":\"CkwfORWuh\",\"Desktop: In-app Wallets\":\"vbH2FtAdB\",\"Desktop: Insight\":\"KAm4Iz97I\",\"Desktop: Learn\":\"enkFpwD0T\",\"Desktop: Modular Contracts\":\"e7VOIJVzJ\",\"Desktop: Nebula\":\"dZVtzj9Pm\",\"Desktop: Placeholder\":\"dV04X605P\",\"Desktop: Soltuons / Consumer Apps\":\"UB8I5ja0e\",\"Desktop: Solutions / Defi\":\"jJDYm_vDJ\",\"Desktop: Solutions / Gaming\":\"if75caNG1\",\"Desktop: Storage\":\"nHlV05vZw\",\"Desktop: Superchain\":\"feSdTcYCC\",\"Mobile: AA\":\"GA175OLpZ\",\"Mobile: Auth\":\"CCTFo2Qhx\",\"Mobile: Connect / Sign In\":\"gdaro8Vow\",\"Mobile: Contracts / Deploy\":\"sqMes8rwf\",\"Mobile: Contracts / Explore\":\"oXmRrICTi\",\"Mobile: Contracts\":\"TqVeiQfDv\",\"Mobile: Ecosystem\":\"LCqfg85ZN\",\"Mobile: Engine\":\"B1oazAVgH\",\"Mobile: Faucets\":\"upI3SgLGr\",\"Mobile: Home\":\"mxFxfCs7N\",\"Mobile: In-app Wallets\":\"sLMOJw_YU\",\"Mobile: Insight\":\"zMyRewCuk\",\"Mobile: Learn\":\"mHL_Abx7h\",\"Mobile: Modular Contracts\":\"lcdtvc8q_\",\"Mobile: Nebula\":\"wENaJvaoL\",\"Mobile: Solutions / Consumer Apps\":\"V6GrSmkWQ\",\"Mobile: Solutions / Defi\":\"kSz32M85D\",\"Mobile: Solutions / Gaming\":\"dEG3lNoms\",\"Mobile: Storage\":\"SiELG_nrf\",\"Mobile: Superchain\":\"Y3tMT11W4\",\"Phone: Placeholder\":\"p3gcNyjKV\",\"Tablet: AA\":\"F_iygkKGr\",\"Tablet: Auth\":\"tR6UbfD2k\",\"Tablet: Connect / Sign In\":\"VEu4NSob6\",\"Tablet: Contracts / Deploy\":\"TFPMljFOA\",\"Tablet: Contracts / Explore\":\"RghOnyH8l\",\"Tablet: Contracts\":\"eXOXjJTTc\",\"Tablet: Ecosystem\":\"GVrdrZUhD\",\"Tablet: Engine\":\"NriW4YQh8\",\"Tablet: Faucets\":\"gPhg4ywy2\",\"Tablet: Home\":\"IJpACZeQ0\",\"Tablet: In-app Wallets\":\"NrUIHqtWD\",\"Tablet: Insight\":\"RQxmr7OBE\",\"Tablet: Learn\":\"axeCK8Oqq\",\"Tablet: Modular Contracts\":\"h_x8aSnTc\",\"Tablet: Nebula\":\"X8iJkR4nI\",\"Tablet: Placeholder\":\"mtrNX8bpQ\",\"Tablet: Solutions / Consumer Apps\":\"IE8VJAwx9\",\"Tablet: Solutions / Defi\":\"apJv3IXAY\",\"Tablet: Solutions / Gaming\":\"j88hlsATo\",\"Tablet: Storage\":\"RthNQ8ubL\",\"Tablet: Superchain\":\"V2EIeycJI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eqjmYO2iY\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eqjmYO2iY\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"e7VOIJVzJ\",\"lcdtvc8q_\",\"CkwfORWuh\",\"IJpACZeQ0\",\"mxFxfCs7N\",\"dV04X605P\",\"mtrNX8bpQ\",\"p3gcNyjKV\",\"h_x8aSnTc\",\"lh2JT_odC\",\"zJpyswde7\",\"UB8I5ja0e\",\"jJDYm_vDJ\",\"JcYSBLoQV\",\"if75caNG1\",\"TFPMljFOA\",\"sqMes8rwf\",\"RghOnyH8l\",\"oXmRrICTi\",\"IE8VJAwx9\",\"V6GrSmkWQ\",\"apJv3IXAY\",\"kSz32M85D\",\"j88hlsATo\",\"dEG3lNoms\",\"NriW4YQh8\",\"B1oazAVgH\",\"J9UEfnLwV\",\"eXOXjJTTc\",\"TqVeiQfDv\",\"dZVtzj9Pm\",\"X8iJkR4nI\",\"wENaJvaoL\",\"lmrNjhBnI\",\"GVrdrZUhD\",\"LCqfg85ZN\",\"KAm4Iz97I\",\"RQxmr7OBE\",\"zMyRewCuk\",\"feSdTcYCC\",\"V2EIeycJI\",\"Y3tMT11W4\",\"ZaFdWB6He\",\"F_iygkKGr\",\"GA175OLpZ\",\"enkFpwD0T\",\"axeCK8Oqq\",\"mHL_Abx7h\",\"nHlV05vZw\",\"RthNQ8ubL\",\"SiELG_nrf\",\"EbksMd9ik\",\"gPhg4ywy2\",\"upI3SgLGr\",\"tSNdXUXVa\",\"tR6UbfD2k\",\"CCTFo2Qhx\",\"vbH2FtAdB\",\"NrUIHqtWD\",\"sLMOJw_YU\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"CkwfORWuh\",\"IJpACZeQ0\",\"mxFxfCs7N\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"zJpyswde7\",\"TFPMljFOA\",\"sqMes8rwf\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"if75caNG1\",\"j88hlsATo\",\"dEG3lNoms\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"JcYSBLoQV\",\"NriW4YQh8\",\"B1oazAVgH\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"lh2JT_odC\",\"RghOnyH8l\",\"oXmRrICTi\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"UB8I5ja0e\",\"IE8VJAwx9\",\"V6GrSmkWQ\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"jJDYm_vDJ\",\"apJv3IXAY\",\"kSz32M85D\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if([\"e7VOIJVzJ\",\"lcdtvc8q_\",\"h_x8aSnTc\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if([\"J9UEfnLwV\",\"eXOXjJTTc\",\"TqVeiQfDv\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"lmrNjhBnI\",\"GVrdrZUhD\",\"LCqfg85ZN\",\"KAm4Iz97I\",\"RQxmr7OBE\",\"zMyRewCuk\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"dZVtzj9Pm\",\"X8iJkR4nI\",\"wENaJvaoL\"].includes(baseVariant))return true;return false;};const isDisplayed12=()=>{if([\"feSdTcYCC\",\"V2EIeycJI\",\"Y3tMT11W4\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1vpuw5f\",className,classNames),\"data-framer-name\":\"Desktop: Connect / Sign In\",layoutDependency:layoutDependency,layoutId:\"eqjmYO2iY\",ref:ref??ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{apJv3IXAY:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},axeCK8Oqq:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},B1oazAVgH:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},CCTFo2Qhx:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},dEG3lNoms:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},dV04X605P:{background:\"linear-gradient(180deg, var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15)) 0%, var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15)) 100%)\",backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},dZVtzj9Pm:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},EbksMd9ik:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},enkFpwD0T:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},eXOXjJTTc:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},F_iygkKGr:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},feSdTcYCC:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},GA175OLpZ:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},gdaro8Vow:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},gPhg4ywy2:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},GVrdrZUhD:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},h_x8aSnTc:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},IE8VJAwx9:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},if75caNG1:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},j88hlsATo:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},J9UEfnLwV:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},JcYSBLoQV:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},jJDYm_vDJ:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},KAm4Iz97I:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},kSz32M85D:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},LCqfg85ZN:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},lh2JT_odC:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},lmrNjhBnI:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},mHL_Abx7h:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},mtrNX8bpQ:{background:\"linear-gradient(180deg, var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15)) 0%, var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15)) 100%)\",backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},mxFxfCs7N:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},nHlV05vZw:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},NriW4YQh8:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},NrUIHqtWD:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},oXmRrICTi:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},p3gcNyjKV:{background:\"linear-gradient(180deg, var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15)) 0%, var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15)) 100%)\",backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},RghOnyH8l:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},RQxmr7OBE:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},RthNQ8ubL:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},SiELG_nrf:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},sLMOJw_YU:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},sqMes8rwf:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},TFPMljFOA:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},TqVeiQfDv:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},tR6UbfD2k:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},tSNdXUXVa:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},UB8I5ja0e:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},upI3SgLGr:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},V2EIeycJI:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},V6GrSmkWQ:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},vbH2FtAdB:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},wENaJvaoL:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},X8iJkR4nI:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Y3tMT11W4:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},ZaFdWB6He:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},zJpyswde7:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},zMyRewCuk:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}},...addPropertyOverrides({apJv3IXAY:{\"data-framer-name\":\"Tablet: Solutions / Defi\"},axeCK8Oqq:{\"data-framer-name\":\"Tablet: Learn\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/ji3TCa8jZnGJS7CJsct4aV4zs.png\"}},B1oazAVgH:{\"data-framer-name\":\"Mobile: Engine\"},CCTFo2Qhx:{\"data-framer-name\":\"Mobile: Auth\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/np3oABykUkleemnGo91L8suMMik.png\"}},CkwfORWuh:{\"data-framer-name\":\"Desktop: Home\"},dEG3lNoms:{\"data-framer-name\":\"Mobile: Solutions / Gaming\"},dV04X605P:{\"data-framer-name\":\"Desktop: Placeholder\"},dZVtzj9Pm:{\"data-framer-name\":\"Desktop: Nebula\"},e7VOIJVzJ:{\"data-framer-name\":\"Desktop: Modular Contracts\"},EbksMd9ik:{\"data-framer-name\":\"Desktop: Faucets\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/gWVbmA5spbBaZr116mjSww7yLwE.png\"}},enkFpwD0T:{\"data-framer-name\":\"Desktop: Learn\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/ji3TCa8jZnGJS7CJsct4aV4zs.png\"}},eXOXjJTTc:{\"data-framer-name\":\"Tablet: Contracts\"},F_iygkKGr:{\"data-framer-name\":\"Tablet: AA\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/wKmUkRY4Moivb61NRanJ4r6nf8s.png\"}},feSdTcYCC:{\"data-framer-name\":\"Desktop: Superchain\"},GA175OLpZ:{\"data-framer-name\":\"Mobile: AA\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/wKmUkRY4Moivb61NRanJ4r6nf8s.png\"}},gdaro8Vow:{\"data-framer-name\":\"Mobile: Connect / Sign In\"},gPhg4ywy2:{\"data-framer-name\":\"Tablet: Faucets\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/KGe9JAAIpSNnXBAxSAuSxtFylE.png\"}},GVrdrZUhD:{\"data-framer-name\":\"Tablet: Ecosystem\"},h_x8aSnTc:{\"data-framer-name\":\"Tablet: Modular Contracts\"},IE8VJAwx9:{\"data-framer-name\":\"Tablet: Solutions / Consumer Apps\"},if75caNG1:{\"data-framer-name\":\"Desktop: Solutions / Gaming\"},IJpACZeQ0:{\"data-framer-name\":\"Tablet: Home\"},j88hlsATo:{\"data-framer-name\":\"Tablet: Solutions / Gaming\"},J9UEfnLwV:{\"data-framer-name\":\"Desktop: Contracts\"},JcYSBLoQV:{\"data-framer-name\":\"Desktop: Engine\"},jJDYm_vDJ:{\"data-framer-name\":\"Desktop: Solutions / Defi\"},KAm4Iz97I:{\"data-framer-name\":\"Desktop: Insight\"},kSz32M85D:{\"data-framer-name\":\"Mobile: Solutions / Defi\"},lcdtvc8q_:{\"data-framer-name\":\"Mobile: Modular Contracts\"},LCqfg85ZN:{\"data-framer-name\":\"Mobile: Ecosystem\"},lh2JT_odC:{\"data-framer-name\":\"Desktop: Contracts / Explore\"},lmrNjhBnI:{\"data-framer-name\":\"Desktop: Ecosystem\"},mHL_Abx7h:{\"data-framer-name\":\"Mobile: Learn\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/ji3TCa8jZnGJS7CJsct4aV4zs.png\"}},mtrNX8bpQ:{\"data-framer-name\":\"Tablet: Placeholder\"},mxFxfCs7N:{\"data-framer-name\":\"Mobile: Home\"},nHlV05vZw:{\"data-framer-name\":\"Desktop: Storage\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/BwG86cPkzOt4iLq19C3BlOyByk4.png\"}},NriW4YQh8:{\"data-framer-name\":\"Tablet: Engine\"},NrUIHqtWD:{\"data-framer-name\":\"Tablet: In-app Wallets\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/eqhp5jSfwBUPI9UuLDrzAe94.png\"}},oXmRrICTi:{\"data-framer-name\":\"Mobile: Contracts / Explore\"},p3gcNyjKV:{\"data-framer-name\":\"Phone: Placeholder\"},RghOnyH8l:{\"data-framer-name\":\"Tablet: Contracts / Explore\"},RQxmr7OBE:{\"data-framer-name\":\"Tablet: Insight\"},RthNQ8ubL:{\"data-framer-name\":\"Tablet: Storage\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/BwG86cPkzOt4iLq19C3BlOyByk4.png\"}},SiELG_nrf:{\"data-framer-name\":\"Mobile: Storage\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/BwG86cPkzOt4iLq19C3BlOyByk4.png\"}},sLMOJw_YU:{\"data-framer-name\":\"Mobile: In-app Wallets\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/eqhp5jSfwBUPI9UuLDrzAe94.png\"}},sqMes8rwf:{\"data-framer-name\":\"Mobile: Contracts / Deploy\"},TFPMljFOA:{\"data-framer-name\":\"Tablet: Contracts / Deploy\"},TqVeiQfDv:{\"data-framer-name\":\"Mobile: Contracts\"},tR6UbfD2k:{\"data-framer-name\":\"Tablet: Auth\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/np3oABykUkleemnGo91L8suMMik.png\"}},tSNdXUXVa:{\"data-framer-name\":\"Desktop: Auth\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/np3oABykUkleemnGo91L8suMMik.png\"}},UB8I5ja0e:{\"data-framer-name\":\"Desktop: Soltuons / Consumer Apps\"},upI3SgLGr:{\"data-framer-name\":\"Mobile: Faucets\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/KGe9JAAIpSNnXBAxSAuSxtFylE.png\"}},V2EIeycJI:{\"data-framer-name\":\"Tablet: Superchain\"},V6GrSmkWQ:{\"data-framer-name\":\"Mobile: Solutions / Consumer Apps\"},vbH2FtAdB:{\"data-framer-name\":\"Desktop: In-app Wallets\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1824,pixelWidth:1824,src:\"https://framerusercontent.com/images/eqhp5jSfwBUPI9UuLDrzAe94.png\"}},VEu4NSob6:{\"data-framer-name\":\"Tablet: Connect / Sign In\"},wENaJvaoL:{\"data-framer-name\":\"Mobile: Nebula\"},X8iJkR4nI:{\"data-framer-name\":\"Tablet: Nebula\"},Y3tMT11W4:{\"data-framer-name\":\"Mobile: Superchain\"},ZaFdWB6He:{\"data-framer-name\":\"Desktop: AA\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/wKmUkRY4Moivb61NRanJ4r6nf8s.png\"}},zJpyswde7:{\"data-framer-name\":\"Desktop: Contracts / Deploy\"},zMyRewCuk:{\"data-framer-name\":\"Mobile: Insight\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8duv46\",\"data-framer-name\":\"Social Icons Connect\",layoutDependency:layoutDependency,layoutId:\"IWor5WjD2\",style:{scale:1},variants:{gdaro8Vow:{scale:.5},VEu4NSob6:{scale:.6}},children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1jr6gwe\",\"data-framer-appear-id\":\"1jr6gwe\",\"data-framer-name\":\"Google\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"P1Sgg_GnK\",optimized:true,style:{backgroundColor:\"rgba(255, 255, 255, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xapmci\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"rNkjTnRgO\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11ylu6w\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:51,layoutDependency:layoutDependency,layoutId:\"I96:3393;50:1374\",svg:'<svg width=\"51\" height=\"52\" viewBox=\"0 0 51 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_96_3509)\">\\n<path d=\"M50.7844 26.4865C50.7844 24.356 50.6115 22.8014 50.2374 21.1892H25.9102V30.8048H40.1897C39.9019 33.1945 38.3473 36.7932 34.8925 39.2114L34.844 39.5333L42.5359 45.4921L43.0688 45.5453C47.9629 41.0252 50.7844 34.3748 50.7844 26.4865Z\" fill=\"#4285F4\"/>\\n<path d=\"M25.9106 51.8213C32.9064 51.8213 38.7794 49.518 43.0692 45.5451L34.8929 39.2113C32.705 40.7371 29.7683 41.8023 25.9106 41.8023C19.0587 41.8023 13.2433 37.2825 11.1702 31.0352L10.8663 31.061L2.86827 37.2507L2.76367 37.5415C7.0245 46.0056 15.7766 51.8213 25.9106 51.8213Z\" fill=\"#34A853\"/>\\n<path d=\"M11.1703 31.0353C10.6233 29.4231 10.3067 27.6956 10.3067 25.9107C10.3067 24.1257 10.6233 22.3983 11.1415 20.7861L11.127 20.4428L3.0287 14.1536L2.76374 14.2796C1.00765 17.792 0 21.7362 0 25.9107C0 30.0852 1.00765 34.0293 2.76374 37.5417L11.1703 31.0353Z\" fill=\"#FBBC05\"/>\\n<path d=\"M25.9106 10.0187C30.776 10.0187 34.0579 12.1204 35.9294 13.8767L43.2419 6.73678C38.7508 2.56229 32.9064 0 25.9106 0C15.7766 0 7.0245 5.81547 2.76367 14.2796L11.1414 20.7861C13.2433 14.5388 19.0587 10.0187 25.9106 10.0187Z\" fill=\"#EB4335\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_96_3509\">\\n<rect width=\"50.8092\" height=\"52\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-d6u822\",\"data-framer-appear-id\":\"d6u822\",\"data-framer-name\":\"Telegram\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"zxNBvM6Cr\",optimized:true,style:{backgroundColor:\"rgba(52, 172, 225, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d19p60\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"mKGTnEV8J\",style:{borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9opgn2\",\"data-framer-name\":\"Telegram_logo (1) 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"D9zTdpfLS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 80\"><g id=\"ss10370725697_1\"><path d=\"M 0 80 L 0 0 L 80 0 L 80 80 Z\" fill=\"transparent\"></path><g><defs><linearGradient id=\"idss10370725697_3g-2123309147\" x1=\"0.49748743718592964\" x2=\"0.5025125628140703\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(29,147,210)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(56,176,227)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 40 80 C 62.091 80 80 62.091 80 40 C 80 17.909 62.091 0 40 0 C 17.909 0 0 17.909 0 40 C 0 62.091 17.909 80 40 80 Z\" fill=\"url(#idss10370725697_3g-2123309147)\"></path></g><path d=\"M 27.076 42.924 L 31.822 56.059 C 31.822 56.059 32.415 57.288 33.05 57.288 C 33.686 57.288 43.136 47.458 43.136 47.458 L 53.644 27.161 L 27.245 39.533 Z\" fill=\"rgb(200,218,234)\"></path><path d=\"M 33.368 46.293 L 32.457 55.975 C 32.457 55.975 32.076 58.941 35.042 55.975 C 38.008 53.008 40.847 50.72 40.847 50.72\" fill=\"rgb(169,198,216)\"></path><path d=\"M 27.162 43.393 L 17.4 40.212 C 17.4 40.212 16.233 39.739 16.609 38.665 C 16.686 38.444 16.842 38.256 17.309 37.932 C 19.472 36.424 57.344 22.812 57.344 22.812 C 57.344 22.812 58.413 22.452 59.044 22.691 C 59.2 22.74 59.34 22.829 59.451 22.949 C 59.561 23.069 59.638 23.217 59.672 23.376 C 59.74 23.658 59.769 23.948 59.757 24.238 C 59.754 24.489 59.724 24.721 59.701 25.085 C 59.47 28.807 52.567 56.583 52.567 56.583 C 52.567 56.583 52.154 58.208 50.675 58.264 C 50.311 58.276 49.949 58.214 49.609 58.083 C 49.27 57.952 48.961 57.753 48.7 57.5 C 45.796 55.002 35.76 48.258 33.542 46.774 C 33.492 46.74 33.45 46.696 33.419 46.644 C 33.387 46.592 33.367 46.535 33.36 46.474 C 33.329 46.318 33.499 46.124 33.499 46.124 C 33.499 46.124 50.975 30.591 51.44 28.96 C 51.476 28.834 51.34 28.772 51.157 28.827 C 49.996 29.254 29.876 41.96 27.655 43.363 C 27.495 43.411 27.326 43.421 27.162 43.393 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:10370725697,withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1oh4n51\",\"data-framer-appear-id\":\"1oh4n51\",\"data-framer-name\":\"Discord\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"smq4YkpAr\",optimized:true,style:{backgroundColor:\"rgba(88, 101, 242, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14y3mky\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"YW0KgDYDY\",style:{backgroundColor:\"rgb(88, 101, 242)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-59v1yk\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:52,layoutDependency:layoutDependency,layoutId:\"I96:3397;50:1386\",svg:'<svg width=\"52\" height=\"40\" viewBox=\"0 0 52 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_96_3505)\">\\n<path d=\"M43.5891 3.33608C40.2145 1.75713 36.6444 0.635216 32.9733 0C32.516 0.826734 31.9817 1.93869 31.6132 2.82332C27.6551 2.22814 23.7333 2.22814 19.8478 2.82332C19.4796 1.93889 18.9333 0.826734 18.4717 0C14.797 0.635508 11.2238 1.76028 7.84762 3.34432C1.12923 13.4969 -0.692074 23.397 0.218478 33.157C4.67456 36.4846 8.99295 38.5061 13.2386 39.8289C14.2937 38.3779 15.2264 36.8417 16.0271 35.2362C14.5028 34.6558 13.0332 33.9406 11.636 33.0991C12.0037 32.8266 12.3627 32.5425 12.7125 32.2474C21.1793 36.2076 30.3789 36.2076 38.7447 32.2474C39.0961 32.5406 39.455 32.8246 39.8211 33.0991C38.4216 33.9429 36.9493 34.6595 35.4219 35.2404C36.2271 36.8525 37.1582 38.3902 38.2104 39.833C42.4601 38.5104 46.7825 36.4888 51.2386 33.157C52.3071 21.8428 49.4134 12.0336 43.5891 3.33608ZM17.1807 27.1548C14.639 27.1548 12.5546 24.7819 12.5546 21.8925C12.5546 19.003 14.5946 16.6261 17.1807 16.6261C19.767 16.6261 21.8512 18.9988 21.8068 21.8925C21.8108 24.7819 19.767 27.1548 17.1807 27.1548ZM34.2764 27.1548C31.7347 27.1548 29.6504 24.7819 29.6504 21.8925C29.6504 19.003 31.6902 16.6261 34.2764 16.6261C36.8627 16.6261 38.9469 18.9988 38.9025 21.8925C38.9025 24.7819 36.8627 27.1548 34.2764 27.1548Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_96_3505\">\\n<rect width=\"51.4573\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1m9au4z\",\"data-framer-appear-id\":\"1m9au4z\",\"data-framer-name\":\"X\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"JF2kaeKA4\",optimized:true,style:{backgroundColor:\"rgba(82, 82, 82, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e28jqm\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"yFPCS6SQU\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hhdl3i\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"I96:3399;50:1392\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_96_3507)\">\\n<path d=\"M23.2816 16.9286L37.8448 0H34.3938L21.7486 14.6988L11.6488 0H0L15.2728 22.2273L0 39.9795H3.45121L16.8049 24.457L27.471 39.9795H39.1198L23.2808 16.9286H23.2816ZM18.5547 22.4231L17.0072 20.2097L4.69474 2.59801H9.9956L19.9319 16.8112L21.4794 19.0246L34.3954 37.4996H29.0946L18.5547 22.4239V22.4231Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_96_3507\">\\n<rect width=\"39.1198\" height=\"40\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-chens5\",\"data-framer-appear-id\":\"chens5\",\"data-framer-name\":\"Phone\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"hDruprNIx\",optimized:true,style:{backgroundColor:\"rgba(124, 56, 237, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1arbuoi\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"Th_fEjOWz\",style:{backgroundColor:\"rgb(147, 50, 234)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z7hees\",\"data-framer-name\":\"Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3401;50:1449\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gj53zs\",\"data-framer-name\":\"_Line Icon Master File\",layoutDependency:layoutDependency,layoutId:\"I96:3401;50:1449;36:1520\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11pzyx8\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pm0K4jBrP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 40\"><path d=\"M 12.277 14.156 C 13.569 16.848 15.331 19.372 17.563 21.603 C 19.794 23.835 22.318 25.597 25.01 26.889 C 25.241 27 25.357 27.056 25.504 27.099 C 26.024 27.25 26.664 27.141 27.105 26.826 C 27.229 26.737 27.335 26.631 27.547 26.418 C 28.196 25.769 28.521 25.445 28.847 25.232 C 30.078 24.432 31.666 24.432 32.897 25.232 C 33.223 25.445 33.548 25.769 34.197 26.418 L 34.559 26.78 C 35.546 27.767 36.039 28.261 36.307 28.791 C 36.841 29.845 36.841 31.09 36.307 32.144 C 36.039 32.674 35.546 33.167 34.559 34.154 L 34.266 34.447 C 33.283 35.43 32.791 35.922 32.122 36.298 C 31.38 36.715 30.228 37.014 29.377 37.012 C 28.61 37.009 28.086 36.861 27.038 36.563 C 21.404 34.964 16.088 31.947 11.654 27.512 C 7.219 23.078 4.202 17.762 2.603 12.128 C 2.305 11.08 2.157 10.556 2.154 9.789 C 2.152 8.938 2.451 7.786 2.868 7.044 C 3.244 6.375 3.736 5.883 4.719 4.9 L 5.012 4.607 C 5.999 3.62 6.492 3.127 7.022 2.859 C 8.076 2.325 9.321 2.325 10.375 2.859 C 10.905 3.127 11.399 3.62 12.386 4.607 L 12.748 4.969 C 13.397 5.618 13.721 5.943 13.934 6.269 C 14.734 7.5 14.734 9.088 13.934 10.319 C 13.721 10.645 13.397 10.97 12.748 11.619 C 12.535 11.831 12.429 11.937 12.34 12.062 C 12.025 12.502 11.916 13.142 12.067 13.662 C 12.11 13.809 12.166 13.925 12.277 14.156 Z\" fill=\"transparent\" stroke-width=\"3.71429\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10954679960,withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-pshsjw\",\"data-framer-appear-id\":\"pshsjw\",\"data-framer-name\":\"Mail\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"OeoRWkWgs\",optimized:true,style:{backgroundColor:\"rgba(10, 145, 179, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ldz35b\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"VIQUILK7L\",style:{backgroundColor:\"rgb(10, 145, 179)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h52eub\",\"data-framer-name\":\"Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3403;50:1456\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b2aki0\",\"data-framer-name\":\"_Line Icon Master File\",layoutDependency:layoutDependency,layoutId:\"I96:3403;50:1456;36:1520\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dll1nl\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"sUZAhorJi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42 34\"><path d=\"M 2.428 7.714 L 17.591 18.329 C 18.819 19.188 19.433 19.618 20.101 19.784 C 20.691 19.931 21.308 19.931 21.898 19.784 C 22.565 19.618 23.179 19.188 24.407 18.329 L 39.571 7.714 M 11.342 31.857 L 30.656 31.857 C 33.777 31.857 35.337 31.857 36.529 31.25 C 37.577 30.716 38.429 29.863 38.963 28.815 C 39.571 27.623 39.571 26.063 39.571 22.943 L 39.571 11.057 C 39.571 7.937 39.571 6.377 38.963 5.185 C 38.429 4.137 37.577 3.284 36.529 2.75 C 35.337 2.143 33.777 2.143 30.656 2.143 L 11.342 2.143 C 8.222 2.143 6.662 2.143 5.47 2.75 C 4.421 3.284 3.569 4.137 3.035 5.185 C 2.428 6.377 2.428 7.937 2.428 11.057 L 2.428 22.943 C 2.428 26.063 2.428 27.623 3.035 28.815 C 3.569 29.863 4.421 30.716 5.47 31.25 C 6.662 31.857 8.222 31.857 11.342 31.857 Z\" fill=\"transparent\" stroke-width=\"3.71429\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8626313444,withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1f2kg50\",\"data-framer-appear-id\":\"1f2kg50\",\"data-framer-name\":\"Metamask\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"K0beFESDJ\",optimized:true,style:{backgroundColor:\"rgba(255, 250, 240, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ph0v6g\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"dMYEo3oJ3\",style:{backgroundColor:\"rgb(255, 250, 240)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h2wu1h\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:52,layoutDependency:layoutDependency,layoutId:\"I96:3405;50:1398\",svg:'<svg width=\"52\" height=\"52\" viewBox=\"0 0 52 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M44.7369 5.79419L28.4971 17.8557L31.5002 10.7396L44.7369 5.79419Z\" fill=\"#E2761B\" stroke=\"#E2761B\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.24695 5.79419L23.3562 17.97L20.4999 10.7396L7.24695 5.79419ZM38.8942 33.7528L34.569 40.3792L43.8232 42.9254L46.4836 33.8996L38.8942 33.7528ZM5.5332 33.8996L8.17727 42.9254L17.4315 40.3792L13.1063 33.7528L5.5332 33.8996Z\" fill=\"#E4761B\" stroke=\"#E4761B\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M16.9089 22.5561L14.3301 26.4569L23.519 26.8649L23.1926 16.9905L16.9089 22.5561ZM35.0746 22.5561L28.7092 16.8762L28.4971 26.8649L37.6697 26.4569L35.0746 22.5561ZM17.4311 40.379L22.9478 37.686L18.1819 33.9647L17.4311 40.379ZM29.0357 37.686L34.5686 40.379L33.8015 33.9647L29.0357 37.686Z\" fill=\"#E4761B\" stroke=\"#E4761B\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M34.5691 40.3791L29.0362 37.686L29.4768 41.2931L29.4279 42.811L34.5691 40.3791ZM17.4316 40.3791L22.5729 42.811L22.5402 41.2931L22.9483 37.686L17.4316 40.3791Z\" fill=\"#D7C1B3\" stroke=\"#D7C1B3\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M22.6544 31.5819L18.0518 30.2272L21.2997 28.7419L22.6544 31.5819ZM29.3298 31.5819L30.6845 28.7419L33.9488 30.2272L29.3298 31.5819Z\" fill=\"#233447\" stroke=\"#233447\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M17.4316 40.3792L18.215 33.7527L13.1064 33.8996L17.4316 40.3792ZM33.7857 33.7527L34.5691 40.3792L38.8943 33.8996L33.7857 33.7527ZM37.6702 26.457L28.4975 26.8651L29.3462 31.582L30.7009 28.742L33.9652 30.2273L37.6702 26.457ZM18.0518 30.2273L21.3161 28.742L22.6545 31.582L23.5195 26.8651L14.3306 26.457L18.0518 30.2273Z\" fill=\"#CD6116\" stroke=\"#CD6116\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M14.3301 26.457L18.1819 33.9649L18.0514 30.2273L14.3301 26.457ZM33.9647 30.2273L33.8015 33.9649L37.6697 26.457L33.9647 30.2273ZM23.519 26.8651L22.654 31.582L23.7312 37.1476L23.976 29.8192L23.519 26.8651ZM28.4971 26.8651L28.0564 29.8029L28.2522 37.1476L29.3458 31.582L28.4971 26.8651Z\" fill=\"#E4751F\" stroke=\"#E4751F\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M29.3462 31.582L28.2526 37.1476L29.0361 37.6862L33.8019 33.9649L33.9651 30.2273L29.3462 31.582ZM18.0518 30.2273L18.1823 33.9649L22.9482 37.6862L23.7316 37.1476L22.6544 31.582L18.0518 30.2273Z\" fill=\"#F6851B\" stroke=\"#F6851B\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M29.4279 42.811L29.4768 41.2932L29.0688 40.9341H22.9156L22.5402 41.2932L22.5729 42.811L17.4316 40.3792L19.227 41.8481L22.8667 44.3779H29.1178L32.7738 41.8481L34.5691 40.3792L29.4279 42.811Z\" fill=\"#C0AD9E\" stroke=\"#C0AD9E\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M29.036 37.6861L28.2525 37.1475H23.7315L22.9481 37.6861L22.54 41.2931L22.9154 40.934H29.0686L29.4766 41.2931L29.036 37.6861Z\" fill=\"#161616\" stroke=\"#161616\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M45.4227 18.6391L46.81 11.98L44.7372 5.79419L29.036 17.4477L35.0749 22.5563L43.611 25.0534L45.5043 22.8501L44.6882 22.2625L45.9939 21.071L44.982 20.2876L46.2877 19.292L45.4227 18.6391ZM5.19043 11.98L6.57775 18.6391L5.69639 19.292L7.00211 20.2876L6.0065 21.071L7.31221 22.2625L6.49614 22.8501L8.3731 25.0534L16.9092 22.5563L22.9481 17.4477L7.24693 5.79419L5.19043 11.98Z\" fill=\"#763D16\" stroke=\"#763D16\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M43.611 25.0534L35.0749 22.5562L37.6701 26.457L33.8019 33.9649L38.8942 33.8996H46.4836L43.611 25.0534ZM16.9092 22.5562L8.37313 25.0534L5.5332 33.8996H13.1063L18.1823 33.9649L14.3304 26.457L16.9092 22.5562ZM28.4974 26.8651L29.036 17.4476L31.5169 10.7395H20.4999L22.9481 17.4476L23.5194 26.8651L23.7152 29.8355L23.7316 37.1475H28.2526L28.2852 29.8355L28.4974 26.8651Z\" fill=\"#F6851B\" stroke=\"#F6851B\" stroke-width=\"0.163214\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-14c9yta\",\"data-framer-appear-id\":\"14c9yta\",\"data-framer-name\":\"Auth\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"E01Dk8CJr\",optimized:true,style:{backgroundColor:\"rgba(219, 40, 119, 0.2)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fddoo8\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"za9MQDwaF\",style:{backgroundColor:\"rgb(219, 40, 119)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ag9oah\",\"data-framer-name\":\"Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3407;50:1443\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lqmcfz\",\"data-framer-name\":\"_Line Icon Master File\",layoutDependency:layoutDependency,layoutId:\"I96:3407;50:1443;36:1520\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6uuw42\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"awqTgpRu0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 42 41\"><path d=\"M 11.562 5.002 C 14.327 3.367 17.554 2.428 20.999 2.428 C 31.256 2.428 39.571 10.743 39.571 21 C 39.571 21.061 39.57 21.123 39.57 21.184 M 4.993 11.576 C 3.363 14.339 2.428 17.56 2.428 21 C 2.428 29.653 8.346 36.925 16.356 38.986 M 37.17 30.138 C 34.718 34.468 30.577 37.716 25.642 38.986 M 24.879 10.551 C 23.671 10.102 22.364 9.857 20.999 9.857 C 14.845 9.857 9.856 14.846 9.856 21 C 9.856 22.372 10.104 23.686 10.558 24.9 M 31.446 17.114 C 31.896 18.324 32.142 19.633 32.142 21 C 32.142 27.154 27.153 32.143 20.999 32.143 C 19.644 32.143 18.345 31.901 17.143 31.458 M 20.999 17.286 L 20.999 24.714\" fill=\"transparent\" stroke-width=\"3.71429\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12768917449,withExternalLayout:true})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1r23es7\",\"data-border\":true,\"data-framer-appear-id\":\"1r23es7\",\"data-framer-name\":\"Connect\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"OOmNDx_it\",optimized:true,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,scale:1},transformTemplate:transformTemplate3,variants:{gdaro8Vow:{scale:.5},VEu4NSob6:{scale:.65}},...addPropertyOverrides({gdaro8Vow:{animate:animation4},VEu4NSob6:{animate:animation3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-84xwlr\",\"data-framer-name\":\"Inputs\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2210\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-1jzwfr1\",\"data-framer-appear-id\":\"1jzwfr1\",\"data-framer-name\":\"Header\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2652\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Sign In\"})}),className:\"framer-ftv02r\",\"data-framer-name\":\"Sign In\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2647\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mxr027\",\"data-framer-name\":\"Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2648\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3uhjnr\",\"data-framer-name\":\"_Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2648;36:1524\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lnay6f\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2648;36:1524;8:1593\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"-1 -1 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10 0L0 10M0 0L10 10\" stroke=\"#737373\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,className:\"framer-hze93u\",\"data-framer-appear-id\":\"hze93u\",\"data-framer-name\":\"Logos\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"VIEcr7W0a\",optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xw73m0\",\"data-framer-name\":\"Social\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:288,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2211\",svg:'<svg width=\"288\" height=\"48\" viewBox=\"0 0 288 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0.5H36C42.3513 0.5 47.5 5.64873 47.5 12V36C47.5 42.3513 42.3513 47.5 36 47.5H12C5.64873 47.5 0.5 42.3513 0.5 36V12C0.5 5.64873 5.64873 0.5 12 0.5Z\" fill=\"#0A0A0A\"/>\\n<path d=\"M12 0.5H36C42.3513 0.5 47.5 5.64873 47.5 12V36C47.5 42.3513 42.3513 47.5 36 47.5H12C5.64873 47.5 0.5 42.3513 0.5 36V12C0.5 5.64873 5.64873 0.5 12 0.5Z\" stroke=\"#262626\"/>\\n<g clip-path=\"url(#clip0_96_3415)\">\\n<path d=\"M36.6901 24.2434C36.6901 23.1781 36.6036 22.4008 36.4166 21.5947H24.2529V26.4025H31.3927C31.2488 27.5974 30.4715 29.3967 28.7441 30.6058L28.7199 30.7668L32.5658 33.7462L32.8322 33.7727C35.2793 31.5127 36.6901 28.1875 36.6901 24.2434Z\" fill=\"#4285F4\"/>\\n<path d=\"M24.2532 36.9106C27.7511 36.9106 30.6876 35.759 32.8325 33.7726L28.7443 30.6056C27.6503 31.3686 26.182 31.9012 24.2532 31.9012C20.8272 31.9012 17.9195 29.6412 16.883 26.5176L16.731 26.5305L12.732 29.6254L12.6797 29.7708C14.8101 34.0028 19.1861 36.9106 24.2532 36.9106Z\" fill=\"#34A853\"/>\\n<path d=\"M16.883 26.5175C16.6095 25.7114 16.4512 24.8477 16.4512 23.9552C16.4512 23.0627 16.6095 22.1991 16.8686 21.393L16.8614 21.2213L12.8122 18.0767L12.6797 18.1397C11.8017 19.8959 11.2979 21.868 11.2979 23.9552C11.2979 26.0425 11.8017 28.0145 12.6797 29.7707L16.883 26.5175Z\" fill=\"#FBBC05\"/>\\n<path d=\"M24.2532 16.0094C26.6858 16.0094 28.3268 17.0602 29.2625 17.9383L32.9188 14.3684C30.6733 12.2811 27.7511 11 24.2532 11C19.1861 11 14.8101 13.9077 12.6797 18.1398L16.8686 21.3931C17.9195 18.2694 20.8272 16.0094 24.2532 16.0094Z\" fill=\"#EB4335\"/>\\n</g>\\n<path d=\"M72 0.5H96C102.351 0.5 107.5 5.64873 107.5 12V36C107.5 42.3513 102.351 47.5 96 47.5H72C65.6487 47.5 60.5 42.3513 60.5 36V12C60.5 5.64873 65.6487 0.5 72 0.5Z\" fill=\"#0A0A0A\"/>\\n<path d=\"M72 0.5H96C102.351 0.5 107.5 5.64873 107.5 12V36C107.5 42.3513 102.351 47.5 96 47.5H72C65.6487 47.5 60.5 42.3513 60.5 36V12C60.5 5.64873 65.6487 0.5 72 0.5Z\" stroke=\"#262626\"/>\\n<g clip-path=\"url(#clip1_96_3415)\">\\n<path d=\"M93.8236 14.8348C91.9676 13.9664 90.004 13.3494 87.9849 13C87.7334 13.4547 87.4395 14.0663 87.2369 14.5528C85.0599 14.2255 82.9029 14.2255 80.7659 14.5528C80.5634 14.0664 80.2629 13.4547 80.0091 13C77.9879 13.3495 76.0227 13.9682 74.1658 14.8394C70.4707 20.4233 69.469 25.8683 69.9698 31.2363C72.4206 33.0665 74.7957 34.1784 77.1308 34.9059C77.7112 34.1079 78.2242 33.2629 78.6645 32.3799C77.8261 32.0607 77.0179 31.6674 76.2494 31.2045C76.4516 31.0546 76.6491 30.8984 76.8415 30.7361C81.4982 32.9142 86.558 32.9142 91.1592 30.7361C91.3525 30.8973 91.5499 31.0535 91.7512 31.2045C90.9815 31.6686 90.1717 32.0627 89.3317 32.3822C89.7745 33.2689 90.2866 34.1146 90.8654 34.9081C93.2027 34.1807 95.58 33.0689 98.0308 31.2363C98.6185 25.0135 97.027 19.6185 93.8236 14.8348ZM79.299 27.9351C77.901 27.9351 76.7546 26.6301 76.7546 25.0409C76.7546 23.4517 77.8766 22.1444 79.299 22.1444C80.7215 22.1444 81.8678 23.4493 81.8434 25.0409C81.8456 26.6301 80.7215 27.9351 79.299 27.9351ZM88.7016 27.9351C87.3037 27.9351 86.1574 26.6301 86.1574 25.0409C86.1574 23.4517 87.2792 22.1444 88.7016 22.1444C90.1241 22.1444 91.2704 23.4493 91.246 25.0409C91.246 26.6301 90.1241 27.9351 88.7016 27.9351Z\" fill=\"#5865F2\"/>\\n</g>\\n<path d=\"M132 0.5H156C162.351 0.5 167.5 5.64873 167.5 12V36C167.5 42.3513 162.351 47.5 156 47.5H132C125.649 47.5 120.5 42.3513 120.5 36V12C120.5 5.64873 125.649 0.5 132 0.5Z\" fill=\"#0A0A0A\"/>\\n<path d=\"M132 0.5H156C162.351 0.5 167.5 5.64873 167.5 12V36C167.5 42.3513 162.351 47.5 156 47.5H132C125.649 47.5 120.5 42.3513 120.5 36V12C120.5 5.64873 125.649 0.5 132 0.5Z\" stroke=\"#262626\"/>\\n<g clip-path=\"url(#clip2_96_3415)\">\\n<path d=\"M151.8 11H136.2C133.328 11 131 13.3281 131 16.2V31.8C131 34.6719 133.328 37 136.2 37H151.8C154.672 37 157 34.6719 157 31.8V16.2C157 13.3281 154.672 11 151.8 11Z\" fill=\"#855DCD\"/>\\n<path d=\"M137.702 15.0444H150.298V32.9555H148.449V24.7511H148.431C148.226 22.4836 146.321 20.7066 144 20.7066C141.679 20.7066 139.774 22.4836 139.569 24.7511H139.551V32.9555H137.702V15.0444Z\" fill=\"white\"/>\\n<path d=\"M134.352 17.5867L135.103 20.1289H135.738V30.4134C135.419 30.4134 135.16 30.672 135.16 30.9911V31.6845H135.045C134.726 31.6845 134.467 31.9431 134.467 32.2622V32.9556H140.938V32.2622C140.938 31.9431 140.68 31.6845 140.36 31.6845H140.245V30.9911C140.245 30.672 139.986 30.4134 139.667 30.4134H138.974V17.5867H134.352Z\" fill=\"white\"/>\\n<path d=\"M148.564 30.4134C148.245 30.4134 147.986 30.672 147.986 30.9911V31.6845H147.871C147.552 31.6845 147.293 31.9431 147.293 32.2622V32.9556H153.764V32.2622C153.764 31.9431 153.505 31.6845 153.186 31.6845H153.071V30.9911C153.071 30.672 152.812 30.4134 152.493 30.4134V20.1289H153.129L153.88 17.5867H149.257V30.4134H148.564Z\" fill=\"white\"/>\\n</g>\\n<path d=\"M192 0.5H216C222.351 0.5 227.5 5.64873 227.5 12V36C227.5 42.3513 222.351 47.5 216 47.5H192C185.649 47.5 180.5 42.3513 180.5 36V12C180.5 5.64873 185.649 0.5 192 0.5Z\" fill=\"#0A0A0A\"/>\\n<path d=\"M192 0.5H216C222.351 0.5 227.5 5.64873 227.5 12V36C227.5 42.3513 222.351 47.5 216 47.5H192C185.649 47.5 180.5 42.3513 180.5 36V12C180.5 5.64873 185.649 0.5 192 0.5Z\" stroke=\"#262626\"/>\\n<g clip-path=\"url(#clip3_96_3415)\">\\n<path d=\"M204 37C211.18 37 217 31.1797 217 24C217 16.8203 211.18 11 204 11C196.82 11 191 16.8203 191 24C191 31.1797 196.82 37 204 37Z\" fill=\"url(#paint0_linear_96_3415)\"/>\\n<path d=\"M199.8 24.9504L201.342 29.2194C201.342 29.2194 201.535 29.6188 201.741 29.6188C201.948 29.6188 205.019 26.4238 205.019 26.4238L208.434 19.8274L199.855 23.8484L199.8 24.9504Z\" fill=\"#C8DAEA\"/>\\n<path d=\"M201.844 26.0452L201.548 29.1918C201.548 29.1918 201.424 30.156 202.388 29.1918C203.352 28.2276 204.275 27.4842 204.275 27.4842\" fill=\"#A9C6D8\"/>\\n<path d=\"M199.828 25.1026L196.655 24.0689C196.655 24.0689 196.276 23.915 196.398 23.5662C196.423 23.4943 196.474 23.433 196.626 23.3279C197.329 22.8379 209.637 18.4139 209.637 18.4139C209.637 18.4139 209.985 18.2967 210.19 18.3746C210.24 18.3903 210.286 18.4192 210.322 18.4583C210.358 18.4974 210.383 18.5454 210.394 18.5973C210.416 18.6889 210.425 18.7831 210.421 18.8773C210.42 18.9588 210.411 19.0343 210.403 19.1527C210.328 20.3622 208.085 29.3894 208.085 29.3894C208.085 29.3894 207.951 29.9177 207.47 29.9358C207.352 29.9396 207.234 29.9196 207.124 29.8769C207.013 29.8342 206.913 29.7698 206.828 29.6875C205.884 28.8757 202.622 26.6837 201.902 26.2016C201.885 26.1905 201.872 26.1761 201.862 26.1593C201.851 26.1425 201.845 26.1236 201.843 26.1041C201.832 26.0533 201.888 25.9904 201.888 25.9904C201.888 25.9904 207.567 20.942 207.718 20.4121C207.73 20.371 207.686 20.3507 207.626 20.3687C207.249 20.5075 200.71 24.6371 199.988 25.0928C199.936 25.1085 199.881 25.1119 199.828 25.1026Z\" fill=\"white\"/>\\n</g>\\n<path d=\"M252 0.5H276C282.351 0.5 287.5 5.64873 287.5 12V36C287.5 42.3513 282.351 47.5 276 47.5H252C245.649 47.5 240.5 42.3513 240.5 36V12C240.5 5.64873 245.649 0.5 252 0.5Z\" fill=\"#0A0A0A\"/>\\n<path d=\"M252 0.5H276C282.351 0.5 287.5 5.64873 287.5 12V36C287.5 42.3513 282.351 47.5 276 47.5H252C245.649 47.5 240.5 42.3513 240.5 36V12C240.5 5.64873 245.649 0.5 252 0.5Z\" stroke=\"#262626\"/>\\n<g clip-path=\"url(#clip4_96_3415)\">\\n<path d=\"M265.641 22.4643L272.922 14H271.197L264.874 21.3494L259.824 14H254L261.636 25.1136L254 33.9897H255.726L262.402 26.2285L267.735 33.9897H273.56L265.64 22.4643H265.641ZM263.277 25.2115L262.504 24.1049L256.347 15.299H258.998L263.966 22.4056L264.74 23.5123L271.198 32.7498H268.547L263.277 25.212V25.2115Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_96_3415\" x1=\"204\" y1=\"37\" x2=\"204\" y2=\"11\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1D93D2\"/>\\n<stop offset=\"1\" stop-color=\"#38B0E3\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_96_3415\">\\n<rect width=\"25.4046\" height=\"26\" fill=\"white\" transform=\"translate(11.2979 11)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_96_3415\">\\n<rect width=\"28.3015\" height=\"22\" fill=\"white\" transform=\"translate(69.8496 13)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_96_3415\">\\n<rect width=\"26\" height=\"26\" fill=\"white\" transform=\"translate(131 11)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_96_3415\">\\n<rect width=\"26\" height=\"26\" fill=\"white\" transform=\"translate(191 11)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_96_3415\">\\n<rect width=\"19.5599\" height=\"20\" fill=\"white\" transform=\"translate(254 14)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1omxl0u\",\"data-framer-name\":\"Inputs\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2225\",children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,className:\"framer-19nzuuc\",\"data-framer-appear-id\":\"19nzuuc\",\"data-framer-name\":\"Input\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2556\",optimized:true,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f8szd3\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2556;36:152\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(163, 163, 163))\"},children:\"Email address\"})}),className:\"framer-h4gyer\",\"data-framer-name\":\"Email\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2556;36:153\",style:{\"--extracted-r6o4lv\":\"rgb(163, 163, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,className:\"framer-17b7bg5\",\"data-framer-appear-id\":\"17b7bg5\",\"data-framer-name\":\"Select Button\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2573\",optimized:true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v7ek7x\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2573;36:1038\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hwp57n\",\"data-framer-name\":\"Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2573;36:3511\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lq06ju\",\"data-framer-name\":\"_Line Icon Master File\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2573;36:3511;36:1527\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ny1dzv\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"z_5wyhK_R\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 5.587 5.902 C 6.051 6.869 6.683 7.774 7.484 8.575 C 8.285 9.377 9.191 10.009 10.158 10.473 C 10.241 10.513 10.282 10.533 10.335 10.548 C 10.522 10.603 10.751 10.564 10.91 10.45 C 10.954 10.418 10.992 10.38 11.069 10.304 C 11.302 10.071 11.418 9.954 11.535 9.878 C 11.977 9.591 12.547 9.591 12.989 9.878 C 13.106 9.954 13.223 10.071 13.456 10.304 L 13.586 10.434 C 13.94 10.788 14.117 10.965 14.213 11.156 C 14.405 11.534 14.405 11.981 14.213 12.359 C 14.117 12.55 13.94 12.727 13.586 13.081 L 13.48 13.186 C 13.127 13.539 12.951 13.716 12.711 13.851 C 12.444 14 12.031 14.108 11.725 14.107 C 11.45 14.106 11.262 14.053 10.886 13.946 C 8.863 13.372 6.955 12.289 5.363 10.697 C 3.771 9.105 2.688 7.197 2.114 5.174 C 2.007 4.798 1.954 4.61 1.953 4.335 C 1.952 4.029 2.06 3.615 2.209 3.349 C 2.344 3.109 2.521 2.933 2.874 2.579 L 2.979 2.474 C 3.333 2.12 3.51 1.943 3.701 1.847 C 4.079 1.655 4.526 1.655 4.904 1.847 C 5.095 1.943 5.272 2.12 5.626 2.474 L 5.756 2.604 C 5.989 2.837 6.105 2.954 6.182 3.071 C 6.469 3.513 6.469 4.083 6.182 4.525 C 6.105 4.642 5.989 4.758 5.756 4.991 C 5.68 5.068 5.642 5.106 5.61 5.15 C 5.496 5.309 5.457 5.538 5.512 5.725 C 5.527 5.778 5.547 5.819 5.587 5.902 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(38,99,235)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9148615270,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Phone Number\"})}),className:\"framer-izxk7j\",\"data-framer-name\":\"Item\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2573;36:1039\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation10,className:\"framer-1wexnpb\",\"data-framer-appear-id\":\"1wexnpb\",\"data-framer-name\":\"Select Button\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2615\",optimized:true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ovzlmg\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2615;36:1038\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vejfmb\",\"data-framer-name\":\"Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2615;36:3511\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgscwt\",\"data-framer-name\":\"_Line Icon Master File\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2615;36:3511;36:1527\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13zomna\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZQDVXHcjh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 4.612 2.257 C 5.605 1.67 6.763 1.333 8 1.333 C 11.682 1.333 14.666 4.318 14.666 8 C 14.666 8.022 14.666 8.044 14.666 8.066 M 2.254 4.617 C 1.669 5.609 1.333 6.765 1.333 8 C 1.333 11.106 3.458 13.717 6.333 14.457 M 13.805 11.28 C 12.925 12.835 11.438 14.001 9.666 14.457 M 9.393 4.249 C 8.959 4.088 8.49 4 8 4 C 5.791 4 4 5.791 4 8 C 4 8.492 4.089 8.964 4.251 9.4 M 11.75 6.605 C 11.911 7.039 12 7.509 12 8 C 12 10.209 10.209 12 8 12 C 7.513 12 7.047 11.913 6.616 11.754 M 8 6.667 L 8 9.333\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(38,99,235)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9735222964,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Passkey\"})}),className:\"framer-1o7211r\",\"data-framer-name\":\"Item\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2615;36:1039\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation11,className:\"framer-ecfld\",\"data-framer-appear-id\":\"ecfld\",\"data-framer-name\":\"Or\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2236\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w8uofi\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2237\",style:{backgroundColor:\"rgb(38, 38, 38)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(64, 64, 64))\"},children:\"or\"})}),className:\"framer-1ibzxxj\",\"data-framer-name\":\"or\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2238\",style:{\"--extracted-r6o4lv\":\"rgb(64, 64, 64)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e44yzn\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2239\",style:{backgroundColor:\"rgb(38, 38, 38)\"}})]}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation12,className:\"framer-19yb4zu\",\"data-framer-appear-id\":\"19yb4zu\",\"data-framer-name\":\"Select Button\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2629\",optimized:true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h5kqgz\",\"data-border\":true,\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2629;36:1038\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2xwku4\",\"data-framer-name\":\"Line Icon\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2629;36:3511\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j4662e\",\"data-framer-name\":\"_Line Icon Master File\",layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2629;36:3511;36:1527\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bxhrhk\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fkIb9yw0F\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 10 8.333 L 10.007 8.333 M 1 2.333 L 1 11.667 C 1 12.403 1.597 13 2.333 13 L 11.667 13 C 12.403 13 13 12.403 13 11.667 L 13 5 C 13 4.264 12.403 3.667 11.667 3.667 L 2.333 3.667 C 1.597 3.667 1 3.07 1 2.333 Z M 1 2.333 C 1 1.597 1.597 1 2.333 1 L 10.333 1 M 10.333 8.333 C 10.333 8.517 10.184 8.667 10 8.667 C 9.816 8.667 9.667 8.517 9.667 8.333 C 9.667 8.149 9.816 8 10 8 C 10.184 8 10.333 8.149 10.333 8.333 Z\" fill=\"transparent\" stroke-width=\"1.25\" stroke=\"rgb(38,99,235)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11566495551,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 250, 250))\"},children:\"Connect a wallet\"})}),className:\"framer-g29iq9\",\"data-framer-name\":\"Item\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I96:3408;62:2629;36:1039\",style:{\"--extracted-r6o4lv\":\"rgb(250, 250, 250)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j25rp3\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"KpsrlmXVM\",style:{scale:1},variants:{IJpACZeQ0:{scale:.75},mxFxfCs7N:{scale:.57}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:203,width:\"401px\",...addPropertyOverrides({CkwfORWuh:{y:(componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-229.5)+459-210},IJpACZeQ0:{y:(componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-229.5)+459-210},mxFxfCs7N:{y:(componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-229.5)+459-210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-1f9v4b5-container\",\"data-framer-appear-id\":\"1f9v4b5\",layoutDependency:layoutDependency,layoutId:\"nz5sqjK3j-container\",nodeId:\"nz5sqjK3j\",rendersWithMotion:true,scopeId:\"J8RigA4p8\",...addPropertyOverrides({CkwfORWuh:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation13,initial:animation14,optimized:true},IJpACZeQ0:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation15,initial:animation14,optimized:true},mxFxfCs7N:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation15,initial:animation14,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(HomeEngineHeroAsset,{height:\"100%\",id:\"nz5sqjK3j\",layoutId:\"nz5sqjK3j\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:\"488px\",...addPropertyOverrides({CkwfORWuh:{y:(componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-229.5)+112.00000000000011},IJpACZeQ0:{y:(componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-229.5)+112.00000000000011},mxFxfCs7N:{y:(componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-229.5)+112.00000000000011}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-gd6fw0-container\",\"data-framer-appear-id\":\"gd6fw0\",layoutDependency:layoutDependency,layoutId:\"vZJApEod7-container\",nodeId:\"vZJApEod7\",rendersWithMotion:true,scopeId:\"J8RigA4p8\",...addPropertyOverrides({CkwfORWuh:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation15,initial:animation16,optimized:true},IJpACZeQ0:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation17,initial:animation16,optimized:true},mxFxfCs7N:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation17,initial:animation16,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(HomeContractsHeroAsset,{height:\"100%\",id:\"vZJApEod7\",layoutId:\"vZJApEod7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:\"488px\",...addPropertyOverrides({CkwfORWuh:{y:(componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-229.5)+0},IJpACZeQ0:{y:(componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-229.5)+0},mxFxfCs7N:{y:(componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-229.5)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-10ahhfn-container\",\"data-framer-appear-id\":\"10ahhfn\",layoutDependency:layoutDependency,layoutId:\"cwKjl7kIy-container\",nodeId:\"cwKjl7kIy\",rendersWithMotion:true,scopeId:\"J8RigA4p8\",...addPropertyOverrides({CkwfORWuh:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation17,initial:animation16,optimized:true},IJpACZeQ0:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation18,initial:animation16,optimized:true},mxFxfCs7N:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation18,initial:animation16,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(HomeConnectHeroAsset,{height:\"100%\",id:\"cwKjl7kIy\",layoutId:\"cwKjl7kIy\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XkNlnhoXHQ2cnY2GucCp5JpWJMk.png\"},className:\"framer-1db1r7b\",\"data-framer-appear-id\":\"1db1r7b\",\"data-framer-name\":\"Deploy\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"w5usKumrM\",optimized:true,...addPropertyOverrides({sqMes8rwf:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-138.48484848484847)),pixelHeight:1369,pixelWidth:1385,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/671iTJx2cjChmVHRERvmDpqjgo.png\"},transformTemplate:transformTemplate3},TFPMljFOA:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-178.05194805194805)),pixelHeight:1369,pixelWidth:1385,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/671iTJx2cjChmVHRERvmDpqjgo.png\"},transformTemplate:transformTemplate3},zJpyswde7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-228.5)),pixelHeight:1369,pixelWidth:1385,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/671iTJx2cjChmVHRERvmDpqjgo.png\"},transformTemplate:transformTemplate3}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:781.5,intrinsicWidth:814,pixelHeight:1563,pixelWidth:1628,src:\"https://framerusercontent.com/images/SwDiamtGrTFmcsbpJosKsi3Q.png\"},className:\"framer-12ljms3\",\"data-framer-appear-id\":\"12ljms3\",\"data-framer-name\":\"Gaming\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"d1gin1_Y8\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({dEG3lNoms:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:781.5,intrinsicWidth:814,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-134.4103194103194)),pixelHeight:1563,pixelWidth:1628,src:\"https://framerusercontent.com/images/1CGkx3E4Gie3zdKOBSWJG9hOQGU.png\"}},if75caNG1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:781.5,intrinsicWidth:814,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-220.81695331695332)),pixelHeight:1563,pixelWidth:1628,src:\"https://framerusercontent.com/images/1CGkx3E4Gie3zdKOBSWJG9hOQGU.png\"}},j88hlsATo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:781.5,intrinsicWidth:814,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-182.41400491400492)),pixelHeight:1563,pixelWidth:1628,src:\"https://framerusercontent.com/images/1CGkx3E4Gie3zdKOBSWJG9hOQGU.png\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:659,intrinsicWidth:632,pixelHeight:1318,pixelWidth:1264,src:\"https://framerusercontent.com/images/boRuxYQx7uPSkfFdtQ56sHPdM.png\"},className:\"framer-1ja5c0p\",\"data-framer-appear-id\":\"1ja5c0p\",\"data-framer-name\":\"Engine\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"QtMP3RgHp\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({B1oazAVgH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:659,intrinsicWidth:632,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-145.98101265822785)),pixelHeight:1318,pixelWidth:1265,src:\"https://framerusercontent.com/images/vbYCcfPZvaIyjyliIB5QPcz5onE.png\"}},JcYSBLoQV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:659,intrinsicWidth:632,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-239.82594936708858)),pixelHeight:1318,pixelWidth:1265,src:\"https://framerusercontent.com/images/vbYCcfPZvaIyjyliIB5QPcz5onE.png\"}},NriW4YQh8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:659,intrinsicWidth:632,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-187.68987341772151)),pixelHeight:1318,pixelWidth:1265,src:\"https://framerusercontent.com/images/vbYCcfPZvaIyjyliIB5QPcz5onE.png\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:697.5,intrinsicWidth:636,pixelHeight:1395,pixelWidth:1272,src:\"https://framerusercontent.com/images/TD4TIItmYU1fNRfKMVpo9ZTrpE.png\"},className:\"framer-j6ddai\",\"data-framer-appear-id\":\"j6ddai\",\"data-framer-name\":\"Explore Contracts\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"qhQs1oN9O\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({lh2JT_odC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:697.5,intrinsicWidth:636,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-252)),pixelHeight:1395,pixelWidth:1272,src:\"https://framerusercontent.com/images/06ZaBAcTuSytMerahLrIGm3I1hg.png\"}},oXmRrICTi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:697.5,intrinsicWidth:636,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-142.57075471698113)),pixelHeight:1395,pixelWidth:1272,src:\"https://framerusercontent.com/images/06ZaBAcTuSytMerahLrIGm3I1hg.png\"}},RghOnyH8l:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:697.5,intrinsicWidth:636,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-186.438679245283)),pixelHeight:1395,pixelWidth:1272,src:\"https://framerusercontent.com/images/06ZaBAcTuSytMerahLrIGm3I1hg.png\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:658.5,intrinsicWidth:376,pixelHeight:1317,pixelWidth:752,src:\"https://framerusercontent.com/images/EznyQJyQW1MJ4dOGJpAaBp2FYA.png\"},className:\"framer-1coi0pp\",\"data-framer-appear-id\":\"1coi0pp\",\"data-framer-name\":\"Consumer Apps\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"DBvhg6aa6\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({IE8VJAwx9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658.5,intrinsicWidth:376,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.4982876712328769-175.13297872340428)),pixelHeight:1317,pixelWidth:752,src:\"https://framerusercontent.com/images/0tLHCk4KoAX3khmBhC2VVTUxYY.png\"}},UB8I5ja0e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658.5,intrinsicWidth:376,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.4982876712328769-245.18617021276597)),pixelHeight:1317,pixelWidth:752,src:\"https://framerusercontent.com/images/0tLHCk4KoAX3khmBhC2VVTUxYY.png\"}},V6GrSmkWQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:658.5,intrinsicWidth:376,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.4982876712328769-140.10638297872342)),pixelHeight:1317,pixelWidth:752,src:\"https://framerusercontent.com/images/0tLHCk4KoAX3khmBhC2VVTUxYY.png\"}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:610,pixelHeight:1440,pixelWidth:1220,src:\"https://framerusercontent.com/images/Affy1HNRxgjnpgkfg8HEkkMdSI0.png\"},className:\"framer-rm9svd\",\"data-framer-appear-id\":\"rm9svd\",\"data-framer-name\":\"Defi\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"VpgEJbZJR\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({apJv3IXAY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:610,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.4982876712328769-188.85245901639345)),pixelHeight:1440,pixelWidth:1220,src:\"https://framerusercontent.com/images/r20YOCcwuDJ6UQc42HNDQdKAGzM.png\"}},jJDYm_vDJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:610,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.4982876712328769-259.75)),pixelHeight:1440,pixelWidth:1220,src:\"https://framerusercontent.com/images/r20YOCcwuDJ6UQc42HNDQdKAGzM.png\"}},kSz32M85D:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:610,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.4982876712328769-141.63934426229508)),pixelHeight:1440,pixelWidth:1220,src:\"https://framerusercontent.com/images/r20YOCcwuDJ6UQc42HNDQdKAGzM.png\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:614,intrinsicWidth:708.5,pixelHeight:1228,pixelWidth:1417,src:\"https://framerusercontent.com/images/rCDPQFjr3yMExSq8H8kur3Pi7aw.png\"},className:\"framer-1cvsnnp\",\"data-framer-appear-id\":\"1cvsnnp\",\"data-framer-name\":\"Modular Contracts\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"Lid8mrtVz\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({e7VOIJVzJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:614,intrinsicWidth:708.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-233.98729710656318)),pixelHeight:1228,pixelWidth:1417,src:\"https://framerusercontent.com/images/rCDPQFjr3yMExSq8H8kur3Pi7aw.png\"}},h_x8aSnTc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:614,intrinsicWidth:708.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-155.99153140437545)),pixelHeight:1228,pixelWidth:1417,src:\"https://framerusercontent.com/images/rCDPQFjr3yMExSq8H8kur3Pi7aw.png\"}},lcdtvc8q_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:614,intrinsicWidth:708.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-121.32674664784757)),pixelHeight:1228,pixelWidth:1417,src:\"https://framerusercontent.com/images/rCDPQFjr3yMExSq8H8kur3Pi7aw.png\"}}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,pixelHeight:2640,pixelWidth:2640,src:\"https://framerusercontent.com/images/t6wZhzITlt6pVGYD208NbzdjPZM.png\"},className:\"framer-13fb24j\",\"data-framer-appear-id\":\"13fb24j\",\"data-framer-name\":\"Contracts\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"vf_Aa7YuZ\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({eXOXjJTTc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-180)),pixelHeight:2640,pixelWidth:2640,src:\"https://framerusercontent.com/images/t6wZhzITlt6pVGYD208NbzdjPZM.png\"}},J9UEfnLwV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-260)),pixelHeight:2640,pixelWidth:2640,src:\"https://framerusercontent.com/images/t6wZhzITlt6pVGYD208NbzdjPZM.png\"}},TqVeiQfDv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-140)),pixelHeight:2640,pixelWidth:2640,src:\"https://framerusercontent.com/images/t6wZhzITlt6pVGYD208NbzdjPZM.png\"}}},baseVariant,gestureVariant)}),isDisplayed10()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,pixelHeight:1825,pixelWidth:1824,src:\"https://framerusercontent.com/images/Skyxr058I7LhPgtpCCtlqYr9Dzs.png\"},className:\"framer-tisvpw\",\"data-framer-appear-id\":\"tisvpw\",\"data-framer-name\":\"Ecosystem\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"juoeADhNu\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({GVrdrZUhD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:1825,pixelWidth:1824,src:\"https://framerusercontent.com/images/Skyxr058I7LhPgtpCCtlqYr9Dzs.png\"}},KAm4Iz97I:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-260)),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/W8jgCyipc7PnaetzFOwGH69AqsI.png\"}},LCqfg85ZN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-150)),pixelHeight:1825,pixelWidth:1824,src:\"https://framerusercontent.com/images/Skyxr058I7LhPgtpCCtlqYr9Dzs.png\"}},lmrNjhBnI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-260)),pixelHeight:1825,pixelWidth:1824,src:\"https://framerusercontent.com/images/cmi96Rf2wu4wmOXHcvPYbbYFTI.png\"}},RQxmr7OBE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/W8jgCyipc7PnaetzFOwGH69AqsI.png\"}},zMyRewCuk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1320,intrinsicWidth:1320,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-150)),pixelHeight:1825,pixelWidth:1825,src:\"https://framerusercontent.com/images/W8jgCyipc7PnaetzFOwGH69AqsI.png\"}}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({dZVtzj9Pm:{height:428,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-214)},wENaJvaoL:{height:428,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-214)},X8iJkR4nI:{height:428,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-214)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3xda8h-container\",layoutDependency:layoutDependency,layoutId:\"EEU0y71QO-container\",nodeId:\"EEU0y71QO\",rendersWithMotion:true,scopeId:\"J8RigA4p8\",style:{scale:1},transformTemplate:transformTemplate2,variants:{wENaJvaoL:{scale:.6},X8iJkR4nI:{scale:.8}},children:/*#__PURE__*/_jsx(NebulaSwapHero,{height:\"100%\",id:\"EEU0y71QO\",layoutId:\"EEU0y71QO\",style:{width:\"100%\"},variant:\"gAZWgLOh0\",width:\"100%\"})})}),isDisplayed12()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation19,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1216,intrinsicWidth:1216,pixelHeight:2432,pixelWidth:2432,src:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png 2432w\"},className:\"framer-n39y1b\",\"data-framer-appear-id\":\"n39y1b\",\"data-framer-name\":\"Superchain\",initial:animation6,layoutDependency:layoutDependency,layoutId:\"OGBobzNa2\",optimized:true,transformTemplate:transformTemplate3,...addPropertyOverrides({feSdTcYCC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1216,intrinsicWidth:1216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||584)*.5000000000000002-260)),pixelHeight:2432,pixelWidth:2432,sizes:\"520px\",src:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png 2432w\"}},V2EIeycJI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1216,intrinsicWidth:1216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||400)*.5000000000000002-200)),pixelHeight:2432,pixelWidth:2432,sizes:\"400px\",src:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png 2432w\"}},Y3tMT11W4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1216,intrinsicWidth:1216,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||300)*.5000000000000002-150)),pixelHeight:2432,pixelWidth:2432,sizes:\"300px\",src:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0oi4k8hECAJzTTgE0n6BCwf4qA.png 2432w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qMDGv.framer-lvv5x5, .framer-qMDGv .framer-lvv5x5 { display: block; }\",\".framer-qMDGv.framer-1vpuw5f { height: 584px; overflow: visible; position: relative; width: 584px; }\",\".framer-qMDGv .framer-8duv46 { flex: none; height: 616px; left: calc(50.00000000000002% - 536px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 616px / 2); width: 536px; }\",\".framer-qMDGv .framer-1jr6gwe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 49%; overflow: visible; padding: 6px; position: absolute; top: -12px; width: min-content; }\",\".framer-qMDGv .framer-xapmci, .framer-qMDGv .framer-1d19p60, .framer-qMDGv .framer-14y3mky, .framer-qMDGv .framer-1e28jqm, .framer-qMDGv .framer-1arbuoi, .framer-qMDGv .framer-1ldz35b, .framer-qMDGv .framer-ph0v6g, .framer-qMDGv .framer-1fddoo8 { flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qMDGv .framer-11ylu6w { flex: none; height: 52px; left: calc(50.50572395324707% - 51px / 2); position: absolute; top: calc(50% - 52px / 2); width: 51px; }\",\".framer-qMDGv .framer-d6u822 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 40px; overflow: visible; padding: 6px; position: absolute; top: 74px; width: min-content; }\",\".framer-qMDGv .framer-9opgn2 { flex: none; height: 80px; left: calc(50% - 80px / 2); position: absolute; top: calc(50% - 80px / 2); width: 80px; }\",\".framer-qMDGv .framer-1oh4n51 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: absolute; right: 40px; top: 74px; width: min-content; }\",\".framer-qMDGv .framer-59v1yk { flex: none; height: 40px; left: calc(49.66080188751221% - 52px / 2); position: absolute; top: calc(50% - 40px / 2); width: 52px; }\",\".framer-qMDGv .framer-1m9au4z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: absolute; right: -12px; top: 49%; width: min-content; }\",\".framer-qMDGv .framer-hhdl3i { flex: none; height: 40px; left: calc(49.44987773895264% - 40px / 2); position: absolute; top: calc(50% - 40px / 2); width: 40px; }\",\".framer-qMDGv .framer-chens5 { align-content: center; align-items: center; bottom: 74px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: absolute; right: 40px; width: min-content; }\",\".framer-qMDGv .framer-z7hees, .framer-qMDGv .framer-1h52eub, .framer-qMDGv .framer-1ag9oah { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: 52px; justify-content: center; left: 14px; overflow: hidden; padding: 0px; position: absolute; top: 14px; width: 52px; }\",\".framer-qMDGv .framer-1gj53zs, .framer-qMDGv .framer-1b2aki0, .framer-qMDGv .framer-1lqmcfz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: hidden; position: relative; width: 45px; }\",\".framer-qMDGv .framer-11pzyx8 { flex: none; height: 40px; left: 3px; position: absolute; top: 2px; width: 39px; }\",\".framer-qMDGv .framer-pshsjw { align-content: center; align-items: center; bottom: -12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 6px; position: absolute; width: min-content; }\",\".framer-qMDGv .framer-dll1nl { flex: none; height: 34px; left: 1px; position: absolute; top: 5px; width: 42px; }\",\".framer-qMDGv .framer-1f2kg50 { align-content: center; align-items: center; bottom: 74px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 40px; overflow: visible; padding: 6px; position: absolute; width: min-content; }\",\".framer-qMDGv .framer-h2wu1h { flex: none; height: 52px; left: calc(50% - 52px / 2); position: absolute; top: calc(50% - 52px / 2); width: 52px; }\",\".framer-qMDGv .framer-14c9yta { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: -12px; overflow: visible; padding: 6px; position: absolute; top: 49%; width: min-content; }\",\".framer-qMDGv .framer-6uuw42 { flex: none; height: 41px; left: 1px; position: absolute; top: 1px; width: 42px; }\",\".framer-qMDGv .framer-1r23es7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 20px; position: absolute; top: 50%; width: 328px; }\",\".framer-qMDGv .framer-84xwlr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qMDGv .framer-1jzwfr1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qMDGv .framer-ftv02r, .framer-qMDGv .framer-1ibzxxj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qMDGv .framer-1mxr027 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; }\",\".framer-qMDGv .framer-3uhjnr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-qMDGv .framer-1lnay6f { bottom: 6px; flex: none; left: 4px; position: absolute; right: 6px; top: 4px; }\",\".framer-qMDGv .framer-hze93u { flex: none; height: 48px; overflow: visible; position: relative; width: 288px; }\",\".framer-qMDGv .framer-1xw73m0 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-qMDGv .framer-1omxl0u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qMDGv .framer-19nzuuc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qMDGv .framer-f8szd3, .framer-qMDGv .framer-v7ek7x, .framer-qMDGv .framer-1ovzlmg, .framer-qMDGv .framer-1h5kqgz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-qMDGv .framer-h4gyer { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 264px; word-break: break-word; word-wrap: break-word; }\",\".framer-qMDGv .framer-17b7bg5, .framer-qMDGv .framer-1wexnpb, .framer-qMDGv .framer-19yb4zu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qMDGv .framer-hwp57n, .framer-qMDGv .framer-1vejfmb, .framer-qMDGv .framer-2xwku4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-qMDGv .framer-lq06ju, .framer-qMDGv .framer-rgscwt, .framer-qMDGv .framer-j4662e { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; }\",\".framer-qMDGv .framer-ny1dzv, .framer-qMDGv .framer-13zomna { flex: none; height: 16px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-qMDGv .framer-izxk7j, .framer-qMDGv .framer-1o7211r, .framer-qMDGv .framer-g29iq9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 238px; word-break: break-word; word-wrap: break-word; }\",\".framer-qMDGv .framer-ecfld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qMDGv .framer-1w8uofi, .framer-qMDGv .framer-e44yzn { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-qMDGv .framer-bxhrhk { flex: none; height: 14px; left: 1px; position: absolute; top: 1px; width: 14px; }\",\".framer-qMDGv .framer-j25rp3 { flex: none; height: 454px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 538px; }\",\".framer-qMDGv .framer-1f9v4b5-container { flex: none; height: 203px; left: 0px; position: absolute; top: 0px; width: 401px; }\",\".framer-qMDGv .framer-gd6fw0-container { bottom: 0px; flex: none; height: 228px; left: calc(53.34572490706322% - 488px / 2); position: absolute; width: 488px; }\",\".framer-qMDGv .framer-10ahhfn-container { flex: none; height: 228px; position: absolute; right: 0px; top: calc(48.01762114537447% - 228px / 2); width: 488px; }\",\".framer-qMDGv .framer-1db1r7b { flex: none; height: 457px; left: calc(50.00000000000002% - 462px / 2); position: absolute; top: calc(50.00000000000002% - 457px / 2); width: 462px; }\",\".framer-qMDGv .framer-12ljms3 { aspect-ratio: 1.0415866922584773 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 442px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 460px; }\",\".framer-qMDGv .framer-1ja5c0p { aspect-ratio: 0.9590288315629742 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 480px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 460px; }\",\".framer-qMDGv .framer-j6ddai { aspect-ratio: 0.9118279569892473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 504px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 460px; }\",\".framer-qMDGv .framer-1coi0pp { aspect-ratio: 0.5709946848899012 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 490px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 280px; }\",\".framer-qMDGv .framer-rm9svd { aspect-ratio: 0.8472222222222222 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 520px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 440px; }\",\".framer-qMDGv .framer-1cvsnnp { aspect-ratio: 1.1539087947882736 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 468px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 540px; }\",\".framer-qMDGv .framer-13fb24j, .framer-qMDGv .framer-tisvpw, .framer-qMDGv .framer-n39y1b { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 520px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 520px; }\",\".framer-qMDGv .framer-3xda8h-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qMDGv .framer-1jr6gwe, .framer-qMDGv .framer-d6u822, .framer-qMDGv .framer-1oh4n51, .framer-qMDGv .framer-1m9au4z, .framer-qMDGv .framer-chens5, .framer-qMDGv .framer-z7hees, .framer-qMDGv .framer-pshsjw, .framer-qMDGv .framer-1h52eub, .framer-qMDGv .framer-1f2kg50, .framer-qMDGv .framer-14c9yta, .framer-qMDGv .framer-1ag9oah, .framer-qMDGv .framer-1r23es7, .framer-qMDGv .framer-84xwlr, .framer-qMDGv .framer-1mxr027, .framer-qMDGv .framer-1omxl0u, .framer-qMDGv .framer-19nzuuc, .framer-qMDGv .framer-f8szd3, .framer-qMDGv .framer-17b7bg5, .framer-qMDGv .framer-v7ek7x, .framer-qMDGv .framer-hwp57n, .framer-qMDGv .framer-1wexnpb, .framer-qMDGv .framer-1ovzlmg, .framer-qMDGv .framer-1vejfmb, .framer-qMDGv .framer-ecfld, .framer-qMDGv .framer-19yb4zu, .framer-qMDGv .framer-1h5kqgz, .framer-qMDGv .framer-2xwku4 { gap: 0px; } .framer-qMDGv .framer-1jr6gwe > *, .framer-qMDGv .framer-d6u822 > *, .framer-qMDGv .framer-1oh4n51 > *, .framer-qMDGv .framer-1m9au4z > *, .framer-qMDGv .framer-chens5 > *, .framer-qMDGv .framer-pshsjw > *, .framer-qMDGv .framer-1f2kg50 > *, .framer-qMDGv .framer-14c9yta > *, .framer-qMDGv .framer-1mxr027 > *, .framer-qMDGv .framer-hwp57n > *, .framer-qMDGv .framer-1vejfmb > *, .framer-qMDGv .framer-ecfld > *, .framer-qMDGv .framer-2xwku4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qMDGv .framer-1jr6gwe > :first-child, .framer-qMDGv .framer-d6u822 > :first-child, .framer-qMDGv .framer-1oh4n51 > :first-child, .framer-qMDGv .framer-1m9au4z > :first-child, .framer-qMDGv .framer-chens5 > :first-child, .framer-qMDGv .framer-z7hees > :first-child, .framer-qMDGv .framer-pshsjw > :first-child, .framer-qMDGv .framer-1h52eub > :first-child, .framer-qMDGv .framer-1f2kg50 > :first-child, .framer-qMDGv .framer-14c9yta > :first-child, .framer-qMDGv .framer-1ag9oah > :first-child, .framer-qMDGv .framer-1r23es7 > :first-child, .framer-qMDGv .framer-1mxr027 > :first-child, .framer-qMDGv .framer-f8szd3 > :first-child, .framer-qMDGv .framer-v7ek7x > :first-child, .framer-qMDGv .framer-hwp57n > :first-child, .framer-qMDGv .framer-1ovzlmg > :first-child, .framer-qMDGv .framer-1vejfmb > :first-child, .framer-qMDGv .framer-ecfld > :first-child, .framer-qMDGv .framer-1h5kqgz > :first-child, .framer-qMDGv .framer-2xwku4 > :first-child { margin-left: 0px; } .framer-qMDGv .framer-1jr6gwe > :last-child, .framer-qMDGv .framer-d6u822 > :last-child, .framer-qMDGv .framer-1oh4n51 > :last-child, .framer-qMDGv .framer-1m9au4z > :last-child, .framer-qMDGv .framer-chens5 > :last-child, .framer-qMDGv .framer-z7hees > :last-child, .framer-qMDGv .framer-pshsjw > :last-child, .framer-qMDGv .framer-1h52eub > :last-child, .framer-qMDGv .framer-1f2kg50 > :last-child, .framer-qMDGv .framer-14c9yta > :last-child, .framer-qMDGv .framer-1ag9oah > :last-child, .framer-qMDGv .framer-1r23es7 > :last-child, .framer-qMDGv .framer-1mxr027 > :last-child, .framer-qMDGv .framer-f8szd3 > :last-child, .framer-qMDGv .framer-v7ek7x > :last-child, .framer-qMDGv .framer-hwp57n > :last-child, .framer-qMDGv .framer-1ovzlmg > :last-child, .framer-qMDGv .framer-1vejfmb > :last-child, .framer-qMDGv .framer-ecfld > :last-child, .framer-qMDGv .framer-1h5kqgz > :last-child, .framer-qMDGv .framer-2xwku4 > :last-child { margin-right: 0px; } .framer-qMDGv .framer-z7hees > *, .framer-qMDGv .framer-1h52eub > *, .framer-qMDGv .framer-1ag9oah > * { margin: 0px; margin-left: calc(18.571428298950195px / 2); margin-right: calc(18.571428298950195px / 2); } .framer-qMDGv .framer-1r23es7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-qMDGv .framer-84xwlr > *, .framer-qMDGv .framer-1omxl0u > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qMDGv .framer-84xwlr > :first-child, .framer-qMDGv .framer-1omxl0u > :first-child, .framer-qMDGv .framer-19nzuuc > :first-child, .framer-qMDGv .framer-17b7bg5 > :first-child, .framer-qMDGv .framer-1wexnpb > :first-child, .framer-qMDGv .framer-19yb4zu > :first-child { margin-top: 0px; } .framer-qMDGv .framer-84xwlr > :last-child, .framer-qMDGv .framer-1omxl0u > :last-child, .framer-qMDGv .framer-19nzuuc > :last-child, .framer-qMDGv .framer-17b7bg5 > :last-child, .framer-qMDGv .framer-1wexnpb > :last-child, .framer-qMDGv .framer-19yb4zu > :last-child { margin-bottom: 0px; } .framer-qMDGv .framer-19nzuuc > *, .framer-qMDGv .framer-17b7bg5 > *, .framer-qMDGv .framer-1wexnpb > *, .framer-qMDGv .framer-19yb4zu > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-qMDGv .framer-f8szd3 > *, .framer-qMDGv .framer-v7ek7x > *, .framer-qMDGv .framer-1ovzlmg > *, .framer-qMDGv .framer-1h5kqgz > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-qMDGv.framer-v-vtsfv5.framer-1vpuw5f, .framer-qMDGv.framer-v-1su9rzx.framer-1vpuw5f, .framer-qMDGv.framer-v-12hc1c1.framer-1vpuw5f, .framer-qMDGv.framer-v-bety99.framer-1vpuw5f, .framer-qMDGv.framer-v-1mzcsgy.framer-1vpuw5f, .framer-qMDGv.framer-v-ycdufb.framer-1vpuw5f, .framer-qMDGv.framer-v-1raxdwy.framer-1vpuw5f, .framer-qMDGv.framer-v-ifhdme.framer-1vpuw5f, .framer-qMDGv.framer-v-16hq6e6.framer-1vpuw5f, .framer-qMDGv.framer-v-arzj2f.framer-1vpuw5f, .framer-qMDGv.framer-v-1aphoc.framer-1vpuw5f, .framer-qMDGv.framer-v-1nrvv0w.framer-1vpuw5f, .framer-qMDGv.framer-v-12je8by.framer-1vpuw5f, .framer-qMDGv.framer-v-jdatvi.framer-1vpuw5f, .framer-qMDGv.framer-v-10vwe9y.framer-1vpuw5f, .framer-qMDGv.framer-v-19gvlsw.framer-1vpuw5f, .framer-qMDGv.framer-v-1x2el1q.framer-1vpuw5f, .framer-qMDGv.framer-v-1brb0q5.framer-1vpuw5f, .framer-qMDGv.framer-v-3en1i3.framer-1vpuw5f, .framer-qMDGv.framer-v-178ff7t.framer-1vpuw5f, .framer-qMDGv.framer-v-px7w4q.framer-1vpuw5f { height: 300px; width: 300px; }\",\".framer-qMDGv.framer-v-vtsfv5 .framer-1cvsnnp { height: var(--framer-aspect-ratio-supported, 243px); width: 280px; }\",\".framer-qMDGv.framer-v-1umzwym .framer-j25rp3, .framer-qMDGv.framer-v-rcta9e .framer-j25rp3, .framer-qMDGv.framer-v-1su9rzx .framer-j25rp3 { height: 459px; left: calc(50.00000000000002% - 495px / 2); top: calc(50.00000000000002% - 459px / 2); width: 495px; }\",\".framer-qMDGv.framer-v-1umzwym .framer-1f9v4b5-container, .framer-qMDGv.framer-v-rcta9e .framer-1f9v4b5-container, .framer-qMDGv.framer-v-1su9rzx .framer-1f9v4b5-container { bottom: 7px; left: calc(49.89898989898992% - 401px / 2); top: unset; }\",\".framer-qMDGv.framer-v-1umzwym .framer-gd6fw0-container, .framer-qMDGv.framer-v-rcta9e .framer-gd6fw0-container, .framer-qMDGv.framer-v-1su9rzx .framer-gd6fw0-container { bottom: unset; left: calc(50.101010101010125% - 488px / 2); top: calc(49.23747276688456% - 228px / 2); z-index: 1; }\",\".framer-qMDGv.framer-v-1umzwym .framer-10ahhfn-container, .framer-qMDGv.framer-v-rcta9e .framer-10ahhfn-container, .framer-qMDGv.framer-v-1su9rzx .framer-10ahhfn-container { left: calc(50.101010101010125% - 488px / 2); right: unset; top: 0px; z-index: 2; }\",\".framer-qMDGv.framer-v-1lxjgg7.framer-1vpuw5f, .framer-qMDGv.framer-v-rcta9e.framer-1vpuw5f, .framer-qMDGv.framer-v-1wa9tls.framer-1vpuw5f, .framer-qMDGv.framer-v-tpo70o.framer-1vpuw5f, .framer-qMDGv.framer-v-lpcczk.framer-1vpuw5f, .framer-qMDGv.framer-v-uqsn5r.framer-1vpuw5f, .framer-qMDGv.framer-v-11lvszr.framer-1vpuw5f, .framer-qMDGv.framer-v-1xv41jl.framer-1vpuw5f, .framer-qMDGv.framer-v-1bjusbr.framer-1vpuw5f, .framer-qMDGv.framer-v-1qoa3ji.framer-1vpuw5f, .framer-qMDGv.framer-v-cd56lh.framer-1vpuw5f, .framer-qMDGv.framer-v-3awm3q.framer-1vpuw5f, .framer-qMDGv.framer-v-1tm3fba.framer-1vpuw5f, .framer-qMDGv.framer-v-bn1647.framer-1vpuw5f, .framer-qMDGv.framer-v-b4hxj1.framer-1vpuw5f, .framer-qMDGv.framer-v-u6em4u.framer-1vpuw5f, .framer-qMDGv.framer-v-x6mn5z.framer-1vpuw5f, .framer-qMDGv.framer-v-ib3fmn.framer-1vpuw5f, .framer-qMDGv.framer-v-jj5oxm.framer-1vpuw5f, .framer-qMDGv.framer-v-1ogm8oq.framer-1vpuw5f, .framer-qMDGv.framer-v-1hrk5bj.framer-1vpuw5f { height: 400px; width: 400px; }\",\".framer-qMDGv.framer-v-tpo70o .framer-1cvsnnp { height: var(--framer-aspect-ratio-supported, 312px); width: 360px; }\",\".framer-qMDGv.framer-v-1t0qphs .framer-1db1r7b { aspect-ratio: 1.0109409190371992 / 1; height: var(--framer-aspect-ratio-supported, 457px); left: 50%; top: 50%; }\",\".framer-qMDGv.framer-v-qmhu3 .framer-1coi0pp { height: var(--framer-aspect-ratio-supported, 491px); }\",\".framer-qMDGv.framer-v-lpcczk .framer-1db1r7b { aspect-ratio: 1.0109409190371992 / 1; height: var(--framer-aspect-ratio-supported, 356px); left: 50%; top: 50%; width: 360px; }\",\".framer-qMDGv.framer-v-bety99 .framer-1db1r7b { aspect-ratio: 1.0109409190371992 / 1; height: var(--framer-aspect-ratio-supported, 277px); left: 50%; top: 50%; width: 280px; }\",\".framer-qMDGv.framer-v-uqsn5r .framer-j6ddai { height: var(--framer-aspect-ratio-supported, 373px); width: 340px; }\",\".framer-qMDGv.framer-v-1mzcsgy .framer-j6ddai { height: var(--framer-aspect-ratio-supported, 285px); width: 260px; }\",\".framer-qMDGv.framer-v-11lvszr .framer-1coi0pp { height: var(--framer-aspect-ratio-supported, 350px); width: 200px; }\",\".framer-qMDGv.framer-v-ycdufb .framer-1coi0pp { height: var(--framer-aspect-ratio-supported, 280px); width: 160px; }\",\".framer-qMDGv.framer-v-1xv41jl .framer-rm9svd { height: var(--framer-aspect-ratio-supported, 378px); width: 320px; }\",\".framer-qMDGv.framer-v-1raxdwy .framer-rm9svd { height: var(--framer-aspect-ratio-supported, 284px); width: 240px; }\",\".framer-qMDGv.framer-v-1bjusbr .framer-12ljms3 { height: var(--framer-aspect-ratio-supported, 365px); width: 380px; }\",\".framer-qMDGv.framer-v-ifhdme .framer-12ljms3 { height: var(--framer-aspect-ratio-supported, 269px); width: 280px; }\",\".framer-qMDGv.framer-v-1qoa3ji .framer-1ja5c0p { height: var(--framer-aspect-ratio-supported, 376px); width: 360px; }\",\".framer-qMDGv.framer-v-16hq6e6 .framer-1ja5c0p { height: var(--framer-aspect-ratio-supported, 292px); width: 280px; }\",\".framer-qMDGv.framer-v-cd56lh .framer-13fb24j { height: var(--framer-aspect-ratio-supported, 360px); width: 360px; }\",\".framer-qMDGv.framer-v-1aphoc .framer-13fb24j { height: var(--framer-aspect-ratio-supported, 280px); width: 280px; }\",\".framer-qMDGv.framer-v-1tm3fba .framer-tisvpw, .framer-qMDGv.framer-v-bn1647 .framer-tisvpw, .framer-qMDGv.framer-v-b4hxj1 .framer-n39y1b { height: var(--framer-aspect-ratio-supported, 400px); width: 400px; }\",\".framer-qMDGv.framer-v-12je8by .framer-tisvpw, .framer-qMDGv.framer-v-jdatvi .framer-tisvpw, .framer-qMDGv.framer-v-10vwe9y .framer-n39y1b { height: var(--framer-aspect-ratio-supported, 300px); width: 300px; }\",'.framer-qMDGv[data-border=\"true\"]::after, .framer-qMDGv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 584\n * @framerIntrinsicWidth 584\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"e7VOIJVzJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"lcdtvc8q_\":{\"layout\":[\"fixed\",\"fixed\"]},\"CkwfORWuh\":{\"layout\":[\"fixed\",\"fixed\"]},\"VEu4NSob6\":{\"layout\":[\"fixed\",\"fixed\"]},\"IJpACZeQ0\":{\"layout\":[\"fixed\",\"fixed\"]},\"mxFxfCs7N\":{\"layout\":[\"fixed\",\"fixed\"]},\"dV04X605P\":{\"layout\":[\"fixed\",\"fixed\"]},\"mtrNX8bpQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"p3gcNyjKV\":{\"layout\":[\"fixed\",\"fixed\"]},\"h_x8aSnTc\":{\"layout\":[\"fixed\",\"fixed\"]},\"lh2JT_odC\":{\"layout\":[\"fixed\",\"fixed\"]},\"zJpyswde7\":{\"layout\":[\"fixed\",\"fixed\"]},\"UB8I5ja0e\":{\"layout\":[\"fixed\",\"fixed\"]},\"jJDYm_vDJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"JcYSBLoQV\":{\"layout\":[\"fixed\",\"fixed\"]},\"if75caNG1\":{\"layout\":[\"fixed\",\"fixed\"]},\"TFPMljFOA\":{\"layout\":[\"fixed\",\"fixed\"]},\"sqMes8rwf\":{\"layout\":[\"fixed\",\"fixed\"]},\"RghOnyH8l\":{\"layout\":[\"fixed\",\"fixed\"]},\"oXmRrICTi\":{\"layout\":[\"fixed\",\"fixed\"]},\"IE8VJAwx9\":{\"layout\":[\"fixed\",\"fixed\"]},\"V6GrSmkWQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"apJv3IXAY\":{\"layout\":[\"fixed\",\"fixed\"]},\"kSz32M85D\":{\"layout\":[\"fixed\",\"fixed\"]},\"j88hlsATo\":{\"layout\":[\"fixed\",\"fixed\"]},\"dEG3lNoms\":{\"layout\":[\"fixed\",\"fixed\"]},\"NriW4YQh8\":{\"layout\":[\"fixed\",\"fixed\"]},\"B1oazAVgH\":{\"layout\":[\"fixed\",\"fixed\"]},\"gdaro8Vow\":{\"layout\":[\"fixed\",\"fixed\"]},\"J9UEfnLwV\":{\"layout\":[\"fixed\",\"fixed\"]},\"eXOXjJTTc\":{\"layout\":[\"fixed\",\"fixed\"]},\"TqVeiQfDv\":{\"layout\":[\"fixed\",\"fixed\"]},\"dZVtzj9Pm\":{\"layout\":[\"fixed\",\"fixed\"]},\"X8iJkR4nI\":{\"layout\":[\"fixed\",\"fixed\"]},\"wENaJvaoL\":{\"layout\":[\"fixed\",\"fixed\"]},\"lmrNjhBnI\":{\"layout\":[\"fixed\",\"fixed\"]},\"GVrdrZUhD\":{\"layout\":[\"fixed\",\"fixed\"]},\"LCqfg85ZN\":{\"layout\":[\"fixed\",\"fixed\"]},\"KAm4Iz97I\":{\"layout\":[\"fixed\",\"fixed\"]},\"RQxmr7OBE\":{\"layout\":[\"fixed\",\"fixed\"]},\"zMyRewCuk\":{\"layout\":[\"fixed\",\"fixed\"]},\"feSdTcYCC\":{\"layout\":[\"fixed\",\"fixed\"]},\"V2EIeycJI\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y3tMT11W4\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZaFdWB6He\":{\"layout\":[\"fixed\",\"fixed\"]},\"F_iygkKGr\":{\"layout\":[\"fixed\",\"fixed\"]},\"GA175OLpZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"enkFpwD0T\":{\"layout\":[\"fixed\",\"fixed\"]},\"axeCK8Oqq\":{\"layout\":[\"fixed\",\"fixed\"]},\"mHL_Abx7h\":{\"layout\":[\"fixed\",\"fixed\"]},\"nHlV05vZw\":{\"layout\":[\"fixed\",\"fixed\"]},\"RthNQ8ubL\":{\"layout\":[\"fixed\",\"fixed\"]},\"SiELG_nrf\":{\"layout\":[\"fixed\",\"fixed\"]},\"EbksMd9ik\":{\"layout\":[\"fixed\",\"fixed\"]},\"gPhg4ywy2\":{\"layout\":[\"fixed\",\"fixed\"]},\"upI3SgLGr\":{\"layout\":[\"fixed\",\"fixed\"]},\"tSNdXUXVa\":{\"layout\":[\"fixed\",\"fixed\"]},\"tR6UbfD2k\":{\"layout\":[\"fixed\",\"fixed\"]},\"CCTFo2Qhx\":{\"layout\":[\"fixed\",\"fixed\"]},\"vbH2FtAdB\":{\"layout\":[\"fixed\",\"fixed\"]},\"NrUIHqtWD\":{\"layout\":[\"fixed\",\"fixed\"]},\"sLMOJw_YU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ8RigA4p8=withCSS(Component,css,\"framer-qMDGv\");export default FramerJ8RigA4p8;FramerJ8RigA4p8.displayName=\"Assets / Hero\";FramerJ8RigA4p8.defaultProps={height:584,width:584};addPropertyControls(FramerJ8RigA4p8,{variant:{options:[\"eqjmYO2iY\",\"e7VOIJVzJ\",\"lcdtvc8q_\",\"CkwfORWuh\",\"VEu4NSob6\",\"IJpACZeQ0\",\"mxFxfCs7N\",\"dV04X605P\",\"mtrNX8bpQ\",\"p3gcNyjKV\",\"h_x8aSnTc\",\"lh2JT_odC\",\"zJpyswde7\",\"UB8I5ja0e\",\"jJDYm_vDJ\",\"JcYSBLoQV\",\"if75caNG1\",\"TFPMljFOA\",\"sqMes8rwf\",\"RghOnyH8l\",\"oXmRrICTi\",\"IE8VJAwx9\",\"V6GrSmkWQ\",\"apJv3IXAY\",\"kSz32M85D\",\"j88hlsATo\",\"dEG3lNoms\",\"NriW4YQh8\",\"B1oazAVgH\",\"gdaro8Vow\",\"J9UEfnLwV\",\"eXOXjJTTc\",\"TqVeiQfDv\",\"dZVtzj9Pm\",\"X8iJkR4nI\",\"wENaJvaoL\",\"lmrNjhBnI\",\"GVrdrZUhD\",\"LCqfg85ZN\",\"KAm4Iz97I\",\"RQxmr7OBE\",\"zMyRewCuk\",\"feSdTcYCC\",\"V2EIeycJI\",\"Y3tMT11W4\",\"ZaFdWB6He\",\"F_iygkKGr\",\"GA175OLpZ\",\"enkFpwD0T\",\"axeCK8Oqq\",\"mHL_Abx7h\",\"nHlV05vZw\",\"RthNQ8ubL\",\"SiELG_nrf\",\"EbksMd9ik\",\"gPhg4ywy2\",\"upI3SgLGr\",\"tSNdXUXVa\",\"tR6UbfD2k\",\"CCTFo2Qhx\",\"vbH2FtAdB\",\"NrUIHqtWD\",\"sLMOJw_YU\"],optionTitles:[\"Desktop: Connect / Sign In\",\"Desktop: Modular Contracts\",\"Mobile: Modular Contracts\",\"Desktop: Home\",\"Tablet: Connect / Sign In\",\"Tablet: Home\",\"Mobile: Home\",\"Desktop: Placeholder\",\"Tablet: Placeholder\",\"Phone: Placeholder\",\"Tablet: Modular Contracts\",\"Desktop: Contracts / Explore\",\"Desktop: Contracts / Deploy\",\"Desktop: Soltuons / Consumer Apps\",\"Desktop: Solutions / Defi\",\"Desktop: Engine\",\"Desktop: Solutions / Gaming\",\"Tablet: Contracts / Deploy\",\"Mobile: Contracts / Deploy\",\"Tablet: Contracts / Explore\",\"Mobile: Contracts / Explore\",\"Tablet: Solutions / Consumer Apps\",\"Mobile: Solutions / Consumer Apps\",\"Tablet: Solutions / Defi\",\"Mobile: Solutions / Defi\",\"Tablet: Solutions / Gaming\",\"Mobile: Solutions / Gaming\",\"Tablet: Engine\",\"Mobile: Engine\",\"Mobile: Connect / Sign In\",\"Desktop: Contracts\",\"Tablet: Contracts\",\"Mobile: Contracts\",\"Desktop: Nebula\",\"Tablet: Nebula\",\"Mobile: Nebula\",\"Desktop: Ecosystem\",\"Tablet: Ecosystem\",\"Mobile: Ecosystem\",\"Desktop: Insight\",\"Tablet: Insight\",\"Mobile: Insight\",\"Desktop: Superchain\",\"Tablet: Superchain\",\"Mobile: Superchain\",\"Desktop: AA\",\"Tablet: AA\",\"Mobile: AA\",\"Desktop: Learn\",\"Tablet: Learn\",\"Mobile: Learn\",\"Desktop: Storage\",\"Tablet: Storage\",\"Mobile: Storage\",\"Desktop: Faucets\",\"Tablet: Faucets\",\"Mobile: Faucets\",\"Desktop: Auth\",\"Tablet: Auth\",\"Mobile: Auth\",\"Desktop: In-app Wallets\",\"Tablet: In-app Wallets\",\"Mobile: In-app Wallets\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJ8RigA4p8,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"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\"}]},...HomeEngineHeroAssetFonts,...HomeContractsHeroAssetFonts,...HomeConnectHeroAssetFonts,...NebulaSwapHeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ8RigA4p8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e7VOIJVzJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lcdtvc8q_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CkwfORWuh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VEu4NSob6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IJpACZeQ0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mxFxfCs7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dV04X605P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mtrNX8bpQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p3gcNyjKV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h_x8aSnTc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lh2JT_odC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zJpyswde7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UB8I5ja0e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jJDYm_vDJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JcYSBLoQV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"if75caNG1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TFPMljFOA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sqMes8rwf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RghOnyH8l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oXmRrICTi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IE8VJAwx9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V6GrSmkWQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"apJv3IXAY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kSz32M85D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j88hlsATo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dEG3lNoms\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NriW4YQh8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B1oazAVgH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gdaro8Vow\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J9UEfnLwV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eXOXjJTTc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TqVeiQfDv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dZVtzj9Pm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X8iJkR4nI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wENaJvaoL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lmrNjhBnI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GVrdrZUhD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LCqfg85ZN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KAm4Iz97I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RQxmr7OBE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zMyRewCuk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"feSdTcYCC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V2EIeycJI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y3tMT11W4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZaFdWB6He\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F_iygkKGr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GA175OLpZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"enkFpwD0T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"axeCK8Oqq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mHL_Abx7h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nHlV05vZw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RthNQ8ubL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SiELG_nrf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EbksMd9ik\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gPhg4ywy2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"upI3SgLGr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tSNdXUXVa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tR6UbfD2k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CCTFo2Qhx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vbH2FtAdB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NrUIHqtWD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sLMOJw_YU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"584\",\"framerIntrinsicWidth\":\"584\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J8RigA4p8.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HomePricingBadge from\"https://framerusercontent.com/modules/bbeizDy4zA0rEnr6bhhU/1swI8LOx8m1irJmkjCYk/ABsVyKBK0.js\";import ButtonsButton from\"https://framerusercontent.com/modules/CbyFIs9KoRhPjTsPTKcq/T3mL3ZilewULsoT60AnN/eMAX511LU.js\";import PricingItem from\"https://framerusercontent.com/modules/8PM8OrV5l1czcenOxyYi/ZqeVAYQQYXmIVcUBTzaR/eSn8V2M3x.js\";const HomePricingBadgeFonts=getFonts(HomePricingBadge);const PricingItemFonts=getFonts(PricingItem);const ButtonsButtonFonts=getFonts(ButtonsButton);const cycleOrder=[\"XkB6ld6Dz\",\"VXLg5PnA0\",\"GtZnyE_8u\",\"Y2fLhRSEt\",\"wfYK5ZO5V\",\"Y8pUVMtHu\"];const serializationHash=\"framer-zSyog\";const variantClassNames={GtZnyE_8u:\"framer-v-3yme03\",VXLg5PnA0:\"framer-v-odw5d\",wfYK5ZO5V:\"framer-v-ojnd0\",XkB6ld6Dz:\"framer-v-14uoz4\",Y2fLhRSEt:\"framer-v-1o82d7e\",Y8pUVMtHu:\"framer-v-m09b1o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop: Growth\":\"VXLg5PnA0\",\"Desktop: Pro\":\"GtZnyE_8u\",\"Desktop: Starter\":\"XkB6ld6Dz\",\"Mobile: Custom\":\"Y8pUVMtHu\",\"Mobile: Growth\":\"wfYK5ZO5V\",\"Mobile: Starter\":\"Y2fLhRSEt\"};const getProps=({height,id,pillText,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XkB6ld6Dz\",vM8LZXDLK:pillText??props.vM8LZXDLK??\"Enterprise\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vM8LZXDLK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XkB6ld6Dz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbhw0df=activeVariantCallback(async(...args)=>{setVariant(\"VXLg5PnA0\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"VXLg5PnA0\",\"wfYK5ZO5V\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"VXLg5PnA0\",\"wfYK5ZO5V\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"GtZnyE_8u\",\"Y8pUVMtHu\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"VXLg5PnA0\",\"GtZnyE_8u\",\"wfYK5ZO5V\",\"Y8pUVMtHu\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"GtZnyE_8u\",\"Y8pUVMtHu\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"VXLg5PnA0\",\"GtZnyE_8u\",\"wfYK5ZO5V\",\"Y8pUVMtHu\"].includes(baseVariant))return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-14uoz4\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop: Starter\",layoutDependency:layoutDependency,layoutId:\"XkB6ld6Dz\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{GtZnyE_8u:{backgroundColor:\"rgba(0, 0, 0, 0)\"},VXLg5PnA0:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\"},wfYK5ZO5V:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\"},Y2fLhRSEt:{\"--border-bottom-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},Y8pUVMtHu:{\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({GtZnyE_8u:{\"data-framer-name\":\"Desktop: Pro\"},VXLg5PnA0:{\"data-framer-name\":\"Desktop: Growth\"},wfYK5ZO5V:{\"data-framer-name\":\"Mobile: Growth\"},Y2fLhRSEt:{\"data-framer-name\":\"Mobile: Starter\"},Y8pUVMtHu:{\"data-framer-name\":\"Mobile: Custom\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15kc6i0\",layoutDependency:layoutDependency,layoutId:\"GbbZgAbSc\",style:{backgroundColor:\"var(--token-f596dd75-4366-457f-a18a-6f599542eefd, rgb(0, 0, 0))\"},variants:{VXLg5PnA0:{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\"},wfYK5ZO5V:{backgroundColor:\"var(--token-c3261aba-f7cb-480a-88c7-9732b17547ca, rgb(15, 15, 15))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1caipd5\",\"data-framer-name\":\"Text + Items\",layoutDependency:layoutDependency,layoutId:\"XvPv5XF2o\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ksa9kq\",\"data-framer-name\":\"Text+ Badge\",layoutDependency:layoutDependency,layoutId:\"dIEEQp1_5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-140rcvg\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Gvqi5ZLGW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l3sptr\",layoutDependency:layoutDependency,layoutId:\"sIJWVCaxC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+0+0+0+0+0+0+0,...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+0+0+0+0+0+0+0},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+0+0+0+0+0+0+0},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+0+0+0+0+0+0+0},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+0+0+0+0+0+0+0},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pjo4ba-container\",layoutDependency:layoutDependency,layoutId:\"ikmfAne2x-container\",nodeId:\"ikmfAne2x\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(HomePricingBadge,{height:\"100%\",id:\"ikmfAne2x\",layoutId:\"ikmfAne2x\",LcYpFfYiA:\"Free\",variant:\"SDxo3Knn8\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{LcYpFfYiA:vM8LZXDLK},VXLg5PnA0:{LcYpFfYiA:\"Popular Choice\",variant:\"NW39OSZVq\"},wfYK5ZO5V:{LcYpFfYiA:\"Popular Choice\",variant:\"NW39OSZVq\"},Y8pUVMtHu:{LcYpFfYiA:vM8LZXDLK}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Starter\"})}),className:\"framer-9r9vk9\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"BO37_9Dd5\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GtZnyE_8u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Pro\"})})},VXLg5PnA0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Growth\"})})},wfYK5ZO5V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Growth\"})})},Y8pUVMtHu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Pro\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Ideal for hobbyists who require basic features.\"})}),className:\"framer-6uiu0f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KYRkPP2z3\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GtZnyE_8u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Ideal for teams that require more customization, SLAs, and support.\"})})},VXLg5PnA0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Ideal for scalable production-grade applications. \"})})},wfYK5ZO5V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Ideal for scalable production-grade applications. \"})})},Y8pUVMtHu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Ideal for teams that require more customization, SLAs, and support.\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16nsk1p\",layoutDependency:layoutDependency,layoutId:\"tXk5VyAob\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"$0\"})}),className:\"framer-hogqwz\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"P9CG_DoEL\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GtZnyE_8u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Custom\"})})},Y8pUVMtHu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Custom\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"$0\"})}),className:\"framer-l8jmxd\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"GGY5nP91x\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VXLg5PnA0:{\"data-highlight\":true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"$99\"})}),onTap:onTapbhw0df},wfYK5ZO5V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"$99\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"/ month\"})}),className:\"framer-3d1is9\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"YX19nCmUj\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mobyjo\",layoutDependency:layoutDependency,layoutId:\"Kf4rUlTcr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+432+0+0,...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+0},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+0},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+0},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+432+0+0},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2t8e4u-container\",layoutDependency:layoutDependency,layoutId:\"wOJXTtD6G-container\",nodeId:\"wOJXTtD6G\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"1,000 monthly active wallets\",id:\"wOJXTtD6G\",layoutId:\"wOJXTtD6G\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M16 7.99995V4.5006C16 3.66887 16 3.253 15.8248 2.99742C15.6717 2.77413 15.4346 2.62245 15.1678 2.57703C14.8623 2.52505 14.4847 2.69932 13.7295 3.04787L4.85901 7.14194C4.18551 7.45279 3.84875 7.60822 3.60211 7.84927C3.38406 8.06237 3.21762 8.3225 3.1155 8.60978C3 8.93474 3 9.30563 3 10.0474V14.9999M16.5 14.4999H16.51M3 11.2L3 17.7999C3 18.9201 3 19.4801 3.21799 19.9079C3.40973 20.2843 3.71569 20.5902 4.09202 20.782C4.51984 20.9999 5.07989 20.9999 6.2 20.9999H17.8C18.9201 20.9999 19.4802 21 19.908 20.782C20.2843 20.5902 20.5903 20.2843 20.782 19.9079C21 19.4801 21 18.9201 21 17.7999V11.2C21 10.0798 21 9.51979 20.782 9.09197C20.5903 8.71565 20.2843 8.40969 19.908 8.21794C19.4802 7.99995 18.9201 7.99995 17.8 7.99995L6.2 7.99995C5.0799 7.99995 4.51984 7.99995 4.09202 8.21794C3.7157 8.40968 3.40973 8.71564 3.21799 9.09197C3 9.51979 3 10.0798 3 11.2ZM17 14.4999C17 14.7761 16.7761 14.9999 16.5 14.9999C16.2239 14.9999 16 14.7761 16 14.4999C16 14.2238 16.2239 13.9999 16.5 13.9999C16.7761 13.9999 17 14.2238 17 14.4999Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{HXIQW6g1V:\"Everything in Growth, plus:\",variant:\"XX7NBzjZs\"},VXLg5PnA0:{HXIQW6g1V:\"Everything in Starter, plus:\",variant:\"XX7NBzjZs\"},wfYK5ZO5V:{HXIQW6g1V:\"Everything in Starter, plus:\",variant:\"XX7NBzjZs\"},Y8pUVMtHu:{HXIQW6g1V:\"Everything in Growth, plus:\",variant:\"XX7NBzjZs\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({GtZnyE_8u:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+40},VXLg5PnA0:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+40},wfYK5ZO5V:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+40},Y8pUVMtHu:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1iaa2w3-container\",layoutDependency:layoutDependency,layoutId:\"V4twPOslq-container\",nodeId:\"V4twPOslq\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"10,000 monthly active wallets\",id:\"V4twPOslq\",layoutId:\"V4twPOslq\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M16 7.99995V4.5006C16 3.66887 16 3.253 15.8248 2.99742C15.6717 2.77413 15.4346 2.62245 15.1678 2.57703C14.8623 2.52505 14.4847 2.69932 13.7295 3.04787L4.85901 7.14194C4.18551 7.45279 3.84875 7.60822 3.60211 7.84927C3.38406 8.06237 3.21762 8.3225 3.1155 8.60978C3 8.93474 3 9.30563 3 10.0474V14.9999M16.5 14.4999H16.51M3 11.2L3 17.7999C3 18.9201 3 19.4801 3.21799 19.9079C3.40973 20.2843 3.71569 20.5902 4.09202 20.782C4.51984 20.9999 5.07989 20.9999 6.2 20.9999H17.8C18.9201 20.9999 19.4802 21 19.908 20.782C20.2843 20.5902 20.5903 20.2843 20.782 19.9079C21 19.4801 21 18.9201 21 17.7999V11.2C21 10.0798 21 9.51979 20.782 9.09197C20.5903 8.71565 20.2843 8.40969 19.908 8.21794C19.4802 7.99995 18.9201 7.99995 17.8 7.99995L6.2 7.99995C5.0799 7.99995 4.51984 7.99995 4.09202 8.21794C3.7157 8.40968 3.40973 8.71564 3.21799 9.09197C3 9.51979 3 10.0798 3 11.2ZM17 14.4999C17 14.7761 16.7761 14.9999 16.5 14.9999C16.2239 14.9999 16 14.7761 16 14.4999C16 14.2238 16.2239 13.9999 16.5 13.9999C16.7761 13.9999 17 14.2238 17 14.4999Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{HXIQW6g1V:\"Custom rate limits for APIs & Infra\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M20.5 7.27777L12 12M12 12L3.49997 7.27777M12 12L12 21.5M21 16.0586V7.94147C21 7.59883 21 7.4275 20.9495 7.27471C20.9049 7.13953 20.8318 7.01545 20.7354 6.91076C20.6263 6.79242 20.4766 6.70922 20.177 6.54282L12.777 2.43171C12.4934 2.27415 12.3516 2.19537 12.2015 2.16448C12.0685 2.13715 11.9315 2.13715 11.7986 2.16448C11.6484 2.19537 11.5066 2.27415 11.223 2.43171L3.82297 6.54282C3.52345 6.70922 3.37369 6.79242 3.26463 6.91076C3.16816 7.01545 3.09515 7.13953 3.05048 7.27471C3 7.42751 3 7.59883 3 7.94147V16.0586C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9846 3.26463 17.0893C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7259 11.6484 21.8047 11.7986 21.8356C11.9315 21.8629 12.0685 21.8629 12.2015 21.8356C12.3516 21.8047 12.4934 21.7259 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0893C20.8318 16.9846 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0586Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M16.5 9.5L7.5 4.5\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},Y8pUVMtHu:{HXIQW6g1V:\"Custom rate limits for APIs & Infra\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M20.5 7.27777L12 12M12 12L3.49997 7.27777M12 12L12 21.5M21 16.0586V7.94147C21 7.59883 21 7.4275 20.9495 7.27471C20.9049 7.13953 20.8318 7.01545 20.7354 6.91076C20.6263 6.79242 20.4766 6.70922 20.177 6.54282L12.777 2.43171C12.4934 2.27415 12.3516 2.19537 12.2015 2.16448C12.0685 2.13715 11.9315 2.13715 11.7986 2.16448C11.6484 2.19537 11.5066 2.27415 11.223 2.43171L3.82297 6.54282C3.52345 6.70922 3.37369 6.79242 3.26463 6.91076C3.16816 7.01545 3.09515 7.13953 3.05048 7.27471C3 7.42751 3 7.59883 3 7.94147V16.0586C3 16.4012 3 16.5725 3.05048 16.7253C3.09515 16.8605 3.16816 16.9846 3.26463 17.0893C3.37369 17.2076 3.52345 17.2908 3.82297 17.4572L11.223 21.5683C11.5066 21.7259 11.6484 21.8047 11.7986 21.8356C11.9315 21.8629 12.0685 21.8629 12.2015 21.8356C12.3516 21.8047 12.4934 21.7259 12.777 21.5683L20.177 17.4572C20.4766 17.2908 20.6263 17.2076 20.7354 17.0893C20.8318 16.9846 20.9049 16.8605 20.9495 16.7253C21 16.5725 21 16.4012 21 16.0586Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M16.5 9.5L7.5 4.5\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+432+0+40,...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+80},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+80},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+80},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+432+0+40},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bs6n9z-container\",layoutDependency:layoutDependency,layoutId:\"X4x3TpeZN-container\",nodeId:\"X4x3TpeZN\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Web, Mobile & Gaming SDKs\",id:\"X4x3TpeZN\",layoutId:\"X4x3TpeZN\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M22 9H2M14 17.5L16.5 15L14 12.5M10 12.5L7.5 15L10 17.5M2 7.8L2 16.2C2 17.8802 2 18.7202 2.32698 19.362C2.6146 19.9265 3.07354 20.3854 3.63803 20.673C4.27976 21 5.11984 21 6.8 21H17.2C18.8802 21 19.7202 21 20.362 20.673C20.9265 20.3854 21.3854 19.9265 21.673 19.362C22 18.7202 22 17.8802 22 16.2V7.8C22 6.11984 22 5.27977 21.673 4.63803C21.3854 4.07354 20.9265 3.6146 20.362 3.32698C19.7202 3 18.8802 3 17.2 3L6.8 3C5.11984 3 4.27976 3 3.63803 3.32698C3.07354 3.6146 2.6146 4.07354 2.32698 4.63803C2 5.27976 2 6.11984 2 7.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{HXIQW6g1V:\"Dedicated support channel\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M12.4996 11V7.5M12.4996 14.5H12.5096M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},VXLg5PnA0:{HXIQW6g1V:\"Production Grade Infrastructure\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M21.2 22C21.48 22 21.62 22 21.727 21.9455C21.8211 21.8976 21.8976 21.8211 21.9455 21.727C22 21.62 22 21.48 22 21.2V10.8C22 10.52 22 10.38 21.9455 10.273C21.8976 10.1789 21.8211 10.1024 21.727 10.0545C21.62 10 21.48 10 21.2 10L18.8 10C18.52 10 18.38 10 18.273 10.0545C18.1789 10.1024 18.1024 10.1789 18.0545 10.273C18 10.38 18 10.52 18 10.8V13.2C18 13.48 18 13.62 17.9455 13.727C17.8976 13.8211 17.8211 13.8976 17.727 13.9455C17.62 14 17.48 14 17.2 14H14.8C14.52 14 14.38 14 14.273 14.0545C14.1789 14.1024 14.1024 14.1789 14.0545 14.273C14 14.38 14 14.52 14 14.8V17.2C14 17.48 14 17.62 13.9455 17.727C13.8976 17.8211 13.8211 17.8976 13.727 17.9455C13.62 18 13.48 18 13.2 18H10.8C10.52 18 10.38 18 10.273 18.0545C10.1789 18.1024 10.1024 18.1789 10.0545 18.273C10 18.38 10 18.52 10 18.8V21.2C10 21.48 10 21.62 10.0545 21.727C10.1024 21.8211 10.1789 21.8976 10.273 21.9455C10.38 22 10.52 22 10.8 22L21.2 22Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M10 6.8C10 6.51997 10 6.37996 10.0545 6.273C10.1024 6.17892 10.1789 6.10243 10.273 6.0545C10.38 6 10.52 6 10.8 6H13.2C13.48 6 13.62 6 13.727 6.0545C13.8211 6.10243 13.8976 6.17892 13.9455 6.273C14 6.37996 14 6.51997 14 6.8V9.2C14 9.48003 14 9.62004 13.9455 9.727C13.8976 9.82108 13.8211 9.89757 13.727 9.9455C13.62 10 13.48 10 13.2 10H10.8C10.52 10 10.38 10 10.273 9.9455C10.1789 9.89757 10.1024 9.82108 10.0545 9.727C10 9.62004 10 9.48003 10 9.2V6.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M3 12.8C3 12.52 3 12.38 3.0545 12.273C3.10243 12.1789 3.17892 12.1024 3.273 12.0545C3.37996 12 3.51997 12 3.8 12H6.2C6.48003 12 6.62004 12 6.727 12.0545C6.82108 12.1024 6.89757 12.1789 6.9455 12.273C7 12.38 7 12.52 7 12.8V15.2C7 15.48 7 15.62 6.9455 15.727C6.89757 15.8211 6.82108 15.8976 6.727 15.9455C6.62004 16 6.48003 16 6.2 16H3.8C3.51997 16 3.37996 16 3.273 15.9455C3.17892 15.8976 3.10243 15.8211 3.0545 15.727C3 15.62 3 15.48 3 15.2V12.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M2 2.8C2 2.51997 2 2.37996 2.0545 2.273C2.10243 2.17892 2.17892 2.10243 2.273 2.0545C2.37996 2 2.51997 2 2.8 2H5.2C5.48003 2 5.62004 2 5.727 2.0545C5.82108 2.10243 5.89757 2.17892 5.9455 2.273C6 2.37996 6 2.51997 6 2.8V5.2C6 5.48003 6 5.62004 5.9455 5.727C5.89757 5.82108 5.82108 5.89757 5.727 5.9455C5.62004 6 5.48003 6 5.2 6H2.8C2.51997 6 2.37996 6 2.273 5.9455C2.17892 5.89757 2.10243 5.82108 2.0545 5.727C2 5.62004 2 5.48003 2 5.2V2.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},wfYK5ZO5V:{HXIQW6g1V:\"Production Grade Infrastructure\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M21.2 22C21.48 22 21.62 22 21.727 21.9455C21.8211 21.8976 21.8976 21.8211 21.9455 21.727C22 21.62 22 21.48 22 21.2V10.8C22 10.52 22 10.38 21.9455 10.273C21.8976 10.1789 21.8211 10.1024 21.727 10.0545C21.62 10 21.48 10 21.2 10L18.8 10C18.52 10 18.38 10 18.273 10.0545C18.1789 10.1024 18.1024 10.1789 18.0545 10.273C18 10.38 18 10.52 18 10.8V13.2C18 13.48 18 13.62 17.9455 13.727C17.8976 13.8211 17.8211 13.8976 17.727 13.9455C17.62 14 17.48 14 17.2 14H14.8C14.52 14 14.38 14 14.273 14.0545C14.1789 14.1024 14.1024 14.1789 14.0545 14.273C14 14.38 14 14.52 14 14.8V17.2C14 17.48 14 17.62 13.9455 17.727C13.8976 17.8211 13.8211 17.8976 13.727 17.9455C13.62 18 13.48 18 13.2 18H10.8C10.52 18 10.38 18 10.273 18.0545C10.1789 18.1024 10.1024 18.1789 10.0545 18.273C10 18.38 10 18.52 10 18.8V21.2C10 21.48 10 21.62 10.0545 21.727C10.1024 21.8211 10.1789 21.8976 10.273 21.9455C10.38 22 10.52 22 10.8 22L21.2 22Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M10 6.8C10 6.51997 10 6.37996 10.0545 6.273C10.1024 6.17892 10.1789 6.10243 10.273 6.0545C10.38 6 10.52 6 10.8 6H13.2C13.48 6 13.62 6 13.727 6.0545C13.8211 6.10243 13.8976 6.17892 13.9455 6.273C14 6.37996 14 6.51997 14 6.8V9.2C14 9.48003 14 9.62004 13.9455 9.727C13.8976 9.82108 13.8211 9.89757 13.727 9.9455C13.62 10 13.48 10 13.2 10H10.8C10.52 10 10.38 10 10.273 9.9455C10.1789 9.89757 10.1024 9.82108 10.0545 9.727C10 9.62004 10 9.48003 10 9.2V6.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M3 12.8C3 12.52 3 12.38 3.0545 12.273C3.10243 12.1789 3.17892 12.1024 3.273 12.0545C3.37996 12 3.51997 12 3.8 12H6.2C6.48003 12 6.62004 12 6.727 12.0545C6.82108 12.1024 6.89757 12.1789 6.9455 12.273C7 12.38 7 12.52 7 12.8V15.2C7 15.48 7 15.62 6.9455 15.727C6.89757 15.8211 6.82108 15.8976 6.727 15.9455C6.62004 16 6.48003 16 6.2 16H3.8C3.51997 16 3.37996 16 3.273 15.9455C3.17892 15.8976 3.10243 15.8211 3.0545 15.727C3 15.62 3 15.48 3 15.2V12.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>   <path d=\"M2 2.8C2 2.51997 2 2.37996 2.0545 2.273C2.10243 2.17892 2.17892 2.10243 2.273 2.0545C2.37996 2 2.51997 2 2.8 2H5.2C5.48003 2 5.62004 2 5.727 2.0545C5.82108 2.10243 5.89757 2.17892 5.9455 2.273C6 2.37996 6 2.51997 6 2.8V5.2C6 5.48003 6 5.62004 5.9455 5.727C5.89757 5.82108 5.82108 5.89757 5.727 5.9455C5.62004 6 5.48003 6 5.2 6H2.8C2.51997 6 2.37996 6 2.273 5.9455C2.17892 5.89757 2.10243 5.82108 2.0545 5.727C2 5.62004 2 5.48003 2 5.2V2.8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},Y8pUVMtHu:{HXIQW6g1V:\"Dedicated support channel\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M12.4996 11V7.5M12.4996 14.5H12.5096M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+432+0+80,...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+120},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+120},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+120},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+432+0+80},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c2pgwa-container\",layoutDependency:layoutDependency,layoutId:\"mOSMS4jDh-container\",nodeId:\"mOSMS4jDh\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Contract & Wallet APIs\",id:\"mOSMS4jDh\",layoutId:\"mOSMS4jDh\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M4 18V17.8C4 16.1198 4 15.2798 4.32698 14.638C4.6146 14.0735 5.07354 13.6146 5.63803 13.327C6.27976 13 7.11984 13 8.8 13H15.2C16.8802 13 17.7202 13 18.362 13.327C18.9265 13.6146 19.3854 14.0735 19.673 14.638C20 15.2798 20 16.1198 20 17.8V18M4 18C2.89543 18 2 18.8954 2 20C2 21.1046 2.89543 22 4 22C5.10457 22 6 21.1046 6 20C6 18.8954 5.10457 18 4 18ZM20 18C18.8954 18 18 18.8954 18 20C18 21.1046 18.8954 22 20 22C21.1046 22 22 21.1046 22 20C22 18.8954 21.1046 18 20 18ZM12 18C10.8954 18 10 18.8954 10 20C10 21.1046 10.8954 22 12 22C13.1046 22 14 21.1046 14 20C14 18.8954 13.1046 18 12 18ZM12 18V8M6 8H18C18.9319 8 19.3978 8 19.7654 7.84776C20.2554 7.64477 20.6448 7.25542 20.8478 6.76537C21 6.39782 21 5.93188 21 5C21 4.06812 21 3.60218 20.8478 3.23463C20.6448 2.74458 20.2554 2.35523 19.7654 2.15224C19.3978 2 18.9319 2 18 2H6C5.06812 2 4.60218 2 4.23463 2.15224C3.74458 2.35523 3.35523 2.74458 3.15224 3.23463C3 3.60218 3 4.06812 3 5C3 5.93188 3 6.39782 3.15224 6.76537C3.35523 7.25542 3.74458 7.64477 4.23463 7.84776C4.60218 8 5.06812 8 6 8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{HXIQW6g1V:\"Guaranteed support response time\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M22.7 11.5L20.7005 13.5L18.7 11.5M20.9451 13C20.9814 12.6717 21 12.338 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C14.8273 21 17.35 19.6963 19 17.6573M12 7V12L15 14\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},VXLg5PnA0:{HXIQW6g1V:\"Prioritized Support\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M11.707 3.03647C7.38421 3.43621 3.99962 7.07285 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.44299 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78121 19.299 8.85882 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20C16.9304 20 20.5694 16.6098 20.9641 12.2819M20.1209 3.87868C21.2925 5.05025 21.2925 6.94975 20.1209 8.12132C18.9494 9.29289 17.0499 9.29289 15.8783 8.12132C14.7067 6.94975 14.7067 5.05025 15.8783 3.87868C17.0499 2.70711 18.9494 2.70711 20.1209 3.87868Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},wfYK5ZO5V:{HXIQW6g1V:\"Prioritized Support\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M11.707 3.03647C7.38421 3.43621 3.99962 7.07285 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.44299 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78121 19.299 8.85882 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20C16.9304 20 20.5694 16.6098 20.9641 12.2819M20.1209 3.87868C21.2925 5.05025 21.2925 6.94975 20.1209 8.12132C18.9494 9.29289 17.0499 9.29289 15.8783 8.12132C14.7067 6.94975 14.7067 5.05025 15.8783 3.87868C17.0499 2.70711 18.9494 2.70711 20.1209 3.87868Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},Y8pUVMtHu:{HXIQW6g1V:\"Guaranteed support response time\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M22.7 11.5L20.7005 13.5L18.7 11.5M20.9451 13C20.9814 12.6717 21 12.338 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C14.8273 21 17.35 19.6963 19 17.6573M12 7V12L15 14\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+432+0+120,...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+160},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+160},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+160},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+432+0+120},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qfxh2k-container\",layoutDependency:layoutDependency,layoutId:\"Ri8cG5KAA-container\",nodeId:\"Ri8cG5KAA\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Audited smart contracts\",id:\"Ri8cG5KAA\",layoutId:\"Ri8cG5KAA\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M14 2.26953V6.40007C14 6.96012 14 7.24015 14.109 7.45406C14.2049 7.64222 14.3578 7.7952 14.546 7.89108C14.7599 8.00007 15.0399 8.00007 15.6 8.00007H19.7305M14 17H8M16 13H8M20 9.98822V17.2C20 18.8802 20 19.7202 19.673 20.362C19.3854 20.9265 18.9265 21.3854 18.362 21.673C17.7202 22 16.8802 22 15.2 22H8.8C7.11984 22 6.27976 22 5.63803 21.673C5.07354 21.3854 4.6146 20.9265 4.32698 20.362C4 19.7202 4 18.8802 4 17.2V6.8C4 5.11984 4 4.27976 4.32698 3.63803C4.6146 3.07354 5.07354 2.6146 5.63803 2.32698C6.27976 2 7.11984 2 8.8 2H12.0118C12.7455 2 13.1124 2 13.4577 2.08289C13.7638 2.15638 14.0564 2.27759 14.3249 2.44208C14.6276 2.6276 14.887 2.88703 15.4059 3.40589L18.5941 6.59411C19.113 7.11297 19.3724 7.3724 19.5579 7.67515C19.7224 7.94356 19.8436 8.2362 19.9171 8.5423C20 8.88757 20 9.25445 20 9.98822Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{HXIQW6g1V:\"Direct access to solutions team\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M3.34025 16.9997C2.0881 14.8298 2.72473 12.0644 4.79795 10.6601L4.80018 10.6578C6.46564 9.53235 8.65775 9.57012 10.2843 10.7523L13.7164 13.2477C15.3418 14.4299 17.5339 14.4676 19.2005 13.3421L19.2027 13.3399C21.2771 11.9356 21.9148 9.16792 20.6604 7.00026M17.002 20.6593C14.8321 21.9114 12.0667 21.2748 10.6623 19.2016L10.6601 19.1994C9.53457 17.5339 9.57234 15.3418 10.7545 13.7152L13.2499 10.2832C14.4321 8.6577 14.4699 6.46559 13.3444 4.79901L13.3399 4.79679C11.9356 2.72468 9.16792 2.08582 7.00026 3.3402M19.0705 4.92901C22.9758 8.83436 22.9758 15.1651 19.0705 19.0705C15.1651 22.9758 8.83436 22.9758 4.92901 19.0705C1.02366 15.1651 1.02366 8.83436 4.92901 4.92901C8.83436 1.02366 15.1651 1.02366 19.0705 4.92901Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},VXLg5PnA0:{HXIQW6g1V:\"Custom Branding\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M12 20.4722C13.0615 21.4223 14.4633 22 16 22C19.3137 22 22 19.3137 22 16C22 13.2331 20.1271 10.9036 17.5798 10.2102M6.42018 10.2102C3.87293 10.9036 2 13.2331 2 16C2 19.3137 4.68629 22 8 22C11.3137 22 14 19.3137 14 16C14 15.2195 13.851 14.4738 13.5798 13.7898M18 8C18 11.3137 15.3137 14 12 14C8.68629 14 6 11.3137 6 8C6 4.68629 8.68629 2 12 2C15.3137 2 18 4.68629 18 8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},wfYK5ZO5V:{HXIQW6g1V:\"Custom Branding\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M12 20.4722C13.0615 21.4223 14.4633 22 16 22C19.3137 22 22 19.3137 22 16C22 13.2331 20.1271 10.9036 17.5798 10.2102M6.42018 10.2102C3.87293 10.9036 2 13.2331 2 16C2 19.3137 4.68629 22 8 22C11.3137 22 14 19.3137 14 16C14 15.2195 13.851 14.4738 13.5798 13.7898M18 8C18 11.3137 15.3137 14 12 14C8.68629 14 6 11.3137 6 8C6 4.68629 8.68629 2 12 2C15.3137 2 18 4.68629 18 8Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},Y8pUVMtHu:{HXIQW6g1V:\"Direct access to solutions team\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M3.34025 16.9997C2.0881 14.8298 2.72473 12.0644 4.79795 10.6601L4.80018 10.6578C6.46564 9.53235 8.65775 9.57012 10.2843 10.7523L13.7164 13.2477C15.3418 14.4299 17.5339 14.4676 19.2005 13.3421L19.2027 13.3399C21.2771 11.9356 21.9148 9.16792 20.6604 7.00026M17.002 20.6593C14.8321 21.9114 12.0667 21.2748 10.6623 19.2016L10.6601 19.1994C9.53457 17.5339 9.57234 15.3418 10.7545 13.7152L13.2499 10.2832C14.4321 8.6577 14.4699 6.46559 13.3444 4.79901L13.3399 4.79679C11.9356 2.72468 9.16792 2.08582 7.00026 3.3402M19.0705 4.92901C22.9758 8.83436 22.9758 15.1651 19.0705 19.0705C15.1651 22.9758 8.83436 22.9758 4.92901 19.0705C1.02366 15.1651 1.02366 8.83436 4.92901 4.92901C8.83436 1.02366 15.1651 1.02366 19.0705 4.92901Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'}},baseVariant,gestureVariant)})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({GtZnyE_8u:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+200},Y8pUVMtHu:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h2aqgr-container\",layoutDependency:layoutDependency,layoutId:\"mUtTxHtOX-container\",nodeId:\"mUtTxHtOX\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Direct access to engineering team\",id:\"mUtTxHtOX\",layoutId:\"mUtTxHtOX\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M14.5 15L17.5 12L14.5 9M9.5 9L6.5 12L9.5 15M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+432+0+160,...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+240},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+200},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+200},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+432+0+160},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hu2020-container\",layoutDependency:layoutDependency,layoutId:\"L5HDHCOCj-container\",nodeId:\"L5HDHCOCj\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Community Support\",id:\"L5HDHCOCj\",layoutId:\"L5HDHCOCj\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M8.99962 14C8.99962 14 10.3121 15.5 12.4996 15.5C14.6871 15.5 15.9996 14 15.9996 14M15.2496 9H15.2596M9.74962 9H9.75962M12.4996 20C17.194 20 20.9996 16.1944 20.9996 11.5C20.9996 6.80558 17.194 3 12.4996 3C7.8052 3 3.99962 6.80558 3.99962 11.5C3.99962 12.45 4.15547 13.3636 4.443 14.2166C4.55119 14.5376 4.60529 14.6981 4.61505 14.8214C4.62469 14.9432 4.6174 15.0286 4.58728 15.1469C4.55677 15.2668 4.48942 15.3915 4.35472 15.6408L2.71906 18.6684C2.48575 19.1002 2.36909 19.3161 2.3952 19.4828C2.41794 19.6279 2.50337 19.7557 2.6288 19.8322C2.7728 19.9201 3.01692 19.8948 3.50517 19.8444L8.62619 19.315C8.78127 19.299 8.85881 19.291 8.92949 19.2937C8.999 19.2963 9.04807 19.3029 9.11586 19.3185C9.18478 19.3344 9.27145 19.3678 9.44478 19.4345C10.3928 19.7998 11.4228 20 12.4996 20ZM15.7496 9C15.7496 9.27614 15.5258 9.5 15.2496 9.5C14.9735 9.5 14.7496 9.27614 14.7496 9C14.7496 8.72386 14.9735 8.5 15.2496 8.5C15.5258 8.5 15.7496 8.72386 15.7496 9ZM10.2496 9C10.2496 9.27614 10.0258 9.5 9.74962 9.5C9.47348 9.5 9.24962 9.27614 9.24962 9C9.24962 8.72386 9.47348 8.5 9.74962 8.5C10.0258 8.5 10.2496 8.72386 10.2496 9Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{HXIQW6g1V:\"Enterprise grade SLAs\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M19 9C19 12.866 15.866 16 12 16M19 9C19 5.13401 15.866 2 12 2M19 9H5M12 16C8.13401 16 5 12.866 5 9M12 16C13.7509 14.0832 14.7468 11.5956 14.8009 9C14.7468 6.40442 13.7509 3.91685 12 2M12 16C10.2491 14.0832 9.25498 11.5956 9.20091 9C9.25498 6.40442 10.2491 3.91685 12 2M12 16V18M5 9C5 5.13401 8.13401 2 12 2M14 20C14 21.1046 13.1046 22 12 22C10.8954 22 10 21.1046 10 20M14 20C14 18.8954 13.1046 18 12 18M14 20H21M10 20C10 18.8954 10.8954 18 12 18M10 20H3\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},VXLg5PnA0:{HXIQW6g1V:\"User Analytics\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M12 16V21M18 21L14.0486 17.7072C13.3198 17.0998 12.9554 16.7962 12.5487 16.6801C12.19 16.5778 11.81 16.5778 11.4513 16.6801C11.0446 16.7962 10.6802 17.0998 9.95141 17.7072L6 21M8 11V12M12 9V12M16 7V12M22 3H2M3 3H21V11.2C21 12.8802 21 13.7202 20.673 14.362C20.3854 14.9265 19.9265 15.3854 19.362 15.673C18.7202 16 17.8802 16 16.2 16H7.8C6.11984 16 5.27976 16 4.63803 15.673C4.07354 15.3854 3.6146 14.9265 3.32698 14.362C3 13.7202 3 12.8802 3 11.2V3Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},wfYK5ZO5V:{HXIQW6g1V:\"User Analytics\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M12 16V21M18 21L14.0486 17.7072C13.3198 17.0998 12.9554 16.7962 12.5487 16.6801C12.19 16.5778 11.81 16.5778 11.4513 16.6801C11.0446 16.7962 10.6802 17.0998 9.95141 17.7072L6 21M8 11V12M12 9V12M16 7V12M22 3H2M3 3H21V11.2C21 12.8802 21 13.7202 20.673 14.362C20.3854 14.9265 19.9265 15.3854 19.362 15.673C18.7202 16 17.8802 16 16.2 16H7.8C6.11984 16 5.27976 16 4.63803 15.673C4.07354 15.3854 3.6146 14.9265 3.32698 14.362C3 13.7202 3 12.8802 3 11.2V3Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'},Y8pUVMtHu:{HXIQW6g1V:\"Enterprise grade SLAs\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M19 9C19 12.866 15.866 16 12 16M19 9C19 5.13401 15.866 2 12 2M19 9H5M12 16C8.13401 16 5 12.866 5 9M12 16C13.7509 14.0832 14.7468 11.5956 14.8009 9C14.7468 6.40442 13.7509 3.91685 12 2M12 16C10.2491 14.0832 9.25498 11.5956 9.20091 9C9.25498 6.40442 10.2491 3.91685 12 2M12 16V18M5 9C5 5.13401 8.13401 2 12 2M14 20C14 21.1046 13.1046 22 12 22C10.8954 22 10 21.1046 10 20M14 20C14 18.8954 13.1046 18 12 18M14 20H21M10 20C10 18.8954 10.8954 18 12 18M10 20H3\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>'}},baseVariant,gestureVariant)})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+432+0+200,...addPropertyOverrides({Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+432+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bv3nk6-container\",layoutDependency:layoutDependency,layoutId:\"QxR4XD4fy-container\",nodeId:\"QxR4XD4fy\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Blockchain infra (RPC, IPFS)\",id:\"QxR4XD4fy\",layoutId:\"QxR4XD4fy\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M17.8779 20.0902C16.1694 21.3315 14.1118 22 12 22C9.88824 22 7.83066 21.3315 6.12218 20.0902M16.3837 3.01206C18.2818 3.93781 19.8381 5.44068 20.8295 7.30528C21.8209 9.16989 22.1966 11.3005 21.9027 13.3917M2.09745 13.3916C1.80355 11.3004 2.17923 9.16979 3.17066 7.30519C4.16208 5.44059 5.71836 3.93771 7.61642 3.01196M11.4344 6.56569L6.56572 11.4343C6.36771 11.6323 6.26871 11.7313 6.23161 11.8455C6.19899 11.9459 6.19899 12.0541 6.23161 12.1545C6.26871 12.2687 6.36771 12.3677 6.56572 12.5657L11.4344 17.4343C11.6324 17.6323 11.7314 17.7313 11.8455 17.7684C11.9459 17.8011 12.0541 17.8011 12.1545 17.7684C12.2687 17.7313 12.3677 17.6323 12.5657 17.4343L17.4344 12.5657C17.6324 12.3677 17.7314 12.2687 17.7685 12.1545C17.8011 12.0541 17.8011 11.9459 17.7685 11.8455C17.7314 11.7313 17.6324 11.6323 17.4344 11.4343L12.5657 6.56569C12.3677 6.36768 12.2687 6.26867 12.1545 6.23158C12.0541 6.19895 11.9459 6.19895 11.8455 6.23158C11.7314 6.26867 11.6324 6.36768 11.4344 6.56569Z\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*0)+0+432+0+240,...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+0+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*0)+0+432+0+280},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+280},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+280},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+0+0+432+0+240},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+0+0+432+0+280}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cmvkdt-container\",layoutDependency:layoutDependency,layoutId:\"uMOqAoXOZ-container\",nodeId:\"uMOqAoXOZ\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Up to 300K Insight queries\",id:\"uMOqAoXOZ\",layoutId:\"uMOqAoXOZ\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M20.5 7.27783L12 12.0001M12 12.0001L3.49997 7.27783M12 12.0001L12 21.5001M21 12.0001V7.94153C21 7.59889 21 7.42757 20.9495 7.27477C20.9049 7.13959 20.8318 7.01551 20.7354 6.91082C20.6263 6.79248 20.4766 6.70928 20.177 6.54288L12.777 2.43177C12.4934 2.27421 12.3516 2.19543 12.2015 2.16454C12.0685 2.13721 11.9315 2.13721 11.7986 2.16454C11.6484 2.19543 11.5066 2.27421 11.223 2.43177L3.82297 6.54288C3.52345 6.70928 3.37368 6.79248 3.26463 6.91082C3.16816 7.01551 3.09515 7.13959 3.05048 7.27477C3 7.42757 3 7.59889 3 7.94153V16.0586C3 16.4013 3 16.5726 3.05048 16.7254C3.09515 16.8606 3.16816 16.9847 3.26463 17.0893C3.37368 17.2077 3.52346 17.2909 3.82297 17.4573L11.223 21.5684C11.5066 21.726 11.6484 21.8047 11.7986 21.8356C11.9315 21.863 12.0685 21.863 12.2015 21.8356C12.3516 21.8047 12.4934 21.726 12.777 21.5684L13 21.4445M7.5 4.50008L16.5 9.50008M22 21.5001L21 20.5001M22 18.0001C22 19.6569 20.6569 21.0001 19 21.0001C17.3431 21.0001 16 19.6569 16 18.0001C16 16.3432 17.3431 15.0001 19 15.0001C20.6569 15.0001 22 16.3432 22 18.0001Z\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{HXIQW6g1V:\"Custom query limits for Insight\"},VXLg5PnA0:{HXIQW6g1V:\"Up to 10M Insight queries\"},wfYK5ZO5V:{HXIQW6g1V:\"Up to 10M Insight queries\"},Y8pUVMtHu:{HXIQW6g1V:\"Custom query limits for Insight\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({VXLg5PnA0:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+-95+0+432+0+240},wfYK5ZO5V:{height:20,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+0+0+432+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8as4ff-container\",layoutDependency:layoutDependency,layoutId:\"a2souQlH_-container\",nodeId:\"a2souQlH_\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(PricingItem,{height:\"100%\",HXIQW6g1V:\"Advanced Paymaster Rules\",id:\"a2souQlH_\",layoutId:\"a2souQlH_\",mxrqkkexD:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">   <path d=\"M22 10H2M11 19L18.8 19C19.9201 19 20.4802 19 20.908 18.782C21.2843 18.5903 21.5903 18.2843 21.782 17.908C22 17.4802 22 16.9201 22 15.8V8.2C22 7.0799 22 6.51984 21.782 6.09202C21.5903 5.7157 21.2843 5.40974 20.908 5.21799C20.4802 5 19.9201 5 18.8 5H17M11 19L13 21M11 19L13 17M7 19H5.2C4.07989 19 3.51984 19 3.09202 18.782C2.71569 18.5903 2.40973 18.2843 2.21799 17.908C2 17.4802 2 16.9201 2 15.8V8.2C2 7.0799 2 6.51984 2.21799 6.09202C2.40973 5.71569 2.7157 5.40973 3.09202 5.21799C3.51984 5 4.0799 5 5.2 5H13M13 5L11 7M13 5L11 3\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',RsOrFQSqX:2,style:{height:\"100%\",width:\"100%\"},variant:\"awO_ibgCa\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gdNhKioSl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+692+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-740)/1*1),...addPropertyOverrides({GtZnyE_8u:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||702)-0-Math.max(0,((componentViewport?.height||702)-0-0)/1)*1)/1*0)+32+(0+732+(Math.max(0,((componentViewport?.height||702)-0-0)/1)*1-80-780)/1*1)},VXLg5PnA0:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||702)-2-702)/2+0+0)+32+669},wfYK5ZO5V:{y:(componentViewport?.y||0)+1+(((componentViewport?.height||688)-2-892)/2+0+0)+32+764},Y2fLhRSEt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||646)-0-852)/2+0+0)+32+724},Y8pUVMtHu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||686)-0-892)/2+0+0)+32+764}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3wotpu-container\",layoutDependency:layoutDependency,layoutId:\"oTxCwyn_c-container\",nodeId:\"oTxCwyn_c\",rendersWithMotion:true,scopeId:\"Q1uFEGL4K\",children:/*#__PURE__*/_jsx(ButtonsButton,{BL_hxI2b_:\"https://thirdweb.com/team/~/~/settings/billing\",BnmH_z3oH:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:1.25,height:\"100%\",I4KuTahqi:\"Get Started for Free\",id:\"oTxCwyn_c\",layoutId:\"oTxCwyn_c\",q8NV5vffb:\"space-between\",RSajvyivS:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",style:{width:\"100%\"},variant:\"Sk5Gu91Ro\",width:\"100%\",...addPropertyOverrides({GtZnyE_8u:{BL_hxI2b_:resolvedLinks[0],I4KuTahqi:\"Contact Us\",variant:\"ZRJSAwbJC\"},VXLg5PnA0:{I4KuTahqi:\"Get Started with Growth\",variant:\"Z0xuvZuJ_\"},wfYK5ZO5V:{I4KuTahqi:\"Get Started with Growth\",variant:\"Z0xuvZuJ_\"},Y8pUVMtHu:{BL_hxI2b_:\"https://meetings.hubspot.com/sales-thirdweb/thirdweb-pro\",I4KuTahqi:\"Contact Us\",variant:\"ZRJSAwbJC\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zSyog.framer-11z40ad, .framer-zSyog .framer-11z40ad { display: block; }\",\".framer-zSyog.framer-14uoz4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: 702px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 369px; }\",\".framer-zSyog .framer-15kc6i0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 32px 32px 48px 32px; position: relative; width: 100%; }\",\".framer-zSyog .framer-1caipd5, .framer-zSyog .framer-ksa9kq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zSyog .framer-140rcvg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zSyog .framer-1l3sptr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zSyog .framer-pjo4ba-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zSyog .framer-9r9vk9, .framer-zSyog .framer-6uiu0f { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zSyog .framer-16nsk1p { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zSyog .framer-hogqwz, .framer-zSyog .framer-l8jmxd, .framer-zSyog .framer-3d1is9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zSyog .framer-1mobyjo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zSyog .framer-2t8e4u-container, .framer-zSyog .framer-1iaa2w3-container, .framer-zSyog .framer-1bs6n9z-container, .framer-zSyog .framer-1c2pgwa-container, .framer-zSyog .framer-qfxh2k-container, .framer-zSyog .framer-1h2aqgr-container, .framer-zSyog .framer-hu2020-container, .framer-zSyog .framer-1bv3nk6-container, .framer-zSyog .framer-cmvkdt-container, .framer-zSyog .framer-8as4ff-container { flex: none; height: 20px; position: relative; width: 100%; }\",\".framer-zSyog .framer-3wotpu-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zSyog .framer-1caipd5, .framer-zSyog .framer-ksa9kq, .framer-zSyog .framer-140rcvg, .framer-zSyog .framer-1l3sptr, .framer-zSyog .framer-16nsk1p, .framer-zSyog .framer-1mobyjo { gap: 0px; } .framer-zSyog .framer-1caipd5 > *, .framer-zSyog .framer-ksa9kq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zSyog .framer-1caipd5 > :first-child, .framer-zSyog .framer-ksa9kq > :first-child, .framer-zSyog .framer-140rcvg > :first-child, .framer-zSyog .framer-1l3sptr > :first-child, .framer-zSyog .framer-1mobyjo > :first-child { margin-top: 0px; } .framer-zSyog .framer-1caipd5 > :last-child, .framer-zSyog .framer-ksa9kq > :last-child, .framer-zSyog .framer-140rcvg > :last-child, .framer-zSyog .framer-1l3sptr > :last-child, .framer-zSyog .framer-1mobyjo > :last-child { margin-bottom: 0px; } .framer-zSyog .framer-140rcvg > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-zSyog .framer-1l3sptr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zSyog .framer-16nsk1p > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-zSyog .framer-16nsk1p > :first-child { margin-left: 0px; } .framer-zSyog .framer-16nsk1p > :last-child { margin-right: 0px; } .framer-zSyog .framer-1mobyjo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-zSyog.framer-v-odw5d.framer-14uoz4 { gap: 32px; justify-content: center; padding: 1px 0px 1px 0px; }\",\".framer-zSyog.framer-v-odw5d .framer-15kc6i0 { flex: none; gap: 32px; height: 702px; justify-content: center; }\",\".framer-zSyog.framer-v-odw5d .framer-l8jmxd { cursor: pointer; }\",\".framer-zSyog.framer-v-odw5d .framer-2t8e4u-container, .framer-zSyog.framer-v-3yme03 .framer-3wotpu-container, .framer-zSyog.framer-v-ojnd0 .framer-2t8e4u-container, .framer-zSyog.framer-v-m09b1o .framer-3wotpu-container { order: 1; }\",\".framer-zSyog.framer-v-odw5d .framer-1iaa2w3-container, .framer-zSyog.framer-v-ojnd0 .framer-1iaa2w3-container { order: 2; }\",\".framer-zSyog.framer-v-odw5d .framer-1bs6n9z-container, .framer-zSyog.framer-v-ojnd0 .framer-1bs6n9z-container { order: 3; }\",\".framer-zSyog.framer-v-odw5d .framer-1c2pgwa-container, .framer-zSyog.framer-v-ojnd0 .framer-1c2pgwa-container { order: 4; }\",\".framer-zSyog.framer-v-odw5d .framer-qfxh2k-container, .framer-zSyog.framer-v-ojnd0 .framer-qfxh2k-container { order: 5; }\",\".framer-zSyog.framer-v-odw5d .framer-hu2020-container, .framer-zSyog.framer-v-ojnd0 .framer-hu2020-container { order: 10; }\",\".framer-zSyog.framer-v-odw5d .framer-cmvkdt-container, .framer-zSyog.framer-v-ojnd0 .framer-cmvkdt-container { order: 13; }\",\".framer-zSyog.framer-v-odw5d .framer-8as4ff-container, .framer-zSyog.framer-v-ojnd0 .framer-8as4ff-container { order: 12; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zSyog.framer-v-odw5d.framer-14uoz4, .framer-zSyog.framer-v-odw5d .framer-15kc6i0 { gap: 0px; } .framer-zSyog.framer-v-odw5d.framer-14uoz4 > *, .framer-zSyog.framer-v-odw5d .framer-15kc6i0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zSyog.framer-v-odw5d.framer-14uoz4 > :first-child, .framer-zSyog.framer-v-odw5d .framer-15kc6i0 > :first-child { margin-top: 0px; } .framer-zSyog.framer-v-odw5d.framer-14uoz4 > :last-child, .framer-zSyog.framer-v-odw5d .framer-15kc6i0 > :last-child { margin-bottom: 0px; } }\",\".framer-zSyog.framer-v-3yme03 .framer-1caipd5, .framer-zSyog.framer-v-m09b1o .framer-1caipd5 { order: 0; }\",\".framer-zSyog.framer-v-1o82d7e.framer-14uoz4 { gap: 24px; height: min-content; justify-content: center; }\",\".framer-zSyog.framer-v-1o82d7e .framer-15kc6i0, .framer-zSyog.framer-v-ojnd0 .framer-15kc6i0, .framer-zSyog.framer-v-m09b1o .framer-15kc6i0 { flex: none; gap: 32px; height: min-content; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zSyog.framer-v-1o82d7e.framer-14uoz4, .framer-zSyog.framer-v-1o82d7e .framer-15kc6i0 { gap: 0px; } .framer-zSyog.framer-v-1o82d7e.framer-14uoz4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zSyog.framer-v-1o82d7e.framer-14uoz4 > :first-child, .framer-zSyog.framer-v-1o82d7e .framer-15kc6i0 > :first-child { margin-top: 0px; } .framer-zSyog.framer-v-1o82d7e.framer-14uoz4 > :last-child, .framer-zSyog.framer-v-1o82d7e .framer-15kc6i0 > :last-child { margin-bottom: 0px; } .framer-zSyog.framer-v-1o82d7e .framer-15kc6i0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-zSyog.framer-v-ojnd0.framer-14uoz4 { gap: 32px; height: min-content; justify-content: center; padding: 1px 0px 1px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zSyog.framer-v-ojnd0.framer-14uoz4, .framer-zSyog.framer-v-ojnd0 .framer-15kc6i0 { gap: 0px; } .framer-zSyog.framer-v-ojnd0.framer-14uoz4 > *, .framer-zSyog.framer-v-ojnd0 .framer-15kc6i0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zSyog.framer-v-ojnd0.framer-14uoz4 > :first-child, .framer-zSyog.framer-v-ojnd0 .framer-15kc6i0 > :first-child { margin-top: 0px; } .framer-zSyog.framer-v-ojnd0.framer-14uoz4 > :last-child, .framer-zSyog.framer-v-ojnd0 .framer-15kc6i0 > :last-child { margin-bottom: 0px; } }\",\".framer-zSyog.framer-v-m09b1o.framer-14uoz4 { gap: 0px; height: min-content; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zSyog.framer-v-m09b1o.framer-14uoz4, .framer-zSyog.framer-v-m09b1o .framer-15kc6i0 { gap: 0px; } .framer-zSyog.framer-v-m09b1o.framer-14uoz4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zSyog.framer-v-m09b1o.framer-14uoz4 > :first-child, .framer-zSyog.framer-v-m09b1o .framer-15kc6i0 > :first-child { margin-top: 0px; } .framer-zSyog.framer-v-m09b1o.framer-14uoz4 > :last-child, .framer-zSyog.framer-v-m09b1o .framer-15kc6i0 > :last-child { margin-bottom: 0px; } .framer-zSyog.framer-v-m09b1o .framer-15kc6i0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",'.framer-zSyog[data-border=\"true\"]::after, .framer-zSyog [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 702\n * @framerIntrinsicWidth 369\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"VXLg5PnA0\":{\"layout\":[\"fixed\",\"fixed\"]},\"GtZnyE_8u\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y2fLhRSEt\":{\"layout\":[\"fixed\",\"auto\"]},\"wfYK5ZO5V\":{\"layout\":[\"fixed\",\"auto\"]},\"Y8pUVMtHu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vM8LZXDLK\":\"pillText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQ1uFEGL4K=withCSS(Component,css,\"framer-zSyog\");export default FramerQ1uFEGL4K;FramerQ1uFEGL4K.displayName=\"Home / Pricing Card\";FramerQ1uFEGL4K.defaultProps={height:702,width:369};addPropertyControls(FramerQ1uFEGL4K,{variant:{options:[\"XkB6ld6Dz\",\"VXLg5PnA0\",\"GtZnyE_8u\",\"Y2fLhRSEt\",\"wfYK5ZO5V\",\"Y8pUVMtHu\"],optionTitles:[\"Desktop: Starter\",\"Desktop: Growth\",\"Desktop: Pro\",\"Mobile: Starter\",\"Mobile: Growth\",\"Mobile: Custom\"],title:\"Variant\",type:ControlType.Enum},vM8LZXDLK:{defaultValue:\"Enterprise\",displayTextArea:false,title:\"Pill Text\",type:ControlType.String}});addFonts(FramerQ1uFEGL4K,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"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:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...HomePricingBadgeFonts,...PricingItemFonts,...ButtonsButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQ1uFEGL4K\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VXLg5PnA0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GtZnyE_8u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y2fLhRSEt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wfYK5ZO5V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y8pUVMtHu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"702\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"369\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"vM8LZXDLK\\\":\\\"pillText\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/z0HjvO6jnrfzlSOBWY00/dgL53NMUIwsnPIlzZyqy/ck5AxXn6p.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Psfbb7BTGnU7MmUaKuOs/94uG4f9DSqF9VGvKiJGe/OpCwdqy_0.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/WvxiFdCLsCFe1UpQrswx/u0DlX72Kl3d70PGMiex2/VRNRSTyfg.js\";import ConnectFrameworkIcon from\"https://framerusercontent.com/modules/kUqpvN7ar0t18fHTiD0v/lqm81JTmw2oGFEJCNiy3/ejdy7mEfl.js\";import ButtonsButton from\"https://framerusercontent.com/modules/CbyFIs9KoRhPjTsPTKcq/T3mL3ZilewULsoT60AnN/eMAX511LU.js\";import AssetsHero from\"https://framerusercontent.com/modules/hEWKNIj7ECConRNR0zIe/D49KVRIz1lqdcXPner4u/J8RigA4p8.js\";import HomePricingCard from\"https://framerusercontent.com/modules/1FJcx7AOl0MLYJIGuB9e/BaBgAicCASpf2n9nNW0J/Q1uFEGL4K.js\";import BannersBanner from\"https://framerusercontent.com/modules/QbaYPwzkJPVrdMPv5dHY/Ay7XHQ3h0uwlXahGJUCJ/t26aEjJLl.js\";const BannersBannerFonts=getFonts(BannersBanner);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ConnectFrameworkIconFonts=getFonts(ConnectFrameworkIcon);const ButtonsButtonFonts=getFonts(ButtonsButton);const AssetsHeroFonts=getFonts(AssetsHero);const VideoFonts=getFonts(Video);const HomePricingCardFonts=getFonts(HomePricingCard);const AssetsHeroControls=getPropertyControls(AssetsHero);const cycleOrder=[\"v3GVHehct\",\"LJZmlsQae\",\"S34QURjrw\",\"YTP9GdhR_\",\"PwRtlUaiw\",\"TORBfIKIt\",\"Nf3l7yh_n\",\"CwRc7r4SV\",\"LW68CT4Ny\",\"oJRNjPxLA\",\"QvcJkNHgw\",\"ezhzPLU3v\",\"mpGureeax\",\"hrWjvQxQR\",\"VbMA8YLfs\"];const serializationHash=\"framer-ipvRj\";const variantClassNames={CwRc7r4SV:\"framer-v-1t3rbmb\",ezhzPLU3v:\"framer-v-qt13n0\",hrWjvQxQR:\"framer-v-1jgiy5q\",LJZmlsQae:\"framer-v-uyqhfd\",LW68CT4Ny:\"framer-v-j9tbt8\",mpGureeax:\"framer-v-1xvcysu\",Nf3l7yh_n:\"framer-v-1gafaly\",oJRNjPxLA:\"framer-v-ofjk4l\",PwRtlUaiw:\"framer-v-9dz2s1\",QvcJkNHgw:\"framer-v-13o1rfq\",S34QURjrw:\"framer-v-tmqfnd\",TORBfIKIt:\"framer-v-4w04ae\",v3GVHehct:\"framer-v-un93nt\",VbMA8YLfs:\"framer-v-49xbju\",YTP9GdhR_:\"framer-v-esd22u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition2={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Desktop: AA\":\"ZaFdWB6He\",\"Desktop: Auth\":\"tSNdXUXVa\",\"Desktop: Connect / Sign In\":\"eqjmYO2iY\",\"Desktop: Contracts / Deploy\":\"zJpyswde7\",\"Desktop: Contracts / Explore\":\"lh2JT_odC\",\"Desktop: Contracts\":\"J9UEfnLwV\",\"Desktop: Ecosystem\":\"lmrNjhBnI\",\"Desktop: Engine\":\"JcYSBLoQV\",\"Desktop: Faucets\":\"EbksMd9ik\",\"Desktop: Home\":\"CkwfORWuh\",\"Desktop: In-app Wallets\":\"vbH2FtAdB\",\"Desktop: Insight\":\"KAm4Iz97I\",\"Desktop: Learn\":\"enkFpwD0T\",\"Desktop: Modular Contracts\":\"e7VOIJVzJ\",\"Desktop: Nebula\":\"dZVtzj9Pm\",\"Desktop: Placeholder\":\"dV04X605P\",\"Desktop: Soltuons / Consumer Apps\":\"UB8I5ja0e\",\"Desktop: Solutions / Defi\":\"jJDYm_vDJ\",\"Desktop: Solutions / Gaming\":\"if75caNG1\",\"Desktop: Storage\":\"nHlV05vZw\",\"Desktop: Superchain\":\"feSdTcYCC\",\"Mobile: AA\":\"GA175OLpZ\",\"Mobile: Auth\":\"CCTFo2Qhx\",\"Mobile: Connect / Sign In\":\"gdaro8Vow\",\"Mobile: Contracts / Deploy\":\"sqMes8rwf\",\"Mobile: Contracts / Explore\":\"oXmRrICTi\",\"Mobile: Contracts\":\"TqVeiQfDv\",\"Mobile: Ecosystem\":\"LCqfg85ZN\",\"Mobile: Engine\":\"B1oazAVgH\",\"Mobile: Faucets\":\"upI3SgLGr\",\"Mobile: Home\":\"mxFxfCs7N\",\"Mobile: In-app Wallets\":\"sLMOJw_YU\",\"Mobile: Insight\":\"zMyRewCuk\",\"Mobile: Learn\":\"mHL_Abx7h\",\"Mobile: Modular Contracts\":\"lcdtvc8q_\",\"Mobile: Nebula\":\"wENaJvaoL\",\"Mobile: Solutions / Consumer Apps\":\"V6GrSmkWQ\",\"Mobile: Solutions / Defi\":\"kSz32M85D\",\"Mobile: Solutions / Gaming\":\"dEG3lNoms\",\"Mobile: Storage\":\"SiELG_nrf\",\"Mobile: Superchain\":\"Y3tMT11W4\",\"Phone: Placeholder\":\"p3gcNyjKV\",\"Tablet: AA\":\"F_iygkKGr\",\"Tablet: Auth\":\"tR6UbfD2k\",\"Tablet: Connect / Sign In\":\"VEu4NSob6\",\"Tablet: Contracts / Deploy\":\"TFPMljFOA\",\"Tablet: Contracts / Explore\":\"RghOnyH8l\",\"Tablet: Contracts\":\"eXOXjJTTc\",\"Tablet: Ecosystem\":\"GVrdrZUhD\",\"Tablet: Engine\":\"NriW4YQh8\",\"Tablet: Faucets\":\"gPhg4ywy2\",\"Tablet: Home\":\"IJpACZeQ0\",\"Tablet: In-app Wallets\":\"NrUIHqtWD\",\"Tablet: Insight\":\"RQxmr7OBE\",\"Tablet: Learn\":\"axeCK8Oqq\",\"Tablet: Modular Contracts\":\"h_x8aSnTc\",\"Tablet: Nebula\":\"X8iJkR4nI\",\"Tablet: Placeholder\":\"mtrNX8bpQ\",\"Tablet: Solutions / Consumer Apps\":\"IE8VJAwx9\",\"Tablet: Solutions / Defi\":\"apJv3IXAY\",\"Tablet: Solutions / Gaming\":\"j88hlsATo\",\"Tablet: Storage\":\"RthNQ8ubL\",\"Tablet: Superchain\":\"V2EIeycJI\"};const humanReadableVariantMap={\"Desktop: Pricing\":\"Nf3l7yh_n\",\"Desktop: Text + Buttons\":\"oJRNjPxLA\",\"Desktop: Text\":\"mpGureeax\",\"Desktop: Unlimited Wallets\":\"YTP9GdhR_\",\"Mobile: Text\":\"VbMA8YLfs\",\"Phone: Pricing\":\"LW68CT4Ny\",\"Phone: Text + Buttons\":\"ezhzPLU3v\",\"Phone: Unlimited Wallets\":\"TORBfIKIt\",\"Tablet: Pricing\":\"CwRc7r4SV\",\"Tablet: Text + Buttons\":\"QvcJkNHgw\",\"Tablet: Text\":\"hrWjvQxQR\",\"Tablet: Unlimited Wallets\":\"PwRtlUaiw\",Desktop:\"v3GVHehct\",Phone:\"S34QURjrw\",Tablet:\"LJZmlsQae\"};const getProps=({bar,border,button,height,hero,id,mainButton,mainButtonLink,mainButtonText,nebulaBadge,oPXThirdweb,padding,secondaryButton,secondaryButtonLink,secondaryButtonText,subtitle,subtitle1,title,titleColor,width,zergBanner,...props})=>{return{...props,a6vEFqb1a:secondaryButtonLink??props.a6vEFqb1a,DUrG2bvdc:secondaryButton??props.DUrG2bvdc??true,em4VNtxlA:bar??props.em4VNtxlA??true,FuqU8kc13:mainButtonLink??props.FuqU8kc13,gB2FrNNVD:oPXThirdweb??props.gB2FrNNVD,IkF07QfOn:border??props.IkF07QfOn??{borderColor:'var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31)) /* {\"name\":\"Border\"} */',borderStyle:\"solid\",borderWidth:1},kDae_Ip1j:subtitle1??props.kDae_Ip1j??true,mv3Yl_Elv:titleColor??props.mv3Yl_Elv??\"var(--token-6f646c96-bf98-4e9e-aa5b-f21d81906df2, rgb(245, 245, 245))\",n1_LzvWJe:title??props.n1_LzvWJe??\"Full stack, open-source web3 development platform\",N9Zu6OrXQ:secondaryButtonText??props.N9Zu6OrXQ??\"Documentation\",ngskxLTDH:button??props.ngskxLTDH??true,o64x6cjoC:padding??props.o64x6cjoC??\"0px 0px 0px 0px\",p_70tJ84X:humanReadableEnumMap[hero]??hero??props.p_70tJ84X??\"CkwfORWuh\",p6cYGCWhT:nebulaBadge??props.p6cYGCWhT,R5uLuWnF3:zergBanner??props.R5uLuWnF3??true,tqke3HxhZ:mainButton??props.tqke3HxhZ??true,txeFNl4uz:mainButtonText??props.txeFNl4uz??\"Get Started\",variant:humanReadableVariantMap[props.variant]??props.variant??\"v3GVHehct\",X7237Dc7S:subtitle??props.X7237Dc7S??\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,R5uLuWnF3,n1_LzvWJe,mv3Yl_Elv,X7237Dc7S,p_70tJ84X,txeFNl4uz,FuqU8kc13,tqke3HxhZ,DUrG2bvdc,N9Zu6OrXQ,a6vEFqb1a,p6cYGCWhT,IkF07QfOn,ngskxLTDH,kDae_Ip1j,em4VNtxlA,o64x6cjoC,gB2FrNNVD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v3GVHehct\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Nf3l7yh_n\",\"CwRc7r4SV\",\"LW68CT4Ny\"].includes(baseVariant))return false;return true;};const isDisplayed1=value=>{if(baseVariant===\"oJRNjPxLA\")return value;if([\"mpGureeax\",\"hrWjvQxQR\",\"VbMA8YLfs\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"YTP9GdhR_\")return true;return false;};const isDisplayed3=value=>{if([\"mpGureeax\",\"hrWjvQxQR\",\"VbMA8YLfs\"].includes(baseVariant))return value;return false;};const isDisplayed4=value=>{if([\"oJRNjPxLA\",\"QvcJkNHgw\",\"ezhzPLU3v\"].includes(baseVariant))return value;if([\"mpGureeax\",\"hrWjvQxQR\",\"VbMA8YLfs\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"YTP9GdhR_\",\"PwRtlUaiw\",\"TORBfIKIt\",\"oJRNjPxLA\",\"QvcJkNHgw\",\"ezhzPLU3v\",\"mpGureeax\",\"hrWjvQxQR\",\"VbMA8YLfs\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"PwRtlUaiw\",\"TORBfIKIt\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"Nf3l7yh_n\",\"CwRc7r4SV\",\"LW68CT4Ny\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-un93nt\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"v3GVHehct\",ref:refBinding,style:{...style},...addPropertyOverrides({CwRc7r4SV:{\"data-framer-name\":\"Tablet: Pricing\"},ezhzPLU3v:{\"data-framer-name\":\"Phone: Text + Buttons\"},hrWjvQxQR:{\"data-framer-name\":\"Tablet: Text\"},LJZmlsQae:{\"data-framer-name\":\"Tablet\"},LW68CT4Ny:{\"data-framer-name\":\"Phone: Pricing\"},mpGureeax:{\"data-framer-name\":\"Desktop: Text\"},Nf3l7yh_n:{\"data-framer-name\":\"Desktop: Pricing\"},oJRNjPxLA:{\"data-framer-name\":\"Desktop: Text + Buttons\"},PwRtlUaiw:{\"data-framer-name\":\"Tablet: Unlimited Wallets\"},QvcJkNHgw:{\"data-framer-name\":\"Tablet: Text + Buttons\"},S34QURjrw:{\"data-framer-name\":\"Phone\"},TORBfIKIt:{\"data-framer-name\":\"Phone: Unlimited Wallets\"},VbMA8YLfs:{\"data-framer-name\":\"Mobile: Text\"},YTP9GdhR_:{\"data-framer-name\":\"Desktop: Unlimited Wallets\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.section,{className:\"framer-1boljoh\",layoutDependency:layoutDependency,layoutId:\"D8viDngij\",children:[R5uLuWnF3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+(((componentViewport?.height||794)-0-794)/2+0+0)+32+0,...addPropertyOverrides({CwRc7r4SV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||2306)-0-2565.6)/2+0+0)+32+0},ezhzPLU3v:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||600)-0-499.6)/2+0+0)+32+0},hrWjvQxQR:{y:undefined},LJZmlsQae:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||901)-0-947.6)/2+0+0)+32+0},LW68CT4Ny:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||2473)-0-2565.6)/2+0+0)+32+0},mpGureeax:{y:undefined},Nf3l7yh_n:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1066)-0-1161.6)/2+0+0)+32+0},oJRNjPxLA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||549)-0-595.6)/2+0+0)+32+0},PwRtlUaiw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||908)-0-770.1)/2+0+0)+32+0},QvcJkNHgw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||453)-0-499.6)/2+0+0)+32+0},S34QURjrw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||990)-0-831.6)/2+0+0)+32+0},TORBfIKIt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||820)-0-770.1)/2+0+0)+32+0},VbMA8YLfs:{y:undefined},YTP9GdhR_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13pi7xy-container\",layoutDependency:layoutDependency,layoutId:\"fezX92okQ-container\",nodeId:\"fezX92okQ\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(BannersBanner,{CquhI1t2o:\"https://playground.thirdweb.com/connect/pay\",height:\"100%\",id:\"fezX92okQ\",layoutId:\"fezX92okQ\",variant:\"ETQy376RT\",vlr1qxSRC:\"Universal Bridge - Use any token on any chain. No Swapping or bridging.\",width:\"100%\",...addPropertyOverrides({ezhzPLU3v:{vlr1qxSRC:\"Nebula: The Best Blockchain AI\"},LW68CT4Ny:{vlr1qxSRC:\"Nebula: The Best Blockchain AI\"},PwRtlUaiw:{CquhI1t2o:\"https://thirdweb.com/login?next=%2Fdashboard%2Fsettings%2Fbilling%3Fcoupon%3DFREEWALLETS24&utm_source=landing&utm_medium=link&utm_campaign=unlimited+wallets\"},VbMA8YLfs:{vlr1qxSRC:\"Nebula: The Best Blockchain AI\"},YTP9GdhR_:{CquhI1t2o:\"https://thirdweb.com/login?next=%2Fdashboard%2Fsettings%2Fbilling%3Fcoupon%3DFREEWALLETS24&utm_source=landing&utm_medium=link&utm_campaign=unlimited+wallets\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c1byc2\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"i0xw_3Npi\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{ezhzPLU3v:{\"--border-bottom-width\":(IkF07QfOn.borderBottomWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-color\":IkF07QfOn.borderColor,\"--border-left-width\":(IkF07QfOn.borderLeftWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-right-width\":(IkF07QfOn.borderRightWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-style\":IkF07QfOn.borderStyle,\"--border-top-width\":(IkF07QfOn.borderTopWidth??IkF07QfOn.borderWidth)+\"px\"},hrWjvQxQR:{\"--border-bottom-width\":(IkF07QfOn.borderBottomWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-color\":IkF07QfOn.borderColor,\"--border-left-width\":(IkF07QfOn.borderLeftWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-right-width\":(IkF07QfOn.borderRightWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-style\":IkF07QfOn.borderStyle,\"--border-top-width\":(IkF07QfOn.borderTopWidth??IkF07QfOn.borderWidth)+\"px\"},mpGureeax:{\"--border-bottom-width\":(IkF07QfOn.borderBottomWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-color\":IkF07QfOn.borderColor,\"--border-left-width\":(IkF07QfOn.borderLeftWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-right-width\":(IkF07QfOn.borderRightWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-style\":IkF07QfOn.borderStyle,\"--border-top-width\":(IkF07QfOn.borderTopWidth??IkF07QfOn.borderWidth)+\"px\"},oJRNjPxLA:{\"--border-bottom-width\":(IkF07QfOn.borderBottomWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-color\":IkF07QfOn.borderColor,\"--border-left-width\":(IkF07QfOn.borderLeftWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-right-width\":(IkF07QfOn.borderRightWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-style\":IkF07QfOn.borderStyle,\"--border-top-width\":(IkF07QfOn.borderTopWidth??IkF07QfOn.borderWidth)+\"px\"},QvcJkNHgw:{\"--border-bottom-width\":(IkF07QfOn.borderBottomWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-color\":IkF07QfOn.borderColor,\"--border-left-width\":(IkF07QfOn.borderLeftWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-right-width\":(IkF07QfOn.borderRightWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-style\":IkF07QfOn.borderStyle,\"--border-top-width\":(IkF07QfOn.borderTopWidth??IkF07QfOn.borderWidth)+\"px\"},VbMA8YLfs:{\"--border-bottom-width\":(IkF07QfOn.borderBottomWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-color\":IkF07QfOn.borderColor,\"--border-left-width\":(IkF07QfOn.borderLeftWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-right-width\":(IkF07QfOn.borderRightWidth??IkF07QfOn.borderWidth)+\"px\",\"--border-style\":IkF07QfOn.borderStyle,\"--border-top-width\":(IkF07QfOn.borderTopWidth??IkF07QfOn.borderWidth)+\"px\"}},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f52njm\",\"data-framer-name\":\"Text + Image\",layoutDependency:layoutDependency,layoutId:\"SRc4il3A2\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",\"--xr92rf\":numberToPixelString(o64x6cjoC)},variants:{ezhzPLU3v:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},hrWjvQxQR:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},mpGureeax:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},oJRNjPxLA:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},PwRtlUaiw:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},QvcJkNHgw:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TORBfIKIt:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},VbMA8YLfs:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},YTP9GdhR_:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({PwRtlUaiw:{\"data-border\":true},TORBfIKIt:{\"data-border\":true},YTP9GdhR_:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oyxyg\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"LuSH17X2e\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yi2k35\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"wbiYv2d4e\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{VbMA8YLfs:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({VbMA8YLfs:{\"data-border\":true}},baseVariant,gestureVariant),children:[gB2FrNNVD&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13v3cj5\",layoutDependency:layoutDependency,layoutId:\"SsENDFLcd\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-197gflp\",\"data-framer-name\":\"Optimism-White-48 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"uArnF9RYy\",svg:'<svg width=\"86\" height=\"12\" viewBox=\"0 0 86 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1185_12510)\">\\n<path d=\"M4.56446 11.8266C3.89246 11.8266 3.26846 11.736 2.69246 11.5546C2.11646 11.3733 1.63113 11.1013 1.23646 10.7386C0.841795 10.376 0.559128 9.92264 0.388462 9.37864C0.228462 8.83464 0.207128 8.19997 0.324462 7.47464C0.409795 7.01597 0.500462 6.55731 0.596462 6.09864C0.703128 5.63997 0.809795 5.17597 0.916462 4.70664C1.26846 3.26664 1.90313 2.17331 2.82046 1.42664C3.7378 0.679975 4.97513 0.306641 6.53246 0.306641C7.20446 0.306641 7.82313 0.402641 8.38846 0.594641C8.96446 0.775975 9.4498 1.05331 9.84446 1.42664C10.2498 1.79997 10.5325 2.25864 10.6925 2.80264C10.8631 3.34664 10.8845 3.98131 10.7565 4.70664C10.6818 5.17597 10.5911 5.63997 10.4845 6.09864C10.3885 6.55731 10.2871 7.01597 10.1805 7.47464C9.81779 8.93597 9.17779 10.0293 8.26046 10.7546C7.34313 11.4693 6.11113 11.8266 4.56446 11.8266ZM4.77246 9.52264C5.34846 9.52264 5.85513 9.35197 6.29246 9.01064C6.72979 8.66931 7.03913 8.12531 7.22046 7.37864C7.3378 6.90931 7.43913 6.46664 7.52446 6.05064C7.62046 5.63464 7.7058 5.20264 7.78046 4.75464C7.91913 4.00797 7.85513 3.46397 7.58846 3.12264C7.3218 2.78131 6.90046 2.61064 6.32446 2.61064C5.74846 2.61064 5.24179 2.78131 4.80446 3.12264C4.37779 3.46397 4.07379 4.00797 3.89246 4.75464C3.77513 5.20264 3.66846 5.63464 3.57246 6.05064C3.48713 6.46664 3.40179 6.90931 3.31646 7.37864C3.18846 8.12531 3.25246 8.66931 3.50846 9.01064C3.76446 9.35197 4.1858 9.52264 4.77246 9.52264ZM12.4511 11.6666C12.3444 11.6666 12.2591 11.6293 12.1951 11.5546C12.1311 11.48 12.1098 11.384 12.1311 11.2666L14.3391 0.866641C14.3604 0.749308 14.4191 0.653308 14.5151 0.578641C14.6111 0.503975 14.7124 0.466641 14.8191 0.466641H19.0751C19.7258 0.466641 20.3124 0.541308 20.8351 0.690641C21.3684 0.839975 21.8111 1.06931 22.1631 1.37864C22.5151 1.68797 22.7604 2.07731 22.8991 2.54664C23.0378 3.00531 23.0431 3.54397 22.9151 4.16264C22.6484 5.38931 22.1044 6.29597 21.2831 6.88264C20.4724 7.46931 19.3791 7.76264 18.0031 7.76264H15.8431L15.1071 11.2666C15.0858 11.384 15.0271 11.48 14.9311 11.5546C14.8458 11.6293 14.7444 11.6666 14.6271 11.6666H12.4511ZM16.2591 5.55464H18.0991C18.5364 5.55464 18.9258 5.43731 19.2671 5.20264C19.6191 4.96797 19.8484 4.61064 19.9551 4.13064C20.0084 3.85331 20.0191 3.60797 19.9871 3.39464C19.9551 3.18131 19.8431 3.01064 19.6511 2.88264C19.4698 2.75464 19.1871 2.69064 18.8031 2.69064H16.8831L16.2591 5.55464ZM25.8716 11.6666C25.7543 11.6666 25.6636 11.6293 25.5996 11.5546C25.5356 11.48 25.5143 11.384 25.5356 11.2666L27.3116 2.97864H24.4636C24.3569 2.97864 24.2716 2.94131 24.2076 2.86664C24.1436 2.78131 24.1223 2.68531 24.1436 2.57864L24.5116 0.866641C24.5329 0.749308 24.5863 0.653308 24.6716 0.578641C24.7676 0.503975 24.8743 0.466641 24.9916 0.466641H33.5995C33.7168 0.466641 33.8021 0.503975 33.8555 0.578641C33.9195 0.653308 33.9408 0.749308 33.9195 0.866641L33.5515 2.57864C33.5301 2.68531 33.4715 2.78131 33.3755 2.86664C33.2903 2.94131 33.1889 2.97864 33.0716 2.97864H30.2236L28.4636 11.2666C28.4423 11.384 28.3836 11.48 28.2876 11.5546C28.2023 11.6293 28.1009 11.6666 27.9836 11.6666H25.8716ZM34.2548 11.6666C34.1375 11.6666 34.0468 11.6293 33.9828 11.5546C33.9188 11.48 33.8975 11.384 33.9188 11.2666L36.1428 0.866641C36.1641 0.749308 36.2228 0.653308 36.3188 0.578641C36.4148 0.503975 36.5161 0.466641 36.6228 0.466641H38.7828C38.8895 0.466641 38.9748 0.503975 39.0388 0.578641C39.1028 0.653308 39.1241 0.749308 39.1028 0.866641L36.8788 11.2666C36.8575 11.384 36.7988 11.48 36.7028 11.5546C36.6175 11.6293 36.5215 11.6666 36.4148 11.6666H34.2548ZM40.8185 11.6666C40.7011 11.6666 40.6105 11.6293 40.5465 11.5546C40.4825 11.48 40.4611 11.384 40.4825 11.2666L42.6905 0.866641C42.7118 0.749308 42.7705 0.653308 42.8665 0.578641C42.9625 0.503975 43.0691 0.466641 43.1865 0.466641H44.9145C45.0851 0.466641 45.2025 0.514641 45.2665 0.610641C45.3411 0.695975 45.3891 0.765308 45.4105 0.818641L47.1385 5.87464L51.0425 0.818641C51.0745 0.765308 51.1385 0.695975 51.2345 0.610641C51.3411 0.514641 51.4798 0.466641 51.6505 0.466641H53.3785C53.4958 0.466641 53.5865 0.503975 53.6505 0.578641C53.7145 0.653308 53.7358 0.749308 53.7145 0.866641L51.5065 11.2666C51.4851 11.384 51.4265 11.48 51.3305 11.5546C51.2345 11.6293 51.1278 11.6666 51.0105 11.6666H49.0905C48.9838 11.6666 48.8985 11.6293 48.8345 11.5546C48.7705 11.48 48.7491 11.384 48.7705 11.2666L50.0185 5.36264L47.5705 8.61064C47.4958 8.69598 47.4051 8.78131 47.2985 8.86664C47.2025 8.94131 47.0798 8.97864 46.9305 8.97864H46.0985C45.9491 8.97864 45.8425 8.94131 45.7785 8.86664C45.7145 8.79197 45.6665 8.70664 45.6345 8.61064L44.4985 5.21864L43.2025 11.2666C43.1811 11.384 43.1225 11.48 43.0265 11.5546C42.9411 11.6293 42.8451 11.6666 42.7385 11.6666H40.8185ZM54.9325 11.6666C54.8151 11.6666 54.7245 11.6293 54.6605 11.5546C54.5965 11.48 54.5751 11.384 54.5965 11.2666L56.8205 0.866641C56.8418 0.749308 56.9005 0.653308 56.9965 0.578641C57.0925 0.503975 57.1938 0.466641 57.3005 0.466641H59.4605C59.5671 0.466641 59.6525 0.503975 59.7165 0.578641C59.7805 0.653308 59.8018 0.749308 59.7805 0.866641L57.5565 11.2666C57.5351 11.384 57.4765 11.48 57.3805 11.5546C57.2951 11.6293 57.1991 11.6666 57.0925 11.6666H54.9325ZM65.0478 11.8266C63.9811 11.8266 63.1065 11.6773 62.4238 11.3786C61.7518 11.08 61.2665 10.6853 60.9678 10.1946C60.6798 9.69331 60.5785 9.16531 60.6638 8.61064C60.6851 8.52531 60.7278 8.45064 60.7918 8.38664C60.8665 8.31197 60.9518 8.27464 61.0478 8.27464H63.0958C63.2451 8.27464 63.3518 8.30131 63.4158 8.35464C63.4798 8.40797 63.5438 8.47731 63.6078 8.56264C63.6505 8.72264 63.7358 8.87731 63.8638 9.02664C63.9918 9.17597 64.1678 9.29864 64.3918 9.39464C64.6265 9.47997 64.9145 9.52264 65.2558 9.52264C65.8745 9.52264 66.3705 9.42664 66.7438 9.23464C67.1171 9.04264 67.3358 8.78131 67.3998 8.45064C67.4638 8.21597 67.4211 8.02397 67.2718 7.87464C67.1331 7.71464 66.8825 7.57597 66.5198 7.45864C66.1678 7.33064 65.6931 7.20264 65.0958 7.07464C64.3171 6.90398 63.6771 6.66931 63.1758 6.37064C62.6745 6.06131 62.3225 5.67197 62.1198 5.20264C61.9278 4.72264 61.9011 4.15197 62.0398 3.49064C62.2531 2.50931 62.7811 1.73597 63.6238 1.17064C64.4665 0.594641 65.5598 0.306641 66.9038 0.306641C67.5971 0.306641 68.2105 0.402641 68.7438 0.594641C69.2878 0.786641 69.7411 1.04264 70.1038 1.36264C70.4665 1.68264 70.7278 2.02397 70.8878 2.38664C71.0478 2.73864 71.1011 3.08531 71.0478 3.42664C71.0371 3.51197 70.9945 3.59197 70.9198 3.66664C70.8451 3.73064 70.7598 3.76264 70.6638 3.76264H68.5198C68.4131 3.76264 68.3171 3.74131 68.2318 3.69864C68.1571 3.65597 68.0931 3.58664 68.0398 3.49064C68.0398 3.25597 67.9171 3.05331 67.6718 2.88264C67.4265 2.70131 67.1011 2.61064 66.6958 2.61064C66.2371 2.61064 65.8531 2.69597 65.5438 2.86664C65.2345 3.02664 65.0425 3.27731 64.9678 3.61864C64.9145 3.83197 64.9411 4.01864 65.0478 4.17864C65.1651 4.33864 65.3785 4.47731 65.6878 4.59464C66.0078 4.71197 66.4451 4.83464 66.9998 4.96264C67.9385 5.14397 68.6745 5.38931 69.2078 5.69864C69.7411 5.99731 70.0985 6.37597 70.2798 6.83464C70.4718 7.29331 70.4985 7.85331 70.3598 8.51464C70.1251 9.60264 69.5545 10.4293 68.6478 10.9946C67.7518 11.5493 66.5518 11.8266 65.0478 11.8266ZM72.3295 11.6666C72.2121 11.6666 72.1215 11.6293 72.0575 11.5546C71.9935 11.48 71.9721 11.384 71.9935 11.2666L74.2015 0.866641C74.2228 0.749308 74.2815 0.653308 74.3775 0.578641C74.4735 0.503975 74.5801 0.466641 74.6975 0.466641H76.4255C76.5961 0.466641 76.7135 0.514641 76.7775 0.610641C76.8521 0.695975 76.9001 0.765308 76.9215 0.818641L78.6495 5.87464L82.5535 0.818641C82.5855 0.765308 82.6495 0.695975 82.7455 0.610641C82.8521 0.514641 82.9908 0.466641 83.1615 0.466641H84.8895C85.0068 0.466641 85.0975 0.503975 85.1615 0.578641C85.2255 0.653308 85.2468 0.749308 85.2255 0.866641L83.0175 11.2666C82.9961 11.384 82.9375 11.48 82.8415 11.5546C82.7455 11.6293 82.6388 11.6666 82.5215 11.6666H80.6015C80.4948 11.6666 80.4095 11.6293 80.3455 11.5546C80.2815 11.48 80.2601 11.384 80.2815 11.2666L81.5295 5.36264L79.0815 8.61064C79.0068 8.69598 78.9161 8.78131 78.8095 8.86664C78.7135 8.94131 78.5908 8.97864 78.4415 8.97864H77.6095C77.4601 8.97864 77.3535 8.94131 77.2895 8.86664C77.2255 8.79197 77.1775 8.70664 77.1455 8.61064L76.0095 5.21864L74.7135 11.2666C74.6921 11.384 74.6335 11.48 74.5375 11.5546C74.4521 11.6293 74.3561 11.6666 74.2495 11.6666H72.3295Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1185_12510\">\\n<rect width=\"85.3333\" height=\"12\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"12px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"x\"})}),className:\"framer-1hxys64\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rHk7BiKtH\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j652vq\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:86,layoutDependency:layoutDependency,layoutId:\"spmmySFy_\",svg:'<svg width=\"86\" height=\"16\" viewBox=\"0 0 86 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.6377 2.21167C38.9179 2.21167 38.3277 2.79463 38.3277 3.5379C38.3277 4.2666 38.9179 4.84956 39.6377 4.84956C40.3575 4.84956 40.9477 4.2666 40.9477 3.5379C40.9477 2.79463 40.3575 2.21167 39.6377 2.21167ZM40.7902 5.51994H38.5013V13.3753H40.7902V5.51994ZM25.142 2.50317H27.3733V5.51998H29.0864V7.61863H27.3733V10.3877C27.3733 10.7958 27.69 11.1164 28.0787 11.1164H29.072V13.3462H28.0787C26.4664 13.3462 25.142 12.02 25.142 10.3731V7.60406H24.1055V5.50541H25.142V2.50317ZM34.5421 5.3451C33.5056 5.3451 32.6851 5.78231 32.3684 6.46729V2.50317H30.0794V13.3608H32.3684V8.95944C32.3684 8.04128 32.9586 7.40002 33.7935 7.40002C34.6429 7.40002 35.118 7.95383 35.118 8.88657V13.3753H37.4069V8.59509C37.4069 6.55473 36.3704 5.3451 34.5421 5.3451ZM44.0576 5.50537V6.58385C44.4031 5.79685 45.2381 5.34506 46.2889 5.33049C46.4473 5.33049 46.6488 5.34506 46.8936 5.37421V7.5603C46.6632 7.51658 46.4041 7.48743 46.1306 7.48743C44.8206 7.48743 44.0576 8.2307 44.0576 9.52778V13.3607H41.7687V5.50537H44.0576ZM53.3289 6.54016C53.0985 5.85519 52.1916 5.37424 51.0255 5.37424C49.9315 5.37424 49.0101 5.76774 48.2759 6.55474C47.5561 7.32716 47.1819 8.30361 47.1819 9.44038C47.1819 10.5772 47.5561 11.539 48.2759 12.3406C49.0101 13.113 49.9315 13.5065 51.0255 13.5065C52.1916 13.5065 53.0985 13.0256 53.3289 12.3406V13.3754H55.6178V2.50317H53.3289V6.54016ZM52.8682 10.8395C52.4795 11.2184 52.0045 11.3933 51.443 11.3933C50.896 11.3933 50.4209 11.2038 50.0466 10.8395C49.6579 10.446 49.4708 9.97962 49.4708 9.44038C49.4708 8.90114 49.6579 8.43478 50.0466 8.05585C50.4353 7.66236 50.896 7.4729 51.443 7.4729C52.0189 7.4729 52.4939 7.66236 52.8682 8.05585C53.2713 8.43478 53.4728 8.90114 53.4728 9.44038C53.4728 9.97962 53.2713 10.446 52.8682 10.8395ZM62.2264 5.54909L64.2994 9.28002L65.6958 5.51994H67.9415L64.7456 13.8271L62.2264 9.30917L59.7071 13.8271L56.5256 5.51994H58.7714L60.1534 9.28002L62.2264 5.54909ZM71.7117 5.33049C70.5313 5.33049 69.538 5.70941 68.7606 6.46725C67.9976 7.21053 67.6089 8.20155 67.6089 9.42577V9.49864C67.6089 10.7228 67.9976 11.7139 68.7606 12.4571C69.5524 13.1858 70.5601 13.5648 71.8269 13.5648C73.0074 13.5648 73.9719 13.3316 74.7061 12.8506V10.8249C73.9863 11.335 73.0649 11.5827 71.9565 11.5827C70.7472 11.5827 69.9555 10.9852 69.9123 10.0524H75.5986C75.6274 9.81926 75.6418 9.55693 75.6418 9.2946C75.6418 8.17241 75.2675 7.23967 74.5477 6.48183C73.8279 5.70941 72.8634 5.33049 71.7117 5.33049ZM69.9123 8.55133C69.9267 8.18698 70.1138 7.88093 70.4593 7.63317C70.8192 7.38541 71.2223 7.25425 71.7117 7.25425C72.6187 7.25425 73.3241 7.85178 73.3241 8.55133H69.9123ZM81.0988 5.37424C82.1929 5.37424 83.1142 5.76774 83.834 6.55473C84.5682 7.34173 84.9425 8.28904 84.9425 9.4258C84.9425 10.5626 84.5682 11.5245 83.834 12.326C83.1142 13.0984 82.1929 13.4919 81.0988 13.4919C79.9327 13.4919 79.0258 13.011 78.7955 12.326V13.3608H76.5065V2.50317H78.7955V6.54016C79.0258 5.85518 79.9327 5.37424 81.0988 5.37424ZM80.6813 11.3933C81.2284 11.3933 81.689 11.2184 82.0777 10.8395C82.4664 10.446 82.6535 9.97961 82.6535 9.44038C82.6535 8.90114 82.4664 8.43477 82.0777 8.05585C81.7034 7.66235 81.2284 7.47289 80.6813 7.47289C80.1199 7.47289 79.6448 7.66235 79.2417 8.05585C78.853 8.43477 78.6515 8.90114 78.6515 9.44038C78.6515 9.97961 78.853 10.446 79.2417 10.8395C79.6304 11.2038 80.1055 11.3933 80.6813 11.3933Z\" fill=\"#FAFAFA\"/>\\n<g clip-path=\"url(#clip0_1193_12725)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-0.00399808 2.82476C-0.203498 2.32146 0.168297 1.77771 0.712386 1.77771H4.09027C4.40766 1.77771 4.68877 1.96645 4.80666 2.25855L7.49537 8.96329C7.56791 9.14304 7.56791 9.34526 7.49537 9.52951L5.80416 13.7402C5.54571 14.3828 4.62983 14.3828 4.37139 13.7402L-0.00399808 2.82476ZM6.52088 2.8023C6.33951 2.30348 6.71131 1.77771 7.24633 1.77771H10.1889C10.5154 1.77771 10.8056 1.97993 10.9144 2.28102L13.3583 8.98576C13.4172 9.15203 13.4172 9.33628 13.3583 9.50704L11.8892 13.538C11.6444 14.212 10.6832 14.212 10.4383 13.538L6.52088 2.8023ZM13.1273 1.77771C12.5832 1.77771 12.2114 2.32146 12.4109 2.82476L16.7863 13.7402C17.0448 14.3828 17.9606 14.3828 18.2191 13.7402L19.9103 9.52951C19.9828 9.34526 19.9828 9.14304 19.9103 8.96329L17.2216 2.25855C17.1037 1.96645 16.8226 1.77771 16.5052 1.77771H13.1273Z\" fill=\"#FAFAFA\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1193_12725\">\\n<rect width=\"20.0171\" height=\"12.4444\" fill=\"white\" transform=\"translate(-0.0585938 1.77783)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),p6cYGCWhT&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-6tlp4i\",\"data-framer-appear-id\":\"6tlp4i\",\"data-framer-name\":\"Nebula Badge\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"zS2AQ9Wwe\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7dk8vt\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"rAmZn4RED\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s66zx0\",\"data-framer-name\":\"Icon Container\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I911:12891;64:13055\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 0.5H20C21.933 0.5 23.5 2.067 23.5 4V20C23.5 21.933 21.933 23.5 20 23.5H4C2.067 23.5 0.5 21.933 0.5 20V4C0.5 2.067 2.067 0.5 4 0.5Z\" fill=\"#171717\"/>\\n<path d=\"M4 0.5H20C21.933 0.5 23.5 2.067 23.5 4V20C23.5 21.933 21.933 23.5 20 23.5H4C2.067 23.5 0.5 21.933 0.5 20V4C0.5 2.067 2.067 0.5 4 0.5Z\" stroke=\"#262626\"/>\\n<path d=\"M12.0003 10.9774C12.5651 10.9774 13.023 11.4353 13.023 12C13.023 12.5648 12.5651 13.0226 12.0003 13.0226C11.4356 13.0226 10.9777 12.5648 10.9777 12C10.9777 11.4353 11.4356 10.9774 12.0003 10.9774Z\" fill=\"#A3A3A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25091 10.0673C8.51143 9.73945 8.79747 9.41818 9.10799 9.10766C11.7703 6.44532 15.2235 5.58202 16.8209 7.17943C17.5516 7.91011 17.7674 9.02909 17.5317 10.2831C18.0936 10.6476 18.4652 11.2804 18.4652 12C18.4652 13.1296 17.5496 14.0452 16.42 14.0452C16.1853 14.0452 15.9597 14.0057 15.7497 13.9328C15.4892 14.2606 15.2032 14.5819 14.8927 14.8924C12.2304 17.5547 8.77715 18.418 7.17975 16.8206C6.4491 16.09 6.23326 14.9711 6.46892 13.7172C5.90693 13.3527 5.53516 12.7198 5.53516 12C5.53516 10.8705 6.45083 9.95482 7.58036 9.95482C7.81523 9.95482 8.04085 9.99441 8.25091 10.0673ZM9.83107 9.83075C11.0537 8.6081 12.4245 7.83505 13.6118 7.53821C14.8222 7.23561 15.6529 7.45759 16.0978 7.90252C16.488 8.29268 16.7067 8.97951 16.5506 9.95892C16.5074 9.9562 16.4639 9.95482 16.42 9.95482C15.2905 9.95482 14.3748 10.8705 14.3748 12C14.3748 12.5238 14.5717 13.0016 14.8956 13.3635C14.6745 13.6367 14.4325 13.9064 14.1696 14.1693C12.947 15.3919 11.5762 16.165 10.3889 16.4618C9.17845 16.7644 8.34776 16.5424 7.90284 16.0975C7.51267 15.7074 7.29395 15.0205 7.45008 14.0411C7.49316 14.0438 7.5366 14.0452 7.58036 14.0452C8.7099 14.0452 9.62556 13.1296 9.62556 12C9.62556 11.4763 9.42871 10.9986 9.10496 10.6367C9.32603 10.3634 9.56816 10.0937 9.83107 9.83075ZM7.58051 13.0226C7.25321 13.0226 6.96184 12.8688 6.7747 12.6295C6.77474 12.6294 6.77467 12.6296 6.7747 12.6295C6.63884 12.4559 6.55776 12.2376 6.55776 12C6.55776 11.4353 7.01559 10.9774 7.58036 10.9774C8.14513 10.9774 8.60296 11.4353 8.60296 12C8.60296 12.5594 8.15383 13.0139 7.59651 13.0225C7.59123 13.0226 7.5858 13.0226 7.58051 13.0226ZM16.3982 13.0224C16.4055 13.0225 16.4127 13.0226 16.42 13.0226C16.9848 13.0226 17.4426 12.5648 17.4426 12C17.4426 11.7626 17.3617 11.5441 17.226 11.3705C17.0505 11.1462 16.7834 10.997 16.481 10.9792C16.4608 10.978 16.4405 10.9774 16.42 10.9774C16.3716 10.9774 16.324 10.9808 16.2773 10.9873C15.7801 11.0567 15.3974 11.4837 15.3974 12C15.3974 12.1785 15.4431 12.3463 15.5235 12.4923C15.6942 12.8024 16.0211 13.0145 16.3982 13.0224Z\" fill=\"#A3A3A3\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Nebula\"})}),className:\"framer-142ysmm\",\"data-framer-name\":\"Nebula\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"JhWF8n_yX\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})}),className:\"framer-1bqd6m0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"asmSMkR0W\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-mv3Yl_Elv-BWCZZbh3B)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-mv3Yl_Elv-BWCZZbh3B\":mv3Yl_Elv},text:n1_LzvWJe,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ezhzPLU3v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},hrWjvQxQR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},LJZmlsQae:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},mpGureeax:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},oJRNjPxLA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},PwRtlUaiw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},QvcJkNHgw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},S34QURjrw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},TORBfIKIt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},VbMA8YLfs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})},YTP9GdhR_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-11lpz5a\",\"data-styles-preset\":\"OpCwdqy_0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-mv3Yl_Elv-BWCZZbh3B))\"},children:\"Full stack, open-source web3 development platform\"})})}},baseVariant,gestureVariant)}),isDisplayed1(kDae_Ip1j)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})}),className:\"framer-1ehlkjf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XrEoaGG0Q\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X7237Dc7S,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ezhzPLU3v:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})},LJZmlsQae:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})},oJRNjPxLA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})},PwRtlUaiw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})},QvcJkNHgw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})},S34QURjrw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})},TORBfIKIt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})},YTP9GdhR_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n0y0k0\",layoutDependency:layoutDependency,layoutId:\"FACBXNRNH\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YTP9GdhR_:{height:36,width:\"36px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+66+0+0+0+0+48+0+0+289.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11cklh-container\",layoutDependency:layoutDependency,layoutId:\"gqYr2TzgZ-container\",nodeId:\"gqYr2TzgZ\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(ConnectFrameworkIcon,{height:\"100%\",id:\"gqYr2TzgZ\",layoutId:\"gqYr2TzgZ\",Lu_S_OFZX:\"0px\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xd4newzG5:\"https://portal.thirdweb.com/typescript/v5\",YHsHyaVze:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" fill=\"none\">   <path d=\"M0 33.3333V266.667C0 285.083 14.9167 300 33.3333 300H266.667C285.083 300 300 285.083 300 266.667V33.3333C300 14.9167 285.083 0 266.667 0H33.3333C14.9167 0 0 14.9167 0 33.3333ZM177.767 157.517H142.467V266.667H114.017V157.517H79.45V133.333H177.767V157.517ZM183.3 260.433V231.25C183.3 231.25 199.233 243.267 218.367 243.267C237.5 243.267 236.75 230.767 236.75 229.05C236.75 210.9 182.567 210.9 182.567 170.7C182.567 116.017 261.517 137.6 261.517 137.6L260.533 163.583C260.533 163.583 247.3 154.75 232.333 154.75C217.383 154.75 211.983 161.867 211.983 169.467C211.983 189.083 266.667 187.117 266.667 226.6C266.667 287.4 183.3 260.433 183.3 260.433Z\" fill=\"white\"/> </svg>'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"36px\",...addPropertyOverrides({YTP9GdhR_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+66+0+0+0+0+48+0+0+289.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14bo0ht-container\",layoutDependency:layoutDependency,layoutId:\"TAy3CMx8C-container\",nodeId:\"TAy3CMx8C\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(ConnectFrameworkIcon,{height:\"100%\",id:\"TAy3CMx8C\",layoutId:\"TAy3CMx8C\",Lu_S_OFZX:\"0px\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xd4newzG5:\"https://portal.thirdweb.com/react/v5\",YHsHyaVze:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"200\" height=\"200\" viewBox=\"0 0 200 200\" fill=\"none\">   <g clip-path=\"url(#clip0_126_66575)\">     <mask id=\"mask0_126_66575\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"200\" height=\"200\">       <path d=\"M200 0H0V200H200V0Z\" fill=\"white\"/>     </mask>     <g mask=\"url(#mask0_126_66575)\">       <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.25 24.2175C58.7661 22.7648 62.434 22.3172 67.6644 23.8763C72.9122 25.4406 79.1424 28.8788 85.9534 34.2382C87.642 35.567 89.3504 37.0012 91.0716 38.5361C85.7771 44.1754 80.5299 50.5395 75.469 57.5062C66.9054 58.4057 58.7705 59.768 51.2395 61.5333C50.7709 59.2752 50.383 57.0786 50.0765 54.9517C48.8406 46.3736 48.9781 39.259 50.2474 33.9321C51.5124 28.6228 53.7339 25.6702 56.25 24.2175ZM93.6833 24.4148C95.7781 26.0632 97.8865 27.8452 99.9999 29.7531C102.113 27.8452 104.222 26.0632 106.316 24.4148C113.865 18.475 121.498 14.0633 128.765 11.8972C136.049 9.7259 143.548 9.6672 150 13.3922C156.451 17.1172 160.15 23.6408 161.913 31.035C163.67 38.4113 163.665 47.2269 162.295 56.7343C161.915 59.3727 161.426 62.0897 160.831 64.874C163.54 65.7502 166.137 66.6852 168.613 67.6752C177.531 71.2426 185.167 75.6468 190.678 80.8571C196.2 86.0797 200 92.5447 200 99.9947C200 107.445 196.2 113.91 190.678 119.132C185.167 124.343 177.531 128.747 168.613 132.315C166.137 133.305 163.54 134.24 160.831 135.116C161.426 137.9 161.915 140.617 162.296 143.255C163.665 152.762 163.67 161.578 161.913 168.955C160.15 176.348 156.451 182.872 150 186.597C143.549 190.322 136.049 190.263 128.765 188.092C121.498 185.926 113.865 181.515 106.317 175.575C104.222 173.926 102.113 172.143 99.9999 170.236C97.8864 172.143 95.7779 173.926 93.683 175.575C86.1344 181.515 78.5018 185.926 71.2349 188.092C63.9506 190.263 56.4516 190.322 49.9997 186.597C43.5479 182.872 39.8493 176.348 38.0875 168.955C36.33 161.578 36.3343 152.762 37.704 143.255C38.0841 140.617 38.5732 137.9 39.1689 135.116C36.4599 134.238 33.8625 133.305 31.3875 132.315C22.469 128.747 14.8322 124.343 9.32291 119.132C3.80035 113.91 0 107.445 0 99.9947C0 92.5447 3.80035 86.0797 9.32291 80.8571C14.8322 75.6468 22.469 71.2426 31.3875 67.6752C33.8625 66.6852 36.46 65.7502 39.169 64.874C38.5734 62.0897 38.0844 59.3727 37.7043 56.7343C36.3345 47.2269 36.3302 38.4112 38.0877 31.0348C39.8495 23.6408 43.5481 17.1172 50 13.3922C56.4519 9.66718 63.9509 9.72589 71.2351 11.8972C78.502 14.0633 86.1346 18.4748 93.6833 24.4148ZM92.0934 56.3728C94.7169 53.144 97.3601 50.1106 99.9999 47.2892C102.64 50.1106 105.283 53.144 107.906 56.3728C105.296 56.288 102.659 56.2447 100 56.2447C97.3406 56.2447 94.7038 56.2878 92.0934 56.3728ZM108.928 38.5361C114.223 44.1756 119.47 50.5395 124.531 57.5062C133.094 58.4057 141.229 59.768 148.76 61.5333C149.229 59.2752 149.616 57.0786 149.924 54.9518C151.159 46.3736 151.021 39.259 149.753 33.9321C148.488 28.6228 146.266 25.6702 143.75 24.2175C141.234 22.7648 137.566 22.3172 132.335 23.8763C127.087 25.4407 120.857 28.8788 114.046 34.2382C112.358 35.567 110.649 37.0012 108.928 38.5361ZM100 68.7447C106.054 68.7447 111.955 68.9803 117.648 69.4267C120.882 74.1345 124.036 79.1267 127.064 84.3697C130.09 89.6127 132.836 94.8405 135.296 99.9945C132.836 105.149 130.09 110.377 127.062 115.62C124.036 120.863 120.882 125.855 117.648 130.562C111.954 131.01 106.054 131.245 100 131.245C93.9459 131.245 88.0454 131.01 82.3516 130.562C79.1181 125.855 75.9638 120.863 72.9368 115.62C69.9096 110.377 67.1632 105.149 64.703 99.9945C67.1632 94.8403 69.9094 89.6127 72.9365 84.3697C75.9635 79.1267 79.1178 74.1345 82.3512 69.4267C88.0451 68.9802 93.9457 68.7447 100 68.7447ZM137.889 78.1197C139.219 80.4226 140.499 82.7277 141.731 85.0306C143.215 81.1443 144.52 77.3387 145.644 73.6419C141.881 72.7666 137.933 71.9942 133.825 71.3367C135.204 73.5547 136.559 75.8167 137.889 78.1197ZM137.889 121.87C139.217 119.567 140.499 117.261 141.731 114.958C143.215 118.845 144.521 122.65 145.644 126.347C141.881 127.222 137.932 127.995 133.824 128.652C135.202 126.435 136.559 124.173 137.889 121.87ZM149.061 99.9945C152.564 107.861 155.452 115.587 157.689 122.992C159.879 122.269 161.975 121.506 163.97 120.708C172.018 117.489 178.11 113.813 182.089 110.05C186.054 106.3 187.5 102.9 187.5 99.9947C187.5 97.0893 186.054 93.6891 182.089 89.9389C178.11 86.1763 172.018 82.4999 163.97 79.2812C161.975 78.4831 159.879 77.7207 157.689 76.9975C155.452 84.4022 152.564 92.1283 149.061 99.9945ZM124.53 142.483C133.094 141.583 141.229 140.221 148.76 138.456C149.229 140.715 149.618 142.911 149.924 145.037C151.16 153.616 151.021 160.731 149.753 166.057C148.488 171.367 146.266 174.32 143.75 175.772C141.234 177.225 137.566 177.672 132.335 176.113C127.087 174.548 120.858 171.111 114.047 165.751C112.358 164.422 110.649 162.988 108.928 161.453C114.223 155.813 119.47 149.45 124.53 142.483ZM107.906 143.617C105.283 146.846 102.64 149.878 99.9999 152.7C97.3601 149.878 94.7171 146.846 92.0936 143.616C94.7039 143.701 97.3408 143.745 100 143.745C102.659 143.745 105.296 143.701 107.906 143.617ZM62.1114 121.87C63.441 124.173 64.7969 126.435 66.1755 128.652C62.0675 127.995 58.1189 127.222 54.3555 126.347C55.4791 122.65 56.7845 118.845 58.269 114.958C59.5006 117.261 60.7818 119.567 62.1114 121.87ZM75.4692 142.483C66.9055 141.583 58.7704 140.221 51.2393 138.456C50.7706 140.715 50.3828 142.911 50.0763 145.037C48.8404 153.616 48.9779 160.731 50.2471 166.057C51.5121 171.367 53.7336 174.32 56.2497 175.772C58.7659 177.225 62.4337 177.672 67.6641 176.113C72.912 174.548 79.1421 171.111 85.9531 165.751C87.6419 164.422 89.3503 162.988 91.0716 161.453C85.7771 155.813 80.53 149.45 75.4692 142.483ZM50.9384 99.9945C47.4355 107.861 44.5476 115.587 42.3111 122.992C40.1211 122.269 38.025 121.506 36.0299 120.708C27.983 117.489 21.8904 113.813 17.9118 110.05C13.9464 106.3 12.5 102.9 12.5 99.9947C12.5 97.0893 13.9464 93.6891 17.9118 89.9389C21.8904 86.1763 27.983 82.4999 36.0299 79.2812C38.025 78.4831 40.1213 77.7207 42.3113 76.9975C44.5479 84.4023 47.4355 92.1283 50.9384 99.9945ZM58.269 85.0306C56.7846 81.1443 55.4794 77.3387 54.3558 73.6419C58.119 72.7666 62.0674 71.9942 66.1753 71.3367C64.7966 73.5547 63.4408 75.8167 62.1111 78.1197C60.7816 80.4226 59.5006 82.7277 58.269 85.0306ZM115.625 99.9947C115.625 108.624 108.63 115.62 100 115.62C91.3705 115.62 84.375 108.624 84.375 99.9947C84.375 91.3653 91.3705 84.3697 100 84.3697C108.63 84.3697 115.625 91.3653 115.625 99.9947Z\" fill=\"#FAFAFA\"/>     </g>   </g>   <defs>     <clipPath id=\"clip0_126_66575\">       <rect width=\"200\" height=\"200\" fill=\"white\"/>     </clipPath>   </defs> </svg>'})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YTP9GdhR_:{height:36,width:\"36px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+66+0+0+0+0+48+0+0+289.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gn2rse-container\",layoutDependency:layoutDependency,layoutId:\"Bk0279ahh-container\",nodeId:\"Bk0279ahh\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(ConnectFrameworkIcon,{height:\"100%\",id:\"Bk0279ahh\",layoutId:\"Bk0279ahh\",Lu_S_OFZX:\"0px\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xd4newzG5:\"https://portal.thirdweb.com/react-native/v5\",YHsHyaVze:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"422\" height=\"376\" viewBox=\"0 0 422 376\" fill=\"none\">   <path d=\"M200.093 138.338C203.548 133.302 207.311 132.666 210.366 132.666C213.42 132.666 218.493 133.302 221.947 138.338C249.038 175.247 293.766 248.793 326.766 303.066C348.293 338.429 364.82 365.611 368.22 369.066C380.947 382.047 398.402 373.957 408.547 359.229C418.529 344.738 421.293 334.557 421.293 323.702C421.293 316.302 276.602 49.3929 262.038 27.1748C248.038 5.81113 243.457 0.411133 219.493 0.411133H201.529C177.62 0.411133 174.166 5.81113 160.147 27.1748C145.584 49.3929 0.874756 316.302 0.874756 323.684C0.874756 334.557 3.65657 344.738 13.6566 359.229C23.802 373.957 41.2566 382.047 53.9838 369.047C57.3657 365.593 73.8929 338.429 95.4202 303.047C128.42 248.793 173.002 175.247 200.111 138.32L200.093 138.338Z\" fill=\"white\"/> </svg>'})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YTP9GdhR_:{height:36,width:\"36px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+66+0+0+0+0+48+0+0+289.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o1kfno-container\",layoutDependency:layoutDependency,layoutId:\"wNtYL8hfW-container\",nodeId:\"wNtYL8hfW\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(ConnectFrameworkIcon,{height:\"100%\",id:\"wNtYL8hfW\",layoutId:\"wNtYL8hfW\",Lu_S_OFZX:\"0px\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xd4newzG5:\"https://portal.thirdweb.com/unreal-engine\",YHsHyaVze:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"149\" height=\"150\" viewBox=\"0 0 149 150\" fill=\"none\">   <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M148.606 92.3C145.955 103.359 140.822 113.671 133.598 122.455C126.374 131.238 117.246 138.264 106.906 143L94.9064 129.4L74.4064 149.9C62.8026 149.761 51.3875 146.945 41.0499 141.673C30.7124 136.4 21.7314 128.812 14.8064 119.5C17.0064 120.1 19.2064 120.5 21.5064 120.7C24.8064 120.7 28.5064 119.6 28.5064 113.9V58.5C28.5572 57.0733 28.2716 55.6547 27.6727 54.3588C27.0739 53.0629 26.1785 51.926 25.059 51.0402C23.9395 50.1543 22.6273 49.5443 21.2284 49.2593C19.8295 48.9744 18.3832 49.0226 17.0064 49.4C7.50642 51.6 0.00641853 75.2 0.00641853 75.2C-0.231443 57.0116 6.14893 39.3566 17.9595 25.5224C29.7701 11.6883 46.2058 2.6178 64.2064 0C53.9064 6 48.2064 15.5 48.2064 23.5C48.2064 36.5 55.9064 34.9 58.2064 33V107.8C59.2775 110.384 61.2248 112.509 63.7064 113.8C65.2549 114.589 66.9684 115.001 68.7064 115C76.6064 115 86.7064 106 86.7064 106V45.5C86.5113 42.2652 85.5702 39.1195 83.9568 36.309C82.3434 33.4986 80.1014 31.0996 77.4064 29.3C77.4064 29.3 86.0064 27.8 92.7064 32.9C104.428 18.8981 120.855 9.65347 138.906 6.9C138.906 6.9 116.806 24.2 116.806 47.5C116.806 64.8 117.206 107.1 117.206 107.1C125.406 115 137.606 103.5 148.606 92.3Z\" fill=\"white\"/> </svg>'})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({YTP9GdhR_:{height:36,width:\"36px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+66+0+0+0+0+48+0+0+289.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mht4fl-container\",layoutDependency:layoutDependency,layoutId:\"v9_JVk93t-container\",nodeId:\"v9_JVk93t\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(ConnectFrameworkIcon,{height:\"100%\",id:\"v9_JVk93t\",layoutId:\"v9_JVk93t\",Lu_S_OFZX:\"0px 2px 0px 0px\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Xd4newzG5:\"https://portal.thirdweb.com/unity/v5\",YHsHyaVze:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"256\" height=\"263\" viewBox=\"0 0 256 263\" fill=\"none\">   <path d=\"M166.9 131.2L212.8 52L235 131.2L212.8 210.5L166.8 131.2H166.9ZM144.5 144.2L190.5 223.4L110.5 202.9L52.6 144H144.4L144.5 144.2ZM190.4 39L144.5 118.3H52.7L110.4 59.5L190.4 39ZM255.9 104.2L228 0L123.4 28L107.9 55.2L76.5 55L0 131.2L76.5 207.5L107.9 207.3L123.4 234.5L227.9 262.4L255.9 158.2L240 131.2L256 104.2H255.9Z\" fill=\"white\"/> </svg>'})})})]})]}),isDisplayed3(em4VNtxlA)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15t0xge\",\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"lnyhPqycs\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[p6cYGCWhT&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1rg9h9n\",\"data-framer-appear-id\":\"1rg9h9n\",\"data-framer-name\":\"Nebula Badge\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"HWxUtr17W\",optimized:true,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z2s3dj\",\"data-border\":true,\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"Jc9k5IRW2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(38, 38, 38)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(10, 10, 10)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tfq6s6\",\"data-framer-name\":\"Icon Container\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"d_LgJdMXv\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 0.5H20C21.933 0.5 23.5 2.067 23.5 4V20C23.5 21.933 21.933 23.5 20 23.5H4C2.067 23.5 0.5 21.933 0.5 20V4C0.5 2.067 2.067 0.5 4 0.5Z\" fill=\"#171717\"/>\\n<path d=\"M4 0.5H20C21.933 0.5 23.5 2.067 23.5 4V20C23.5 21.933 21.933 23.5 20 23.5H4C2.067 23.5 0.5 21.933 0.5 20V4C0.5 2.067 2.067 0.5 4 0.5Z\" stroke=\"#262626\"/>\\n<path d=\"M12.0003 10.9774C12.5651 10.9774 13.023 11.4353 13.023 12C13.023 12.5648 12.5651 13.0226 12.0003 13.0226C11.4356 13.0226 10.9777 12.5648 10.9777 12C10.9777 11.4353 11.4356 10.9774 12.0003 10.9774Z\" fill=\"#A3A3A3\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25091 10.0673C8.51143 9.73945 8.79747 9.41818 9.10799 9.10766C11.7703 6.44532 15.2235 5.58202 16.8209 7.17943C17.5516 7.91011 17.7674 9.02909 17.5317 10.2831C18.0936 10.6476 18.4652 11.2804 18.4652 12C18.4652 13.1296 17.5496 14.0452 16.42 14.0452C16.1853 14.0452 15.9597 14.0057 15.7497 13.9328C15.4892 14.2606 15.2032 14.5819 14.8927 14.8924C12.2304 17.5547 8.77715 18.418 7.17975 16.8206C6.4491 16.09 6.23326 14.9711 6.46892 13.7172C5.90693 13.3527 5.53516 12.7198 5.53516 12C5.53516 10.8705 6.45083 9.95482 7.58036 9.95482C7.81523 9.95482 8.04085 9.99441 8.25091 10.0673ZM9.83107 9.83075C11.0537 8.6081 12.4245 7.83505 13.6118 7.53821C14.8222 7.23561 15.6529 7.45759 16.0978 7.90252C16.488 8.29268 16.7067 8.97951 16.5506 9.95892C16.5074 9.9562 16.4639 9.95482 16.42 9.95482C15.2905 9.95482 14.3748 10.8705 14.3748 12C14.3748 12.5238 14.5717 13.0016 14.8956 13.3635C14.6745 13.6367 14.4325 13.9064 14.1696 14.1693C12.947 15.3919 11.5762 16.165 10.3889 16.4618C9.17845 16.7644 8.34776 16.5424 7.90284 16.0975C7.51267 15.7074 7.29395 15.0205 7.45008 14.0411C7.49316 14.0438 7.5366 14.0452 7.58036 14.0452C8.7099 14.0452 9.62556 13.1296 9.62556 12C9.62556 11.4763 9.42871 10.9986 9.10496 10.6367C9.32603 10.3634 9.56816 10.0937 9.83107 9.83075ZM7.58051 13.0226C7.25321 13.0226 6.96184 12.8688 6.7747 12.6295C6.77474 12.6294 6.77467 12.6296 6.7747 12.6295C6.63884 12.4559 6.55776 12.2376 6.55776 12C6.55776 11.4353 7.01559 10.9774 7.58036 10.9774C8.14513 10.9774 8.60296 11.4353 8.60296 12C8.60296 12.5594 8.15383 13.0139 7.59651 13.0225C7.59123 13.0226 7.5858 13.0226 7.58051 13.0226ZM16.3982 13.0224C16.4055 13.0225 16.4127 13.0226 16.42 13.0226C16.9848 13.0226 17.4426 12.5648 17.4426 12C17.4426 11.7626 17.3617 11.5441 17.226 11.3705C17.0505 11.1462 16.7834 10.997 16.481 10.9792C16.4608 10.978 16.4405 10.9774 16.42 10.9774C16.3716 10.9774 16.324 10.9808 16.2773 10.9873C15.7801 11.0567 15.3974 11.4837 15.3974 12C15.3974 12.1785 15.4431 12.3463 15.5235 12.4923C15.6942 12.8024 16.0211 13.0145 16.3982 13.0224Z\" fill=\"#A3A3A3\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250)))\"},children:\"Nebula\"})}),className:\"framer-gg285j\",\"data-framer-name\":\"Nebula\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"d5hT43wRZ\",style:{\"--extracted-r6o4lv\":\"var(--token-986afb1c-84ad-46b2-a807-6bd407af3abe, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163)))\"},children:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\"})}),className:\"framer-15whohp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k012hmvNn\",style:{\"--extracted-r6o4lv\":\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X7237Dc7S,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4(ngskxLTDH)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11a2gjy\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"eYB_dFMUZ\",children:[tqke3HxhZ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||794)-0-794)/2+0+0)+32+66+0+0+187.2+0+257.6+0,...addPropertyOverrides({ezhzPLU3v:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||600)-0-499.6)/2+0+0)+32+66+0+0+48+0+257.6+0},LJZmlsQae:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||901)-0-947.6)/2+0+0)+32+66+0+0+48+0+0+257.6+0},oJRNjPxLA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||549)-0-595.6)/2+0+0)+32+66+0+0+96+0+257.6+0},PwRtlUaiw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||908)-0-770.1)/2+0+0)+32+66+0+0+0+0+48+257.6+0},QvcJkNHgw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||453)-0-499.6)/2+0+0)+32+66+0+0+48+0+257.6+0},S34QURjrw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||990)-0-831.6)/2+0+0)+32+66+0+0+32+0+0+257.6+0},TORBfIKIt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||820)-0-770.1)/2+0+0)+32+66+0+0+0+0+48+257.6+0},YTP9GdhR_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+66+0+0+0+0+48+309.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zq6est-container\",layoutDependency:layoutDependency,layoutId:\"w8fZrgLJB-container\",nodeId:\"w8fZrgLJB\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(ButtonsButton,{BL_hxI2b_:FuqU8kc13,BnmH_z3oH:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:1.25,height:\"100%\",I4KuTahqi:txeFNl4uz,id:\"w8fZrgLJB\",layoutId:\"w8fZrgLJB\",q8NV5vffb:\"center\",RSajvyivS:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",variant:\"Bjx2_zxQl\",width:\"100%\"})})}),DUrG2bvdc&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+(((componentViewport?.height||794)-0-794)/2+0+0)+32+66+0+0+187.2+0+257.6+0,...addPropertyOverrides({ezhzPLU3v:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||600)-0-499.6)/2+0+0)+32+66+0+0+48+0+257.6+0},LJZmlsQae:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||901)-0-947.6)/2+0+0)+32+66+0+0+48+0+0+257.6+0},oJRNjPxLA:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||549)-0-595.6)/2+0+0)+32+66+0+0+96+0+257.6+0},PwRtlUaiw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||908)-0-770.1)/2+0+0)+32+66+0+0+0+0+48+257.6+0},QvcJkNHgw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||453)-0-499.6)/2+0+0)+32+66+0+0+48+0+257.6+0},S34QURjrw:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||990)-0-831.6)/2+0+0)+32+66+0+0+32+0+0+257.6+0},TORBfIKIt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||820)-0-770.1)/2+0+0)+32+66+0+0+0+0+48+257.6+0},YTP9GdhR_:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1145)-0-822.1)/2+0+0)+32+66+0+0+0+0+48+309.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mg8pqr-container\",layoutDependency:layoutDependency,layoutId:\"wsSlfKYzp-container\",nodeId:\"wsSlfKYzp\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(ButtonsButton,{BL_hxI2b_:a6vEFqb1a,BnmH_z3oH:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\">   <path d=\"M4.5 9L7.5 6L4.5 3\" stroke=\"white\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/> </svg>',GxuiU3lbe:1.25,height:\"100%\",I4KuTahqi:N9Zu6OrXQ,id:\"wsSlfKYzp\",layoutId:\"wsSlfKYzp\",q8NV5vffb:\"center\",RSajvyivS:\"var(--token-c4634c61-c453-49aa-834c-3d21e51f5eb0, rgb(163, 163, 163))\",variant:\"ybIX8v1ci\",width:\"100%\"})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:584,width:\"584px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||794)-0-794)/2+0+0)+32+66+0+0+48,...addPropertyOverrides({LJZmlsQae:{height:400,width:\"400px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||901)-0-947.6)/2+0+0)+32+66+0+0+48+337.6},S34QURjrw:{height:300,width:\"300px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||990)-0-831.6)/2+0+0)+32+66+0+0+32+337.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x7d32p-container\",layoutDependency:layoutDependency,layoutId:\"v2w61dO5A-container\",nodeId:\"v2w61dO5A\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(AssetsHero,{height:\"100%\",id:\"v2w61dO5A\",layoutId:\"v2w61dO5A\",style:{height:\"100%\",width:\"100%\"},variant:p_70tJ84X,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18sk0an\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"autuxRjcz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lw05j8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"twOM0s6CB-container\",nodeId:\"twOM0s6CB\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"twOM0s6CB\",isMixedBorderRadius:false,layoutId:\"twOM0s6CB\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HbTjP06ZnRJdUcRIu0ZvLn7CKp4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mlsp6s\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"nMaR2Y2uA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.02)\"},variants:{PwRtlUaiw:{backgroundColor:\"rgba(0, 0, 0, 0)\"},TORBfIKIt:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rxf3m5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"I4g8nhPQH-container\",nodeId:\"I4g8nhPQH\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"I4g8nhPQH\",isMixedBorderRadius:false,layoutId:\"I4g8nhPQH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HbTjP06ZnRJdUcRIu0ZvLn7CKp4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qzksuu\",layoutDependency:layoutDependency,layoutId:\"sbtLiKfpR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o4u4gd\",\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"HkBEWONkw\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-10nsvr3\",\"data-styles-preset\":\"ck5AxXn6p\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229)))\"},children:\"Plans that scale to every team\"})}),className:\"framer-1sjmpjf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LQcSa6kam\",style:{\"--extracted-1of0zx5\":\"var(--token-80197f60-5b03-4245-879a-f8f7bd718bb3, rgb(229, 229, 229))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wue8tv\",\"data-styles-preset\":\"VRNRSTyfg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Flexible and transparent pricing that scales to your app usage without cutting you off, ever.\"})}),className:\"framer-z2lp9v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FyOmz2e_1\",verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m7x160\",layoutDependency:layoutDependency,layoutId:\"TLO_otHnr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,...addPropertyOverrides({CwRc7r4SV:{width:`min(${componentViewport?.width||\"100vw\"}, 1138px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2306)-0-2565.6)/2+0+0)+32+66+0+361.6+0+0},LW68CT4Ny:{width:`min(${componentViewport?.width||\"100vw\"}, 1138px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2473)-0-2565.6)/2+0+0)+32+66+0+361.6+0+0},Nf3l7yh_n:{width:\"379.3333px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1066)-0-1161.6)/2+0+0)+32+66+0+361.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2ja9k9-container\",layoutDependency:layoutDependency,layoutId:\"CSXXowp3s-container\",nodeId:\"CSXXowp3s\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(HomePricingCard,{height:\"100%\",id:\"CSXXowp3s\",layoutId:\"CSXXowp3s\",style:{width:\"100%\"},variant:\"XkB6ld6Dz\",vM8LZXDLK:\"Enterprise\",width:\"100%\",...addPropertyOverrides({CwRc7r4SV:{variant:\"Y2fLhRSEt\"},LW68CT4Ny:{variant:\"Y2fLhRSEt\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,...addPropertyOverrides({CwRc7r4SV:{width:`min(${componentViewport?.width||\"100vw\"}, 1138px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2306)-0-2565.6)/2+0+0)+32+66+0+361.6+0+702},LW68CT4Ny:{width:`min(${componentViewport?.width||\"100vw\"}, 1138px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2473)-0-2565.6)/2+0+0)+32+66+0+361.6+0+702},Nf3l7yh_n:{width:\"379.3333px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1066)-0-1161.6)/2+0+0)+32+66+0+361.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3av0ty-container\",layoutDependency:layoutDependency,layoutId:\"ken4yR5Ds-container\",nodeId:\"ken4yR5Ds\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(HomePricingCard,{height:\"100%\",id:\"ken4yR5Ds\",layoutId:\"ken4yR5Ds\",style:{width:\"100%\"},variant:\"VXLg5PnA0\",vM8LZXDLK:\"Enterprise\",width:\"100%\",...addPropertyOverrides({CwRc7r4SV:{variant:\"wfYK5ZO5V\"},LW68CT4Ny:{variant:\"wfYK5ZO5V\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,...addPropertyOverrides({CwRc7r4SV:{width:`min(${componentViewport?.width||\"100vw\"}, 1138px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2306)-0-2565.6)/2+0+0)+32+66+0+361.6+0+1404},LW68CT4Ny:{width:`min(${componentViewport?.width||\"100vw\"}, 1138px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2473)-0-2565.6)/2+0+0)+32+66+0+361.6+0+1404},Nf3l7yh_n:{width:\"379.3333px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1066)-0-1161.6)/2+0+0)+32+66+0+361.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p46cft-container\",layoutDependency:layoutDependency,layoutId:\"F28uwlo_i-container\",nodeId:\"F28uwlo_i\",rendersWithMotion:true,scopeId:\"BWCZZbh3B\",children:/*#__PURE__*/_jsx(HomePricingCard,{height:\"100%\",id:\"F28uwlo_i\",layoutId:\"F28uwlo_i\",style:{width:\"100%\"},variant:\"GtZnyE_8u\",vM8LZXDLK:\"Enterprise\",width:\"100%\",...addPropertyOverrides({CwRc7r4SV:{variant:\"Y8pUVMtHu\"},LW68CT4Ny:{variant:\"Y8pUVMtHu\"}},baseVariant,gestureVariant)})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ipvRj.framer-1ehu9tz, .framer-ipvRj .framer-1ehu9tz { display: block; }\",\".framer-ipvRj.framer-un93nt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1138px; }\",\".framer-ipvRj .framer-1boljoh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ipvRj .framer-13pi7xy-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-ipvRj .framer-c1byc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1138px; overflow: visible; padding: 0px; position: relative; width: 1138px; }\",\".framer-ipvRj .framer-f52njm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 48px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-ipvRj .framer-1oyxyg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: 1px; z-index: 1; }\",\".framer-ipvRj .framer-yi2k35 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ipvRj .framer-13v3cj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ipvRj .framer-197gflp { flex: none; height: 12px; position: relative; width: 86px; }\",\".framer-ipvRj .framer-1hxys64 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ipvRj .framer-1j652vq { flex: none; height: 16px; position: relative; width: 86px; }\",\".framer-ipvRj .framer-6tlp4i, .framer-ipvRj .framer-1rg9h9n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ipvRj .framer-7dk8vt, .framer-ipvRj .framer-z2s3dj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: flex-start; overflow: hidden; padding: 4px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ipvRj .framer-s66zx0, .framer-ipvRj .framer-tfq6s6 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-ipvRj .framer-142ysmm, .framer-ipvRj .framer-gg285j { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-ipvRj .framer-1bqd6m0, .framer-ipvRj .framer-1ehlkjf, .framer-ipvRj .framer-15whohp { flex: none; height: auto; max-width: 672px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ipvRj .framer-1n0y0k0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ipvRj .framer-11cklh-container, .framer-ipvRj .framer-14bo0ht-container, .framer-ipvRj .framer-1gn2rse-container, .framer-ipvRj .framer-o1kfno-container, .framer-ipvRj .framer-1mht4fl-container { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-ipvRj .framer-15t0xge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-ipvRj .framer-11a2gjy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-ipvRj .framer-zq6est-container, .framer-ipvRj .framer-mg8pqr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ipvRj .framer-1x7d32p-container { flex: none; height: 584px; position: relative; width: 584px; }\",\".framer-ipvRj .framer-18sk0an { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ipvRj .framer-lw05j8-container, .framer-ipvRj .framer-1rxf3m5-container { aspect-ratio: 1.779527559055118 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 112px); position: relative; width: 1px; }\",\".framer-ipvRj .framer-1mlsp6s { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 1px; }\",\".framer-ipvRj .framer-1qzksuu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1138px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ipvRj .framer-o4u4gd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-ipvRj .framer-1sjmpjf, .framer-ipvRj .framer-z2lp9v { flex: none; height: auto; max-width: 692px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ipvRj .framer-1m7x160 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1138px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ipvRj .framer-2ja9k9-container, .framer-ipvRj .framer-3av0ty-container, .framer-ipvRj .framer-p46cft-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-un93nt, .framer-ipvRj .framer-1boljoh, .framer-ipvRj .framer-c1byc2, .framer-ipvRj .framer-f52njm, .framer-ipvRj .framer-1oyxyg, .framer-ipvRj .framer-yi2k35, .framer-ipvRj .framer-13v3cj5, .framer-ipvRj .framer-6tlp4i, .framer-ipvRj .framer-7dk8vt, .framer-ipvRj .framer-1n0y0k0, .framer-ipvRj .framer-15t0xge, .framer-ipvRj .framer-1rg9h9n, .framer-ipvRj .framer-z2s3dj, .framer-ipvRj .framer-11a2gjy, .framer-ipvRj .framer-18sk0an, .framer-ipvRj .framer-1mlsp6s, .framer-ipvRj .framer-1qzksuu, .framer-ipvRj .framer-o4u4gd, .framer-ipvRj .framer-1m7x160 { gap: 0px; } .framer-ipvRj.framer-un93nt > *, .framer-ipvRj .framer-c1byc2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-un93nt > :first-child, .framer-ipvRj .framer-1boljoh > :first-child, .framer-ipvRj .framer-c1byc2 > :first-child, .framer-ipvRj .framer-1oyxyg > :first-child, .framer-ipvRj .framer-yi2k35 > :first-child, .framer-ipvRj .framer-15t0xge > :first-child, .framer-ipvRj .framer-1qzksuu > :first-child, .framer-ipvRj .framer-o4u4gd > :first-child { margin-top: 0px; } .framer-ipvRj.framer-un93nt > :last-child, .framer-ipvRj .framer-1boljoh > :last-child, .framer-ipvRj .framer-c1byc2 > :last-child, .framer-ipvRj .framer-1oyxyg > :last-child, .framer-ipvRj .framer-yi2k35 > :last-child, .framer-ipvRj .framer-15t0xge > :last-child, .framer-ipvRj .framer-1qzksuu > :last-child, .framer-ipvRj .framer-o4u4gd > :last-child { margin-bottom: 0px; } .framer-ipvRj .framer-1boljoh > *, .framer-ipvRj .framer-1qzksuu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ipvRj .framer-f52njm > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-ipvRj .framer-f52njm > :first-child, .framer-ipvRj .framer-13v3cj5 > :first-child, .framer-ipvRj .framer-6tlp4i > :first-child, .framer-ipvRj .framer-7dk8vt > :first-child, .framer-ipvRj .framer-1n0y0k0 > :first-child, .framer-ipvRj .framer-1rg9h9n > :first-child, .framer-ipvRj .framer-z2s3dj > :first-child, .framer-ipvRj .framer-11a2gjy > :first-child, .framer-ipvRj .framer-18sk0an > :first-child, .framer-ipvRj .framer-1mlsp6s > :first-child, .framer-ipvRj .framer-1m7x160 > :first-child { margin-left: 0px; } .framer-ipvRj .framer-f52njm > :last-child, .framer-ipvRj .framer-13v3cj5 > :last-child, .framer-ipvRj .framer-6tlp4i > :last-child, .framer-ipvRj .framer-7dk8vt > :last-child, .framer-ipvRj .framer-1n0y0k0 > :last-child, .framer-ipvRj .framer-1rg9h9n > :last-child, .framer-ipvRj .framer-z2s3dj > :last-child, .framer-ipvRj .framer-11a2gjy > :last-child, .framer-ipvRj .framer-18sk0an > :last-child, .framer-ipvRj .framer-1mlsp6s > :last-child, .framer-ipvRj .framer-1m7x160 > :last-child { margin-right: 0px; } .framer-ipvRj .framer-1oyxyg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ipvRj .framer-yi2k35 > *, .framer-ipvRj .framer-15t0xge > *, .framer-ipvRj .framer-o4u4gd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ipvRj .framer-13v3cj5 > *, .framer-ipvRj .framer-6tlp4i > *, .framer-ipvRj .framer-1n0y0k0 > *, .framer-ipvRj .framer-1rg9h9n > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ipvRj .framer-7dk8vt > *, .framer-ipvRj .framer-z2s3dj > *, .framer-ipvRj .framer-11a2gjy > *, .framer-ipvRj .framer-18sk0an > *, .framer-ipvRj .framer-1mlsp6s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ipvRj .framer-1m7x160 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-ipvRj.framer-v-uyqhfd.framer-un93nt, .framer-ipvRj.framer-v-9dz2s1.framer-un93nt, .framer-ipvRj.framer-v-1t3rbmb.framer-un93nt, .framer-ipvRj.framer-v-13o1rfq.framer-un93nt, .framer-ipvRj.framer-v-1jgiy5q.framer-un93nt { width: 810px; }\",\".framer-ipvRj.framer-v-uyqhfd .framer-1boljoh, .framer-ipvRj.framer-v-uyqhfd .framer-c1byc2, .framer-ipvRj.framer-v-tmqfnd .framer-1boljoh, .framer-ipvRj.framer-v-tmqfnd .framer-c1byc2, .framer-ipvRj.framer-v-9dz2s1 .framer-1boljoh, .framer-ipvRj.framer-v-9dz2s1 .framer-c1byc2, .framer-ipvRj.framer-v-4w04ae .framer-1boljoh, .framer-ipvRj.framer-v-4w04ae .framer-c1byc2, .framer-ipvRj.framer-v-1t3rbmb .framer-1boljoh, .framer-ipvRj.framer-v-1t3rbmb .framer-c1byc2, .framer-ipvRj.framer-v-j9tbt8 .framer-1boljoh, .framer-ipvRj.framer-v-j9tbt8 .framer-c1byc2, .framer-ipvRj.framer-v-ofjk4l .framer-1boljoh, .framer-ipvRj.framer-v-ofjk4l .framer-c1byc2, .framer-ipvRj.framer-v-13o1rfq .framer-1boljoh, .framer-ipvRj.framer-v-13o1rfq .framer-c1byc2, .framer-ipvRj.framer-v-qt13n0 .framer-1boljoh, .framer-ipvRj.framer-v-qt13n0 .framer-c1byc2, .framer-ipvRj.framer-v-1xvcysu .framer-1boljoh, .framer-ipvRj.framer-v-1xvcysu .framer-c1byc2, .framer-ipvRj.framer-v-1jgiy5q .framer-1boljoh, .framer-ipvRj.framer-v-1jgiy5q .framer-c1byc2, .framer-ipvRj.framer-v-49xbju .framer-1boljoh, .framer-ipvRj.framer-v-49xbju .framer-c1byc2 { width: 100%; }\",\".framer-ipvRj.framer-v-uyqhfd .framer-f52njm, .framer-ipvRj.framer-v-1t3rbmb .framer-1m7x160, .framer-ipvRj.framer-v-j9tbt8 .framer-1m7x160 { flex-direction: column; }\",\".framer-ipvRj.framer-v-uyqhfd .framer-1oyxyg, .framer-ipvRj.framer-v-tmqfnd .framer-1oyxyg { align-content: center; align-items: center; flex: none; order: 0; padding: 0px; width: 100%; }\",\".framer-ipvRj.framer-v-uyqhfd .framer-yi2k35, .framer-ipvRj.framer-v-esd22u .framer-yi2k35, .framer-ipvRj.framer-v-9dz2s1 .framer-yi2k35, .framer-ipvRj.framer-v-4w04ae .framer-yi2k35, .framer-ipvRj.framer-v-ofjk4l .framer-yi2k35, .framer-ipvRj.framer-v-13o1rfq .framer-yi2k35, .framer-ipvRj.framer-v-qt13n0 .framer-yi2k35 { align-content: center; align-items: center; }\",\".framer-ipvRj.framer-v-uyqhfd .framer-11a2gjy, .framer-ipvRj.framer-v-tmqfnd .framer-11a2gjy, .framer-ipvRj.framer-v-esd22u .framer-11a2gjy, .framer-ipvRj.framer-v-9dz2s1 .framer-11a2gjy, .framer-ipvRj.framer-v-4w04ae .framer-11a2gjy, .framer-ipvRj.framer-v-ofjk4l .framer-11a2gjy, .framer-ipvRj.framer-v-13o1rfq .framer-11a2gjy, .framer-ipvRj.framer-v-qt13n0 .framer-11a2gjy { justify-content: center; }\",\".framer-ipvRj.framer-v-uyqhfd .framer-1x7d32p-container { height: 400px; order: 1; width: 400px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-uyqhfd .framer-f52njm { gap: 0px; } .framer-ipvRj.framer-v-uyqhfd .framer-f52njm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ipvRj.framer-v-uyqhfd .framer-f52njm > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-uyqhfd .framer-f52njm > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-tmqfnd.framer-un93nt, .framer-ipvRj.framer-v-4w04ae.framer-un93nt, .framer-ipvRj.framer-v-j9tbt8.framer-un93nt, .framer-ipvRj.framer-v-qt13n0.framer-un93nt, .framer-ipvRj.framer-v-49xbju.framer-un93nt { width: 390px; }\",\".framer-ipvRj.framer-v-tmqfnd .framer-f52njm { flex-direction: column; padding: 32px 0px 64px 0px; }\",\".framer-ipvRj.framer-v-tmqfnd .framer-yi2k35 { align-content: center; align-items: center; padding: 0px 24px 0px 24px; }\",\".framer-ipvRj.framer-v-tmqfnd .framer-1x7d32p-container { height: 300px; order: 1; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-tmqfnd .framer-f52njm { gap: 0px; } .framer-ipvRj.framer-v-tmqfnd .framer-f52njm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ipvRj.framer-v-tmqfnd .framer-f52njm > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-tmqfnd .framer-f52njm > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-esd22u .framer-f52njm, .framer-ipvRj.framer-v-9dz2s1 .framer-f52njm, .framer-ipvRj.framer-v-4w04ae .framer-f52njm { flex-direction: column; gap: 0px; padding: 0px; }\",\".framer-ipvRj.framer-v-esd22u .framer-1oyxyg, .framer-ipvRj.framer-v-9dz2s1 .framer-1oyxyg, .framer-ipvRj.framer-v-4w04ae .framer-1oyxyg { align-content: center; align-items: center; flex: none; padding: 48px 16px 48px 16px; width: 100%; }\",\".framer-ipvRj.framer-v-esd22u .framer-11cklh-container { order: 0; }\",\".framer-ipvRj.framer-v-esd22u .framer-14bo0ht-container { order: 1; }\",\".framer-ipvRj.framer-v-esd22u .framer-1gn2rse-container { order: 2; }\",\".framer-ipvRj.framer-v-esd22u .framer-o1kfno-container { order: 4; }\",\".framer-ipvRj.framer-v-esd22u .framer-1mht4fl-container { order: 3; }\",\".framer-ipvRj.framer-v-esd22u .framer-18sk0an, .framer-ipvRj.framer-v-1t3rbmb .framer-2ja9k9-container, .framer-ipvRj.framer-v-1t3rbmb .framer-3av0ty-container, .framer-ipvRj.framer-v-1t3rbmb .framer-p46cft-container, .framer-ipvRj.framer-v-j9tbt8 .framer-2ja9k9-container, .framer-ipvRj.framer-v-j9tbt8 .framer-3av0ty-container, .framer-ipvRj.framer-v-j9tbt8 .framer-p46cft-container { flex: none; width: 100%; }\",\".framer-ipvRj.framer-v-esd22u .framer-lw05j8-container { height: var(--framer-aspect-ratio-supported, 640px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-esd22u .framer-f52njm { gap: 0px; } .framer-ipvRj.framer-v-esd22u .framer-f52njm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-esd22u .framer-f52njm > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-esd22u .framer-f52njm > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-9dz2s1 .framer-1mlsp6s, .framer-ipvRj.framer-v-4w04ae .framer-1mlsp6s { flex: none; padding: 0px; width: 100%; }\",\".framer-ipvRj.framer-v-9dz2s1 .framer-1rxf3m5-container { height: var(--framer-aspect-ratio-supported, 455px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-9dz2s1 .framer-f52njm { gap: 0px; } .framer-ipvRj.framer-v-9dz2s1 .framer-f52njm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-9dz2s1 .framer-f52njm > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-9dz2s1 .framer-f52njm > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-4w04ae .framer-1rxf3m5-container { height: var(--framer-aspect-ratio-supported, 220px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-4w04ae .framer-f52njm { gap: 0px; } .framer-ipvRj.framer-v-4w04ae .framer-f52njm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-4w04ae .framer-f52njm > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-4w04ae .framer-f52njm > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-1gafaly .framer-o4u4gd, .framer-ipvRj.framer-v-1t3rbmb .framer-o4u4gd, .framer-ipvRj.framer-v-j9tbt8 .framer-o4u4gd { padding: 64px 24px 64px 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-1t3rbmb .framer-1m7x160 { gap: 0px; } .framer-ipvRj.framer-v-1t3rbmb .framer-1m7x160 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-1t3rbmb .framer-1m7x160 > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-1t3rbmb .framer-1m7x160 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-j9tbt8 .framer-1m7x160 { gap: 0px; } .framer-ipvRj.framer-v-j9tbt8 .framer-1m7x160 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-j9tbt8 .framer-1m7x160 > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-j9tbt8 .framer-1m7x160 > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-ofjk4l .framer-f52njm { padding: 96px 16px 96px 16px; }\",\".framer-ipvRj.framer-v-ofjk4l .framer-1oyxyg, .framer-ipvRj.framer-v-13o1rfq .framer-1oyxyg, .framer-ipvRj.framer-v-qt13n0 .framer-1oyxyg { align-content: center; align-items: center; padding: 0px; }\",\".framer-ipvRj.framer-v-13o1rfq .framer-f52njm, .framer-ipvRj.framer-v-qt13n0 .framer-f52njm { padding: 48px 16px 48px 16px; }\",\".framer-ipvRj.framer-v-1xvcysu .framer-f52njm { gap: 0px; padding: var(--xr92rf); }\",\".framer-ipvRj.framer-v-1xvcysu .framer-1oyxyg, .framer-ipvRj.framer-v-1jgiy5q .framer-1oyxyg, .framer-ipvRj.framer-v-49xbju .framer-1oyxyg { align-content: center; align-items: center; gap: 0px; padding: 0px; }\",\".framer-ipvRj.framer-v-1xvcysu .framer-yi2k35 { align-content: center; align-items: center; padding: 64px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-1xvcysu .framer-f52njm, .framer-ipvRj.framer-v-1xvcysu .framer-1oyxyg { gap: 0px; } .framer-ipvRj.framer-v-1xvcysu .framer-f52njm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ipvRj.framer-v-1xvcysu .framer-f52njm > :first-child { margin-left: 0px; } .framer-ipvRj.framer-v-1xvcysu .framer-f52njm > :last-child { margin-right: 0px; } .framer-ipvRj.framer-v-1xvcysu .framer-1oyxyg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-1xvcysu .framer-1oyxyg > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-1xvcysu .framer-1oyxyg > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-1jgiy5q .framer-f52njm, .framer-ipvRj.framer-v-49xbju .framer-f52njm { padding: var(--xr92rf); }\",\".framer-ipvRj.framer-v-1jgiy5q .framer-yi2k35, .framer-ipvRj.framer-v-49xbju .framer-yi2k35 { align-content: center; align-items: center; padding: 24px 0px 24px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-1jgiy5q .framer-1oyxyg { gap: 0px; } .framer-ipvRj.framer-v-1jgiy5q .framer-1oyxyg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-1jgiy5q .framer-1oyxyg > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-1jgiy5q .framer-1oyxyg > :last-child { margin-bottom: 0px; } }\",\".framer-ipvRj.framer-v-49xbju .framer-15t0xge { padding: 16px; }\",\".framer-ipvRj.framer-v-49xbju .framer-15whohp { max-width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ipvRj.framer-v-49xbju .framer-1oyxyg { gap: 0px; } .framer-ipvRj.framer-v-49xbju .framer-1oyxyg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ipvRj.framer-v-49xbju .framer-1oyxyg > :first-child { margin-top: 0px; } .framer-ipvRj.framer-v-49xbju .framer-1oyxyg > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-ipvRj[data-border=\"true\"]::after, .framer-ipvRj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 794\n * @framerIntrinsicWidth 1138\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LJZmlsQae\":{\"layout\":[\"fixed\",\"auto\"]},\"S34QURjrw\":{\"layout\":[\"fixed\",\"auto\"]},\"YTP9GdhR_\":{\"layout\":[\"fixed\",\"auto\"]},\"PwRtlUaiw\":{\"layout\":[\"fixed\",\"auto\"]},\"TORBfIKIt\":{\"layout\":[\"fixed\",\"auto\"]},\"Nf3l7yh_n\":{\"layout\":[\"fixed\",\"auto\"]},\"CwRc7r4SV\":{\"layout\":[\"fixed\",\"auto\"]},\"LW68CT4Ny\":{\"layout\":[\"fixed\",\"auto\"]},\"oJRNjPxLA\":{\"layout\":[\"fixed\",\"auto\"]},\"QvcJkNHgw\":{\"layout\":[\"fixed\",\"auto\"]},\"ezhzPLU3v\":{\"layout\":[\"fixed\",\"auto\"]},\"mpGureeax\":{\"layout\":[\"fixed\",\"auto\"]},\"hrWjvQxQR\":{\"layout\":[\"fixed\",\"auto\"]},\"VbMA8YLfs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"R5uLuWnF3\":\"zergBanner\",\"n1_LzvWJe\":\"title\",\"mv3Yl_Elv\":\"titleColor\",\"X7237Dc7S\":\"subtitle\",\"p_70tJ84X\":\"hero\",\"txeFNl4uz\":\"mainButtonText\",\"FuqU8kc13\":\"mainButtonLink\",\"tqke3HxhZ\":\"mainButton\",\"DUrG2bvdc\":\"secondaryButton\",\"N9Zu6OrXQ\":\"secondaryButtonText\",\"a6vEFqb1a\":\"secondaryButtonLink\",\"p6cYGCWhT\":\"nebulaBadge\",\"IkF07QfOn\":\"border\",\"ngskxLTDH\":\"button\",\"kDae_Ip1j\":\"subtitle1\",\"em4VNtxlA\":\"bar\",\"o64x6cjoC\":\"padding\",\"gB2FrNNVD\":\"oPXThirdweb\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBWCZZbh3B=withCSS(Component,css,\"framer-ipvRj\");export default FramerBWCZZbh3B;FramerBWCZZbh3B.displayName=\"Home / Hero Section\";FramerBWCZZbh3B.defaultProps={height:794,width:1138};addPropertyControls(FramerBWCZZbh3B,{variant:{options:[\"v3GVHehct\",\"LJZmlsQae\",\"S34QURjrw\",\"YTP9GdhR_\",\"PwRtlUaiw\",\"TORBfIKIt\",\"Nf3l7yh_n\",\"CwRc7r4SV\",\"LW68CT4Ny\",\"oJRNjPxLA\",\"QvcJkNHgw\",\"ezhzPLU3v\",\"mpGureeax\",\"hrWjvQxQR\",\"VbMA8YLfs\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Desktop: Unlimited Wallets\",\"Tablet: Unlimited Wallets\",\"Phone: Unlimited Wallets\",\"Desktop: Pricing\",\"Tablet: Pricing\",\"Phone: Pricing\",\"Desktop: Text + Buttons\",\"Tablet: Text + Buttons\",\"Phone: Text + Buttons\",\"Desktop: Text\",\"Tablet: Text\",\"Mobile: Text\"],title:\"Variant\",type:ControlType.Enum},R5uLuWnF3:{defaultValue:true,title:\"Zerg Banner\",type:ControlType.Boolean},n1_LzvWJe:{defaultValue:\"Full stack, open-source web3 development platform\",displayTextArea:false,title:\"Title\",type:ControlType.String},mv3Yl_Elv:{defaultValue:\"var(--token-6f646c96-bf98-4e9e-aa5b-f21d81906df2, rgb(245, 245, 245))\",title:\"Title Color\",type:ControlType.Color},X7237Dc7S:{defaultValue:\"Frontend, backend, and onchain tools to build complete web3 apps \u2014 on every EVM chain.\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},p_70tJ84X:AssetsHeroControls?.[\"variant\"]&&{...AssetsHeroControls[\"variant\"],defaultValue:\"CkwfORWuh\",description:undefined,hidden:undefined,title:\"Hero\"},txeFNl4uz:{defaultValue:\"Get Started\",displayTextArea:false,title:\"Main Button Text\",type:ControlType.String},FuqU8kc13:{title:\"Main Button Link\",type:ControlType.Link},tqke3HxhZ:{defaultValue:true,title:\"Main Button\",type:ControlType.Boolean},DUrG2bvdc:{defaultValue:true,title:\"Secondary Button\",type:ControlType.Boolean},N9Zu6OrXQ:{defaultValue:\"Documentation\",displayTextArea:false,title:\"Secondary Button Text\",type:ControlType.String},a6vEFqb1a:{title:\"Secondary Button Link\",type:ControlType.Link},p6cYGCWhT:{defaultValue:false,title:\"Nebula Badge\",type:ControlType.Boolean},IkF07QfOn:{defaultValue:{borderColor:'var(--token-1fcdce94-4e08-47d5-b021-6c1890240255, rgb(31, 31, 31)) /* {\"name\":\"Border\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Border\",type:ControlType.Border},ngskxLTDH:{defaultValue:true,title:\"Button\",type:ControlType.Boolean},kDae_Ip1j:{defaultValue:true,title:\"Subtitle\",type:ControlType.Boolean},em4VNtxlA:{defaultValue:true,title:\"Bar\",type:ControlType.Boolean},o64x6cjoC:{defaultValue:\"0px 0px 0px 0px\",title:\"Padding\",type:ControlType.Padding},gB2FrNNVD:{defaultValue:false,title:\"OP X Thirdweb\",type:ControlType.Boolean}});addFonts(FramerBWCZZbh3B,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"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\"}]},...BannersBannerFonts,...ConnectFrameworkIconFonts,...ButtonsButtonFonts,...AssetsHeroFonts,...VideoFonts,...HomePricingCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBWCZZbh3B\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LJZmlsQae\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S34QURjrw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YTP9GdhR_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PwRtlUaiw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TORBfIKIt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nf3l7yh_n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CwRc7r4SV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LW68CT4Ny\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oJRNjPxLA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QvcJkNHgw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ezhzPLU3v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mpGureeax\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hrWjvQxQR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VbMA8YLfs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"R5uLuWnF3\\\":\\\"zergBanner\\\",\\\"n1_LzvWJe\\\":\\\"title\\\",\\\"mv3Yl_Elv\\\":\\\"titleColor\\\",\\\"X7237Dc7S\\\":\\\"subtitle\\\",\\\"p_70tJ84X\\\":\\\"hero\\\",\\\"txeFNl4uz\\\":\\\"mainButtonText\\\",\\\"FuqU8kc13\\\":\\\"mainButtonLink\\\",\\\"tqke3HxhZ\\\":\\\"mainButton\\\",\\\"DUrG2bvdc\\\":\\\"secondaryButton\\\",\\\"N9Zu6OrXQ\\\":\\\"secondaryButtonText\\\",\\\"a6vEFqb1a\\\":\\\"secondaryButtonLink\\\",\\\"p6cYGCWhT\\\":\\\"nebulaBadge\\\",\\\"IkF07QfOn\\\":\\\"border\\\",\\\"ngskxLTDH\\\":\\\"button\\\",\\\"kDae_Ip1j\\\":\\\"subtitle1\\\",\\\"em4VNtxlA\\\":\\\"bar\\\",\\\"o64x6cjoC\\\":\\\"padding\\\",\\\"gB2FrNNVD\\\":\\\"oPXThirdweb\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"794\",\"framerIntrinsicWidth\":\"1138\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BWCZZbh3B.map"],
  "mappings": "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,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,WAAW,0KAA0K,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,WAAW,0KAA0K,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "SVGFonts", "getFonts", "SVG_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "link", "padding", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YHsHyaVze", "Xd4newzG5", "Lu_S_OFZX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "ComponentViewportProvider", "css", "Framerejdy7mEfl", "withCSS", "ejdy7mEfl_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "FramerGTtxNe6jv", "withCSS", "GTtxNe6jv_default", "addFonts", "i", "e", "t", "r", "n", "o", "a", "c", "u", "b", "m", "l", "s", "f", "w", "x", "S", "E", "d", "p", "h", "v", "y", "g", "_", "k", "O", "T", "A", "C", "X", "Y", "N", "P", "j", "I", "G", "D", "M", "R", "q", "F", "B", "Q", "W", "L", "z", "J", "K", "U", "pe", "ue", "V", "ye", "TypingAnimation", "speed", "options", "font", "RepeatType", "RepeatValue", "sequenceArr", "i", "p", "m", "addPropertyControls", "ControlType", "props", "SVGFonts", "getFonts", "SVG_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "TypingAnimationFonts", "TypingAnimation", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearmnohkl", "args", "onAppear6by6g1", "onAppearjdyzxx", "onAppear17it2lu", "onAppeare8uwlk", "onAppear162312o", "onAppear15bbyse", "onAppear13ar89m", "onAppear12ivqu6", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerrG2bsOETx", "withCSS", "rG2bsOETx_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "FramerYaNrgy4wf", "withCSS", "YaNrgy4wf_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "FrameryvbiKMT7t", "withCSS", "yvbiKMT7t_default", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "HomeEngineHeroAssetFonts", "getFonts", "yvbiKMT7t_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "SmartComponentScopedContainer", "HomeContractsHeroAssetFonts", "GTtxNe6jv_default", "HomeConnectHeroAssetFonts", "YaNrgy4wf_default", "ImageWithFXWithOptimizedAppearEffect", "Image2", "NebulaSwapHeroFonts", "rG2bsOETx_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "animation1", "transformTemplate2", "transformTemplate3", "transition3", "animation2", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "transition7", "animation9", "transition8", "animation10", "transition9", "animation11", "transition10", "animation12", "transition11", "animation13", "animation14", "transition12", "animation15", "animation16", "transition13", "animation17", "transition14", "animation18", "transition15", "animation19", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "SVG", "RichText2", "ComponentViewportProvider", "css", "FramerJ8RigA4p8", "withCSS", "J8RigA4p8_default", "addPropertyControls", "ControlType", "addFonts", "HomePricingBadgeFonts", "getFonts", "ABsVyKBK0_default", "PricingItemFonts", "eSn8V2M3x_default", "ButtonsButtonFonts", "eMAX511LU_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "pillText", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vM8LZXDLK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbhw0df", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "router", "useRouter", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "ResolveLinks", "resolvedLinks", "css", "FramerQ1uFEGL4K", "withCSS", "Q1uFEGL4K_default", "addPropertyControls", "ControlType", "addFonts", "BannersBannerFonts", "getFonts", "t26aEjJLl_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ConnectFrameworkIconFonts", "ejdy7mEfl_default", "ButtonsButtonFonts", "eMAX511LU_default", "AssetsHeroFonts", "J8RigA4p8_default", "VideoFonts", "Video", "HomePricingCardFonts", "Q1uFEGL4K_default", "AssetsHeroControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "bar", "border", "button", "height", "hero", "id", "mainButton", "mainButtonLink", "mainButtonText", "nebulaBadge", "oPXThirdweb", "padding", "secondaryButton", "secondaryButtonLink", "secondaryButtonText", "subtitle", "subtitle1", "title", "titleColor", "width", "zergBanner", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "R5uLuWnF3", "n1_LzvWJe", "mv3Yl_Elv", "X7237Dc7S", "p_70tJ84X", "txeFNl4uz", "FuqU8kc13", "tqke3HxhZ", "DUrG2bvdc", "N9Zu6OrXQ", "a6vEFqb1a", "p6cYGCWhT", "IkF07QfOn", "ngskxLTDH", "kDae_Ip1j", "em4VNtxlA", "o64x6cjoC", "gB2FrNNVD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "RichText2", "css", "FramerBWCZZbh3B", "withCSS", "BWCZZbh3B_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
