{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/FiiQ0BKlVUNzxXjo8hFs/BDeIULpeB9kBv3zq3U1w/RollingTextHover_Prod.js", "ssg:https://framerusercontent.com/modules/plaeSoSMIUSRWB2C22Sz/hyl1cjQq6nIUVDADZaaF/amyH4jRjr.js", "ssg:https://framerusercontent.com/modules/sFhs4s6Dw3B5XCNuIyxl/875te9FqpV7B4oI9tlQM/mwgIkAn9q.js", "ssg:https://framerusercontent.com/modules/DqbS08W59MB2ZyjRi85Z/Cq27sM6isRye6o2mxLBv/pa0kJDqWl.js", "ssg:https://framerusercontent.com/modules/JQRKwZv6rgdZ4OfkcuSU/45PpCkD31n6caHb3DNDn/dQcuWx460.js", "ssg:https://framerusercontent.com/modules/uWCvRYJnC1DUy90r2Htd/LquY43H1o9PJyyZBXx6h/Z5t45cqwx.js", "ssg:https://framerusercontent.com/modules/t1sPA0H0h2LkWqQoGJmt/5qtcBBbt8bNXyk6P2xJt/podJ3WXxF.js", "ssg:https://framerusercontent.com/modules/0scrOn7O2aLVlhVMWhXF/iFNoOwTuNwQRqVlVVYed/Vv7lXSsrv.js", "ssg:https://framerusercontent.com/modules/bP1K1yu2uRKIoha7EoZZ/AE9CaXLQgouivUqZuLp9/qzccd94Is.js", "ssg:https://framerusercontent.com/modules/JstXIDXLlaWdiwLtMFH8/N8LoMxZhBHNVQyNI8gIL/roYUFn1sP.js", "ssg:https://framerusercontent.com/modules/QOrNk8f2bHSvJTu64HEr/hby30m3jvtAVhdziMket/Zrgcxy5uo.js", "ssg:https://framerusercontent.com/modules/zTEbt6hPHaPFERQbAy5P/L2L1cTyKICBDG6dTrnZb/RNZrO1Xd4.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js", "ssg:https://framerusercontent.com/modules/ovf8i1NP2AsSuOU7c2wP/Tu3cI86nbUvarEzXf2fJ/XtZuWs2lh.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";// --- Helper Functions ---\nconst uuidv4=()=>{return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,c=>{const r=Math.random()*16|0;const v=c===\"x\"?r:r&3|8;return v.toString(16);});};// --- Component ---\n/**\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 50\n * @framerDisableUnlink\n */export default function RollingText({text,transition,stagger,reverse,font,color,textTransform,tag,padding}){const[isHovered,setIsHovered]=useState(false);const innerClassName=`rolling-text-inner-${uuidv4()}`;const Tag=tag;const fontSizeStr=font?.fontSize??\"16px\";const letterSpacingStr=font?.letterSpacing??\"0px\";const rawLineHeight=font?.lineHeight;const fontFamily=font?.fontFamily??\"Inter\";const fontSizeNum=parseInt(fontSizeStr,10)||16;let absoluteLineHeightPx;if(typeof rawLineHeight===\"number\"){absoluteLineHeightPx=fontSizeNum*rawLineHeight;}else if(typeof rawLineHeight===\"string\"&&rawLineHeight.includes(\"em\")){const emValue=parseFloat(rawLineHeight)||1.2;absoluteLineHeightPx=fontSizeNum*emValue;}else if(typeof rawLineHeight===\"string\"){const pxValue=parseFloat(rawLineHeight);absoluteLineHeightPx=isNaN(pxValue)?rawLineHeight:`${pxValue}px`;}else{absoluteLineHeightPx=fontSizeNum*1.2;}const absoluteLineHeightStr=typeof absoluteLineHeightPx===\"number\"?`${absoluteLineHeightPx}px`:absoluteLineHeightPx;const yOffset=`-${absoluteLineHeightStr}`;const styles=`\n    .${innerClassName} {\n      --font-size: ${fontSizeStr};\n      --text: ${color};\n      --line-height-abs: ${absoluteLineHeightStr};\n      box-sizing: border-box; margin: 0; padding: 0; vertical-align: top;\n      display: flex; overflow: hidden; width: max-content;\n      font-family: ${fontFamily}; font-size: ${fontSizeStr};\n      text-transform: ${textTransform}; user-select: none;\n      text-shadow: 0 var(--line-height-abs) 0 var(--text);\n    }\n    .${innerClassName} span {\n      display: block; -webkit-backface-visibility: hidden; backface-visibility: hidden;\n      white-space: pre; flex-shrink: 0;\n      font-family: inherit; font-weight: inherit; font-style: inherit;\n      font-size: inherit; letter-spacing: inherit;\n      line-height: ${rawLineHeight??1.2};\n      color: var(--text);\n    }\n  `;const wrapperStyle={display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\",overflow:\"hidden\",padding:padding,boxSizing:\"border-box\"};const spanVariants={initial:{y:\"0%\"},hover:{y:yOffset}};const baseDuration=typeof transition?.duration===\"number\"?transition.duration:.5;// Convert stagger percentage (0-100) to a factor (0-1)\nconst staggerFactor=stagger/100;return /*#__PURE__*/_jsxs(\"div\",{style:wrapperStyle,onMouseEnter:()=>setIsHovered(true),onMouseLeave:()=>setIsHovered(false),children:[/*#__PURE__*/_jsx(Tag,{className:innerClassName,children:[...text].map((str,index)=>{const charIndex=reverse?text.length-1-index:index;// Apply staggerFactor to the delay calculation\nconst delay=text.length>0?baseDuration/text.length*charIndex*staggerFactor// Multiply by factor\n:0;const motionSpanStyle={display:\"block\",...font};return /*#__PURE__*/_jsx(motion.span,{variants:spanVariants,initial:\"initial\",animate:isHovered?\"hover\":\"initial\",transition:{...transition,delay:delay},style:motionSpanStyle,children:str===\" \"?\"\\xa0\":str},index);})}),/*#__PURE__*/_jsx(\"style\",{children:styles})]});}// --- Component Display Name ---\nRollingText.displayName=\"Rolling Text\";// --- Default Properties ---\nconst defaultFont={fontFamily:\"Inter\",fontWeight:\"400\",fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0px\",lineHeight:1.2};const defaultTransition={type:\"spring\",duration:.4,bounce:0};// --- Framer Property Controls ---\naddPropertyControls(RollingText,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"Rolling Text\"},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",defaultValue:defaultFont},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#808080\"},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:defaultTransition},// Added Stagger control\nstagger:{title:\"Stagger\",type:ControlType.Number,min:0,max:100,step:1,defaultValue:35,unit:\"%\"},padding:{title:\"Padding\",type:ControlType.Padding,defaultValue:\"0px\"},reverse:{type:ControlType.Boolean,title:\"Reverse\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},textTransform:{title:\"Transform\",type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"uppercase\",\"lowercase\",\"capitalize\"],optionTitles:[\"None\",\"Uppercase\",\"Lowercase\",\"Capitalize\"]},tag:{type:ControlType.Enum,title:\"Tag\",options:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],optionTitles:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],defaultValue:\"p\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RollingText\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RollingTextHover_Prod.map", "// Generated by Framer (fed3180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-cqHnx .framer-styles-preset-16e8qrz:not(.rich-text-wrapper), .framer-cqHnx .framer-styles-preset-16e8qrz.rich-text-wrapper a { --framer-link-current-text-color: #7c3aed; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #7c3aed; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #7c3aed; --framer-link-text-decoration: underline; }\"];export const className=\"framer-cqHnx\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fed3180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-VkC5Y .framer-styles-preset-7dhwqp:not(.rich-text-wrapper), .framer-VkC5Y .framer-styles-preset-7dhwqp.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #00a83e; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #00a83e; --framer-link-text-decoration: underline; }\"];export const className=\"framer-VkC5Y\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import RollingText from\"https://framerusercontent.com/modules/FiiQ0BKlVUNzxXjo8hFs/BDeIULpeB9kBv3zq3U1w/RollingTextHover_Prod.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/plaeSoSMIUSRWB2C22Sz/hyl1cjQq6nIUVDADZaaF/amyH4jRjr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sFhs4s6Dw3B5XCNuIyxl/875te9FqpV7B4oI9tlQM/mwgIkAn9q.js\";const RollingTextFonts=getFonts(RollingText);const MotionDivWithFX=withFX(motion.div);const enabledGestures={ABnbNX6Qf:{hover:true},AC30pNx3Z:{hover:true},dhJkqBdXZ:{hover:true},EIeSf2neW:{hover:true},G35aEdtcS:{hover:true},oGor1G8I1:{hover:true},oyXAMY9H5:{hover:true},z66zWwWeT:{hover:true}};const cycleOrder=[\"z66zWwWeT\",\"ABnbNX6Qf\",\"AC30pNx3Z\",\"EIeSf2neW\",\"oyXAMY9H5\",\"G35aEdtcS\",\"oGor1G8I1\",\"dhJkqBdXZ\"];const serializationHash=\"framer-XFm1p\";const variantClassNames={ABnbNX6Qf:\"framer-v-93gtqo\",AC30pNx3Z:\"framer-v-k8imy6\",dhJkqBdXZ:\"framer-v-1gbl4tb\",EIeSf2neW:\"framer-v-1yxj9wd\",G35aEdtcS:\"framer-v-1rwausf\",oGor1G8I1:\"framer-v-74f96z\",oyXAMY9H5:\"framer-v-12p7w60\",z66zWwWeT:\"framer-v-1e6km4t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,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 Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"CG Default\":\"z66zWwWeT\",\"CG with Tooltip\":\"AC30pNx3Z\",\"CG/SM/Contact Sales\":\"oyXAMY9H5\",\"CG/SM/Get Started\":\"G35aEdtcS\",\"GT Default\":\"ABnbNX6Qf\",\"GT with Tooltip\":\"EIeSf2neW\",\"GT/SM/Contact Sales\":\"oGor1G8I1\",\"GT/SM/Get Started\":\"dhJkqBdXZ\"};const getProps=({buttonText,height,id,width,...props})=>{return{...props,mCngOmD07:buttonText??props.mCngOmD07??\"Get Started\",variant:humanReadableVariantMap[props.variant]??props.variant??\"z66zWwWeT\"};};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,mCngOmD07,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z66zWwWeT\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterupml6a=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"oyXAMY9H5-hover\",\"G35aEdtcS-hover\",\"oGor1G8I1-hover\",\"dhJkqBdXZ-hover\"].includes(gestureVariant))return false;if([\"oyXAMY9H5\",\"G35aEdtcS\",\"oGor1G8I1\",\"dhJkqBdXZ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"oyXAMY9H5-hover\")return true;if(baseVariant===\"oyXAMY9H5\")return true;return false;};const isDisplayed2=()=>{if([\"AC30pNx3Z-hover\",\"EIeSf2neW-hover\"].includes(gestureVariant))return true;if([\"AC30pNx3Z\",\"EIeSf2neW\"].includes(baseVariant))return true;return false;};const ref1=React.useRef(null);const isDisplayed3=()=>{if([\"oyXAMY9H5-hover\",\"G35aEdtcS-hover\"].includes(gestureVariant))return true;if([\"oyXAMY9H5\",\"G35aEdtcS\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(gestureVariant===\"G35aEdtcS-hover\")return true;if(baseVariant===\"G35aEdtcS\")return true;return false;};const isDisplayed5=()=>{if(gestureVariant===\"oGor1G8I1-hover\")return true;if(baseVariant===\"oGor1G8I1\")return true;return false;};const isDisplayed6=()=>{if([\"oGor1G8I1-hover\",\"dhJkqBdXZ-hover\"].includes(gestureVariant))return true;if([\"oGor1G8I1\",\"dhJkqBdXZ\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"dhJkqBdXZ-hover\")return true;if(baseVariant===\"dhJkqBdXZ\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed2(),children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1e6km4t\",className,classNames),\"data-framer-name\":\"CG Default\",\"data-highlight\":true,id:`${layoutId}-1e6km4t`,layoutDependency:layoutDependency,layoutId:\"z66zWwWeT\",onMouseEnter:onMouseEnterupml6a({overlay}),ref:refBinding,style:{backgroundColor:\"rgb(75, 204, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{\"ABnbNX6Qf-hover\":{backgroundColor:\"rgb(109, 40, 217)\"},\"AC30pNx3Z-hover\":{backgroundColor:\"rgb(53, 175, 0)\"},\"dhJkqBdXZ-hover\":{backgroundColor:\"rgb(109, 40, 217)\"},\"EIeSf2neW-hover\":{backgroundColor:\"rgb(109, 40, 217)\"},\"G35aEdtcS-hover\":{backgroundColor:\"rgb(0, 144, 67)\"},\"oGor1G8I1-hover\":{backgroundColor:\"rgb(109, 40, 217)\"},\"oyXAMY9H5-hover\":{backgroundColor:\"rgb(0, 144, 67)\"},\"z66zWwWeT-hover\":{backgroundColor:\"rgb(53, 175, 0)\"},ABnbNX6Qf:{backgroundColor:\"rgb(124, 58, 237)\"},dhJkqBdXZ:{backgroundColor:\"rgb(124, 58, 237)\"},EIeSf2neW:{backgroundColor:\"rgb(124, 58, 237)\"},G35aEdtcS:{backgroundColor:\"rgb(0, 168, 62)\"},oGor1G8I1:{backgroundColor:\"rgb(124, 58, 237)\"},oyXAMY9H5:{backgroundColor:\"rgb(0, 168, 62)\"}},...addPropertyOverrides({\"ABnbNX6Qf-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined,onMouseEnter:undefined},\"AC30pNx3Z-hover\":{\"data-framer-name\":undefined},\"dhJkqBdXZ-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined,onMouseEnter:undefined},\"EIeSf2neW-hover\":{\"data-framer-name\":undefined},\"G35aEdtcS-hover\":{\"data-framer-name\":undefined},\"oGor1G8I1-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined,onMouseEnter:undefined},\"oyXAMY9H5-hover\":{\"data-framer-name\":undefined},\"z66zWwWeT-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined,onMouseEnter:undefined},ABnbNX6Qf:{\"data-framer-name\":\"GT Default\",\"data-highlight\":undefined,onMouseEnter:undefined},AC30pNx3Z:{\"data-framer-name\":\"CG with Tooltip\"},dhJkqBdXZ:{\"data-framer-name\":\"GT/SM/Get Started\",\"data-highlight\":undefined,onMouseEnter:undefined},EIeSf2neW:{\"data-framer-name\":\"GT with Tooltip\"},G35aEdtcS:{\"data-framer-name\":\"CG/SM/Get Started\"},oGor1G8I1:{\"data-framer-name\":\"GT/SM/Contact Sales\",\"data-highlight\":undefined,onMouseEnter:undefined},oyXAMY9H5:{\"data-framer-name\":\"CG/SM/Contact Sales\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bkzfof-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BzXokcg9d-container\",nodeId:\"BzXokcg9d\",rendersWithMotion:true,scopeId:\"pa0kJDqWl\",children:/*#__PURE__*/_jsx(RollingText,{color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"1.2em\"},height:\"100%\",id:\"BzXokcg9d\",layoutId:\"BzXokcg9d\",padding:\"0px\",reverse:false,stagger:50,style:{height:\"100%\"},tag:\"p\",text:mCngOmD07,textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vbgq80\",\"data-framer-name\":\"Message-smile-solid\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"ocXmAr5d_\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path d=\"M0 64C0 28.7 28.7 0 64 0h384c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H309.3l-123.7 92.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3v-80H64c-35.3 0-64-28.7-64-64V64zm192 112a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm128 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-169.5 62.1c-9.9 8.8-10.7 24-1.9 33.9 26.3 29.4 64.7 48 107.3 48s81-18.6 107.3-48c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-17.6 19.7-43.1 32-71.6 32s-53.9-12.3-71.6-32c-8.8-9.9-24-10.7-33.9-1.9z\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:refBinding,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1e6km4t`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({AC30pNx3Z:{alignment:\"end\"},EIeSf2neW:{alignment:\"end\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1dfsxim\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"SuSCZybvI\",ref:ref1,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\"},children:\"Boosted your token or exchange\"})}),className:\"framer-11ovs5y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QNfH89SkH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AC30pNx3Z:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"17px\"},children:\"Launch Boosted Coins and Exchanges ads with our self-serve platform.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"17px\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"17px\"},children:[\"For other ad types, please \",/*#__PURE__*/_jsx(Link,{href:{hash:\":X2n1TwMn2\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"QNfH89SkH\",openInNewTab:false,scopeId:\"pa0kJDqWl\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-7dhwqp\",\"data-styles-preset\":\"mwgIkAn9q\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"contact our sales team.\"})})})]})]}),fonts:[\"Inter-Medium\"]},EIeSf2neW:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"17px\"},children:\"Launch Boosted Tokens ads with our self-serve platform.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"17px\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"17px\"},children:[\"For other ad types, please \",/*#__PURE__*/_jsx(Link,{href:{hash:\":qyWLhzH42\",webPageId:\"GC2Rd1wlL\"},motionChild:true,nodeId:\"QNfH89SkH\",openInNewTab:false,scopeId:\"pa0kJDqWl\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-16e8qrz\",\"data-styles-preset\":\"amyH4jRjr\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"contact our sales team.\"})})})]})]}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Sales\"})}),className:\"framer-12ka2vy\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"qId0IgoGp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({G35aEdtcS:{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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Started (Self-Serve)\"})})}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lxld5o\",\"data-framer-name\":\"Circle-arrow-right-solid\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"dp815rZju\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d=\"M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0zm297 129c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L120 280c-13.3 0-24-10.7-24-24s10.7-24 24-24h214.1l-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L409 239c9.4 9.4 9.4 24.6 0 33.9L297 385z\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sdq5rg\",\"data-framer-name\":\"Message-smile-solid\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"zXZiCKahw\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path d=\"M0 64C0 28.7 28.7 0 64 0h384c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H309.3l-123.7 92.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3v-80H64c-35.3 0-64-28.7-64-64V64zm192 112a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm128 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-169.5 62.1c-9.9 8.8-10.7 24-1.9 33.9 26.3 29.4 64.7 48 107.3 48s81-18.6 107.3-48c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-17.6 19.7-43.1 32-71.6 32s-53.9-12.3-71.6-32c-8.8-9.9-24-10.7-33.9-1.9z\"/></svg>',withExternalLayout:true}),isDisplayed6()&&/*#__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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Contact Sales\"})}),className:\"framer-w9gzt0\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"buohCHiTe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dhJkqBdXZ:{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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get Started (Self-Serve)\"})})}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-iw0wej\",\"data-framer-name\":\"Circle-arrow-right-solid\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"Z__qZHqmb\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d=\"M0 256a256 256 0 1 0 512 0 256 256 0 1 0-512 0zm297 129c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L120 280c-13.3 0-24-10.7-24-24s10.7-24 24-24h214.1l-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L409 239c9.4 9.4 9.4 24.6 0 33.9L297 385z\"/></svg>',withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XFm1p.framer-bvhau8, .framer-XFm1p .framer-bvhau8 { display: block; }\",\".framer-XFm1p.framer-1e6km4t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 12px 32px 12px 32px; position: relative; width: min-content; }\",\".framer-XFm1p .framer-1bkzfof-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-XFm1p .framer-1vbgq80, .framer-XFm1p .framer-lxld5o, .framer-XFm1p .framer-sdq5rg, .framer-XFm1p .framer-iw0wej { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-XFm1p .framer-1dfsxim { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XFm1p .framer-11ovs5y { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-XFm1p .framer-12ka2vy, .framer-XFm1p .framer-w9gzt0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XFm1p.framer-v-k8imy6.framer-1e6km4t, .framer-XFm1p.framer-v-1yxj9wd.framer-1e6km4t { height: 41px; width: 141px; }\",\".framer-XFm1p.framer-v-k8imy6 .framer-1bkzfof-container, .framer-XFm1p.framer-v-1yxj9wd .framer-1bkzfof-container { align-self: unset; height: 100%; }\",\".framer-XFm1p.framer-v-k8imy6 .framer-1dfsxim, .framer-XFm1p.framer-v-1yxj9wd .framer-1dfsxim { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 12px; width: min-content; }\",\".framer-XFm1p.framer-v-k8imy6 .framer-11ovs5y, .framer-XFm1p.framer-v-1yxj9wd .framer-11ovs5y { left: unset; position: relative; top: unset; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-XFm1p.framer-v-12p7w60.framer-1e6km4t, .framer-XFm1p.framer-v-1rwausf.framer-1e6km4t, .framer-XFm1p.framer-v-74f96z.framer-1e6km4t, .framer-XFm1p.framer-v-1gbl4tb.framer-1e6km4t { gap: 6px; padding: 4px 8px 4px 8px; }\",\".framer-XFm1p.framer-v-12p7w60 .framer-1vbgq80, .framer-XFm1p.framer-v-74f96z .framer-sdq5rg, .framer-XFm1p.framer-v-1gbl4tb.hover .framer-iw0wej { order: 0; }\",\".framer-XFm1p.framer-v-12p7w60 .framer-12ka2vy, .framer-XFm1p.framer-v-1rwausf .framer-lxld5o { order: 5; }\",\".framer-XFm1p.framer-v-1rwausf .framer-12ka2vy { order: 6; }\",\".framer-XFm1p.framer-v-74f96z .framer-w9gzt0, .framer-XFm1p.framer-v-1gbl4tb .framer-iw0wej { order: 1; }\",\".framer-XFm1p.framer-v-1gbl4tb .framer-w9gzt0 { order: 2; }\",\".framer-XFm1p.framer-v-k8imy6.hover.framer-1e6km4t { height: min-content; width: min-content; }\",\".framer-XFm1p.framer-v-k8imy6.hover .framer-1bkzfof-container { align-self: unset; height: 17px; }\",\".framer-XFm1p.framer-v-k8imy6.hover .framer-11ovs5y, .framer-XFm1p.framer-v-1yxj9wd.hover .framer-11ovs5y { left: unset; top: unset; }\",\".framer-XFm1p.framer-v-1yxj9wd.hover .framer-1bkzfof-container { align-self: unset; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 141\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ABnbNX6Qf\":{\"layout\":[\"auto\",\"auto\"]},\"AC30pNx3Z\":{\"layout\":[\"fixed\",\"fixed\"]},\"EIeSf2neW\":{\"layout\":[\"fixed\",\"fixed\"]},\"oyXAMY9H5\":{\"layout\":[\"auto\",\"auto\"]},\"G35aEdtcS\":{\"layout\":[\"auto\",\"auto\"]},\"oGor1G8I1\":{\"layout\":[\"auto\",\"auto\"]},\"dhJkqBdXZ\":{\"layout\":[\"auto\",\"auto\"]},\"Z11knalzL\":{\"layout\":[\"auto\",\"auto\"]},\"joDT6E7VH\":{\"layout\":[\"auto\",\"auto\"]},\"py8iHaxSk\":{\"layout\":[\"auto\",\"auto\"]},\"GOc9TJycy\":{\"layout\":[\"fixed\",\"fixed\"]},\"hhqyR37WH\":{\"layout\":[\"auto\",\"auto\"]},\"FmVspMLzI\":{\"layout\":[\"auto\",\"auto\"]},\"ADKWgAN1o\":{\"layout\":[\"auto\",\"auto\"]},\"UKLMsVTOW\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"mCngOmD07\":\"buttonText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerpa0kJDqWl=withCSS(Component,css,\"framer-XFm1p\");export default Framerpa0kJDqWl;Framerpa0kJDqWl.displayName=\"Primary Button\";Framerpa0kJDqWl.defaultProps={height:41,width:141};addPropertyControls(Framerpa0kJDqWl,{variant:{options:[\"z66zWwWeT\",\"ABnbNX6Qf\",\"AC30pNx3Z\",\"EIeSf2neW\",\"oyXAMY9H5\",\"G35aEdtcS\",\"oGor1G8I1\",\"dhJkqBdXZ\"],optionTitles:[\"CG Default\",\"GT Default\",\"CG with Tooltip\",\"GT with Tooltip\",\"CG/SM/Contact Sales\",\"CG/SM/Get Started\",\"GT/SM/Contact Sales\",\"GT/SM/Get Started\"],title:\"Variant\",type:ControlType.Enum},mCngOmD07:{defaultValue:\"Get Started\",title:\"Button Text\",type:ControlType.String}});addFonts(Framerpa0kJDqWl,[{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/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\"},{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/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\"}]},...RollingTextFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpa0kJDqWl\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"mCngOmD07\\\":\\\"buttonText\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ABnbNX6Qf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AC30pNx3Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EIeSf2neW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oyXAMY9H5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G35aEdtcS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oGor1G8I1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dhJkqBdXZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Z11knalzL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"joDT6E7VH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"py8iHaxSk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GOc9TJycy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hhqyR37WH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FmVspMLzI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ADKWgAN1o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UKLMsVTOW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"41\",\"framerIntrinsicWidth\":\"141\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pa0kJDqWl.map", "// Generated by Framer (e66a223)\nimport{jsx as r,jsxs as e}from\"react/jsx-runtime\";import{addFonts as t,addPropertyControls as a,ControlType as i,cx as o,RichText as n,SVG as f,useLocaleInfo as l,useVariantState as m,withCSS as d}from\"framer\";import{LayoutGroup as s,motion as p,MotionConfigContext as c}from\"framer-motion\";import*as h from\"react\";let g=[\"Q3MjAIjCQ\",\"Y2WpHXJS3\"],x=\"framer-f2jLX\",u={Q3MjAIjCQ:\"framer-v-19utmf1\",Y2WpHXJS3:\"framer-v-g9ipt1\"};function v(r,...e){let t={};return null==e||e.forEach(e=>e&&Object.assign(t,r[e])),t;}let w={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},b=({value:e,children:t})=>{let a=h.useContext(c),i=null!=e?e:a.transition,o=h.useMemo(()=>({...a,transition:i}),[JSON.stringify(i)]);return /*#__PURE__*/r(c.Provider,{value:o,children:t});},y={Desktop:\"Q3MjAIjCQ\",Phone:\"Y2WpHXJS3\"},j=({height:r,id:e,width:t,...a})=>{var i,o;return{...a,variant:null!==(o=null!==(i=y[a.variant])&&void 0!==i?i:a.variant)&&void 0!==o?o:\"Q3MjAIjCQ\"};},X=(r,e)=>e.join(\"-\")+r.layoutDependency,L=/*#__PURE__*/h.forwardRef(function(t,a){let{activeLocale:i}=l(),{style:d,className:c,layoutId:x,variant:y,...L}=j(t),{baseVariant:k,classNames:I,gestureVariant:C,setGestureState:S,setVariant:W,transition:z,variants:M}=m({cycleOrder:g,defaultVariant:\"Q3MjAIjCQ\",transitions:w,variant:y,variantClassNames:u}),H=X(t,M),N=h.useRef(null),D=h.useId();return /*#__PURE__*/r(s,{id:null!=x?x:D,children:/*#__PURE__*/r(p.div,{initial:y,animate:M,onHoverStart:()=>S({isHovered:!0}),onHoverEnd:()=>S({isHovered:!1}),onTapStart:()=>S({isPressed:!0}),onTap:()=>S({isPressed:!1}),onTapCancel:()=>S({isPressed:!1}),className:o(\"framer-f2jLX\",...[],I),style:{display:\"contents\"},children:/*#__PURE__*/r(b,{value:z,children:/*#__PURE__*/e(p.div,{...L,className:o(\"framer-19utmf1\",c),\"data-framer-name\":\"Desktop\",layoutDependency:H,layoutId:\"Q3MjAIjCQ\",ref:null!=a?a:N,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...d},variants:{Y2WpHXJS3:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...v({Y2WpHXJS3:{\"data-framer-name\":\"Phone\"}},k,C),children:[\"Y2WpHXJS3\"===k&&/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"COMMUNITY\"})}),className:\"framer-1lgw8u\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"Eogqh0qIK\",style:{\"--extracted-r6o4lv\":\" rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(p.div,{className:\"framer-164ig7f\",\"data-framer-name\":\"Item\",layoutDependency:H,layoutId:\"aWUs5ruMr\",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:{Y2WpHXJS3:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...v({Y2WpHXJS3:{\"data-border\":!0}},k,C),children:[\"Y2WpHXJS3\"!==k&&/*#__PURE__*/r(f,{className:\"framer-1tqbsh7\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:H,layoutId:\"AQNa0SNao\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1008z\"></path><clipPath id=\"a1009z\"><use xlink:href=\"#a1008z\"></use></clipPath></defs><use xlink:href=\"#a1008z\" fill=\"#eee\" clip-path=\"url(#a1009z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:654800981,withExternalLayout:!0}),/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Join\"})}),className:\"framer-1xtasqv\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"WLGNsECg7\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(p.div,{className:\"framer-125x0lh\",\"data-framer-name\":\"Item\",layoutDependency:H,layoutId:\"dy4X8iLm3\",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:{Y2WpHXJS3:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...v({Y2WpHXJS3:{\"data-border\":!0}},k,C),children:[\"Y2WpHXJS3\"!==k&&/*#__PURE__*/r(f,{className:\"framer-2a6x60\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:H,layoutId:\"uWlHDNs96\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 1 9.975 C 1 5.004 5.029 0.975 10 0.975 L 10 0.975 C 14.971 0.975 19 5.004 19 9.975 L 19 10.025 C 19 14.996 14.971 19.025 10 19.025 L 10 19.025 C 5.029 19.025 1 14.996 1 10.025 Z\" id=\"a1010z\"></path><clipPath id=\"a1011z\"><use xlink:href=\"#a1010z\"></use></clipPath></defs><use xlink:href=\"#a1010z\" fill=\"#eee\" clip-path=\"url(#a1011z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:4220967846,withExternalLayout:!0}),/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Events\"})}),className:\"framer-s9zcxv\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"vbSOk1cgp\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(p.div,{className:\"framer-kcl4i2\",\"data-framer-name\":\"Item\",layoutDependency:H,layoutId:\"B8BD2khMc\",children:[\"Y2WpHXJS3\"!==k&&/*#__PURE__*/r(f,{className:\"framer-y3qvp6\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:H,layoutId:\"exO5YZjKv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 8.293 2.293 C 9.073 1.016 10.927 1.016 11.707 2.293 L 19.14 14.457 C 19.955 15.79 18.996 17.5 17.434 17.5 L 2.566 17.5 C 1.004 17.5 0.045 15.79 0.86 14.457 Z\" id=\"a1012z\"></path><clipPath id=\"a1013z\"><use xlink:href=\"#a1012z\"></use></clipPath></defs><use xlink:href=\"#a1012z\" fill=\"#eee\" clip-path=\"url(#a1013z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:896216945,withExternalLayout:!0}),/*#__PURE__*/r(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/r(h.Fragment,{children:/*#__PURE__*/r(p.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Experts\"})}),className:\"framer-1ig4z3x\",fonts:[\"Inter-Medium\"],layoutDependency:H,layoutId:\"CqjtBaOrJ\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]})]})})})});}),k=['.framer-f2jLX [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f2jLX .framer-fe5c7g { display: block; }\",\".framer-f2jLX .framer-19utmf1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px 15px 15px 15px; position: relative; width: 150px; }\",\".framer-f2jLX .framer-1lgw8u { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-f2jLX .framer-164ig7f, .framer-f2jLX .framer-125x0lh, .framer-f2jLX .framer-kcl4i2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-f2jLX .framer-1tqbsh7, .framer-f2jLX .framer-2a6x60, .framer-f2jLX .framer-y3qvp6 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-f2jLX .framer-1xtasqv, .framer-f2jLX .framer-s9zcxv, .framer-f2jLX .framer-1ig4z3x { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f2jLX .framer-19utmf1, .framer-f2jLX .framer-164ig7f, .framer-f2jLX .framer-125x0lh, .framer-f2jLX .framer-kcl4i2 { gap: 0px; } .framer-f2jLX .framer-19utmf1 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-f2jLX .framer-19utmf1 > :first-child { margin-top: 0px; } .framer-f2jLX .framer-19utmf1 > :last-child { margin-bottom: 0px; } .framer-f2jLX .framer-164ig7f > *, .framer-f2jLX .framer-125x0lh > *, .framer-f2jLX .framer-kcl4i2 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-f2jLX .framer-164ig7f > :first-child, .framer-f2jLX .framer-125x0lh > :first-child, .framer-f2jLX .framer-kcl4i2 > :first-child { margin-left: 0px; } .framer-f2jLX .framer-164ig7f > :last-child, .framer-f2jLX .framer-125x0lh > :last-child, .framer-f2jLX .framer-kcl4i2 > :last-child { margin-right: 0px; } }\",\".framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 { gap: 0px; padding: 32px 0px 0px 0px; }\",\".framer-f2jLX.framer-v-g9ipt1 .framer-164ig7f, .framer-f2jLX.framer-v-g9ipt1 .framer-125x0lh, .framer-f2jLX.framer-v-g9ipt1 .framer-kcl4i2 { height: 56px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 { gap: 0px; } .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 > :first-child { margin-top: 0px; } .framer-f2jLX.framer-v-g9ipt1 .framer-19utmf1 > :last-child { margin-bottom: 0px; } }\"],I=d(L,k,\"framer-f2jLX\");export default I;I.displayName=\"Links: Community\",I.defaultProps={height:107.5,width:150},a(I,{variant:{options:[\"Q3MjAIjCQ\",\"Y2WpHXJS3\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:i.Enum}}),t(I,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdQcuWx460\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"107.5\",\"framerIntrinsicWidth\":\"150\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y2WpHXJS3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dQcuWx460.map", "// Generated by Framer (7d51cf8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-VPNXX .framer-styles-preset-1up6it7:not(.rich-text-wrapper), .framer-VPNXX .framer-styles-preset-1up6it7.rich-text-wrapper a { --framer-link-current-text-color: #181818; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #4bcc00; --framer-link-hover-text-decoration: none; --framer-link-text-color: #71717a; --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-VPNXX\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={g4LHYVcJt:{hover:true},WDKiipLrG:{hover:true}};const cycleOrder=[\"WDKiipLrG\",\"g4LHYVcJt\"];const serializationHash=\"framer-zhFZw\";const variantClassNames={g4LHYVcJt:\"framer-v-1ugaby7\",WDKiipLrG:\"framer-v-bp2gtn\"};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={Default:\"WDKiipLrG\",sm:\"g4LHYVcJt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WDKiipLrG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WDKiipLrG\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"g4LHYVcJt-hover\")return true;if(baseVariant===\"g4LHYVcJt\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bp2gtn\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"WDKiipLrG\",ref:refBinding,style:{backgroundColor:\"rgb(244, 244, 245)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},variants:{\"g4LHYVcJt-hover\":{backgroundColor:\"rgb(228, 228, 231)\"},\"WDKiipLrG-hover\":{backgroundColor:\"rgb(228, 228, 231)\"}},...addPropertyOverrides({\"g4LHYVcJt-hover\":{\"data-framer-name\":undefined},\"WDKiipLrG-hover\":{\"data-framer-name\":undefined},g4LHYVcJt:{\"data-framer-name\":\"sm\"}},baseVariant,gestureVariant),children:[/*#__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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(24, 24, 27))\"},children:\"Log in\"})}),className:\"framer-zzrzi9\",\"data-framer-name\":\"Button\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"D4vB1IsjM\",style:{\"--extracted-r6o4lv\":\"rgb(24, 24, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({g4LHYVcJt:{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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(24, 24, 27))\"},children:\"Contact Sales\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bvro1y\",\"data-framer-name\":\"Message-smile-solid\",fill:\"rgb(24, 24, 27)\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"z8gmbmCEH\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><!--!Font Awesome Pro 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2025 Fonticons, Inc.--><path d=\"M0 64C0 28.7 28.7 0 64 0h384c35.3 0 64 28.7 64 64v288c0 35.3-28.7 64-64 64H309.3l-123.7 92.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3v-80H64c-35.3 0-64-28.7-64-64V64zm192 112a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm128 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-169.5 62.1c-9.9 8.8-10.7 24-1.9 33.9 26.3 29.4 64.7 48 107.3 48s81-18.6 107.3-48c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-17.6 19.7-43.1 32-71.6 32s-53.9-12.3-71.6-32c-8.8-9.9-24-10.7-33.9-1.9z\"/></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zhFZw.framer-1t8f1il, .framer-zhFZw .framer-1t8f1il { display: block; }\",\".framer-zhFZw.framer-bp2gtn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-zhFZw .framer-zzrzi9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zhFZw .framer-bvro1y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 14px; }\",\".framer-zhFZw.framer-v-1ugaby7.framer-bp2gtn { gap: 4px; padding: 4px 8px 4px 8px; }\",\".framer-zhFZw.framer-v-1ugaby7 .framer-zzrzi9 { order: 2; }\",\".framer-zhFZw.framer-v-1ugaby7 .framer-bvro1y, .framer-zhFZw.framer-v-bp2gtn.hover .framer-zzrzi9 { order: 1; }\",\".framer-zhFZw.framer-v-bp2gtn.hover.framer-bp2gtn { gap: 4px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 65\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"g4LHYVcJt\":{\"layout\":[\"auto\",\"auto\"]},\"XQx4n2aQG\":{\"layout\":[\"auto\",\"auto\"]},\"JRxSrM3o9\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpodJ3WXxF=withCSS(Component,css,\"framer-zhFZw\");export default FramerpodJ3WXxF;FramerpodJ3WXxF.displayName=\"Soft Button\";FramerpodJ3WXxF.defaultProps={height:41,width:65};addPropertyControls(FramerpodJ3WXxF,{variant:{options:[\"WDKiipLrG\",\"g4LHYVcJt\"],optionTitles:[\"Default\",\"sm\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpodJ3WXxF,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpodJ3WXxF\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"41\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g4LHYVcJt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XQx4n2aQG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"JRxSrM3o9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"65\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./podJ3WXxF.map", "// Generated by Framer (1999133-dev)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"wnipua7N_\",\"BJYJhvClj\"];const serializationHash=\"framer-2F7tm\";const variantClassNames={BJYJhvClj:\"framer-v-qzjjul\",wnipua7N_:\"framer-v-u8k4t0\"};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 transitions={default:{damping:40,delay:0,mass:1,stiffness:600,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 humanReadableVariantMap={Closed:\"wnipua7N_\",Open:\"BJYJhvClj\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"wnipua7N_\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"wnipua7N_\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-2F7tm\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-u8k4t0\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"wnipua7N_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BJYJhvClj:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-12eia36\",\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"GUelqHsD8\",style:{rotate:0},variants:{BJYJhvClj:{rotate:-180}},children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-tbg1zr\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VHYQxi0qk\",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 3 5.5 L 7 9.5 L 11 5.5\" fill=\"transparent\" stroke-width=\"2\" stroke=\"#aaa\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:892255882,withExternalLayout:true})})})})})});});const css=['.framer-2F7tm [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2F7tm .framer-1al4e3m { display: block; }\",\".framer-2F7tm .framer-u8k4t0 { height: 14px; overflow: visible; position: relative; width: 14px; }\",\".framer-2F7tm .framer-12eia36 { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-2F7tm .framer-tbg1zr { flex: none; height: 14px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14\n * @framerIntrinsicWidth 14\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BJYJhvClj\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n */ const FramerVv7lXSsrv=withCSS(Component,css,\"framer-2F7tm\");export default FramerVv7lXSsrv;FramerVv7lXSsrv.displayName=\"Caret\";FramerVv7lXSsrv.defaultProps={height:14,width:14};addPropertyControls(FramerVv7lXSsrv,{variant:{options:[\"wnipua7N_\",\"BJYJhvClj\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVv7lXSsrv,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVv7lXSsrv\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"14\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"14\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BJYJhvClj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vv7lXSsrv.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Caret from\"https://framerusercontent.com/modules/0scrOn7O2aLVlhVMWhXF/iFNoOwTuNwQRqVlVVYed/Vv7lXSsrv.js\";const CaretFonts=getFonts(Caret);const cycleOrder=[\"vRLmYPs1F\",\"G7gkWlmQO\"];const serializationHash=\"framer-hKVY1\";const variantClassNames={G7gkWlmQO:\"framer-v-x5h4fd\",vRLmYPs1F:\"framer-v-19o1oq3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:600,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={Closed:\"vRLmYPs1F\",Open:\"G7gkWlmQO\"};const getProps=({height,hover,id,title,width,...props})=>{return{...props,DApvjrdfG:title??props.DApvjrdfG??\"Solutions\",PWSlWeqS6:hover??props.PWSlWeqS6,variant:humanReadableVariantMap[props.variant]??props.variant??\"vRLmYPs1F\"};};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,PWSlWeqS6,DApvjrdfG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vRLmYPs1F\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter170i0h9=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(PWSlWeqS6){const res=await PWSlWeqS6(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19o1oq3\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vRLmYPs1F\",onMouseEnter:onMouseEnter170i0h9,ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({G7gkWlmQO:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 113, 122))\"},children:\"Solutions\"})}),className:\"framer-151vqa6\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wj5v0khyV\",style:{\"--extracted-r6o4lv\":\"rgb(113, 113, 122)\",\"--framer-paragraph-spacing\":\"0px\"},text:DApvjrdfG,variants:{G7gkWlmQO:{\"--extracted-r6o4lv\":\"rgb(24, 24, 27)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({G7gkWlmQO:{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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(24, 24, 27))\"},children:\"Solutions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16fmgz7-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vApKvFIor-container\",nodeId:\"vApKvFIor\",rendersWithMotion:true,scopeId:\"qzccd94Is\",children:/*#__PURE__*/_jsx(Caret,{height:\"100%\",id:\"vApKvFIor\",layoutId:\"vApKvFIor\",variant:\"wnipua7N_\",width:\"100%\",...addPropertyOverrides({G7gkWlmQO:{variant:\"BJYJhvClj\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hKVY1.framer-1sgnmre, .framer-hKVY1 .framer-1sgnmre { display: block; }\",\".framer-hKVY1.framer-19o1oq3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-hKVY1 .framer-151vqa6 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-hKVY1 .framer-16fmgz7-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hKVY1.framer-19o1oq3 { gap: 0px; } .framer-hKVY1.framer-19o1oq3 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-hKVY1.framer-19o1oq3 > :first-child { margin-left: 0px; } .framer-hKVY1.framer-19o1oq3 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"G7gkWlmQO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"PWSlWeqS6\":\"hover\",\"DApvjrdfG\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerqzccd94Is=withCSS(Component,css,\"framer-hKVY1\");export default Framerqzccd94Is;Framerqzccd94Is.displayName=\"Trigger 2\";Framerqzccd94Is.defaultProps={height:38,width:80};addPropertyControls(Framerqzccd94Is,{variant:{options:[\"vRLmYPs1F\",\"G7gkWlmQO\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},PWSlWeqS6:{title:\"Hover\",type:ControlType.EventHandler},DApvjrdfG:{defaultValue:\"Solutions\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerqzccd94Is,[{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\"}]},...CaretFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqzccd94Is\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"38\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G7gkWlmQO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"PWSlWeqS6\\\":\\\"hover\\\",\\\"DApvjrdfG\\\":\\\"title\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"80\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qzccd94Is.map", "// Generated by Framer (fed3180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/uWCvRYJnC1DUy90r2Htd/LquY43H1o9PJyyZBXx6h/Z5t45cqwx.js\";const cycleOrder=[\"KH7uKZIy7\",\"FHU5VdR7x\"];const serializationHash=\"framer-xeMUd\";const variantClassNames={FHU5VdR7x:\"framer-v-3gcj8h\",KH7uKZIy7:\"framer-v-1cacb6u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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:\"KH7uKZIy7\",Phone:\"FHU5VdR7x\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KH7uKZIy7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KH7uKZIy7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"FHU5VdR7x\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1cacb6u\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"KH7uKZIy7\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 1px 2px 1px rgba(0, 0, 0, 0.05)\",...style},variants:{FHU5VdR7x:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({FHU5VdR7x:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__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\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"Products\"})}),className:\"framer-dnmswc\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"EjUsQLhAZ\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qackck\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"gspfEwHKn\",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:{FHU5VdR7x:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FHU5VdR7x:{\"data-border\":true}},baseVariant,gestureVariant),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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zHl1oJ3e4\"},motionChild:true,nodeId:\"MHKi9m8gm\",openInNewTab:false,scopeId:\"roYUFn1sP\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Token Advertising\"})})})}),className:\"framer-ey6hgz\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MHKi9m8gm\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FHU5VdR7x:{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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"MHKi9m8gm\",openInNewTab:false,scopeId:\"roYUFn1sP\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"CoinGecko\"})})})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oqz0qs\",\"data-border\":true,\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"yn4n2lX4c\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GC2Rd1wlL\"},motionChild:true,nodeId:\"x106aAQXd\",openInNewTab:false,scopeId:\"roYUFn1sP\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"GeckoTerminal\"})})})}),className:\"framer-ptiag1\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"x106aAQXd\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xeMUd.framer-1uxaabd, .framer-xeMUd .framer-1uxaabd { display: block; }\",\".framer-xeMUd.framer-1cacb6u { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: min-content; }\",\".framer-xeMUd .framer-dnmswc { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-xeMUd .framer-qackck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xeMUd .framer-ey6hgz, .framer-xeMUd .framer-ptiag1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-xeMUd .framer-1oqz0qs { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 56px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-xeMUd.framer-v-3gcj8h.framer-1cacb6u { gap: 0px; padding: 16px 0px 0px 0px; }\",\".framer-xeMUd.framer-v-3gcj8h .framer-dnmswc { order: 0; }\",\".framer-xeMUd.framer-v-3gcj8h .framer-qackck { align-self: stretch; height: 56px; order: 1; width: auto; }\",\".framer-xeMUd.framer-v-3gcj8h .framer-1oqz0qs { order: 2; }\",...sharedStyle.css,'.framer-xeMUd[data-border=\"true\"]::after, .framer-xeMUd [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 51\n * @framerIntrinsicWidth 148.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FHU5VdR7x\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerroYUFn1sP=withCSS(Component,css,\"framer-xeMUd\");export default FramerroYUFn1sP;FramerroYUFn1sP.displayName=\"Links: Product 2\";FramerroYUFn1sP.defaultProps={height:51,width:148.5};addPropertyControls(FramerroYUFn1sP,{variant:{options:[\"KH7uKZIy7\",\"FHU5VdR7x\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerroYUFn1sP,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerroYUFn1sP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FHU5VdR7x\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"51\",\"framerIntrinsicWidth\":\"148.5\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./roYUFn1sP.map", "// Generated by Framer (fed3180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/uWCvRYJnC1DUy90r2Htd/LquY43H1o9PJyyZBXx6h/Z5t45cqwx.js\";const cycleOrder=[\"RI2rCMsrD\",\"cDpUg8KSD\",\"vAivAjigT\"];const serializationHash=\"framer-gzWRq\";const variantClassNames={cDpUg8KSD:\"framer-v-galsdu\",RI2rCMsrD:\"framer-v-1n5dckq\",vAivAjigT:\"framer-v-11r7ini\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={\"Phone - Business\":\"vAivAjigT\",\"Phone - Self-Serve\":\"cDpUg8KSD\",Desktop:\"RI2rCMsrD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RI2rCMsrD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RI2rCMsrD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"cDpUg8KSD\",\"vAivAjigT\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"cDpUg8KSD\",\"vAivAjigT\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"vAivAjigT\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1n5dckq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RI2rCMsrD\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0px 0px 1px rgba(0, 0, 0, 0.05)\",...style},variants:{cDpUg8KSD:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},vAivAjigT:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({cDpUg8KSD:{\"data-framer-name\":\"Phone - Self-Serve\"},vAivAjigT:{\"data-framer-name\":\"Phone - Business\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__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\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"Self-Serve Solutions\"})}),className:\"framer-1ucnomv\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"NcFVbexC7\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({vAivAjigT:{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\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.4))\"},children:\"Business Solutions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1prqil5\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"HXwGdDtVC\",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:{cDpUg8KSD:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},vAivAjigT:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({cDpUg8KSD:{\"data-border\":true},vAivAjigT:{\"data-border\":true}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1q8tvvn\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"e010xlJdu\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1070z\"></path><clipPath id=\"a1071z\"><use xlink:href=\"#a1070z\"></use></clipPath></defs><use xlink:href=\"#a1070z\" fill=\"#eee\" clip-path=\"url(#a1071z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:9244735573,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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Blog\"})}),className:\"framer-1v265we\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"nnAJ544KP\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cDpUg8KSD:{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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zHl1oJ3e4\"},motionChild:true,nodeId:\"nnAJ544KP\",openInNewTab:false,scopeId:\"Zrgcxy5uo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Token Advertising\"})})})})},vAivAjigT:{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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cnk_d36MT\"},motionChild:true,nodeId:\"nnAJ544KP\",openInNewTab:false,scopeId:\"Zrgcxy5uo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Overview\"})})})})}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z4hdx1\",\"data-border\":true,\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"RYUBfOqQy\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app-na1.hubspotdocuments.com/documents/5275236/view/474765004?accessId=71d477\",motionChild:true,nodeId:\"XQB7FKihq\",openInNewTab:true,scopeId:\"Zrgcxy5uo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Case Studies\"})})})}),className:\"framer-1yczp05\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"XQB7FKihq\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1irhi4s\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"fYRRlHMkg\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xl1xkd\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"upPICZWSj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 1 9.975 C 1 5.004 5.029 0.975 10 0.975 L 10 0.975 C 14.971 0.975 19 5.004 19 9.975 L 19 10.025 C 19 14.996 14.971 19.025 10 19.025 L 10 19.025 C 5.029 19.025 1 14.996 1 10.025 Z\" id=\"a1072z\"></path><clipPath id=\"a1073z\"><use xlink:href=\"#a1072z\"></use></clipPath></defs><use xlink:href=\"#a1072z\" fill=\"#eee\" clip-path=\"url(#a1073z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:12810902438,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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Careers\"})}),className:\"framer-4iwzy6\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Dj2ajagDe\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ccypq\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"ae7kI99ks\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1otx7v5\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JP3TpTvjH\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 8.293 2.293 C 9.073 1.016 10.927 1.016 11.707 2.293 L 19.14 14.457 C 19.955 15.79 18.996 17.5 17.434 17.5 L 2.566 17.5 C 1.004 17.5 0.045 15.79 0.86 14.457 Z\" id=\"a1074z\"></path><clipPath id=\"a1075z\"><use xlink:href=\"#a1074z\"></use></clipPath></defs><use xlink:href=\"#a1074z\" fill=\"#eee\" clip-path=\"url(#a1075z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:9486151537,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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"Docs\"})}),className:\"framer-8qhr8l\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"a9s6aPxRj\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ocavm0\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"xGVBJdOk5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10y0a80\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cFDGNyRYy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 2 4 C 2 2.895 2.895 2 4 2 L 16 2 C 17.105 2 18 2.895 18 4 L 18 16 C 18 17.105 17.105 18 16 18 L 4 18 C 2.895 18 2 17.105 2 16 Z\" id=\"a1070z\"></path><clipPath id=\"a1071z\"><use xlink:href=\"#a1070z\"></use></clipPath></defs><use xlink:href=\"#a1070z\" fill=\"#eee\" clip-path=\"url(#a1071z)\" stroke-width=\"2\" stroke=\"#ccc\"></use></g></svg>',svgContentId:9244735573,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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:\"About\"})}),className:\"framer-1u8np02\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"lzQbZsWZ1\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gzWRq.framer-1vc084k, .framer-gzWRq .framer-1vc084k { display: block; }\",\".framer-gzWRq.framer-1n5dckq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: 150px; }\",\".framer-gzWRq .framer-1ucnomv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gzWRq .framer-1prqil5, .framer-gzWRq .framer-1irhi4s, .framer-gzWRq .framer-2ccypq, .framer-gzWRq .framer-ocavm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gzWRq .framer-1q8tvvn, .framer-gzWRq .framer-xl1xkd, .framer-gzWRq .framer-1otx7v5, .framer-gzWRq .framer-10y0a80 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-gzWRq .framer-1v265we, .framer-gzWRq .framer-1yczp05, .framer-gzWRq .framer-4iwzy6, .framer-gzWRq .framer-8qhr8l, .framer-gzWRq .framer-1u8np02 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-gzWRq .framer-z4hdx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 56px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gzWRq.framer-v-galsdu.framer-1n5dckq, .framer-gzWRq.framer-v-11r7ini.framer-1n5dckq { gap: 0px; padding: 16px 0px 0px 0px; }\",\".framer-gzWRq.framer-v-galsdu .framer-1prqil5, .framer-gzWRq.framer-v-11r7ini .framer-1prqil5 { height: 56px; }\",...sharedStyle.css,'.framer-gzWRq[data-border=\"true\"]::after, .framer-gzWRq [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 135\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cDpUg8KSD\":{\"layout\":[\"fixed\",\"auto\"]},\"vAivAjigT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZrgcxy5uo=withCSS(Component,css,\"framer-gzWRq\");export default FramerZrgcxy5uo;FramerZrgcxy5uo.displayName=\"Links: Resources 2\";FramerZrgcxy5uo.defaultProps={height:135,width:150};addPropertyControls(FramerZrgcxy5uo,{variant:{options:[\"RI2rCMsrD\",\"cDpUg8KSD\",\"vAivAjigT\"],optionTitles:[\"Desktop\",\"Phone - Self-Serve\",\"Phone - Business\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZrgcxy5uo,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZrgcxy5uo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cDpUg8KSD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vAivAjigT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"135\",\"framerIntrinsicWidth\":\"150\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zrgcxy5uo.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LinksCommunity from\"https://framerusercontent.com/modules/JQRKwZv6rgdZ4OfkcuSU/45PpCkD31n6caHb3DNDn/dQcuWx460.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uWCvRYJnC1DUy90r2Htd/LquY43H1o9PJyyZBXx6h/Z5t45cqwx.js\";import PrimaryButton from\"https://framerusercontent.com/modules/DqbS08W59MB2ZyjRi85Z/Cq27sM6isRye6o2mxLBv/pa0kJDqWl.js\";import SoftButton from\"https://framerusercontent.com/modules/t1sPA0H0h2LkWqQoGJmt/5qtcBBbt8bNXyk6P2xJt/podJ3WXxF.js\";import Trigger2 from\"https://framerusercontent.com/modules/bP1K1yu2uRKIoha7EoZZ/AE9CaXLQgouivUqZuLp9/qzccd94Is.js\";import LinksProduct2 from\"https://framerusercontent.com/modules/JstXIDXLlaWdiwLtMFH8/N8LoMxZhBHNVQyNI8gIL/roYUFn1sP.js\";import LinksResources2 from\"https://framerusercontent.com/modules/QOrNk8f2bHSvJTu64HEr/hby30m3jvtAVhdziMket/Zrgcxy5uo.js\";const LinksProduct2Fonts=getFonts(LinksProduct2);const LinksResources2Fonts=getFonts(LinksResources2);const Trigger2Fonts=getFonts(Trigger2);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const MotionDivWithFX=withFX(motion.div);const LinksCommunityFonts=getFonts(LinksCommunity);const SoftButtonFonts=getFonts(SoftButton);const PrimaryButtonFonts=getFonts(PrimaryButton);const cycleOrder=[\"UgIbJWU9l\",\"Vlzdbqlaq\",\"mH1q3wXVJ\",\"vJWHYJOEV\"];const serializationHash=\"framer-mnPNv\";const variantClassNames={mH1q3wXVJ:\"framer-v-1h2s78y\",UgIbJWU9l:\"framer-v-8nfvem\",vJWHYJOEV:\"framer-v-1pujqyq\",Vlzdbqlaq:\"framer-v-8v1h97\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.3,type:\"spring\"};const transition3={damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"};const transition4={damping:40,delay:0,mass:.5,stiffness:600,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"GT Navbar\":\"vJWHYJOEV\",\"Phone Open\":\"mH1q3wXVJ\",Desktop:\"UgIbJWU9l\",Phone:\"Vlzdbqlaq\"};const getProps=({height,id,mutedForeground,width,...props})=>{return{...props,bCiwqU5_q:mutedForeground??props.bCiwqU5_q??\"rgb(113, 113, 122)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"UgIbJWU9l\"};};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,bCiwqU5_q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UgIbJWU9l\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1kfd4pj=activeVariantCallback(async(...args)=>{setVariant(\"mH1q3wXVJ\");});const onTapd8s7id=activeVariantCallback(async(...args)=>{setVariant(\"Vlzdbqlaq\");});const onMouseEnterzj8k2t=activeVariantCallback(async(...args)=>{setVariant(\"UgIbJWU9l\");});const PWSlWeqS6txyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Vlzdbqlaq\",\"mH1q3wXVJ\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"mH1q3wXVJ\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"Vlzdbqlaq\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"mH1q3wXVJ\")return true;return false;};const isDisplayed4=()=>{if([\"Vlzdbqlaq\",\"mH1q3wXVJ\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({mH1q3wXVJ:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8nfvem\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"UgIbJWU9l\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.07)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",...style},variants:{mH1q3wXVJ:{\"--border-bottom-width\":\"0px\"}},...addPropertyOverrides({mH1q3wXVJ:{\"data-framer-name\":\"Phone Open\"},vJWHYJOEV:{\"data-framer-name\":\"GT Navbar\"},Vlzdbqlaq:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irux\",\"data-framer-name\":\"Company Name\",layoutDependency:layoutDependency,layoutId:\"uu6SxP60M\",...addPropertyOverrides({mH1q3wXVJ:{\"data-highlight\":true,onTap:onTapd8s7id},Vlzdbqlaq:{\"data-highlight\":true,onTap:onTap1kfd4pj}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rrmruz\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"QD_mc81iN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-108p1kj\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"HIywOgG7H\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{mH1q3wXVJ:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3nmnic\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"sBG3liYhQ\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{mH1q3wXVJ:{rotate:45}}})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"my5m0Zy9J\",scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ksho1g framer-4luw7a\",\"data-framer-name\":\"coingecko-ads-logo\",description:\"CoinGecko Ads logo \u2014 a gecko icon next to the word \u2018coingecko\u2019 and a green pill-shaped \u2018Ads\u2019 label.\u201D\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"my5m0Zy9J\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 177 30\"><path d=\"M 137.973 15.001 C 137.973 8.987 142.85 4.112 148.864 4.112 L 166.381 4.112 C 171.995 4.112 176.546 8.662 176.546 14.275 C 176.546 19.887 171.995 24.437 166.381 24.437 L 137.973 24.437 Z\" fill=\"rgb(25,65,45)\"></path><path d=\"M 150.79 19.537 L 150.039 17.235 L 146.135 17.235 L 145.383 19.537 L 143.014 19.537 L 146.837 8.758 L 149.336 8.758 L 153.143 19.537 Z M 146.706 15.487 L 149.484 15.487 L 148.438 12.286 C 148.297 11.872 148.188 11.464 148.112 11.061 L 148.062 11.061 C 148.018 11.344 147.91 11.758 147.736 12.302 Z M 159.435 8.006 L 161.673 8.006 L 161.673 19.537 L 159.86 19.603 C 159.697 18.917 159.625 18.411 159.647 18.084 L 159.598 18.084 C 159.119 19.118 158.264 19.636 157.034 19.636 C 155.999 19.636 155.171 19.271 154.55 18.541 C 153.929 17.812 153.619 16.87 153.619 15.716 C 153.619 14.485 153.951 13.516 154.616 12.808 C 155.291 12.09 156.135 11.73 157.148 11.73 C 158.182 11.73 158.945 12.079 159.435 12.776 Z M 157.654 17.757 C 158.177 17.757 158.602 17.572 158.929 17.202 C 159.266 16.832 159.435 16.412 159.435 15.944 L 159.435 15.422 C 159.435 14.953 159.266 14.534 158.929 14.164 C 158.602 13.794 158.161 13.609 157.605 13.609 C 157.083 13.609 156.663 13.799 156.348 14.18 C 156.042 14.561 155.89 15.073 155.89 15.716 C 155.89 16.325 156.048 16.821 156.363 17.202 C 156.691 17.572 157.12 17.757 157.654 17.757 Z M 167.734 14.523 C 167.756 14.436 167.767 14.344 167.767 14.246 C 167.767 13.93 167.658 13.685 167.44 13.511 C 167.223 13.325 166.917 13.233 166.525 13.233 C 166.166 13.233 165.883 13.309 165.676 13.462 C 165.48 13.603 165.382 13.794 165.382 14.033 C 165.382 14.316 165.535 14.534 165.839 14.687 C 166.155 14.828 166.531 14.943 166.967 15.03 C 167.413 15.106 167.854 15.204 168.29 15.324 C 168.736 15.443 169.118 15.672 169.434 16.01 C 169.749 16.347 169.907 16.788 169.907 17.333 C 169.918 18.029 169.619 18.59 169.009 19.015 C 168.41 19.429 167.588 19.636 166.542 19.636 C 165.061 19.636 163.862 19.254 162.948 18.492 L 163.993 17.137 C 164.168 17.3 164.5 17.496 164.99 17.725 C 165.48 17.953 165.97 18.068 166.46 18.068 C 167.233 18.068 167.62 17.866 167.62 17.463 C 167.62 17.278 167.511 17.12 167.293 16.99 C 167.087 16.848 166.82 16.745 166.493 16.679 C 166.177 16.614 165.834 16.521 165.464 16.402 C 165.093 16.282 164.745 16.146 164.418 15.993 C 164.102 15.841 163.835 15.607 163.617 15.291 C 163.41 14.975 163.307 14.599 163.307 14.164 C 163.307 13.413 163.607 12.819 164.206 12.384 C 164.805 11.948 165.605 11.73 166.607 11.73 C 167.533 11.73 168.29 11.932 168.878 12.335 C 169.477 12.738 169.777 13.255 169.777 13.886 L 169.711 14.409 Z\" fill=\"rgb(166,239,95)\"></path><g transform=\"translate(0.02 0.34)\"><path d=\"M 0 0 L 134.324 0 L 134.324 29.345 L 0 29.345 Z\" fill=\"transparent\"></path><g transform=\"translate(39.934 5.145)\"><path d=\"M 0 0 L 94.39 0 L 94.39 19.055 L 0 19.055 Z\" fill=\"transparent\"></path><path d=\"M 88.894 4.764 C 90.427 4.764 91.663 5.233 92.602 6.172 C 93.555 7.097 94.032 8.299 94.032 9.776 C 94.032 11.254 93.555 12.462 92.602 13.401 C 91.663 14.326 90.427 14.788 88.894 14.788 C 87.347 14.788 86.097 14.326 85.144 13.401 C 84.205 12.462 83.736 11.254 83.736 9.776 C 83.736 8.299 84.205 7.097 85.144 6.172 C 86.097 5.233 87.347 4.764 88.894 4.764 Z M 87.237 11.723 C 87.651 12.22 88.203 12.469 88.894 12.469 C 89.584 12.469 90.13 12.22 90.531 11.723 C 90.945 11.226 91.152 10.577 91.152 9.776 C 91.152 8.975 90.945 8.326 90.531 7.829 C 90.13 7.332 89.584 7.084 88.894 7.084 C 88.203 7.084 87.651 7.332 87.237 7.829 C 86.822 8.326 86.615 8.975 86.615 9.776 C 86.615 10.577 86.822 11.226 87.237 11.723 Z M 67.043 4.764 C 68.299 4.764 69.294 5.095 70.026 5.758 C 70.772 6.407 71.145 7.222 71.145 8.202 L 71.082 8.927 L 68.576 9.072 C 68.603 9.017 68.617 8.872 68.617 8.637 C 68.617 8.195 68.472 7.829 68.182 7.539 C 67.906 7.235 67.512 7.084 67.001 7.084 C 66.352 7.084 65.827 7.325 65.427 7.808 C 65.04 8.292 64.847 8.927 64.847 9.714 C 64.847 10.57 65.061 11.247 65.489 11.744 C 65.931 12.227 66.559 12.469 67.374 12.469 C 68.534 12.469 69.425 12.089 70.047 11.329 L 71.435 13.111 C 71.075 13.566 70.53 13.96 69.798 14.291 C 69.066 14.623 68.195 14.788 67.188 14.788 C 65.572 14.788 64.294 14.333 63.355 13.421 C 62.429 12.496 61.967 11.295 61.967 9.818 C 61.967 8.312 62.437 7.097 63.376 6.172 C 64.315 5.233 65.537 4.764 67.043 4.764 Z M 56.717 12.634 C 57.726 12.634 58.568 12.261 59.244 11.516 L 60.591 13.069 C 60.219 13.553 59.666 13.96 58.934 14.291 C 58.216 14.623 57.367 14.788 56.386 14.788 C 54.77 14.788 53.486 14.326 52.533 13.401 C 51.593 12.476 51.124 11.267 51.124 9.776 C 51.124 8.299 51.579 7.097 52.491 6.172 C 53.402 5.233 54.611 4.764 56.117 4.764 C 57.511 4.764 58.609 5.192 59.41 6.048 C 60.211 6.904 60.612 8.016 60.612 9.383 L 60.529 10.418 L 53.941 10.418 C 54.065 11.095 54.363 11.633 54.832 12.034 C 55.302 12.434 55.93 12.634 56.717 12.634 Z M 56.117 6.918 C 55.55 6.918 55.067 7.097 54.666 7.456 C 54.279 7.802 54.038 8.299 53.941 8.948 L 58.022 8.948 C 58.008 8.354 57.829 7.871 57.484 7.498 C 57.152 7.111 56.696 6.918 56.117 6.918 Z M 47.063 4.888 L 49.3 4.888 L 49.3 14.291 C 49.3 15.727 48.803 16.88 47.809 17.75 C 46.814 18.62 45.482 19.055 43.81 19.055 C 42.029 19.055 40.565 18.668 39.418 17.895 L 39.702 15.939 C 40.599 16.616 42.519 16.777 43.748 16.777 C 44.577 16.777 45.233 16.57 45.716 16.155 C 46.213 15.755 46.462 15.161 46.462 14.374 L 46.462 13.173 C 45.827 14.098 44.846 14.561 43.52 14.561 C 42.222 14.561 41.158 14.132 40.33 13.276 C 39.501 12.406 39.087 11.198 39.087 9.652 C 39.087 8.174 39.48 6.994 40.268 6.11 C 41.055 5.213 42.119 4.764 43.458 4.764 C 45.019 4.764 46.089 5.42 46.669 6.731 L 46.731 6.731 C 46.718 6.58 46.745 6.303 46.814 5.903 C 46.883 5.503 46.966 5.164 47.063 4.888 Z M 44.224 12.179 C 44.901 12.179 45.44 11.944 45.84 11.474 C 46.255 10.991 46.462 10.46 46.462 9.88 L 46.462 9.445 C 46.462 8.823 46.255 8.285 45.84 7.829 C 45.426 7.374 44.867 7.146 44.162 7.146 C 43.499 7.146 42.968 7.374 42.568 7.829 C 42.167 8.285 41.967 8.892 41.967 9.652 C 41.967 10.425 42.167 11.039 42.568 11.495 C 42.982 11.951 43.534 12.179 44.224 12.179 Z M 33.671 4.764 C 34.845 4.764 35.743 5.123 36.365 5.841 C 37 6.559 37.318 7.498 37.318 8.658 L 37.318 14.664 L 34.479 14.664 L 34.479 9.155 C 34.479 8.561 34.328 8.092 34.024 7.746 C 33.733 7.387 33.312 7.208 32.76 7.208 C 32.083 7.208 31.565 7.449 31.206 7.933 C 30.861 8.416 30.688 8.975 30.688 9.61 L 30.688 14.664 L 27.85 14.664 L 27.85 4.888 L 30.066 4.805 C 30.301 5.537 30.419 6.221 30.419 6.856 L 30.501 6.856 C 31.068 5.461 32.125 4.764 33.671 4.764 Z M 25.944 1.761 C 25.944 2.271 25.764 2.693 25.405 3.024 C 25.046 3.355 24.611 3.521 24.1 3.521 C 23.589 3.521 23.154 3.355 22.795 3.024 C 22.45 2.693 22.277 2.271 22.277 1.761 C 22.277 1.263 22.45 0.849 22.795 0.518 C 23.154 0.173 23.589 0 24.1 0 C 24.611 0 25.046 0.173 25.405 0.518 C 25.764 0.849 25.944 1.263 25.944 1.761 Z M 22.671 14.664 L 22.671 4.888 L 25.509 4.805 L 25.509 14.664 Z M 15.719 4.764 C 17.252 4.764 18.488 5.233 19.427 6.172 C 20.38 7.097 20.857 8.299 20.857 9.776 C 20.857 11.254 20.38 12.462 19.427 13.401 C 18.488 14.326 17.252 14.788 15.719 14.788 C 14.172 14.788 12.922 14.326 11.969 13.401 C 11.03 12.462 10.561 11.254 10.561 9.776 C 10.561 8.299 11.03 7.097 11.969 6.172 C 12.922 5.233 14.172 4.764 15.719 4.764 Z M 14.062 11.723 C 14.476 12.22 15.028 12.469 15.719 12.469 C 16.409 12.469 16.955 12.22 17.355 11.723 C 17.77 11.226 17.977 10.577 17.977 9.776 C 17.977 8.975 17.77 8.326 17.355 7.829 C 16.955 7.332 16.409 7.084 15.719 7.084 C 15.028 7.084 14.476 7.332 14.062 7.829 C 13.647 8.326 13.44 8.975 13.44 9.776 C 13.44 10.577 13.647 11.226 14.062 11.723 Z M 5.075 4.764 C 6.332 4.764 7.327 5.095 8.059 5.758 C 8.804 6.407 9.177 7.222 9.177 8.202 L 9.115 8.927 L 6.608 9.072 C 6.636 9.017 6.65 8.872 6.65 8.637 C 6.65 8.195 6.505 7.829 6.215 7.539 C 5.939 7.235 5.545 7.084 5.034 7.084 C 4.385 7.084 3.86 7.325 3.46 7.808 C 3.073 8.292 2.88 8.927 2.88 9.714 C 2.88 10.57 3.094 11.247 3.522 11.744 C 3.964 12.227 4.592 12.469 5.407 12.469 C 6.567 12.469 7.458 12.089 8.079 11.329 L 9.467 13.111 C 9.108 13.566 8.563 13.96 7.831 14.291 C 7.099 14.623 6.229 14.788 5.221 14.788 C 3.605 14.788 2.327 14.333 1.388 13.421 C 0.463 12.496 0 11.295 0 9.818 C 0 8.312 0.47 7.097 1.409 6.172 C 2.348 5.233 3.57 4.764 5.075 4.764 Z M 80.241 10.312 C 80.829 11.342 81.417 12.18 82.029 13.053 C 82.295 13.431 82.564 13.817 82.841 14.227 C 83.193 14.748 82.737 15.373 82.156 15.132 C 79.89 14.195 78.234 12.431 77.1 10.77 L 75.884 10.77 L 75.884 14.664 L 73.045 14.664 L 73.045 0.042 L 75.884 0.042 L 75.884 8.554 L 77.085 8.554 C 77.858 8.554 78.467 8.319 78.909 7.85 C 79.35 7.381 79.572 6.711 79.572 5.841 C 79.572 5.62 79.544 5.302 79.488 4.888 L 82.202 4.888 C 82.272 5.206 82.306 5.544 82.306 5.903 C 82.306 7.826 81.447 9.474 80.241 10.312 Z\" fill=\"rgb(13,18,23)\"></path></g><g transform=\"translate(0 0)\"><path d=\"M 0 0 L 29.043 0 L 29.043 29.345 L 0 29.345 Z\" fill=\"transparent\"></path><path d=\"M 29.043 14.557 C 29.079 22.633 22.607 29.209 14.588 29.245 C 6.567 29.282 0.037 22.765 0 14.689 C -0.036 6.613 6.436 0.037 14.457 0 C 22.476 -0.035 29.006 6.481 29.043 14.557 Z\" fill=\"rgb(255,232,102)\"></path><path d=\"M 21.886 9.39 C 20.832 9.083 19.741 8.647 18.634 8.207 C 18.57 7.928 18.325 7.58 17.828 7.153 C 17.105 6.522 15.747 6.539 14.574 6.818 C 13.279 6.511 12 6.401 10.772 6.698 C 0.732 9.484 6.424 16.279 2.737 23.111 C 3.262 24.23 9.05 29.612 17.097 29.014 C 17.097 29.014 14.299 22.244 20.613 18.994 C 25.735 16.358 29.434 11.464 21.885 9.389 Z\" fill=\"rgb(75,204,0)\"></path><path d=\"M 14.362 6.777 C 15.261 7.136 18.479 8.28 19.9 8.709 C 18.293 6.399 16.171 6.483 14.362 6.777 Z\" fill=\"rgb(53,175,0)\"></path><path d=\"M 15.27 11.019 C 15.27 12.581 14.012 13.846 12.462 13.846 C 10.912 13.846 9.654 12.581 9.654 11.019 C 9.654 9.457 10.912 8.193 12.462 8.193 C 14.012 8.193 15.27 9.458 15.27 11.019 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 25.4 15.088 C 23.126 16.702 20.537 17.926 16.868 17.926 C 15.151 17.926 14.802 16.088 13.667 16.989 C 13.08 17.454 11.014 18.495 9.374 18.416 C 7.719 18.336 5.078 17.368 4.335 13.844 C 4.041 17.368 3.892 19.965 2.577 22.94 C 5.804 27.682 11.431 30.041 17.097 29.015 C 16.489 24.736 20.203 20.545 22.295 18.4 C 23.087 17.588 24.606 16.262 25.4 15.088 Z\" fill=\"rgb(75,204,0)\"></path><path d=\"M 11.998 11 C 11.998 9.726 12.736 8.694 13.645 8.694 C 14.555 8.694 15.293 9.726 15.293 11 C 15.293 12.273 14.555 13.306 13.645 13.306 C 12.736 13.306 11.998 12.273 11.998 11 Z\" fill=\"rgb(13,18,23)\"></path><path d=\"M 13.645 11 L 11.668 9.682 L 11.668 12.317 Z\" fill=\"rgb(255,255,255)\"></path></g></g></svg>',svgContentId:11702214544,title:\"CoinGecko Ads logo\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({mH1q3wXVJ:{value:transition3},Vlzdbqlaq:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15hcpk7\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"VS9dNyzY7\",style:{opacity:1},variants:{mH1q3wXVJ:{opacity:1},vJWHYJOEV:{opacity:1},Vlzdbqlaq:{opacity:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-znrr25\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"caNdq4BRd\",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:{mH1q3wXVJ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},vJWHYJOEV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Vlzdbqlaq:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(238, 238, 238)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({mH1q3wXVJ:{\"data-border\":true},Vlzdbqlaq:{\"data-border\":true}},baseVariant,gestureVariant),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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bCiwqU5_q-RNZrO1Xd4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"W06M6LExO\",openInNewTab:false,scopeId:\"RNZrO1Xd4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"CoinGecko\"})})})}),className:\"framer-xe6qtz\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"W06M6LExO\",onMouseEnter:onMouseEnterzj8k2t,style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bCiwqU5_q-RNZrO1Xd4)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-bCiwqU5_q-RNZrO1Xd4\":bCiwqU5_q},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mH1q3wXVJ:{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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bCiwqU5_q-RNZrO1Xd4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gr8_eCw9s\"},motionChild:true,nodeId:\"W06M6LExO\",openInNewTab:false,scopeId:\"RNZrO1Xd4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Contact Sales\"})})})}),verticalAlignment:\"center\"},vJWHYJOEV:{\"data-highlight\":undefined,onMouseEnter:undefined},Vlzdbqlaq:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mp2e3v\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"flaEvndRj\",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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bCiwqU5_q-RNZrO1Xd4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GC2Rd1wlL\"},motionChild:true,nodeId:\"wjPZ0_FQ3\",openInNewTab:false,scopeId:\"RNZrO1Xd4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"GeckoTerminal\"})})})}),className:\"framer-1npxeh7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wjPZ0_FQ3\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bCiwqU5_q-RNZrO1Xd4)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-bCiwqU5_q-RNZrO1Xd4\":bCiwqU5_q},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Vlzdbqlaq:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Vlzdbqlaq:{height:51,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+64+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xqskiq-container\",layoutDependency:layoutDependency,layoutId:\"qrui4FWIg-container\",nodeId:\"qrui4FWIg\",rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(LinksProduct2,{height:\"100%\",id:\"qrui4FWIg\",layoutId:\"qrui4FWIg\",style:{width:\"100%\"},variant:\"KH7uKZIy7\",width:\"100%\",...addPropertyOverrides({Vlzdbqlaq:{variant:\"FHU5VdR7x\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({mH1q3wXVJ:{height:135,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+120+0+107},Vlzdbqlaq:{height:135,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+64+0+219}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sxuiiv-container\",layoutDependency:layoutDependency,layoutId:\"eTYbAf2O6-container\",nodeId:\"eTYbAf2O6\",rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(LinksResources2,{height:\"100%\",id:\"eTYbAf2O6\",layoutId:\"eTYbAf2O6\",style:{width:\"100%\"},variant:\"RI2rCMsrD\",width:\"100%\",...addPropertyOverrides({mH1q3wXVJ:{variant:\"cDpUg8KSD\"},Vlzdbqlaq:{variant:\"cDpUg8KSD\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({mH1q3wXVJ:{height:51,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+120+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tqna1-container\",layoutDependency:layoutDependency,layoutId:\"mZZrJcg4l-container\",nodeId:\"mZZrJcg4l\",rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(LinksProduct2,{height:\"100%\",id:\"mZZrJcg4l\",layoutId:\"mZZrJcg4l\",style:{width:\"100%\"},variant:\"FHU5VdR7x\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+(20+((componentViewport?.height||64)-40-38)/2)+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1o41fco-container\",\"data-framer-name\":\"Trigger\",id:`${layoutId}-1o41fco`,layoutDependency:layoutDependency,layoutId:\"Zq9UpGwU5-container\",name:\"Trigger\",nodeId:\"Zq9UpGwU5\",ref:ref1,rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:[/*#__PURE__*/_jsx(Trigger2,{DApvjrdfG:\"Self-Serve Solutions\",height:\"100%\",id:\"Zq9UpGwU5\",layoutId:\"Zq9UpGwU5\",name:\"Trigger\",PWSlWeqS6:PWSlWeqS6txyyif({overlay}),variant:overlay.visible?\"G7gkWlmQO\":\"vRLmYPs1F\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1o41fco`,offsetX:1.2109270741639193,offsetY:-2.5000100657343864,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,width:\"150px\",y:(componentViewport?.y||0)+(20+((componentViewport?.height||64)-40-38)/2)+0+-25.5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-2om2zs-container\",exit:animation,inComponentSlot:true,initial:animation2,layoutDependency:layoutDependency,layoutId:\"iBsamNLgn-container\",nodeId:\"iBsamNLgn\",ref:ref2,rendersWithMotion:true,role:\"dialog\",scopeId:\"RNZrO1Xd4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(LinksProduct2,{height:\"100%\",id:\"iBsamNLgn\",layoutId:\"iBsamNLgn\",style:{width:\"100%\"},variant:\"KH7uKZIy7\",width:\"100%\"})})})})})]})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+(20+((componentViewport?.height||64)-40-38)/2)+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1pof1jh-container\",\"data-framer-name\":\"Trigger\",id:`${layoutId}-1pof1jh`,layoutDependency:layoutDependency,layoutId:\"znqhh8gvi-container\",name:\"Trigger\",nodeId:\"znqhh8gvi\",ref:ref3,rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:[/*#__PURE__*/_jsx(Trigger2,{DApvjrdfG:\"Business Solutions\",height:\"100%\",id:\"znqhh8gvi\",layoutId:\"znqhh8gvi\",name:\"Trigger\",PWSlWeqS6:PWSlWeqS6txyyif({overlay:overlay1}),variant:overlay1.visible?\"G7gkWlmQO\":\"vRLmYPs1F\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1pof1jh`,offsetX:1.2109270741639193,offsetY:-2.5000100657343864,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1kj631w\",\"data-framer-name\":\"Links: Product 2\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"Su3C0OrUz\",ref:ref4,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 1px 2px 1px rgba(0, 0, 0, 0.05)\",transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ccpyue\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"audgNAYoB\",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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cnk_d36MT\"},motionChild:true,nodeId:\"HzLyU9spO\",openInNewTab:false,scopeId:\"RNZrO1Xd4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Overview\"})})})}),className:\"framer-bgsgtw\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HzLyU9spO\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bnxlts\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"iwF1cUOkk\",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\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(68, 68, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://app-na1.hubspotdocuments.com/documents/5275236/view/474765004?accessId=71d477\",motionChild:true,nodeId:\"AAsOxTqJ_\",openInNewTab:true,scopeId:\"RNZrO1Xd4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Case Studies\"})})})}),className:\"framer-dqapo5\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"AAsOxTqJ_\",style:{\"--extracted-r6o4lv\":\"rgb(68, 68, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({mH1q3wXVJ:{height:135,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+120+0+242}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13jgn9y-container\",layoutDependency:layoutDependency,layoutId:\"VzdV0NVnZ-container\",nodeId:\"VzdV0NVnZ\",rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(LinksResources2,{height:\"100%\",id:\"VzdV0NVnZ\",layoutId:\"VzdV0NVnZ\",style:{width:\"100%\"},variant:\"vAivAjigT\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7lvh4z-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qKU1Ben5d-container\",nodeId:\"qKU1Ben5d\",rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(LinksCommunity,{height:\"100%\",id:\"qKU1Ben5d\",layoutId:\"qKU1Ben5d\",style:{width:\"100%\"},variant:\"Q3MjAIjCQ\",width:\"100%\",...addPropertyOverrides({Vlzdbqlaq:{variant:\"Y2WpHXJS3\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xmzre2\",\"data-framer-name\":\"Inline Link\",layoutDependency:layoutDependency,layoutId:\"d2ZdOglPa\",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-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bCiwqU5_q-RNZrO1Xd4))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gr8_eCw9s\"},motionChild:true,nodeId:\"BteQvN3RF\",openInNewTab:false,scopeId:\"RNZrO1Xd4\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Contact Sales\"})})})}),className:\"framer-7btueh\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"BteQvN3RF\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bCiwqU5_q-RNZrO1Xd4)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-bCiwqU5_q-RNZrO1Xd4\":bCiwqU5_q},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Vlzdbqlaq:{verticalAlignment:\"center\"}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-101uh61\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"y0nxgvhal\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://adsmanager.coingecko.com/\",motionChild:true,nodeId:\"yAAEuhgVy\",openInNewTab:false,scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uxz8n3 framer-4luw7a\",layoutDependency:layoutDependency,layoutId:\"yAAEuhgVy\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+(20+((componentViewport?.height||64)-40-44)/2)+1.5+0,...addPropertyOverrides({mH1q3wXVJ:{y:(componentViewport?.y||0)+0+64+7.5+0},Vlzdbqlaq:{y:(componentViewport?.y||0)+0+525+1.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p6aado-container\",layoutDependency:layoutDependency,layoutId:\"HoYpsZoRo-container\",nodeId:\"HoYpsZoRo\",rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",children:/*#__PURE__*/_jsx(SoftButton,{height:\"100%\",id:\"HoYpsZoRo\",layoutId:\"HoYpsZoRo\",variant:\"WDKiipLrG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://adsmanager.coingecko.com/\",motionChild:true,nodeId:\"ledZKtFqu\",openInNewTab:false,scopeId:\"RNZrO1Xd4\",...addPropertyOverrides({vJWHYJOEV:{href:\"https://adsmanager.coingecko.com/sign-up\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-jii93v framer-4luw7a\",layoutDependency:layoutDependency,layoutId:\"ledZKtFqu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+(20+((componentViewport?.height||64)-40-44)/2)+0+1.5,...addPropertyOverrides({mH1q3wXVJ:{y:(componentViewport?.y||0)+0+64+6+1.5},Vlzdbqlaq:{y:(componentViewport?.y||0)+0+525+0+1.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o2deku-container\",layoutDependency:layoutDependency,layoutId:\"ZYQNvbSsw-container\",nodeId:\"ZYQNvbSsw\",rendersWithMotion:true,scopeId:\"RNZrO1Xd4\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"ZYQNvbSsw\",layoutId:\"ZYQNvbSsw\",mCngOmD07:\"Get Started\",variant:\"AC30pNx3Z\",width:\"100%\",...addPropertyOverrides({vJWHYJOEV:{variant:\"EIeSf2neW\"}},baseVariant,gestureVariant)})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mnPNv.framer-4luw7a, .framer-mnPNv .framer-4luw7a { display: block; }\",\".framer-mnPNv.framer-8nfvem { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 64px; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 1200px; }\",\".framer-mnPNv .framer-irux { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mnPNv .framer-rrmruz { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-mnPNv .framer-108p1kj { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mnPNv .framer-3nmnic { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mnPNv .framer-1ksho1g { flex: none; height: 30px; position: relative; text-decoration: none; width: 177px; }\",\".framer-mnPNv .framer-15hcpk7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-mnPNv .framer-znrr25, .framer-mnPNv .framer-1mp2e3v, .framer-mnPNv .framer-1xmzre2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mnPNv .framer-xe6qtz, .framer-mnPNv .framer-1npxeh7, .framer-mnPNv .framer-dqapo5, .framer-mnPNv .framer-7btueh { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-mnPNv .framer-1xqskiq-container, .framer-mnPNv .framer-1sxuiiv-container, .framer-mnPNv .framer-tqna1-container, .framer-mnPNv .framer-13jgn9y-container, .framer-mnPNv .framer-7lvh4z-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-mnPNv .framer-1o41fco-container, .framer-mnPNv .framer-1pof1jh-container, .framer-mnPNv .framer-1p6aado-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mnPNv .framer-2om2zs-container { height: auto; position: relative; width: 150px; }\",\".framer-mnPNv .framer-1kj631w { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; padding: 15px; position: relative; width: min-content; }\",\".framer-mnPNv .framer-1ccpyue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 32px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mnPNv .framer-bgsgtw { -webkit-user-select: none; flex: none; height: 21px; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-mnPNv .framer-1bnxlts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 32px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 120px; }\",\".framer-mnPNv .framer-101uh61 { 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: min-content; }\",\".framer-mnPNv .framer-1uxz8n3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 65px; }\",\".framer-mnPNv .framer-jii93v { flex: none; height: 44px; overflow: visible; position: relative; text-decoration: none; width: 141px; }\",\".framer-mnPNv .framer-1o2deku-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; width: auto; }\",\".framer-mnPNv.framer-v-8v1h97.framer-8nfvem { flex-direction: column; gap: 0px; overflow: hidden; padding: 0px; width: 390px; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-irux, .framer-mnPNv.framer-v-1h2s78y .framer-irux { cursor: pointer; gap: unset; height: 64px; justify-content: space-between; order: 0; padding: 0px 10px 0px 20px; width: 100%; z-index: 2; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-rrmruz, .framer-mnPNv.framer-v-1h2s78y .framer-rrmruz { height: 44px; order: 1; width: 44px; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-1ksho1g, .framer-mnPNv.framer-v-1h2s78y .framer-1ksho1g { order: 0; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-15hcpk7 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 0px; order: 1; padding: 0px 20px 0px 20px; width: 100%; z-index: 2; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-znrr25 { gap: 15px; height: 56px; justify-content: flex-start; order: 4; overflow: hidden; width: 100%; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-1mp2e3v { gap: 15px; height: 56px; justify-content: flex-start; order: 5; overflow: hidden; width: 100%; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-1xqskiq-container, .framer-mnPNv.framer-v-1h2s78y .framer-tqna1-container { flex: none; order: 2; width: 100%; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-1sxuiiv-container, .framer-mnPNv.framer-v-1h2s78y .framer-1sxuiiv-container { flex: none; order: 7; width: 100%; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-7lvh4z-container { flex: none; order: 9; width: 100%; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-1xmzre2 { gap: 15px; height: 56px; justify-content: flex-start; order: 6; overflow: hidden; width: 100%; }\",\".framer-mnPNv.framer-v-8v1h97 .framer-101uh61 { order: 2; }\",\".framer-mnPNv.framer-v-1h2s78y.framer-8nfvem { flex-direction: column; gap: 0px; height: 556px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px 0px 120px 0px; width: 390px; }\",\".framer-mnPNv.framer-v-1h2s78y .framer-108p1kj, .framer-mnPNv.framer-v-1h2s78y .framer-3nmnic { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-mnPNv.framer-v-1h2s78y .framer-15hcpk7 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 0px; order: 2; padding: 0px 20px 0px 20px; width: 100%; z-index: 2; }\",\".framer-mnPNv.framer-v-1h2s78y .framer-znrr25 { gap: 15px; height: 56px; justify-content: flex-start; order: 3; overflow: hidden; width: 100%; }\",\".framer-mnPNv.framer-v-1h2s78y .framer-13jgn9y-container { flex: none; order: 8; width: 100%; }\",\".framer-mnPNv.framer-v-1h2s78y .framer-101uh61 { height: 56px; justify-content: flex-start; order: 1; padding: 0px 16px 0px 16px; width: 100%; }\",...sharedStyle.css,'.framer-mnPNv[data-border=\"true\"]::after, .framer-mnPNv [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; }','.framer-mnPNv[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-mnPNv [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-mnPNv[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-mnPNv [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-mnPNv[data-hide-scrollbars=\"true\"], .framer-mnPNv [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vlzdbqlaq\":{\"layout\":[\"fixed\",\"fixed\"]},\"mH1q3wXVJ\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"100vh\"]},\"vJWHYJOEV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"bCiwqU5_q\":\"mutedForeground\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRNZrO1Xd4=withCSS(Component,css,\"framer-mnPNv\");export default FramerRNZrO1Xd4;FramerRNZrO1Xd4.displayName=\"Navigation 5\";FramerRNZrO1Xd4.defaultProps={height:64,width:1200};addPropertyControls(FramerRNZrO1Xd4,{variant:{options:[\"UgIbJWU9l\",\"Vlzdbqlaq\",\"mH1q3wXVJ\",\"vJWHYJOEV\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\",\"GT Navbar\"],title:\"Variant\",type:ControlType.Enum},bCiwqU5_q:{defaultValue:\"rgb(113, 113, 122)\",title:\"muted-foreground\",type:ControlType.Color}});addFonts(FramerRNZrO1Xd4,[{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\"}]},...LinksProduct2Fonts,...LinksResources2Fonts,...Trigger2Fonts,...LinksCommunityFonts,...SoftButtonFonts,...PrimaryButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRNZrO1Xd4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"bCiwqU5_q\\\":\\\"mutedForeground\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vlzdbqlaq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mH1q3wXVJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"vJWHYJOEV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RNZrO1Xd4.map", "import{jsx as e}from\"react/jsx-runtime\";import{useState as t,useEffect as o}from\"react\";import{addPropertyControls as i,ControlType as l}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function s(i){let[l,s]=t(null);o(()=>{let e=i.customSvgCode;r(e);},[i.customSvgCode,i.customColor,i.customStrokeWidth,i.lineCap,i.lineJoin]);let r=e=>{let t=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']],o=e.includes('stroke=\"'),l=e.includes('stroke-width=\"'),r=e.includes('stroke-linecap=\"'),n=e.includes('stroke-linejoin=\"');if(e.includes(\"<circle\")){// Find the circle element and update its fill attribute\nlet o=/<circle[^>]*fill=\"([^\"]*)\"/,l=e.match(o);if(l){// Update the fill attribute with the custom color\nlet t=l[0].replace(l[1],i.customColor);e=e.replace(o,t);}else // If there is no fill attribute, add it with the custom color\nt.push([/<circle/g,`<circle fill=\"${i.customColor}\"`]);}o?(r?t.push([/<path/g,`<path stroke=\"${i.customColor}\" stroke-linecap=\"${i.lineCap}\"`]):t.push([/<path/g,`<path stroke=\"${i.customColor}\"`]),l&&t.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${i.customStrokeWidth}\"`])):t.push([/<path/g,`<path fill=\"${i.customColor}\"`]),e.includes('overflow=\"')?t.push([/overflow=\"[^\"]*\"/,'overflow=\"visible\"']):t.push([/<svg/,'<svg overflow=\"visible\"']),n?t.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${i.lineJoin}\"`]):t.push([/<path/g,`<path stroke-linejoin=\"${i.lineJoin}\"`]),t.forEach(([t,o])=>{e=e.replace(t,o);}),s(e);},n={padding:`${i.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/e(\"div\",{dangerouslySetInnerHTML:{__html:l},style:n});}s.defaultProps={customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>',customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"},i(s,{customSvgCode:{type:l.String,title:\"SVG Code\",displayTextArea:!1},customColor:{type:l.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:l.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:!0,hidden:e=>!e.customSvgCode.includes('stroke=\"')},customPadding:{type:l.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:!0},lineCap:{type:l.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:e=>!e.customSvgCode.includes('stroke=\"')},lineJoin:{type:l.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:e=>!e.customSvgCode.includes('stroke=\"')}});export default s;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (fed3180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG1 from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/hAahUT5WhkA90ScusgxD/SVG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uWCvRYJnC1DUy90r2Htd/LquY43H1o9PJyyZBXx6h/Z5t45cqwx.js\";const SVG1Fonts=getFonts(SVG1);const cycleOrder=[\"s5AtOf04e\",\"nRwIeC6Tm\"];const serializationHash=\"framer-OgcPa\";const variantClassNames={nRwIeC6Tm:\"framer-v-1ivvtds\",s5AtOf04e:\"framer-v-1meddt0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};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:\"s5AtOf04e\",Phone:\"nRwIeC6Tm\"};const getProps=({copyright,height,id,iG,link1,link2,link3,link4,link5,link6,link7,link8,linkName1,linkName2,linkName3,linkName4,linkName5,linkName6,linkName7,linkName8,socials,width,x,yT,...props})=>{return{...props,CALcoRm2S:linkName8??props.CALcoRm2S??\"Link 8\",DRN67vUU9:iG??props.DRN67vUU9,eg29EBNBC:link8??props.eg29EBNBC,f2tdYVgqT:copyright??props.f2tdYVgqT??\"\\xa9 2025 CoinGecko. All rights reserved.\",GAyc3ecbd:linkName2??props.GAyc3ecbd??\"Link 2\",hKmII9GiU:socials??props.hKmII9GiU,jbPuO20If:link6??props.jbPuO20If,kPrZ8rd7a:linkName6??props.kPrZ8rd7a??\"Link 6\",KTAdZ43_8:linkName5??props.KTAdZ43_8??\"Link 5\",l4Rxwjiko:link5??props.l4Rxwjiko,odzgB3QEx:link1??props.odzgB3QEx,PGP544yxc:link4??props.PGP544yxc,PWjngdqiP:link3??props.PWjngdqiP,qxV6yVAxc:link7??props.qxV6yVAxc,r7xqkNSIF:yT??props.r7xqkNSIF,RhfLYxJpS:x??props.RhfLYxJpS,Rj9QfDc3i:linkName3??props.Rj9QfDc3i??\"Link 3\",TpvaDzK0C:linkName4??props.TpvaDzK0C??\"Link 4\",TXdF2swXx:linkName1??props.TXdF2swXx??\"Link 1\",variant:humanReadableVariantMap[props.variant]??props.variant??\"s5AtOf04e\",W5SFNb1iu:linkName7??props.W5SFNb1iu??\"Link 7\",wPV7sI7wL:link2??props.wPV7sI7wL};};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,f2tdYVgqT,hKmII9GiU,RhfLYxJpS,r7xqkNSIF,DRN67vUU9,TXdF2swXx,odzgB3QEx,GAyc3ecbd,wPV7sI7wL,Rj9QfDc3i,PWjngdqiP,TpvaDzK0C,PGP544yxc,KTAdZ43_8,l4Rxwjiko,kPrZ8rd7a,jbPuO20If,W5SFNb1iu,qxV6yVAxc,CALcoRm2S,eg29EBNBC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"s5AtOf04e\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(RhfLYxJpS);const visible1=isSet(r7xqkNSIF);const visible2=isSet(DRN67vUU9);const visible3=isSet(odzgB3QEx);const visible4=isSet(wPV7sI7wL);const visible5=isSet(PWjngdqiP);const visible6=isSet(PGP544yxc);const visible7=isSet(l4Rxwjiko);const visible8=isSet(jbPuO20If);const visible9=isSet(qxV6yVAxc);const visible10=isSet(eg29EBNBC);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.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1meddt0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"s5AtOf04e\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(228, 228, 231)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({nRwIeC6Tm:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19kzpb8\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"n0j_R_0sy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvd8os\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"uMJDhN__d\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"QCLTRx4g_\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-189kcu framer-27v6kw\",\"data-framer-name\":\"CGAds-Lockup@2x-1\",fill:\"black\",intrinsicHeight:454,intrinsicWidth:2678,layoutDependency:layoutDependency,layoutId:\"QCLTRx4g_\",svg:'<svg width=\"2678\" height=\"454\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M2087.53 227.008c0-91.006 73.78-164.781 164.78-164.781h265.03c84.94 0 153.79 68.857 153.79 153.796s-68.85 153.796-153.79 153.796h-429.81V227.008Z\" fill=\"#19412D\"/><path d=\"m2281.45 295.667-11.37-34.851h-59.07l-11.37 34.851h-35.84l57.84-163.133h37.81l57.59 163.133h-35.59Zm-61.79-61.298h42.02l-15.82-48.446c-2.14-6.262-3.79-12.441-4.94-18.538h-.75c-.66 4.284-2.3 10.546-4.94 18.785l-15.57 48.199Zm192.58-113.205h33.86v174.503l-27.43.989c-2.47-10.381-3.55-18.043-3.22-22.987h-.74c-7.25 15.654-20.18 23.482-38.8 23.482-15.66 0-28.18-5.521-37.57-16.561-9.4-11.04-14.09-25.294-14.09-42.761 0-18.62 5.02-33.286 15.08-43.997 10.21-10.875 22.98-16.313 38.31-16.313 15.65 0 27.19 5.273 34.6 15.819v-72.174Zm-26.94 147.562c7.91 0 14.34-2.802 19.28-8.404 5.11-5.603 7.66-11.947 7.66-19.033v-7.909c0-7.086-2.55-13.43-7.66-19.032-4.94-5.603-11.62-8.404-20.02-8.404-7.91 0-14.26 2.883-19.03 8.651-4.62 5.767-6.93 13.512-6.93 23.234 0 9.228 2.39 16.725 7.17 22.493 4.95 5.602 11.45 8.404 19.53 8.404Zm152.51-48.941c.33-1.318.5-2.718.5-4.201 0-4.779-1.65-8.487-4.95-11.123-3.29-2.802-7.91-4.202-13.84-4.202-5.44 0-9.72 1.153-12.85 3.46-2.97 2.142-4.45 5.026-4.45 8.651 0 4.285 2.31 7.58 6.92 9.887 4.78 2.142 10.46 3.873 17.06 5.191a206.607 206.607 0 0 1 20.02 4.449c6.75 1.813 12.52 5.273 17.3 10.381 4.78 5.108 7.17 11.782 7.17 20.021.16 10.546-4.37 19.032-13.6 25.459-9.06 6.262-21.5 9.393-37.32 9.393-22.41 0-40.54-5.768-54.38-17.303l15.82-20.515c2.64 2.472 7.66 5.438 15.08 8.898 7.41 3.461 14.83 5.191 22.24 5.191 11.7 0 17.55-3.049 17.55-9.145 0-2.802-1.65-5.191-4.94-7.168-3.13-2.143-7.17-3.708-12.11-4.697-4.78-.988-9.97-2.389-15.57-4.202-5.61-1.812-10.88-3.872-15.82-6.179-4.78-2.307-8.82-5.85-12.12-10.628-3.13-4.779-4.69-10.464-4.69-17.055 0-11.37 4.53-20.351 13.59-26.942 9.07-6.591 21.18-9.887 36.34-9.887 14 0 25.46 3.048 34.35 9.145 9.07 6.097 13.6 13.924 13.6 23.482l-.99 7.909-29.91 1.73Z\" fill=\"#A6EF5F\"/><g clip-path=\"url(#a)\"><g clip-path=\"url(#b)\" fill=\"#0D1217\"><path d=\"M1949.46 155.098c23.19 0 41.89 7.104 56.1 21.313 14.42 14.001 21.63 32.18 21.63 54.539 0 22.358-7.21 40.642-21.63 54.851-14.21 14.001-32.91 21.001-56.1 21.001-23.41 0-42.32-7-56.74-21.001-14.21-14.209-21.31-32.493-21.31-54.851 0-22.359 7.1-40.538 21.31-54.539 14.42-14.209 33.33-21.313 56.74-21.313Zm-25.08 105.315c6.27 7.522 14.63 11.284 25.08 11.284 10.44 0 18.7-3.762 24.76-11.284 6.27-7.523 9.4-17.344 9.4-29.463 0-12.12-3.13-21.941-9.4-29.464-6.06-7.522-14.32-11.283-24.76-11.283-10.45 0-18.81 3.761-25.08 11.283-6.27 7.523-9.4 17.344-9.4 29.464 0 12.119 3.13 21.94 9.4 29.463Zm-305.53-105.315c19.01 0 34.06 5.015 45.13 15.045 11.29 9.821 16.93 22.149 16.93 36.985l-.94 10.971-37.93 2.194c.42-.836.63-3.03.63-6.582 0-6.687-2.2-12.225-6.58-16.613-4.18-4.597-10.14-6.895-17.87-6.895-9.82 0-17.76 3.656-23.82 10.97-5.85 7.314-8.78 16.926-8.78 28.836 0 12.956 3.24 23.195 9.72 30.717 6.69 7.314 16.19 10.971 28.52 10.971 17.55 0 31.03-5.747 40.44-17.24l21 26.956c-5.44 6.896-13.69 12.851-24.77 17.866-11.07 5.015-24.24 7.523-39.49 7.523-24.45 0-43.78-6.896-57.99-20.687-14-14-21-32.18-21-54.538 0-22.777 7.11-41.165 21.32-55.166 14.21-14.209 32.7-21.313 55.48-21.313Zm-156.23 119.106c15.26 0 28.01-5.642 38.24-16.926l20.38 23.508c-5.64 7.314-14 13.478-25.08 18.493-10.86 5.015-23.71 7.523-38.55 7.523-24.45 0-43.88-7-58.3-21.001-14.21-14-21.31-32.284-21.31-54.851 0-22.359 6.89-40.538 20.68-54.539 13.79-14.209 32.08-21.313 54.86-21.313 21.1 0 37.71 6.477 49.83 19.433 12.12 12.955 18.18 29.776 18.18 50.463l-1.25 15.672h-99.68c1.88 10.239 6.38 18.389 13.48 24.448 7.11 6.06 16.61 9.09 28.52 9.09Zm-9.08-86.509c-8.57 0-15.89 2.717-21.95 8.15-5.85 5.224-9.5 12.746-10.97 22.567h61.75c-.21-8.985-2.92-16.299-8.15-21.941-5.01-5.85-11.91-8.776-20.68-8.776Zm-136.99-30.717h33.85v142.301c0 21.732-7.52 39.18-22.56 52.344-15.05 13.165-35.21 19.747-60.5 19.747-26.95 0-49.1-5.851-66.45-17.553l4.29-29.598c13.58 10.239 42.63 12.673 61.22 12.673 12.54 0 22.47-3.135 29.78-9.403 7.52-6.06 11.28-15.045 11.28-26.956v-18.18c-9.61 14.001-24.45 21.001-44.51 21.001-19.64 0-35.73-6.478-48.26-19.433-12.54-13.165-18.81-31.449-18.81-54.852 0-22.359 5.95-40.225 17.87-53.598 11.91-13.582 28-20.373 48.26-20.373 23.62 0 39.81 9.925 48.59 29.776h.94c-.21-2.298.21-6.477 1.25-12.537 1.05-6.06 2.3-11.18 3.76-15.359Zm-42.94 110.33c10.24 0 18.39-3.552 24.45-10.656 6.27-7.314 9.4-15.359 9.4-24.135v-6.582c0-9.404-3.13-17.553-9.4-24.449-6.27-6.895-14.73-10.343-25.39-10.343-10.03 0-18.07 3.448-24.13 10.343-6.06 6.896-9.09 16.09-9.09 27.583 0 11.702 3.03 21 9.09 27.896 6.27 6.896 14.62 10.343 25.07 10.343Zm-159.67-112.21c17.76 0 31.34 5.433 40.75 16.298 9.61 10.866 14.42 25.075 14.42 42.628v90.897h-42.95v-83.374c0-8.986-2.29-16.09-6.89-21.314-4.39-5.433-10.76-8.15-19.12-8.15-10.24 0-18.08 3.657-23.51 10.971-5.22 7.313-7.83 15.776-7.83 25.388v76.479h-42.95V156.978l33.54-1.253c3.55 11.074 5.33 21.418 5.33 31.03h1.25c8.57-21.105 24.56-31.657 47.96-31.657Zm-116.916-45.45c0 7.731-2.717 14.104-8.149 19.119-5.433 5.015-12.016 7.523-19.747 7.523-7.732 0-14.314-2.508-19.747-7.523-5.224-5.015-7.836-11.388-7.836-19.119 0-7.523 2.612-13.792 7.836-18.807 5.433-5.224 12.015-7.836 19.747-7.836 7.731 0 14.314 2.612 19.747 7.836 5.432 5.015 8.149 11.284 8.149 18.807Zm-49.523 195.271V156.977l42.941-1.254v149.196h-42.941ZM842.322 155.098c23.194 0 41.896 7.104 56.105 21.313 14.418 14.001 21.627 32.18 21.627 54.539 0 22.358-7.209 40.642-21.627 54.851-14.209 14.001-32.911 21.001-56.105 21.001-23.404 0-42.314-7-56.733-21.001-14.209-14.209-21.313-32.493-21.313-54.851 0-22.359 7.104-40.538 21.313-54.539 14.419-14.209 33.329-21.313 56.733-21.313Zm-25.075 105.315c6.268 7.522 14.627 11.284 25.075 11.284 10.448 0 18.702-3.762 24.761-11.284 6.269-7.523 9.403-17.344 9.403-29.463 0-12.12-3.134-21.941-9.403-29.464-6.059-7.522-14.313-11.283-24.761-11.283-10.448 0-18.807 3.761-25.075 11.283-6.269 7.523-9.403 17.344-9.403 29.464 0 12.119 3.134 21.94 9.403 29.463ZM681.288 155.098c19.015 0 34.06 5.015 45.135 15.045 11.284 9.821 16.926 22.149 16.926 36.985l-.941 10.971-37.926 2.194c.418-.836.627-3.03.627-6.582 0-6.687-2.194-12.225-6.582-16.613-4.179-4.597-10.134-6.895-17.866-6.895-9.821 0-17.761 3.656-23.821 10.97-5.851 7.314-8.776 16.926-8.776 28.836 0 12.956 3.238 23.195 9.716 30.717 6.687 7.314 16.194 10.971 28.523 10.971 17.553 0 31.03-5.747 40.434-17.24l21 26.956c-5.433 6.896-13.687 12.851-24.762 17.866-11.075 5.015-24.239 7.523-39.493 7.523-24.448 0-43.777-6.896-57.986-20.687-14-14-21-32.18-21-54.538 0-22.777 7.104-41.165 21.314-55.166 14.209-14.209 32.702-21.313 55.478-21.313Zm1137.252 83.965c8.9 15.585 17.79 28.265 27.05 41.472 4.02 5.73 8.1 11.56 12.29 17.769 5.32 7.889-1.58 17.343-10.37 13.705-34.29-14.186-59.34-40.881-76.5-66.012h-18.4v58.926h-42.94V83.636h42.94v128.823h18.18c11.7 0 20.9-3.553 27.59-10.657 6.68-7.105 10.03-17.239 10.03-30.404 0-3.343-.42-8.149-1.26-14.418h41.06c1.05 4.806 1.57 9.926 1.57 15.359 0 29.103-12.99 54.037-31.24 66.724Z\"/></g><g clip-path=\"url(#c)\"><path d=\"M439.712 225.44c.549 122.217-97.378 221.733-218.708 222.287C99.656 448.28.848 349.652.298 227.435-.252 105.219 97.676 5.702 219.023 5.149c121.33-.536 220.139 98.075 220.689 220.291Z\" fill=\"#FFE866\"/><path d=\"M331.431 147.252c-15.946-4.644-32.459-11.249-49.205-17.905-.965-4.225-4.677-9.489-12.201-15.944-10.936-9.556-31.477-9.304-49.221-5.079-19.592-4.644-38.951-6.304-57.528-1.811C11.367 148.677 97.492 251.496 41.713 354.886c7.94 16.949 95.512 98.383 217.259 89.34 0 0-42.33-102.451 53.2-151.639 77.486-39.884 133.465-113.951 19.243-145.352l.016.017Z\" fill=\"#4BCC00\"/><path d=\"M217.591 107.704c13.601 5.435 62.298 22.74 83.786 29.233-24.307-34.952-56.41-33.688-83.786-29.233Z\" fill=\"#35AF00\"/><path d=\"M231.324 171.903c0 23.639-19.026 42.784-42.48 42.784-23.454 0-42.48-19.145-42.48-42.784 0-23.638 19.026-42.767 42.48-42.767 23.454 0 42.48 19.145 42.48 42.767Z\" fill=\"#fff\"/><path d=\"M384.597 233.478c-34.407 24.427-73.574 42.952-129.087 42.952-25.984 0-31.261-27.813-48.439-14.183-8.872 7.041-40.133 22.784-64.952 21.593-25.035-1.207-65.001-15.859-76.237-69.189-4.445 53.33-6.708 92.627-26.6 137.657 48.83 71.764 133.967 107.466 219.69 91.939-9.205-64.763 46.991-128.185 78.651-160.641 11.985-12.289 34.956-32.357 46.974-50.128Z\" fill=\"#4BCC00\"/><ellipse cx=\"206.751\" cy=\"171.611\" rx=\"24.928\" ry=\"34.899\" fill=\"#0D1217\"/><path d=\"m206.749 171.607-29.913-19.942v39.884l29.913-19.942Z\" fill=\"#fff\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.296 5.147)\" d=\"M0 0h2032.31v444.081H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(604.496 83.005)\" d=\"M0 0h1428.11v288.368H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(.296 5.147)\" d=\"M0 0h439.418v444.081H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cwrqw8\",\"data-framer-name\":\"Copy Text\",layoutDependency:layoutDependency,layoutId:\"xeOVjdMCM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 113, 122))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"CoinGecko Ads\"}),\" offers both self-serve and managed advertising solutions to help crypto projects and enterprises drive targeted traffic and boost exposure across CoinGecko and GeckoTerminal. Businesses and communities can promote their exchanges and tokens to reach engaged crypto users. Since 2014, CoinGecko has been the trusted source of reliable data across 17,000+ cryptocurrencies, empowering users and businesses alike to navigate the crypto market with confidence.\"]})}),className:\"framer-1935j4b\",\"data-framer-name\":\"Top\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"pMp4hHz2J\",style:{\"--extracted-r6o4lv\":\"rgb(113, 113, 122)\",\"--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,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(113, 113, 122))\"},children:\"\\xa9 2025 CoinGecko. All rights reserved.\"})}),className:\"framer-ci11vw\",\"data-framer-name\":\"Top\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bijy4b8la\",style:{\"--extracted-r6o4lv\":\"rgb(113, 113, 122)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:f2tdYVgqT,verticalAlignment:\"top\",withExternalLayout:true})]}),hKmII9GiU&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lfg93o\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"xFGsBGM4g\",children:[visible&&/*#__PURE__*/_jsx(Link,{href:RhfLYxJpS,motionChild:true,nodeId:\"fTG4gbkyt\",openInNewTab:true,scopeId:\"XtZuWs2lh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4tn1n4 framer-27v6kw\",\"data-framer-name\":\"Social / X\",layoutDependency:layoutDependency,layoutId:\"fTG4gbkyt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uj4358-container\",\"data-framer-name\":\"X\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XnarDDbYB-container\",name:\"X\",nodeId:\"XnarDDbYB\",rendersWithMotion:true,scopeId:\"XtZuWs2lh\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.8206 2H13.8563L9.40893 7.08308L14.6409 14H10.5443L7.3357 9.80492L3.66431 14H1.62739L6.38431 8.56308L1.36523 2H5.56585L8.46616 5.83446L11.8206 2ZM11.1062 12.7815H12.2342L4.95293 3.15446H3.74247L11.1062 12.7815Z\" fill=\"#9CA1A4\"/> </svg>',height:\"100%\",id:\"XnarDDbYB\",layoutId:\"XnarDDbYB\",lineCap:\"butt\",lineJoin:\"miter\",name:\"X\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),visible1&&/*#__PURE__*/_jsx(Link,{href:r7xqkNSIF,motionChild:true,nodeId:\"J6NFiFaVi\",openInNewTab:true,scopeId:\"XtZuWs2lh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ps0i43 framer-27v6kw\",\"data-framer-name\":\"Social / YouTube\",layoutDependency:layoutDependency,layoutId:\"J6NFiFaVi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h7fdg2-container\",\"data-framer-name\":\"X\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yPL9E7gLu-container\",name:\"X\",nodeId:\"yPL9E7gLu\",rendersWithMotion:true,scopeId:\"XtZuWs2lh\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.4695 2.67152C14.0722 2.85809 14.5459 3.40584 14.7073 4.10284C14.9988 5.36491 15 7.99967 15 7.99967C15 7.99967 15 10.6344 14.7073 11.8965C14.5459 12.5935 14.0722 13.1413 13.4695 13.3278C12.3782 13.6663 7.99998 13.6663 7.99998 13.6663C7.99998 13.6663 3.62183 13.6663 2.53045 13.3278C1.92773 13.1413 1.45407 12.5935 1.29272 11.8965C1 10.6344 1 7.99967 1 7.99967C1 7.99967 1 5.36491 1.29272 4.10284C1.45407 3.40584 1.92773 2.85809 2.53045 2.67152C3.62183 2.33301 7.99998 2.33301 7.99998 2.33301C7.99998 2.33301 12.3782 2.33301 13.4695 2.67152ZM10.3422 7.99988L6.5319 10.1996V5.80011L10.3422 7.99988Z\" fill=\"#9CA1A4\"/> </svg>',height:\"100%\",id:\"yPL9E7gLu\",layoutId:\"yPL9E7gLu\",lineCap:\"butt\",lineJoin:\"miter\",name:\"X\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),visible2&&/*#__PURE__*/_jsx(Link,{href:DRN67vUU9,motionChild:true,nodeId:\"LwaXr7ghV\",openInNewTab:true,scopeId:\"XtZuWs2lh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1druu07 framer-27v6kw\",\"data-framer-name\":\"Social / Insta\",layoutDependency:layoutDependency,layoutId:\"LwaXr7ghV\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8e3wey-container\",\"data-framer-name\":\"X\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OnUOsVPkA-container\",name:\"X\",nodeId:\"OnUOsVPkA\",rendersWithMotion:true,scopeId:\"XtZuWs2lh\",children:/*#__PURE__*/_jsx(SVG1,{customColor:\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\",customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M7.99935 2.80814C9.69035 2.80814 9.89071 2.81448 10.5586 2.84499C10.9601 2.84984 11.3578 2.92365 11.7343 3.0632C12.0094 3.16474 12.2583 3.32666 12.4626 3.53705C12.673 3.74137 12.8349 3.99025 12.9365 4.26539C13.076 4.64189 13.1498 5.03958 13.1547 5.44108C13.1852 6.10896 13.1915 6.30933 13.1915 8.00033C13.1915 9.69133 13.1852 9.89169 13.1547 10.5596C13.1498 10.9611 13.076 11.3588 12.9365 11.7353C12.8311 12.0085 12.6697 12.2566 12.4626 12.4636C12.2556 12.6707 12.0075 12.8321 11.7343 12.9374C11.3578 13.077 10.9601 13.1508 10.5586 13.1557C9.89071 13.1862 9.69035 13.1925 7.99935 13.1925C6.30835 13.1925 6.10799 13.1862 5.44011 13.1557C5.03841 13.1509 4.64052 13.0771 4.26383 12.9374C3.9889 12.8358 3.74023 12.6739 3.53608 12.4636C3.32568 12.2593 3.16376 12.0104 3.06223 11.7353C2.92268 11.3588 2.84886 10.9611 2.84402 10.5596C2.8135 9.89169 2.80717 9.69133 2.80717 8.00033C2.80717 6.30933 2.8135 6.10896 2.84402 5.44108C2.84886 5.03958 2.92268 4.64189 3.06223 4.26539C3.16376 3.99025 3.32568 3.74137 3.53608 3.53705C3.74039 3.32666 3.98927 3.16474 4.26441 3.0632C4.64091 2.92365 5.0386 2.84984 5.44011 2.84499C6.10799 2.81448 6.30835 2.80814 7.99935 2.80814ZM7.99935 1.66699C6.27956 1.66699 6.06365 1.67448 5.38829 1.70499C4.86292 1.71547 4.34313 1.81495 3.85102 1.9992C3.42822 2.15839 3.04526 2.40793 2.72886 2.73042C2.40666 3.0467 2.15732 3.42945 1.99823 3.85199C1.81417 4.34414 1.71489 4.86393 1.70459 5.38927C1.67292 6.06463 1.66602 6.28054 1.66602 8.00033C1.66602 9.72011 1.6735 9.93602 1.70402 10.6114C1.7145 11.1368 1.81398 11.6565 1.99823 12.1487C2.15741 12.5715 2.40696 12.9544 2.72944 13.2708C3.04572 13.593 3.42848 13.8424 3.85102 14.0014C4.34316 14.1855 4.86295 14.2848 5.38829 14.2951C6.06365 14.3268 6.27956 14.3337 7.99935 14.3337C9.71914 14.3337 9.93505 14.3262 10.6104 14.2957C11.1358 14.2852 11.6556 14.1857 12.1477 14.0014C12.5685 13.8387 12.9508 13.5899 13.2698 13.2708C13.5889 12.9517 13.8377 12.5695 14.0005 12.1487C14.1845 11.6565 14.2838 11.1367 14.2941 10.6114C14.3258 9.93602 14.3327 9.72011 14.3327 8.00033C14.3327 6.28054 14.3252 6.06463 14.2947 5.38927C14.2842 4.8639 14.1847 4.34411 14.0005 3.85199C13.8413 3.42919 13.5917 3.04623 13.2693 2.72984C12.953 2.40764 12.5702 2.15829 12.1477 1.9992C11.6555 1.81515 11.1357 1.71586 10.6104 1.70557C9.93505 1.6739 9.71914 1.66699 7.99935 1.66699Z\" fill=\"#9CA1A4\"/> <path d=\"M6.8283 9.75581C7.1755 9.9878 7.5837 10.1116 8.00128 10.1116C8.56123 10.1116 9.09825 9.88918 9.49419 9.49324C9.89014 9.09729 10.1126 8.56027 10.1126 8.00032C10.1126 7.58275 9.98876 7.17455 9.75676 6.82734C9.52477 6.48014 9.19503 6.20953 8.80924 6.04973C8.42345 5.88993 7.99894 5.84812 7.58938 5.92959C7.17983 6.01105 6.80363 6.21213 6.50836 6.50741C6.21309 6.80268 6.01201 7.17887 5.93054 7.58843C5.84908 7.99798 5.89089 8.42249 6.05069 8.80828C6.21049 9.19407 6.4811 9.52381 6.8283 9.75581Z\" fill=\"#9CA1A4\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.666 3.00033L10.666 2.33366H6.33268L3.99935 2.66699L2.99935 3.33366L2.66602 4.33366L2.33268 6.00033V11.667L2.99935 12.667L3.99935 13.3337L7.33268 13.667H10.9993L12.9993 13.3337L13.666 11.0003V5.66699L13.3327 4.00033L12.666 3.00033ZM10.9604 3.98756C11.0854 3.90405 11.2323 3.85948 11.3827 3.85948C11.5842 3.85948 11.7775 3.93955 11.9201 4.08208C12.0626 4.2246 12.1427 4.41791 12.1427 4.61948C12.1427 4.76979 12.0981 4.91673 12.0146 5.04171C11.9311 5.16669 11.8124 5.2641 11.6735 5.32163C11.5346 5.37915 11.3818 5.3942 11.2344 5.36487C11.087 5.33555 10.9515 5.26317 10.8453 5.15688C10.739 5.05059 10.6666 4.91517 10.6373 4.76775C10.6079 4.62032 10.623 4.46751 10.6805 4.32864C10.738 4.18977 10.8354 4.07107 10.9604 3.98756ZM6.19484 5.29601C6.7297 4.93862 7.35853 4.74787 8.00181 4.74787C8.86441 4.74787 9.69168 5.09054 10.3016 5.70049C10.9116 6.31045 11.2543 7.13772 11.2543 8.00033C11.2543 8.6436 11.0635 9.27243 10.7061 9.80729C10.3487 10.3422 9.84077 10.759 9.24647 11.0052C8.65216 11.2514 7.9982 11.3158 7.36728 11.1903C6.73637 11.0648 6.15684 10.755 5.70197 10.3002C5.24711 9.84529 4.93734 9.26576 4.81185 8.63485C4.68635 8.00393 4.75076 7.34997 4.99693 6.75566C5.2431 6.16136 5.65998 5.65339 6.19484 5.29601Z\" fill=\"#9CA1A4\"/> </svg>',height:\"100%\",id:\"OnUOsVPkA\",layoutId:\"OnUOsVPkA\",lineCap:\"butt\",lineJoin:\"miter\",name:\"X\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jr3q6z\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"VOyKvMZab\",children:visible3&&/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-ai82bs\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"qxXq9YDGo\",children:[visible3&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:odzgB3QEx,motionChild:true,nodeId:\"tNOeuiPxG\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 1\"})})})}),className:\"framer-q5r4f4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tNOeuiPxG\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:TXdF2swXx,verticalAlignment:\"top\",withExternalLayout:true}),visible4&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:wPV7sI7wL,motionChild:true,nodeId:\"zZqjtwOIT\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 2\"})})})}),className:\"framer-bk6a2u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zZqjtwOIT\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:GAyc3ecbd,verticalAlignment:\"top\",withExternalLayout:true}),visible5&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:PWjngdqiP,motionChild:true,nodeId:\"woUlztQIj\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 3\"})})})}),className:\"framer-10729h8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"woUlztQIj\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:Rj9QfDc3i,verticalAlignment:\"top\",withExternalLayout:true}),visible6&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:PGP544yxc,motionChild:true,nodeId:\"YEIjJzWQJ\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 4\"})})})}),className:\"framer-1qqg0gc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YEIjJzWQJ\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:TpvaDzK0C,verticalAlignment:\"top\",withExternalLayout:true}),visible7&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:l4Rxwjiko,motionChild:true,nodeId:\"NkPOKaUxX\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 5\"})})})}),className:\"framer-qmma92\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NkPOKaUxX\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:KTAdZ43_8,verticalAlignment:\"top\",withExternalLayout:true}),visible8&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:jbPuO20If,motionChild:true,nodeId:\"EHpNNN7l3\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 6\"})})})}),className:\"framer-8f0r0x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EHpNNN7l3\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:kPrZ8rd7a,verticalAlignment:\"top\",withExternalLayout:true}),visible9&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:qxV6yVAxc,motionChild:true,nodeId:\"DY3V0NRqj\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 7\"})})})}),className:\"framer-p3g7g0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DY3V0NRqj\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:W5SFNb1iu,verticalAlignment:\"top\",withExternalLayout:true}),visible10&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165)))\"},children:/*#__PURE__*/_jsx(Link,{href:eg29EBNBC,motionChild:true,nodeId:\"VYPt2rgWQ\",openInNewTab:false,scopeId:\"XtZuWs2lh\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1up6it7\",\"data-styles-preset\":\"Z5t45cqwx\",children:\"Link 8\"})})})}),className:\"framer-24dcvk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VYPt2rgWQ\",style:{\"--extracted-r6o4lv\":\"var(--token-84002464-baa0-40a1-a1a1-82899aec539a, rgb(155, 161, 165))\"},text:CALcoRm2S,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OgcPa.framer-27v6kw, .framer-OgcPa .framer-27v6kw { display: block; }\",\".framer-OgcPa.framer-1meddt0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 44px 24px 44px 24px; position: relative; width: 1200px; }\",\".framer-OgcPa .framer-19kzpb8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OgcPa .framer-mvd8os { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OgcPa .framer-189kcu { aspect-ratio: 5.898678414096916 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; text-decoration: none; width: 177px; }\",\".framer-OgcPa .framer-1cwrqw8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OgcPa .framer-1935j4b { flex: none; height: 58px; position: relative; white-space: pre-wrap; width: 1000px; word-break: break-word; word-wrap: break-word; }\",\".framer-OgcPa .framer-ci11vw, .framer-OgcPa .framer-q5r4f4, .framer-OgcPa .framer-bk6a2u, .framer-OgcPa .framer-10729h8, .framer-OgcPa .framer-1qqg0gc, .framer-OgcPa .framer-qmma92, .framer-OgcPa .framer-8f0r0x, .framer-OgcPa .framer-p3g7g0, .framer-OgcPa .framer-24dcvk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OgcPa .framer-lfg93o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-height: 16px; min-width: 16px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OgcPa .framer-4tn1n4, .framer-OgcPa .framer-1ps0i43, .framer-OgcPa .framer-1druu07 { flex: none; height: 16px; overflow: hidden; position: relative; text-decoration: none; width: 16px; }\",\".framer-OgcPa .framer-1uj4358-container, .framer-OgcPa .framer-1h7fdg2-container, .framer-OgcPa .framer-8e3wey-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-OgcPa .framer-jr3q6z { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; min-width: 140px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OgcPa .framer-ai82bs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 15px; min-width: 34px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OgcPa.framer-v-1ivvtds.framer-1meddt0 { width: 380px; }\",\".framer-OgcPa.framer-v-1ivvtds .framer-19kzpb8 { flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-OgcPa.framer-v-1ivvtds .framer-mvd8os { flex: none; width: 100%; }\",\".framer-OgcPa.framer-v-1ivvtds .framer-1935j4b { height: auto; width: 100%; }\",\".framer-OgcPa.framer-v-1ivvtds .framer-jr3q6z { align-content: flex-start; align-items: flex-start; align-self: unset; gap: 24px; height: min-content; justify-content: center; min-height: 87px; }\",...sharedStyle.css,'.framer-OgcPa[data-border=\"true\"]::after, .framer-OgcPa [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 234.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nRwIeC6Tm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"f2tdYVgqT\":\"copyright\",\"hKmII9GiU\":\"socials\",\"RhfLYxJpS\":\"x\",\"r7xqkNSIF\":\"yT\",\"DRN67vUU9\":\"iG\",\"TXdF2swXx\":\"linkName1\",\"odzgB3QEx\":\"link1\",\"GAyc3ecbd\":\"linkName2\",\"wPV7sI7wL\":\"link2\",\"Rj9QfDc3i\":\"linkName3\",\"PWjngdqiP\":\"link3\",\"TpvaDzK0C\":\"linkName4\",\"PGP544yxc\":\"link4\",\"KTAdZ43_8\":\"linkName5\",\"l4Rxwjiko\":\"link5\",\"kPrZ8rd7a\":\"linkName6\",\"jbPuO20If\":\"link6\",\"W5SFNb1iu\":\"linkName7\",\"qxV6yVAxc\":\"link7\",\"CALcoRm2S\":\"linkName8\",\"eg29EBNBC\":\"link8\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXtZuWs2lh=withCSS(Component,css,\"framer-OgcPa\");export default FramerXtZuWs2lh;FramerXtZuWs2lh.displayName=\"Footer 2\";FramerXtZuWs2lh.defaultProps={height:234.5,width:1200};addPropertyControls(FramerXtZuWs2lh,{variant:{options:[\"s5AtOf04e\",\"nRwIeC6Tm\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},f2tdYVgqT:{defaultValue:\"\\xa9 2025 CoinGecko. All rights reserved.\",displayTextArea:false,title:\"Copyright\",type:ControlType.String},hKmII9GiU:{defaultValue:false,title:\"Socials\",type:ControlType.Boolean},RhfLYxJpS:{title:\"X\",type:ControlType.Link},r7xqkNSIF:{title:\"YT\",type:ControlType.Link},DRN67vUU9:{title:\"IG\",type:ControlType.Link},TXdF2swXx:{defaultValue:\"Link 1\",displayTextArea:false,title:\"Link Name 1\",type:ControlType.String},odzgB3QEx:{title:\"Link 1\",type:ControlType.Link},GAyc3ecbd:{defaultValue:\"Link 2\",displayTextArea:false,title:\"Link Name 2\",type:ControlType.String},wPV7sI7wL:{title:\"Link 2\",type:ControlType.Link},Rj9QfDc3i:{defaultValue:\"Link 3\",displayTextArea:false,title:\"Link Name 3\",type:ControlType.String},PWjngdqiP:{title:\"Link 3\",type:ControlType.Link},TpvaDzK0C:{defaultValue:\"Link 4\",displayTextArea:false,title:\"Link Name 4\",type:ControlType.String},PGP544yxc:{title:\"Link 4\",type:ControlType.Link},KTAdZ43_8:{defaultValue:\"Link 5\",displayTextArea:false,title:\"Link Name 5\",type:ControlType.String},l4Rxwjiko:{title:\"Link 5\",type:ControlType.Link},kPrZ8rd7a:{defaultValue:\"Link 6\",displayTextArea:false,title:\"Link Name 6\",type:ControlType.String},jbPuO20If:{title:\"Link 6\",type:ControlType.Link},W5SFNb1iu:{defaultValue:\"Link 7\",displayTextArea:false,title:\"Link Name 7\",type:ControlType.String},qxV6yVAxc:{title:\"Link 7\",type:ControlType.Link},CALcoRm2S:{defaultValue:\"Link 8\",displayTextArea:false,title:\"Link Name 8\",type:ControlType.String},eg29EBNBC:{title:\"Link 8\",type:ControlType.Link}});addFonts(FramerXtZuWs2lh,[{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/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\"},{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\"}]},...SVG1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXtZuWs2lh\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nRwIeC6Tm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"234.5\",\"framerVariables\":\"{\\\"f2tdYVgqT\\\":\\\"copyright\\\",\\\"hKmII9GiU\\\":\\\"socials\\\",\\\"RhfLYxJpS\\\":\\\"x\\\",\\\"r7xqkNSIF\\\":\\\"yT\\\",\\\"DRN67vUU9\\\":\\\"iG\\\",\\\"TXdF2swXx\\\":\\\"linkName1\\\",\\\"odzgB3QEx\\\":\\\"link1\\\",\\\"GAyc3ecbd\\\":\\\"linkName2\\\",\\\"wPV7sI7wL\\\":\\\"link2\\\",\\\"Rj9QfDc3i\\\":\\\"linkName3\\\",\\\"PWjngdqiP\\\":\\\"link3\\\",\\\"TpvaDzK0C\\\":\\\"linkName4\\\",\\\"PGP544yxc\\\":\\\"link4\\\",\\\"KTAdZ43_8\\\":\\\"linkName5\\\",\\\"l4Rxwjiko\\\":\\\"link5\\\",\\\"kPrZ8rd7a\\\":\\\"linkName6\\\",\\\"jbPuO20If\\\":\\\"link6\\\",\\\"W5SFNb1iu\\\":\\\"linkName7\\\",\\\"qxV6yVAxc\\\":\\\"link7\\\",\\\"CALcoRm2S\\\":\\\"linkName8\\\",\\\"eg29EBNBC\\\":\\\"link8\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XtZuWs2lh.map"],
  "mappings": "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",
  "names": ["uuidv4", "c", "r", "RollingText", "text", "transition", "stagger", "reverse", "font", "color", "textTransform", "tag", "padding", "isHovered", "setIsHovered", "ye", "innerClassName", "Tag", "fontSizeStr", "letterSpacingStr", "rawLineHeight", "fontFamily", "fontSizeNum", "absoluteLineHeightPx", "emValue", "pxValue", "absoluteLineHeightStr", "yOffset", "styles", "wrapperStyle", "spanVariants", "baseDuration", "staggerFactor", "u", "p", "str", "index", "charIndex", "delay", "motionSpanStyle", "motion", "defaultFont", "defaultTransition", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "RollingTextFonts", "getFonts", "RollingText", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Variants", "x", "humanReadableVariantMap", "getProps", "buttonText", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "mCngOmD07", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterupml6a", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "ref1", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "l", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "AnimatePresence", "Floating", "RichText2", "Link", "css", "Framerpa0kJDqWl", "withCSS", "pa0kJDqWl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "g", "u", "v", "e", "t", "w", "b", "a", "re", "MotionConfigContext", "i", "o", "se", "p", "y", "j", "X", "L", "Y", "useLocaleInfo", "d", "c", "x", "k", "I", "C", "S", "W", "z", "M", "useVariantState", "g", "H", "N", "pe", "D", "ae", "LayoutGroup", "motion", "cx", "RichText2", "SVG", "withCSS", "dQcuWx460_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerpodJ3WXxF", "withCSS", "podJ3WXxF_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "SVG", "css", "FramerVv7lXSsrv", "withCSS", "Vv7lXSsrv_default", "addPropertyControls", "ControlType", "addFonts", "CaretFonts", "getFonts", "Vv7lXSsrv_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", "hover", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "PWSlWeqS6", "DApvjrdfG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter170i0h9", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerqzccd94Is", "withCSS", "qzccd94Is_default", "addPropertyControls", "ControlType", "addFonts", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "RichText2", "Link", "css", "FramerroYUFn1sP", "withCSS", "roYUFn1sP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "RichText2", "SVG", "Link", "css", "FramerZrgcxy5uo", "withCSS", "Zrgcxy5uo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LinksProduct2Fonts", "getFonts", "roYUFn1sP_default", "LinksResources2Fonts", "Zrgcxy5uo_default", "Trigger2Fonts", "qzccd94Is_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "MotionDivWithFX", "motion", "LinksCommunityFonts", "dQcuWx460_default", "SoftButtonFonts", "podJ3WXxF_default", "PrimaryButtonFonts", "pa0kJDqWl_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transformTemplate1", "_", "t", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "mutedForeground", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bCiwqU5_q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1kfd4pj", "args", "onTapd8s7id", "onMouseEnterzj8k2t", "PWSlWeqS6txyyif", "overlay", "loadMore", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "ref1", "ref2", "ref3", "ref4", "LayoutGroup", "u", "Link", "SVG", "RichText2", "ComponentViewportProvider", "l", "AnimatePresence", "Floating", "overlay1", "css", "FramerRNZrO1Xd4", "withCSS", "RNZrO1Xd4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "s", "i", "l", "ye", "ue", "e", "r", "t", "o", "n", "p", "addPropertyControls", "ControlType", "SVG_default", "SVG1Fonts", "getFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "copyright", "height", "id", "iG", "link1", "link2", "link3", "link4", "link5", "link6", "link7", "link8", "linkName1", "linkName2", "linkName3", "linkName4", "linkName5", "linkName6", "linkName7", "linkName8", "socials", "width", "yT", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "f2tdYVgqT", "hKmII9GiU", "RhfLYxJpS", "r7xqkNSIF", "DRN67vUU9", "TXdF2swXx", "odzgB3QEx", "GAyc3ecbd", "wPV7sI7wL", "Rj9QfDc3i", "PWjngdqiP", "TpvaDzK0C", "PGP544yxc", "KTAdZ43_8", "l4Rxwjiko", "kPrZ8rd7a", "jbPuO20If", "W5SFNb1iu", "qxV6yVAxc", "CALcoRm2S", "eg29EBNBC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "LayoutGroup", "u", "Link", "SVG", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerXtZuWs2lh", "withCSS", "XtZuWs2lh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
