{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/4MbiAh3msVjHKrTSww4Q/QOSTN7XVPl7DkTMOzIkb/AIKt3Sd8g.js", "ssg:https://framerusercontent.com/modules/dB41KwtxW9vAg1aHDaGG/QszJ0dxlR3shiUtJXaEw/PnYErlF1g.js", "ssg:https://framerusercontent.com/modules/lPSYHc5PSAzk3FHvJI0O/W7YeeqEsXIKAzQkN5Edo/rM7AKMQcK.js", "ssg:https://framerusercontent.com/modules/3jZUxgOuLH7TTmvDuQsZ/pgLVIv6BCq00UNhq4deS/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tDEAJGaUTNNWQT8STQeI/F0hyAmnGbarkDpGRuIHQ/T38c9_U2F.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8F9S1QyXpNcF06lEfKw7/KAdfX5XTzOAVyAxIY0hq/Wl7WTdw7A.js\";const NoiseFonts=getFonts(Noise);const cycleOrder=[\"bKXUQx71H\",\"M2Deyzo6y\"];const serializationHash=\"framer-Sts2U\";const variantClassNames={bKXUQx71H:\"framer-v-b5xecu\",M2Deyzo6y:\"framer-v-1ihhjvt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"bKXUQx71H\",\"Variant 2\":\"M2Deyzo6y\"};const getProps=({dESCRIPTION,fEATUREDOWN,fEATURETOP,height,id,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,E9PT3qNtY:(_ref=dESCRIPTION!==null&&dESCRIPTION!==void 0?dESCRIPTION:props.E9PT3qNtY)!==null&&_ref!==void 0?_ref:\"coinfluence allows users to link their cryptocurrency wallet to their x profile. This integration displays a unique badge on their profile indicating their involvement in the crypto space.\",k0UlGzg0H:(_ref1=fEATUREDOWN!==null&&fEATUREDOWN!==void 0?fEATUREDOWN:props.k0UlGzg0H)!==null&&_ref1!==void 0?_ref1:\"CONNECTION\",TAyp8PDdf:(_ref2=fEATURETOP!==null&&fEATURETOP!==void 0?fEATURETOP:props.TAyp8PDdf)!==null&&_ref2!==void 0?_ref2:\"WALLET-X\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"bKXUQx71H\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,E9PT3qNtY,TAyp8PDdf,k0UlGzg0H,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bKXUQx71H\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-b5xecu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bKXUQx71H\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",borderBottomLeftRadius:150,borderTopLeftRadius:150,...style},variants:{M2Deyzo6y:{borderBottomLeftRadius:50,borderTopLeftRadius:50}},...addPropertyOverrides({M2Deyzo6y:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e63odk-container\",layoutDependency:layoutDependency,layoutId:\"du6Yjuzt1-container\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:0,height:\"100%\",id:\"du6Yjuzt1\",layoutId:\"du6Yjuzt1\",opacity:.05,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mgn60\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"vijp80Erv\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{M2Deyzo6y:{\"--border-bottom-width\":\"1px\",\"--border-right-width\":\"0px\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",style:{\"--framer-text-alignment\":\"right\"},children:\"WALLET-X\"})}),className:\"framer-1s4ckkj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XE17yNQW5\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TAyp8PDdf,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({M2Deyzo6y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",style:{\"--framer-text-alignment\":\"left\"},children:\"WALLET-X\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",style:{\"--framer-text-alignment\":\"right\"},children:\"CONNECTION\"})}),className:\"framer-q7pllt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T4GY9H1Mx\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:k0UlGzg0H,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({M2Deyzo6y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",style:{\"--framer-text-alignment\":\"left\"},children:\"CONNECTION\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",children:\"coinfluence allows users to link their cryptocurrency wallet to their x profile. This integration displays a unique badge on their profile indicating their involvement in the crypto space.\"})}),className:\"framer-egvlih\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"koQQkZtaf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:E9PT3qNtY,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Sts2U.framer-mlg0ca, .framer-Sts2U .framer-mlg0ca { display: block; }\",\".framer-Sts2U.framer-b5xecu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Sts2U .framer-e63odk-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-Sts2U .framer-10mgn60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 560px; overflow: visible; padding: 0px 35px 0px 0px; position: relative; width: 50%; }\",\".framer-Sts2U .framer-1s4ckkj, .framer-Sts2U .framer-q7pllt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Sts2U .framer-egvlih { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 40%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Sts2U.framer-b5xecu, .framer-Sts2U .framer-10mgn60 { gap: 0px; } .framer-Sts2U.framer-b5xecu > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-Sts2U.framer-b5xecu > :first-child { margin-left: 0px; } .framer-Sts2U.framer-b5xecu > :last-child { margin-right: 0px; } .framer-Sts2U .framer-10mgn60 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Sts2U .framer-10mgn60 > :first-child { margin-top: 0px; } .framer-Sts2U .framer-10mgn60 > :last-child { margin-bottom: 0px; } }\",\".framer-Sts2U.framer-v-1ihhjvt.framer-b5xecu { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-end; padding: 40px 0px 48px 50px; }\",\".framer-Sts2U.framer-v-1ihhjvt .framer-10mgn60 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; max-width: unset; padding: 0px 0px 25px 0px; width: 100%; }\",\".framer-Sts2U.framer-v-1ihhjvt .framer-egvlih { max-width: unset; width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Sts2U.framer-v-1ihhjvt.framer-b5xecu { gap: 0px; } .framer-Sts2U.framer-v-1ihhjvt.framer-b5xecu > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Sts2U.framer-v-1ihhjvt.framer-b5xecu > :first-child { margin-top: 0px; } .framer-Sts2U.framer-v-1ihhjvt.framer-b5xecu > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Sts2U[data-border=\"true\"]::after, .framer-Sts2U [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 222\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M2Deyzo6y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"E9PT3qNtY\":\"dESCRIPTION\",\"TAyp8PDdf\":\"fEATURETOP\",\"k0UlGzg0H\":\"fEATUREDOWN\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAIKt3Sd8g=withCSS(Component,css,\"framer-Sts2U\");export default FramerAIKt3Sd8g;FramerAIKt3Sd8g.displayName=\"core features\";FramerAIKt3Sd8g.defaultProps={height:222,width:1e3};addPropertyControls(FramerAIKt3Sd8g,{variant:{options:[\"bKXUQx71H\",\"M2Deyzo6y\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},E9PT3qNtY:{defaultValue:\"coinfluence allows users to link their cryptocurrency wallet to their x profile. This integration displays a unique badge on their profile indicating their involvement in the crypto space.\",displayTextArea:false,title:\"DESCRIPTION\",type:ControlType.String},TAyp8PDdf:{defaultValue:\"WALLET-X\",displayTextArea:false,title:\"FEATURE TOP\",type:ControlType.String},k0UlGzg0H:{defaultValue:\"CONNECTION\",displayTextArea:false,title:\"FEATURE DOWN\",type:ControlType.String}});addFonts(FramerAIKt3Sd8g,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NoiseFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAIKt3Sd8g\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"222\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M2Deyzo6y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"E9PT3qNtY\\\":\\\"dESCRIPTION\\\",\\\"TAyp8PDdf\\\":\\\"fEATURETOP\\\",\\\"k0UlGzg0H\\\":\\\"fEATUREDOWN\\\"}\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AIKt3Sd8g.map", "// Generated by Framer (9f68555)\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{onAppear}from\"https://framerusercontent.com/modules/dzcnzXlUk1mdqb3uIkoN/xh5kfanNRof3GJZNlDBB/TextScramble.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/aqT3rw7DKZWiXaWvfq7z/1T4RDcfO58MfAi56h8T9/FiKw9IAQB.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tDEAJGaUTNNWQT8STQeI/F0hyAmnGbarkDpGRuIHQ/T38c9_U2F.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/8F9S1QyXpNcF06lEfKw7/KAdfX5XTzOAVyAxIY0hq/Wl7WTdw7A.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/hHTeh4XybVs6f3p5hhLp/6n7TFevSfWRbHAYxLKFc/z2m8b2ydh.js\";const RichTextOnAppear=onAppear(RichText);const enabledGestures={gCu8_fWoE:{hover:true},uXmnL3nCQ:{hover:true}};const cycleOrder=[\"uXmnL3nCQ\",\"gCu8_fWoE\"];const serializationHash=\"framer-S8O9Q\";const variantClassNames={gCu8_fWoE:\"framer-v-1qfn3bh\",uXmnL3nCQ:\"framer-v-rpwxcw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={BASIC:\"uXmnL3nCQ\",PREMIUM:\"gCu8_fWoE\"};const getProps=({bASICBUTTONHOVER,bUTTONFILL,bUTTONHOVERCOLOR,bUTTONTEXT,fEATURE1,fEATURE1COLOR,fEATURE2,fEATURE2COLOR,fEATURE3,fEATURE3COLOR,fEATURE4,fEATURE4COLOR,fILL,height,id,iNCLUDES,iNCLUDESCOLOR,lINK,pREMIUMBUTTONTEXT,pRICE,pRICECOLOR,tEAR,tEARCOLOR,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_ref12,_humanReadableVariantMap_props_variant,_ref13,_ref14,_ref15,_ref16,_ref17,_ref18,_ref19,_ref20;return{...props,D7664j0B4:(_ref=fEATURE4COLOR!==null&&fEATURE4COLOR!==void 0?fEATURE4COLOR:props.D7664j0B4)!==null&&_ref!==void 0?_ref:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",DQnxrGNzJ:(_ref1=fEATURE2!==null&&fEATURE2!==void 0?fEATURE2:props.DQnxrGNzJ)!==null&&_ref1!==void 0?_ref1:\"EARNING CRYPTO BADGES\",E5xBfXHqa:(_ref2=tEAR!==null&&tEAR!==void 0?tEAR:props.E5xBfXHqa)!==null&&_ref2!==void 0?_ref2:\"BASIC TEAR\",fJb0ORdyS:(_ref3=fEATURE1COLOR!==null&&fEATURE1COLOR!==void 0?fEATURE1COLOR:props.fJb0ORdyS)!==null&&_ref3!==void 0?_ref3:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",gYP9w41pN:(_ref4=bASICBUTTONHOVER!==null&&bASICBUTTONHOVER!==void 0?bASICBUTTONHOVER:props.gYP9w41pN)!==null&&_ref4!==void 0?_ref4:\"GO!\",i3S1qkIgS:(_ref5=tEARCOLOR!==null&&tEARCOLOR!==void 0?tEARCOLOR:props.i3S1qkIgS)!==null&&_ref5!==void 0?_ref5:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",JDmuNufp0:(_ref6=iNCLUDESCOLOR!==null&&iNCLUDESCOLOR!==void 0?iNCLUDESCOLOR:props.JDmuNufp0)!==null&&_ref6!==void 0?_ref6:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",JxShxG3va:(_ref7=fEATURE1!==null&&fEATURE1!==void 0?fEATURE1:props.JxShxG3va)!==null&&_ref7!==void 0?_ref7:\"WALLET-X INTEGRATION\",kORsX5zox:(_ref8=fEATURE4!==null&&fEATURE4!==void 0?fEATURE4:props.kORsX5zox)!==null&&_ref8!==void 0?_ref8:\"PRIORITY ACCESS TO EXCLUSIVE NFT DROPS\",ml0ch6pdh:(_ref9=bUTTONHOVERCOLOR!==null&&bUTTONHOVERCOLOR!==void 0?bUTTONHOVERCOLOR:props.ml0ch6pdh)!==null&&_ref9!==void 0?_ref9:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",oGqgVcTQD:lINK!==null&&lINK!==void 0?lINK:props.oGqgVcTQD,rGJIMdh3a:(_ref10=pRICE!==null&&pRICE!==void 0?pRICE:props.rGJIMdh3a)!==null&&_ref10!==void 0?_ref10:\"FREE\",t0hU2Gje2:(_ref11=fEATURE3COLOR!==null&&fEATURE3COLOR!==void 0?fEATURE3COLOR:props.t0hU2Gje2)!==null&&_ref11!==void 0?_ref11:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",UV0fQZ5ww:(_ref12=pRICECOLOR!==null&&pRICECOLOR!==void 0?pRICECOLOR:props.UV0fQZ5ww)!==null&&_ref12!==void 0?_ref12:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",variant:(_ref13=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref13!==void 0?_ref13:\"uXmnL3nCQ\",yAeyO4TQl:(_ref14=iNCLUDES!==null&&iNCLUDES!==void 0?iNCLUDES:props.yAeyO4TQl)!==null&&_ref14!==void 0?_ref14:\"INCLUDES:\",Yhlyl7Ony:(_ref15=pREMIUMBUTTONTEXT!==null&&pREMIUMBUTTONTEXT!==void 0?pREMIUMBUTTONTEXT:props.Yhlyl7Ony)!==null&&_ref15!==void 0?_ref15:\"GO PRO!\",yRpX3yLH_:(_ref16=fEATURE2COLOR!==null&&fEATURE2COLOR!==void 0?fEATURE2COLOR:props.yRpX3yLH_)!==null&&_ref16!==void 0?_ref16:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",ySAvNdI1b:(_ref17=fEATURE3!==null&&fEATURE3!==void 0?fEATURE3:props.ySAvNdI1b)!==null&&_ref17!==void 0?_ref17:\"SHOWCASING LIMITED NUMBER OF NFTS ON YOUR X PROFILE\",yVVeJFyyn:(_ref18=bUTTONTEXT!==null&&bUTTONTEXT!==void 0?bUTTONTEXT:props.yVVeJFyyn)!==null&&_ref18!==void 0?_ref18:\"START WITH BASIC\",zAwrsAMF4:(_ref19=fILL!==null&&fILL!==void 0?fILL:props.zAwrsAMF4)!==null&&_ref19!==void 0?_ref19:\"var(--token-bfee8293-f0d9-43ae-84b5-75f3f6aadbbc, rgb(18, 18, 18))\",ZCsbnmGmY:(_ref20=bUTTONFILL!==null&&bUTTONFILL!==void 0?bUTTONFILL:props.ZCsbnmGmY)!==null&&_ref20!==void 0?_ref20:\"var(--token-bfee8293-f0d9-43ae-84b5-75f3f6aadbbc, rgb(18, 18, 18))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zAwrsAMF4,E5xBfXHqa,i3S1qkIgS,yAeyO4TQl,JDmuNufp0,rGJIMdh3a,UV0fQZ5ww,JxShxG3va,fJb0ORdyS,DQnxrGNzJ,yRpX3yLH_,ySAvNdI1b,t0hU2Gje2,kORsX5zox,D7664j0B4,yVVeJFyyn,gYP9w41pN,Yhlyl7Ony,ZCsbnmGmY,ml0ch6pdh,oGqgVcTQD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uXmnL3nCQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"uXmnL3nCQ-hover\",\"gCu8_fWoE-hover\"].includes(gestureVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"uXmnL3nCQ-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"gCu8_fWoE-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:oGqgVcTQD,nodeId:\"uXmnL3nCQ\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-rpwxcw\",className,classNames)} framer-b59v2w`,\"data-border\":true,\"data-framer-name\":\"BASIC\",layoutDependency:layoutDependency,layoutId:\"uXmnL3nCQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderTopLeftRadius:50,...style},variants:{\"gCu8_fWoE-hover\":{borderTopLeftRadius:0},gCu8_fWoE:{borderTopLeftRadius:0}},...addPropertyOverrides({\"gCu8_fWoE-hover\":{\"data-framer-name\":undefined},\"uXmnL3nCQ-hover\":{\"data-framer-name\":undefined},gCu8_fWoE:{\"data-framer-name\":\"PREMIUM\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k5ue5p\",layoutDependency:layoutDependency,layoutId:\"tINTRVyv6\",style:{backgroundColor:zAwrsAMF4},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",children:\"BASIC TEAR\"})}),className:\"framer-1cjl5ce\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aFMOOR6Hj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-i3S1qkIgS-PnYErlF1g\":i3S1qkIgS},text:E5xBfXHqa,variants:{gCu8_fWoE:{\"--extracted-1eung3n\":\"var(--variable-reference-i3S1qkIgS-PnYErlF1g)\",\"--variable-reference-i3S1qkIgS-PnYErlF1g\":i3S1qkIgS}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gCu8_fWoE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--variable-reference-i3S1qkIgS-PnYErlF1g))\"},children:\"BASIC TEAR\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-JDmuNufp0-PnYErlF1g))\"},children:\"INCLUDES:\"})}),className:\"framer-j7pt64\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FFwr7aosC\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-JDmuNufp0-PnYErlF1g)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-JDmuNufp0-PnYErlF1g\":JDmuNufp0},text:yAeyO4TQl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sof4cf\",layoutDependency:layoutDependency,layoutId:\"sEBqtHZgt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--variable-reference-fJb0ORdyS-PnYErlF1g))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--variable-reference-fJb0ORdyS-PnYErlF1g))\"},children:\"WALLET-X INTEGRATION\"})})})}),className:\"framer-1i9zsid\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qXG5whmzD\",style:{\"--extracted-164u4qx\":\"var(--variable-reference-fJb0ORdyS-PnYErlF1g)\",\"--extracted-1l7ec2w\":\"var(--variable-reference-fJb0ORdyS-PnYErlF1g)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-fJb0ORdyS-PnYErlF1g\":fJb0ORdyS},text:JxShxG3va,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--variable-reference-yRpX3yLH_-PnYErlF1g))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--variable-reference-yRpX3yLH_-PnYErlF1g))\"},children:\"EARNING CRYPTO BADGES\"})})})}),className:\"framer-1ofsw3a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oTiYjJEiY\",style:{\"--extracted-164u4qx\":\"var(--variable-reference-yRpX3yLH_-PnYErlF1g)\",\"--extracted-1l7ec2w\":\"var(--variable-reference-yRpX3yLH_-PnYErlF1g)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-yRpX3yLH_-PnYErlF1g\":yRpX3yLH_},text:DQnxrGNzJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--variable-reference-t0hU2Gje2-PnYErlF1g))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--variable-reference-t0hU2Gje2-PnYErlF1g))\"},children:\"SHOWCASING LIMITED NUMBER OF NFTS ON YOUR X PROFILE\"})})})}),className:\"framer-v06lyg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GNYW3eOAW\",style:{\"--extracted-164u4qx\":\"var(--variable-reference-t0hU2Gje2-PnYErlF1g)\",\"--extracted-1l7ec2w\":\"var(--variable-reference-t0hU2Gje2-PnYErlF1g)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-t0hU2Gje2-PnYErlF1g\":t0hU2Gje2},text:ySAvNdI1b,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--variable-reference-D7664j0B4-PnYErlF1g))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--variable-reference-D7664j0B4-PnYErlF1g))\"},children:\"PRIORITY ACCESS TO EXCLUSIVE NFT DROPS\"})})})}),className:\"framer-q06uud\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tEIuD6i38\",style:{\"--extracted-164u4qx\":\"var(--variable-reference-D7664j0B4-PnYErlF1g)\",\"--extracted-1l7ec2w\":\"var(--variable-reference-D7664j0B4-PnYErlF1g)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-D7664j0B4-PnYErlF1g\":D7664j0B4},text:kORsX5zox,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--variable-reference-D7664j0B4-PnYErlF1g))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--variable-reference-D7664j0B4-PnYErlF1g))\"},children:\"Basic token statistics: \u2713\"})})})}),className:\"framer-1tqn6be\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qZU0aSUQs\",style:{\"--extracted-164u4qx\":\"var(--variable-reference-D7664j0B4-PnYErlF1g)\",\"--extracted-1l7ec2w\":\"var(--variable-reference-D7664j0B4-PnYErlF1g)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-D7664j0B4-PnYErlF1g\":D7664j0B4},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--variable-reference-t0hU2Gje2-PnYErlF1g))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-164u4qx, var(--variable-reference-t0hU2Gje2-PnYErlF1g))\"},children:\"Basic KOL data: \u2713\"})})})}),className:\"framer-dree15\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wLz6vjKOB\",style:{\"--extracted-164u4qx\":\"var(--variable-reference-t0hU2Gje2-PnYErlF1g)\",\"--extracted-1l7ec2w\":\"var(--variable-reference-t0hU2Gje2-PnYErlF1g)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-t0hU2Gje2-PnYErlF1g\":t0hU2Gje2},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h4,{children:\"FREE\"})})})}),className:\"framer-s7c3fq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DLx2lbZw4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-UV0fQZ5ww-PnYErlF1g\":UV0fQZ5ww},text:rGJIMdh3a,variants:{gCu8_fWoE:{\"--extracted-108tuke\":\"var(--variable-reference-UV0fQZ5ww-PnYErlF1g)\",\"--extracted-1l7ec2w\":\"var(--variable-reference-UV0fQZ5ww-PnYErlF1g)\",\"--variable-reference-UV0fQZ5ww-PnYErlF1g\":UV0fQZ5ww}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gCu8_fWoE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-m0ekl2\",\"data-styles-preset\":\"Wl7WTdw7A\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--variable-reference-UV0fQZ5ww-PnYErlF1g))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--framer-text-color\":\"var(--extracted-108tuke, var(--variable-reference-UV0fQZ5ww-PnYErlF1g))\"},children:\"FREE\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8pg19p\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"P7r2P0InZ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ZCsbnmGmY},variants:{\"uXmnL3nCQ-hover\":{backgroundColor:ml0ch6pdh}},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-g4od3z\",\"data-styles-preset\":\"FiKw9IAQB\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217)))\"},children:\"START WITH BASIC\"})}),className:\"framer-1ylgj7g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HeYYWY7PX\",style:{\"--extracted-1lwpl3i\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yVVeJFyyn,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextOnAppear,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-s0f0nl\",\"data-styles-preset\":\"z2m8b2ydh\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217)))\"},children:\"GO!\"})}),className:\"framer-9z7ajw\",\"data-framer-name\":\"GO\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iyBQB_lmc\",style:{\"--extracted-a0htzi\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gYP9w41pN,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextOnAppear,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-s0f0nl\",\"data-styles-preset\":\"z2m8b2ydh\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217)))\"},children:\"GO PRO!\"})}),className:\"framer-b2izdc\",\"data-framer-name\":\"GO PRO\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nESuYcXjb\",style:{\"--extracted-a0htzi\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Yhlyl7Ony,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-S8O9Q.framer-b59v2w, .framer-S8O9Q .framer-b59v2w { display: block; }\",\".framer-S8O9Q.framer-rpwxcw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-S8O9Q .framer-k5ue5p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 50px 40px 50px; position: relative; width: 100%; }\",\".framer-S8O9Q .framer-1cjl5ce, .framer-S8O9Q .framer-s7c3fq, .framer-S8O9Q .framer-1ylgj7g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-S8O9Q .framer-j7pt64, .framer-S8O9Q .framer-1i9zsid, .framer-S8O9Q .framer-1ofsw3a, .framer-S8O9Q .framer-v06lyg, .framer-S8O9Q .framer-q06uud, .framer-S8O9Q .framer-1tqn6be, .framer-S8O9Q .framer-dree15 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-S8O9Q .framer-1sof4cf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 90%; }\",\".framer-S8O9Q .framer-8pg19p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 50px; position: relative; width: 100%; }\",\".framer-S8O9Q .framer-9z7ajw, .framer-S8O9Q .framer-b2izdc { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S8O9Q.framer-rpwxcw, .framer-S8O9Q .framer-k5ue5p, .framer-S8O9Q .framer-1sof4cf, .framer-S8O9Q .framer-8pg19p { gap: 0px; } .framer-S8O9Q.framer-rpwxcw > *, .framer-S8O9Q .framer-k5ue5p > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-S8O9Q.framer-rpwxcw > :first-child, .framer-S8O9Q .framer-k5ue5p > :first-child, .framer-S8O9Q .framer-1sof4cf > :first-child { margin-top: 0px; } .framer-S8O9Q.framer-rpwxcw > :last-child, .framer-S8O9Q .framer-k5ue5p > :last-child, .framer-S8O9Q .framer-1sof4cf > :last-child { margin-bottom: 0px; } .framer-S8O9Q .framer-1sof4cf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-S8O9Q .framer-8pg19p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-S8O9Q .framer-8pg19p > :first-child { margin-left: 0px; } .framer-S8O9Q .framer-8pg19p > :last-child { margin-right: 0px; } }\",\".framer-S8O9Q.framer-v-1qfn3bh.framer-rpwxcw { width: 700px; }\",\".framer-S8O9Q.framer-v-1qfn3bh .framer-1sof4cf { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-S8O9Q[data-border=\"true\"]::after, .framer-S8O9Q [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 645\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gCu8_fWoE\":{\"layout\":[\"fixed\",\"auto\"]},\"msU0usTd7\":{\"layout\":[\"fixed\",\"auto\"]},\"BALtatY7B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zAwrsAMF4\":\"fILL\",\"E5xBfXHqa\":\"tEAR\",\"i3S1qkIgS\":\"tEARCOLOR\",\"yAeyO4TQl\":\"iNCLUDES\",\"JDmuNufp0\":\"iNCLUDESCOLOR\",\"rGJIMdh3a\":\"pRICE\",\"UV0fQZ5ww\":\"pRICECOLOR\",\"JxShxG3va\":\"fEATURE1\",\"fJb0ORdyS\":\"fEATURE1COLOR\",\"DQnxrGNzJ\":\"fEATURE2\",\"yRpX3yLH_\":\"fEATURE2COLOR\",\"ySAvNdI1b\":\"fEATURE3\",\"t0hU2Gje2\":\"fEATURE3COLOR\",\"kORsX5zox\":\"fEATURE4\",\"D7664j0B4\":\"fEATURE4COLOR\",\"yVVeJFyyn\":\"bUTTONTEXT\",\"gYP9w41pN\":\"bASICBUTTONHOVER\",\"Yhlyl7Ony\":\"pREMIUMBUTTONTEXT\",\"ZCsbnmGmY\":\"bUTTONFILL\",\"ml0ch6pdh\":\"bUTTONHOVERCOLOR\",\"oGqgVcTQD\":\"lINK\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPnYErlF1g=withCSS(Component,css,\"framer-S8O9Q\");export default FramerPnYErlF1g;FramerPnYErlF1g.displayName=\"tier\";FramerPnYErlF1g.defaultProps={height:645,width:500};addPropertyControls(FramerPnYErlF1g,{variant:{options:[\"uXmnL3nCQ\",\"gCu8_fWoE\"],optionTitles:[\"BASIC\",\"PREMIUM\"],title:\"Variant\",type:ControlType.Enum},zAwrsAMF4:{defaultValue:'var(--token-bfee8293-f0d9-43ae-84b5-75f3f6aadbbc, rgb(18, 18, 18)) /* {\"name\":\"black background\"} */',title:\"FILL\",type:ControlType.Color},E5xBfXHqa:{defaultValue:\"BASIC TEAR\",displayTextArea:false,title:\"TEAR\",type:ControlType.String},i3S1qkIgS:{defaultValue:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",title:\"TEAR COLOR\",type:ControlType.Color},yAeyO4TQl:{defaultValue:\"INCLUDES:\",displayTextArea:false,title:\"INCLUDES\",type:ControlType.String},JDmuNufp0:{defaultValue:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",title:\"INCLUDES COLOR\",type:ControlType.Color},rGJIMdh3a:{defaultValue:\"FREE\",displayTextArea:false,title:\"PRICE\",type:ControlType.String},UV0fQZ5ww:{defaultValue:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",title:\"PRICE COLOR\",type:ControlType.Color},JxShxG3va:{defaultValue:\"WALLET-X INTEGRATION\",displayTextArea:false,title:\"FEATURE 1\",type:ControlType.String},fJb0ORdyS:{defaultValue:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",title:\"FEATURE 1 COLOR\",type:ControlType.Color},DQnxrGNzJ:{defaultValue:\"EARNING CRYPTO BADGES\",displayTextArea:false,title:\"FEATURE 2\",type:ControlType.String},yRpX3yLH_:{defaultValue:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",title:\"FEATURE 2 COLOR\",type:ControlType.Color},ySAvNdI1b:{defaultValue:\"SHOWCASING LIMITED NUMBER OF NFTS ON YOUR X PROFILE\",displayTextArea:false,title:\"FEATURE 3\",type:ControlType.String},t0hU2Gje2:{defaultValue:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",title:\"FEATURE 3 COLOR\",type:ControlType.Color},kORsX5zox:{defaultValue:\"PRIORITY ACCESS TO EXCLUSIVE NFT DROPS\",displayTextArea:false,title:\"FEATURE 4\",type:ControlType.String},D7664j0B4:{defaultValue:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",title:\"FEATURE 4 COLOR\",type:ControlType.Color},yVVeJFyyn:{defaultValue:\"START WITH BASIC\",displayTextArea:false,title:\"BUTTON TEXT\",type:ControlType.String},gYP9w41pN:{defaultValue:\"GO!\",displayTextArea:false,title:\"BASIC BUTTON HOVER\",type:ControlType.String},Yhlyl7Ony:{defaultValue:\"GO PRO!\",displayTextArea:false,title:\"PREMIUM BUTTON TEXT\",type:ControlType.String},ZCsbnmGmY:{defaultValue:'var(--token-bfee8293-f0d9-43ae-84b5-75f3f6aadbbc, rgb(18, 18, 18)) /* {\"name\":\"black background\"} */',title:\"BUTTON FILL\",type:ControlType.Color},ml0ch6pdh:{defaultValue:'var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17)) /* {\"name\":\"Black\"} */',title:\"BUTTON HOVER COLOR\",type:ControlType.Color},oGqgVcTQD:{title:\"LINK\",type:ControlType.Link}});addFonts(FramerPnYErlF1g,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPnYErlF1g\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gCu8_fWoE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"msU0usTd7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BALtatY7B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"500\",\"framerIntrinsicHeight\":\"645\",\"framerVariables\":\"{\\\"zAwrsAMF4\\\":\\\"fILL\\\",\\\"E5xBfXHqa\\\":\\\"tEAR\\\",\\\"i3S1qkIgS\\\":\\\"tEARCOLOR\\\",\\\"yAeyO4TQl\\\":\\\"iNCLUDES\\\",\\\"JDmuNufp0\\\":\\\"iNCLUDESCOLOR\\\",\\\"rGJIMdh3a\\\":\\\"pRICE\\\",\\\"UV0fQZ5ww\\\":\\\"pRICECOLOR\\\",\\\"JxShxG3va\\\":\\\"fEATURE1\\\",\\\"fJb0ORdyS\\\":\\\"fEATURE1COLOR\\\",\\\"DQnxrGNzJ\\\":\\\"fEATURE2\\\",\\\"yRpX3yLH_\\\":\\\"fEATURE2COLOR\\\",\\\"ySAvNdI1b\\\":\\\"fEATURE3\\\",\\\"t0hU2Gje2\\\":\\\"fEATURE3COLOR\\\",\\\"kORsX5zox\\\":\\\"fEATURE4\\\",\\\"D7664j0B4\\\":\\\"fEATURE4COLOR\\\",\\\"yVVeJFyyn\\\":\\\"bUTTONTEXT\\\",\\\"gYP9w41pN\\\":\\\"bASICBUTTONHOVER\\\",\\\"Yhlyl7Ony\\\":\\\"pREMIUMBUTTONTEXT\\\",\\\"ZCsbnmGmY\\\":\\\"bUTTONFILL\\\",\\\"ml0ch6pdh\\\":\\\"bUTTONHOVERCOLOR\\\",\\\"oGqgVcTQD\\\":\\\"lINK\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PnYErlF1g.map", "// Generated by Framer (241a4b4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7EoDTfjq4sIN15QXOlYc/IiqR0LHgLI4o4hTrIfQy/T38c9_U2F.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lVenrtTQwgMeoKnh8DiA/pUcqtUWI9JcmZqrGvhAC/XDolUyb1j.js\";const cycleOrder=[\"uIFv7ypDY\"];const variantClassNames={uIFv7ypDY:\"framer-v-1kikjvo\"};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:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 getProps=({description,height,id,object,solution,width,...props})=>{var _ref,_ref1,_ref2;return{...props,gJJL3QDdr:(_ref=object!==null&&object!==void 0?object:props.gJJL3QDdr)!==null&&_ref!==void 0?_ref:{src:new URL(\"assets/PIcg4cTJ4IGkiVLfWuxnQHKPU.png\",\"https://framerusercontent.com/modules/lPSYHc5PSAzk3FHvJI0O/W7YeeqEsXIKAzQkN5Edo/rM7AKMQcK.js\").href},LB11KkpTb:(_ref1=solution!==null&&solution!==void 0?solution:props.LB11KkpTb)!==null&&_ref1!==void 0?_ref1:\"INTEGRATION\",Sbv6WuMho:(_ref2=description!==null&&description!==void 0?description:props.Sbv6WuMho)!==null&&_ref2!==void 0?_ref2:\"coinfluence bridges the gap between the blockchain world and social media, solving the issue of fragmented digital identities\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,LB11KkpTb,Sbv6WuMho,gJJL3QDdr,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"uIFv7ypDY\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();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-BfxBr\",sharedStyle.className,sharedStyle1.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-1kikjvo\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uIFv7ypDY\",ref:ref,style:{backgroundColor:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",borderTopRightRadius:75,...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v7rbrz\",layoutDependency:layoutDependency,layoutId:\"PBSnzK9EU\",style:{rotate:8.5},transformTemplate:transformTemplate,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-120iyjl\",\"data-styles-preset\":\"XDolUyb1j\",children:\"INTEGRATION\"})}),className:\"framer-1tevfp\",layoutDependency:layoutDependency,layoutId:\"r_BgedFHJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},text:LB11KkpTb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-120iyjl\",\"data-styles-preset\":\"XDolUyb1j\",children:\"INTEGRATION\"})}),className:\"framer-nq7fjy\",layoutDependency:layoutDependency,layoutId:\"NTuLJaCej\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:LB11KkpTb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-120iyjl\",\"data-styles-preset\":\"XDolUyb1j\",children:\"INTEGRATION\"})}),className:\"framer-gflaby\",layoutDependency:layoutDependency,layoutId:\"R37NuPS_Z\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.3},text:LB11KkpTb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-120iyjl\",\"data-styles-preset\":\"XDolUyb1j\",children:\"INTEGRATION\"})}),className:\"framer-16vr7lv\",layoutDependency:layoutDependency,layoutId:\"DZDJwJhI_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.1},text:LB11KkpTb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-120iyjl\",\"data-styles-preset\":\"XDolUyb1j\",children:\"INTEGRATION\"})}),className:\"framer-kyxesz\",layoutDependency:layoutDependency,layoutId:\"XR9F5jn3c\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.05},text:LB11KkpTb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-120iyjl\",\"data-styles-preset\":\"XDolUyb1j\",children:\"INTEGRATION\"})}),className:\"framer-j4u5qc\",layoutDependency:layoutDependency,layoutId:\"Uz01sQPlk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.025},text:LB11KkpTb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-120iyjl\",\"data-styles-preset\":\"XDolUyb1j\",children:\"INTEGRATION\"})}),className:\"framer-qdq16x\",layoutDependency:layoutDependency,layoutId:\"KxthmSw0h\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.01},text:LB11KkpTb,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:472,intrinsicWidth:500,pixelHeight:472,pixelWidth:500,sizes:\"200px\",...toResponsiveImage(gJJL3QDdr)},className:\"framer-1sc3bmj\",\"data-framer-name\":\"SY_6_\",layoutDependency:layoutDependency,layoutId:\"qh1M0UD6N\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"coinfluence bridges the gap between the blockchain world and social media, solving the issue of fragmented digital identities\"})}),className:\"framer-1hisida\",layoutDependency:layoutDependency,layoutId:\"RmJ_AyY3Y\",style:{\"--extracted-r6o4lv\":\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17)) \",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Sbv6WuMho,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=['.framer-BfxBr [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-BfxBr .framer-188d3qt { display: block; }\",\".framer-BfxBr .framer-1kikjvo { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: flex-end; overflow: hidden; padding: 30px 40px 40px 40px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BfxBr .framer-1v7rbrz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; top: -11px; width: min-content; z-index: 1; }\",\".framer-BfxBr .framer-1tevfp, .framer-BfxBr .framer-nq7fjy, .framer-BfxBr .framer-gflaby, .framer-BfxBr .framer-16vr7lv, .framer-BfxBr .framer-kyxesz, .framer-BfxBr .framer-j4u5qc, .framer-BfxBr .framer-qdq16x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BfxBr .framer-1sc3bmj { flex: none; height: 189px; left: 40px; overflow: visible; position: absolute; top: 200px; width: 200px; z-index: 1; }\",\".framer-BfxBr .framer-1hisida { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BfxBr .framer-1kikjvo, .framer-BfxBr .framer-1v7rbrz { gap: 0px; } .framer-BfxBr .framer-1kikjvo > *, .framer-BfxBr .framer-1v7rbrz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BfxBr .framer-1kikjvo > :first-child, .framer-BfxBr .framer-1v7rbrz > :first-child { margin-top: 0px; } .framer-BfxBr .framer-1kikjvo > :last-child, .framer-BfxBr .framer-1v7rbrz > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LB11KkpTb\":\"solution\",\"Sbv6WuMho\":\"description\",\"gJJL3QDdr\":\"object\"}\n */const FramerrM7AKMQcK=withCSS(Component,css,\"framer-BfxBr\");export default FramerrM7AKMQcK;FramerrM7AKMQcK.displayName=\"solution\";FramerrM7AKMQcK.defaultProps={height:600,width:500};addPropertyControls(FramerrM7AKMQcK,{LB11KkpTb:{defaultValue:\"INTEGRATION\",displayTextArea:false,title:\"solution\",type:ControlType.String},Sbv6WuMho:{defaultValue:\"coinfluence bridges the gap between the blockchain world and social media, solving the issue of fragmented digital identities\",displayTextArea:false,title:\"description\",type:ControlType.String},gJJL3QDdr:{__defaultAssetReference:\"data:framer/asset-reference,PIcg4cTJ4IGkiVLfWuxnQHKPU.png?originalFilename=SY+%286%29.png&preferredSize=auto\",title:\"object\",type:ControlType.ResponsiveImage}});addFonts(FramerrM7AKMQcK,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrM7AKMQcK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"500\",\"framerIntrinsicHeight\":\"600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"LB11KkpTb\\\":\\\"solution\\\",\\\"Sbv6WuMho\\\":\\\"description\\\",\\\"gJJL3QDdr\\\":\\\"object\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import CoreFeatures from\"#framer/local/canvasComponent/AIKt3Sd8g/AIKt3Sd8g.js\";import SolutionsMarquee from\"#framer/local/canvasComponent/DUIgvi_Y9/DUIgvi_Y9.js\";import Button from\"#framer/local/canvasComponent/gwKEAGH29/gwKEAGH29.js\";import Accordion from\"#framer/local/canvasComponent/K7YY4Gj6Z/K7YY4Gj6Z.js\";import Tier from\"#framer/local/canvasComponent/PnYErlF1g/PnYErlF1g.js\";import Footer from\"#framer/local/canvasComponent/PXMnIedkL/PXMnIedkL.js\";import Solution from\"#framer/local/canvasComponent/rM7AKMQcK/rM7AKMQcK.js\";import StrokeText from\"#framer/local/canvasComponent/sJyGzZlq0/sJyGzZlq0.js\";import Menu from\"#framer/local/canvasComponent/U90YDHNzP/U90YDHNzP.js\";import*as sharedStyle from\"#framer/local/css/F4FBZkY_7/F4FBZkY_7.js\";import*as sharedStyle2 from\"#framer/local/css/T38c9_U2F/T38c9_U2F.js\";import*as sharedStyle1 from\"#framer/local/css/z2m8b2ydh/z2m8b2ydh.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MenuFonts=getFonts(Menu);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const StrokeTextFonts=getFonts(StrokeText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const CoreFeaturesFonts=getFonts(CoreFeatures);const SolutionsMarqueeFonts=getFonts(SolutionsMarquee);const SolutionFonts=getFonts(Solution);const CarouselFonts=getFonts(Carousel);const ImageWithFX=withFX(Image);const TierFonts=getFonts(Tier);const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const NoiseFonts=getFonts(Noise);const breakpoints={i2GetygBx:\"(max-width: 809px)\",umNsjdpmP:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gJz50\";const variantClassNames={i2GetygBx:\"framer-v-1thf8b5\",umNsjdpmP:\"framer-v-qvnybd\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:0,duration:.75,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const transition2={delay:0,duration:3.5,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition3={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-1e3,y:0};const transition5={delay:0,duration:1.1,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:350};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={desktop:\"WQLkyLRf1\",phone:\"i2GetygBx\",tablet:\"umNsjdpmP\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-gJz50`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-gJz50`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"umNsjdpmP\",\"i2GetygBx\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"umNsjdpmP\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"i2GetygBx\")return true;return false;};const elementId=useRouteElementId(\"VirDpuotQ\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"NgL6Iu6pJ\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"ZFTKQbgcm\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"p0eL2WVfH\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"c1nLIsfMX\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"iil8wFLU0\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"jZoQOFxI9\");const ref8=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"min(100vw, 1920px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ezxbe-container hidden-qvnybd hidden-1thf8b5\",\"data-framer-name\":\"desktop menu\",layoutScroll:true,name:\"desktop menu\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"TUH4DniBy\",layoutId:\"TUH4DniBy\",name:\"desktop menu\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"pAfpswpy6\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umNsjdpmP:{height:64,width:\"min(100vw, 1800px)\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jxy6lr-container hidden-72rtr7 hidden-1thf8b5\",\"data-framer-name\":\"tablet menu\",layoutScroll:true,name:\"tablet menu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umNsjdpmP:{variant:\"bwBh6WjuL\"}},children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"XnsIb6FrH\",layoutId:\"XnsIb6FrH\",name:\"tablet menu\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"pAfpswpy6\",width:\"100%\"})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{height:64,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1e3wbpc-container hidden-72rtr7 hidden-qvnybd\",\"data-framer-appear-id\":\"1e3wbpc\",\"data-framer-name\":\"mobile menu\",initial:animation1,layoutScroll:true,name:\"mobile menu\",optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"Do6N4ckCf\",layoutId:\"Do6N4ckCf\",name:\"mobile menu\",style:{width:\"100%\"},variant:\"bwBh6WjuL\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmjuwb\",\"data-framer-name\":\"website\",name:\"website\",children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,animate:animation3,className:\"framer-1apf4zn\",\"data-framer-appear-id\":\"1apf4zn\",\"data-framer-name\":\"hero banner object\",initial:animation4,name:\"hero banner object\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{background:{alt:\"green 3D object\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:564,loading:getLoadingLazyAtYPosition(303),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"bottom\",sizes:\"calc(min(100vw, 1920px) + 407px)\",src:\"https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg 1920w\"}},umNsjdpmP:{background:{alt:\"green 3D object\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:564,loading:getLoadingLazyAtYPosition(30),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"bottom\",sizes:\"calc(min(100vw, 1920px) - 59px)\",src:\"https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"green 3D object\",fit:\"fit\",intrinsicHeight:750,intrinsicWidth:564,loading:getLoadingLazyAtYPosition(40),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"bottom\",sizes:\"891px\",src:\"https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3PFvHs35wEOJ8N1tTHX05GGbKpU.jpg 1920w\"},className:\"framer-w4rnic\",\"data-framer-name\":\"green floating object\",name:\"green floating object\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hy1jj6\",\"data-framer-name\":\"hero headings\",id:elementId,name:\"hero headings\",ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-4ikq49\",\"data-framer-appear-id\":\"4ikq49\",\"data-framer-name\":\"headings\",initial:animation6,name:\"headings\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-s0f0nl\",\"data-styles-preset\":\"z2m8b2ydh\",children:\"Revolutionizing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ojy1nw\",\"data-styles-preset\":\"F4FBZkY_7\",children:\"Revolutionizing\"})}),className:\"framer-w72h6d\",\"data-framer-name\":\"bold heading\",fonts:[\"Inter\"],name:\"bold heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{y:175},umNsjdpmP:{y:235}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,y:265,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ylr0n5-container\",\"data-framer-name\":\"stroke heading\",name:\"stroke heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{BxjtXAyqY:48},umNsjdpmP:{BxjtXAyqY:80}},children:/*#__PURE__*/_jsx(StrokeText,{BxjtXAyqY:100,height:\"100%\",id:\"hEbQWCm4c\",layoutId:\"hEbQWCm4c\",name:\"stroke heading\",qZAmctkqd:\"AI in Web3\",variant:\"PNTzXdaC2\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",children:\"A state-of-the-art intelligence infrastructure that seamlessly integrates advanced data analytics with decentralized networks, empowering your AI agents with unparalleled real-time insights and connectivity.\"})}),className:\"framer-yrzzk9\",\"data-framer-appear-id\":\"yrzzk9\",\"data-framer-name\":\"body\",fonts:[\"Inter\"],initial:animation6,name:\"body\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1ccg06c\",\"data-border\":true,\"data-framer-appear-id\":\"1ccg06c\",\"data-framer-name\":\"app showcase\",initial:animation8,name:\"app showcase\",optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{height:50,width:\"300px\",y:495},umNsjdpmP:{height:50,width:\"350px\",y:600}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"390px\",y:610,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r4t7qg-container\",\"data-framer-name\":\"get the app button\",name:\"get the app button\",children:/*#__PURE__*/_jsx(Button,{GPZSgNVml:\"https://robot-ai-1.gitbook.io/robot-ai-docs\",height:\"100%\",id:\"HUxZR6X01\",layoutId:\"HUxZR6X01\",name:\"get the app button\",style:{height:\"100%\",width:\"100%\"},tya9E3Prx:\"Read Docs\",variant:\"pP7UZEBvp\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-abuy7b\",\"data-framer-name\":\"featured in\",name:\"featured in\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1ib2xk\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:\"Usecases:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1ib2xk\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:\"Usecases:\"})}),className:\"framer-2s6s70\",\"data-framer-name\":\"heading\",fonts:[\"FS;Clash Display-bold\"],name:\"heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ok6187-container\",\"data-framer-name\":\"logo ticker\",name:\"logo ticker\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{speed:100}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"bqgmYb9H_\",layoutId:\"bqgmYb9H_\",name:\"logo ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-agzdes\",\"data-border\":true,\"data-framer-name\":\"featured 1\",name:\"featured 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ys8cxk\",\"data-framer-name\":\"logo\",layout:\"position\",name:\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><g id=\"ss2739897265_1\"><path d=\"M 0 0 L 30 0 L 30 30 L 0 30 Z\" fill=\"transparent\"></path><path d=\"M 15 5.047 C 13.916 5.047 13.037 5.925 13.037 7.009 L 7.99 7.009 C 7.991 3.138 11.129 0 15 0 C 18.871 0 22.009 3.138 22.009 7.009 C 22.009 10.881 18.871 14.019 15 14.019 L 15 8.972 C 16.084 8.972 16.963 8.093 16.963 7.009 C 16.963 5.925 16.084 5.047 15 5.047 Z M 24.953 15 C 24.953 13.916 24.075 13.037 22.991 13.037 L 22.991 7.99 C 26.862 7.991 30 11.129 30 15 C 30 18.871 26.862 22.009 22.991 22.009 C 19.119 22.009 15.981 18.871 15.981 15 L 21.028 15 C 21.028 16.084 21.907 16.963 22.991 16.963 C 24.075 16.963 24.953 16.084 24.953 15 Z M 7.009 16.963 C 5.925 16.963 5.047 16.084 5.047 15 C 5.047 13.916 5.925 13.037 7.009 13.037 C 8.093 13.037 8.972 13.916 8.972 15 L 14.019 15 C 14.019 11.129 10.881 7.991 7.009 7.991 C 3.138 7.991 0 11.129 0 15 C 0 18.871 3.138 22.009 7.009 22.009 Z M 15 24.953 C 16.084 24.953 16.963 24.075 16.963 22.991 L 22.009 22.991 C 22.009 26.862 18.871 30 15 30 C 11.129 30 7.991 26.862 7.991 22.991 C 7.991 19.119 11.129 15.981 15 15.981 L 15 21.028 C 13.916 21.028 13.037 21.907 13.037 22.991 C 13.037 24.075 13.916 24.953 15 24.953 Z\" fill=\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217)) /* {&quot;name&quot;:&quot;Light Gray&quot;} */\"></path></g></svg>',svgContentId:2739897265,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1ib2xk\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:\"Real-time Narrative Tracking\"})}),className:\"framer-px69ot\",\"data-framer-name\":\"name\",fonts:[\"FS;Clash Display-bold\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ogapu1\",\"data-border\":true,\"data-framer-name\":\"featured 2\",name:\"featured 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-asfszf\",\"data-framer-name\":\"logo\",layout:\"position\",name:\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><g id=\"ss1579317570_1\"><path d=\"M 0 0 L 30 0 L 30 30 L 0 30 Z\" fill=\"transparent\"></path><path d=\"M 0 0 C 0 8.284 6.716 15 15 15 C 6.716 15 0 21.716 0 30 L 1.8 30 C 1.8 22.71 7.71 16.8 15 16.8 C 22.29 16.8 28.2 22.71 28.2 30 L 30 30 C 30 21.716 23.284 15 15 15 C 23.284 15 30 8.284 30 0 L 28.2 0 C 28.2 7.29 22.29 13.2 15 13.2 C 7.71 13.2 1.8 7.29 1.8 0 Z M 3.6 0 C 3.6 6.296 8.704 11.4 15 11.4 C 21.296 11.4 26.4 6.296 26.4 0 L 24.6 0 C 24.6 5.302 20.302 9.6 15 9.6 C 9.698 9.6 5.4 5.302 5.4 0 Z M 7.2 0 C 7.2 4.308 10.692 7.8 15 7.8 C 19.308 7.8 22.8 4.308 22.8 0 L 21 0 C 21 3.314 18.314 6 15 6 C 11.686 6 9 3.314 9 0 Z M 15 18.6 C 21.296 18.6 26.4 23.704 26.4 30 L 24.6 30 C 24.6 24.698 20.302 20.4 15 20.4 C 9.698 20.4 5.4 24.698 5.4 30 L 3.6 30 C 3.6 23.704 8.704 18.6 15 18.6 Z M 15 22.2 C 19.308 22.2 22.8 25.692 22.8 30 L 21 30 C 21 26.686 18.314 24 15 24 C 11.686 24 9 26.686 9 30 L 7.2 30 C 7.2 25.692 10.692 22.2 15 22.2 Z\" fill=\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217)) /* {&quot;name&quot;:&quot;Light Gray&quot;} */\"></path></g></svg>',svgContentId:1579317570,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1ib2xk\",\"--framer-font-family\":'\"Clash Display\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:\"Mindshare Metrics Analysis\"})}),className:\"framer-1ezit4d\",\"data-framer-name\":\"name\",fonts:[\"FS;Clash Display-bold\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v7xxn5\",\"data-border\":true,\"data-framer-name\":\"featured 3\",name:\"featured 3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rtqqkt\",\"data-framer-name\":\"logo\",layout:\"position\",name:\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><g id=\"ss113046681_1\"><path d=\"M 0 0 L 30 0 L 30 30 L 0 30 Z\" fill=\"transparent\"></path><path d=\"M 16.5 0 C 17.328 0 18 0.672 18 1.5 L 18 4.136 C 18 5.472 19.616 6.142 20.561 5.197 L 22.425 3.333 C 23.01 2.747 23.96 2.747 24.546 3.333 L 26.667 5.454 C 27.253 6.04 27.253 6.99 26.667 7.575 L 24.803 9.439 C 23.858 10.384 24.528 12 25.864 12 L 28.5 12 C 29.328 12 30 12.672 30 13.5 L 30 16.5 C 30 17.329 29.328 18 28.5 18 L 25.864 18 C 24.528 18 23.858 19.616 24.803 20.561 L 26.667 22.425 C 27.253 23.011 27.253 23.96 26.667 24.546 L 24.546 26.667 C 23.96 27.253 23.01 27.253 22.425 26.667 L 20.561 24.803 C 19.616 23.859 18 24.528 18 25.864 L 18 28.5 C 18 29.328 17.328 30 16.5 30 L 13.5 30 C 12.672 30 12 29.328 12 28.5 L 12 25.864 C 12 24.528 10.384 23.858 9.439 24.803 L 7.575 26.667 C 6.99 27.253 6.04 27.253 5.454 26.667 L 3.333 24.546 C 2.747 23.96 2.747 23.01 3.333 22.425 L 5.197 20.561 C 6.142 19.616 5.472 18 4.136 18 L 1.5 18 C 0.672 18 0 17.328 0 16.5 L 0 13.5 C 0 12.672 0.672 12 1.5 12 L 4.136 12 C 5.472 12 6.142 10.384 5.197 9.439 L 3.333 7.575 C 2.747 6.99 2.747 6.04 3.333 5.454 L 5.454 3.333 C 6.04 2.747 6.99 2.747 7.575 3.333 L 9.439 5.197 C 10.384 6.142 12 5.472 12 4.136 L 12 1.5 C 12 0.672 12.672 0 13.5 0 L 16.5 0 Z M 15 22.5 C 19.142 22.5 22.5 19.142 22.5 15 C 22.5 10.858 19.142 7.5 15 7.5 C 10.858 7.5 7.5 10.858 7.5 15 C 7.5 19.142 10.858 22.5 15 22.5 Z\" fill=\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217)) /* {&quot;name&quot;:&quot;Light Gray&quot;} */\"></path></g></svg>',svgContentId:113046681,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1ib2xk\",\"--framer-font-family\":'\"Clash Display\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:\"Price-to-Social Correlation Insights\"})}),className:\"framer-172fbg5\",\"data-framer-name\":\"name\",fonts:[\"FS;Clash Display-bold\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p0n4z9\",\"data-border\":true,\"data-framer-name\":\"featured 4\",name:\"featured 4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dfmaif\",\"data-framer-name\":\"logo\",layout:\"position\",name:\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><g id=\"ss1381086991_1\"><path d=\"M 0 0 L 30 0 L 30 30 L 0 30 Z\" fill=\"transparent\"></path><path d=\"M 0 0 L 0 7.5 L 15 15 L 0 22.5 L 0 30 L 15 22.5 L 15 30 L 30 22.5 L 30 7.5 L 15 0 L 15 7.5 Z M 15 7.5 L 15 22.5 L 30 15 Z\" fill=\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217)) /* {&quot;name&quot;:&quot;Light Gray&quot;} */\"></path></g></svg>',svgContentId:1381086991,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1ib2xk\",\"--framer-font-family\":'\"Clash Display\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:\"Network Effects Visualization\"})}),className:\"framer-ncnrey\",\"data-framer-name\":\"name\",fonts:[\"FS;Clash Display-bold\"],name:\"name\",verticalAlignment:\"top\",withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m567p\",\"data-framer-name\":\"about\",id:elementId1,name:\"about\",ref:ref3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-s0f0nl\",\"data-styles-preset\":\"z2m8b2ydh\",children:\"Robot AI empowers users to enhance their AI agents with cutting-edge insights, leverage microtransactions for scalability, and access exclusive data-driven opportunities.\"})}),className:\"framer-qpdjok\",\"data-framer-name\":\"heading\",fonts:[\"Inter\"],name:\"heading\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nhwg5u\",\"data-framer-name\":\"core features\",name:\"core features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{background:{alt:\"purple 3D object\",fit:\"fit\",intrinsicHeight:535,intrinsicWidth:500,loading:getLoadingLazyAtYPosition(1456),pixelHeight:658,pixelWidth:808,positionX:\"center\",positionY:\"top\",sizes:\"264px\",src:\"https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png\",srcSet:\"https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png 808w\"}},umNsjdpmP:{background:{alt:\"purple 3D object\",fit:\"fit\",intrinsicHeight:535,intrinsicWidth:500,loading:getLoadingLazyAtYPosition(1231),pixelHeight:658,pixelWidth:808,positionX:\"center\",positionY:\"top\",sizes:\"350px\",src:\"https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png\",srcSet:\"https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png 808w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"purple 3D object\",fit:\"fit\",intrinsicHeight:535,intrinsicWidth:500,loading:getLoadingLazyAtYPosition(1140),pixelHeight:658,pixelWidth:808,positionX:\"center\",positionY:\"top\",sizes:\"500px\",src:\"https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png\",srcSet:\"https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/FThW06B3Fw8i0Of1hwXtWgQ.png 808w\"},className:\"framer-1uis8an\",\"data-framer-name\":\"big purple object\",name:\"big purple object\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpfhj8\",\"data-framer-name\":\"features section\",id:elementId2,name:\"features section\",ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rmnva8\",\"data-framer-name\":\"text area\",name:\"text area\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x0yhz8\",\"data-framer-name\":\"headings\",name:\"headings\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:1566},umNsjdpmP:{width:\"calc(min(100vw, 1920px) - 80px)\",y:1311}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"calc(min(100vw, 1920px) - 150px)\",y:1290,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5hr5rp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{BxjtXAyqY:48},umNsjdpmP:{BxjtXAyqY:80}},children:/*#__PURE__*/_jsx(StrokeText,{BxjtXAyqY:100,height:\"100%\",id:\"d5oRTo7jv\",layoutId:\"d5oRTo7jv\",qZAmctkqd:\"CORE\",style:{width:\"100%\"},variant:\"sZYkwloJL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:1656},umNsjdpmP:{width:\"calc(min(100vw, 1920px) - 80px)\",y:1401}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"calc(min(100vw, 1920px) - 150px)\",y:1390,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ozvtls-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{BxjtXAyqY:48},umNsjdpmP:{BxjtXAyqY:80}},children:/*#__PURE__*/_jsx(StrokeText,{BxjtXAyqY:100,height:\"100%\",id:\"X_jJo__OH\",layoutId:\"X_jJo__OH\",qZAmctkqd:\"FEATURES\",style:{width:\"100%\"},variant:\"sZYkwloJL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Cutting-edge capabilities designed for seamless integration and performance.\"})}),className:\"framer-144unlz\",\"data-framer-name\":\"body\",fonts:[\"Inter\"],name:\"body\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d0f6kw\",\"data-framer-name\":\"features\",name:\"features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{background:{alt:\"green 3D object\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:250,loading:getLoadingLazyAtYPosition(2093.291505791506),pixelHeight:1080,pixelWidth:1920,sizes:\"212px\",src:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png 1920w\"}},umNsjdpmP:{background:{alt:\"green 3D object\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:250,loading:getLoadingLazyAtYPosition(1869.6123348017622),pixelHeight:1080,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"green 3D object\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:250,loading:getLoadingLazyAtYPosition(2010.4968454258678),pixelHeight:1080,pixelWidth:1920,sizes:\"173px\",src:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png 1920w\"},className:\"framer-em8874\",\"data-framer-name\":\"green object\",name:\"green object\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{background:{alt:\"purple 3D object\",fit:\"fit\",intrinsicHeight:380.5,intrinsicWidth:250,loading:getLoadingLazyAtYPosition(2335.1467181467183),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"118px\",src:\"https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=512 512w,https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png 1920w\"},style:{rotate:-63}},umNsjdpmP:{background:{alt:\"purple 3D object\",fit:\"fit\",intrinsicHeight:380.5,intrinsicWidth:250,loading:getLoadingLazyAtYPosition(2080.9735682819382),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"164px\",src:\"https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=512 512w,https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png 1920w\"},style:{rotate:38}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"purple 3D object\",fit:\"fit\",intrinsicHeight:380.5,intrinsicWidth:250,loading:getLoadingLazyAtYPosition(2157.9436619718313),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"236px\",src:\"https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=512 512w,https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C3godEzt0D0DuFhw7A07FInX8.png 1920w\"},className:\"framer-1bsiwjv\",\"data-framer-name\":\"purple object\",name:\"purple object\",style:{rotate:10}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:1917},umNsjdpmP:{width:\"calc(min(100vw, 1920px) - 80px)\",y:1687}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"calc(min(100vw, 1920px) - 150px)\",y:1676,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mvsxum-container\",\"data-framer-name\":\"core feature 1\",name:\"core feature 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{variant:\"M2Deyzo6y\"},umNsjdpmP:{variant:\"M2Deyzo6y\"}},children:/*#__PURE__*/_jsx(CoreFeatures,{E9PT3qNtY:\"Connect your AI agents to a decentralized network through secure wallet linking, enabling unique identity markers and participation in the AI economy.\",height:\"100%\",id:\"UP28jJqfg\",k0UlGzg0H:\"INTEGRATION\",layoutId:\"UP28jJqfg\",name:\"core feature 1\",style:{width:\"100%\"},TAyp8PDdf:\"AI Wallet\",variant:\"bKXUQx71H\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:2164},umNsjdpmP:{width:\"calc(min(100vw, 1920px) - 80px)\",y:1934}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"calc(min(100vw, 1920px) - 150px)\",y:1923,children:/*#__PURE__*/_jsx(Container,{className:\"framer-45yt99-container\",\"data-framer-name\":\"core feature 2\",name:\"core feature 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{variant:\"M2Deyzo6y\"},umNsjdpmP:{variant:\"M2Deyzo6y\"}},children:/*#__PURE__*/_jsx(CoreFeatures,{E9PT3qNtY:\"Earn and showcase achievement-based badges, reflecting your contributions and insights within the evolving AI ecosystem.\",height:\"100%\",id:\"AFpyoWI5n\",k0UlGzg0H:\"BADGES\",layoutId:\"AFpyoWI5n\",name:\"core feature 2\",style:{width:\"100%\"},TAyp8PDdf:\"Intelligence\",variant:\"bKXUQx71H\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:2411},umNsjdpmP:{width:\"calc(min(100vw, 1920px) - 80px)\",y:2181}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"calc(min(100vw, 1920px) - 150px)\",y:2170,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4shsmu-container\",\"data-framer-name\":\"core feature 3\",name:\"core feature 3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{variant:\"M2Deyzo6y\"},umNsjdpmP:{variant:\"M2Deyzo6y\"}},children:/*#__PURE__*/_jsx(CoreFeatures,{E9PT3qNtY:\"Enable micro-payments for seamless interactions, allowing token-based contributions and rewards directly within AI-driven platforms.\",height:\"100%\",id:\"xDepcmgTe\",k0UlGzg0H:\"HUB\",layoutId:\"xDepcmgTe\",name:\"core feature 3\",style:{width:\"100%\"},TAyp8PDdf:\"Microtransaction\",variant:\"bKXUQx71H\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:2658},umNsjdpmP:{width:\"calc(min(100vw, 1920px) - 80px)\",y:2428}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:222,width:\"calc(min(100vw, 1920px) - 150px)\",y:2417,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10lrhum-container\",\"data-framer-name\":\"core feature 4\",name:\"core feature 4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{variant:\"M2Deyzo6y\"},umNsjdpmP:{variant:\"M2Deyzo6y\"}},children:/*#__PURE__*/_jsx(CoreFeatures,{E9PT3qNtY:\"Share proprietary AI insights or exclusive datasets to foster collaboration and innovation across networks.\",height:\"100%\",id:\"NmSToBPur\",k0UlGzg0H:\"Showcasing\",layoutId:\"NmSToBPur\",name:\"core feature 4\",style:{width:\"100%\"},TAyp8PDdf:\"Data Asset \",variant:\"bKXUQx71H\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zjvuvn\",\"data-framer-name\":\"tilted background\",name:\"tilted background\",style:{rotate:8.5},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-updp0g-container\",\"data-framer-name\":\"we got solutions ticker\",name:\"we got solutions ticker\",children:/*#__PURE__*/_jsx(SolutionsMarquee,{height:\"100%\",id:\"fZUH6uUCO\",layoutId:\"fZUH6uUCO\",name:\"we got solutions ticker\",style:{width:\"100%\"},text:\"SOLUTIONS\",variant:\"hdhVO8D3H\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-78negr\",\"data-border\":true,\"data-framer-name\":\"solutions\",name:\"solutions\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17daq1h-container\",\"data-framer-name\":\"carousel\",id:elementId3,name:\"carousel\",ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{arrowObject:{arrowFill:\"rgba(17, 17, 17, 0.8)\",arrowPadding:15,arrowRadius:50,arrowSize:30,showMouseControls:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-end\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(17, 17, 17, 0.8)\",arrowPadding:25,arrowRadius:50,arrowSize:50,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:50,height:\"100%\",id:\"p0eL2WVfH\",layoutId:\"p0eL2WVfH\",name:\"carousel\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r2i6av-container\",\"data-framer-name\":\"solution 1\",name:\"solution 1\",children:/*#__PURE__*/_jsx(Solution,{description:\"Robot AI bridges the gap between decentralized AI systems and diverse data sources, resolving the challenges of fragmented information streams.\",height:\"100%\",id:\"dLFepcf0E\",layoutId:\"dLFepcf0E\",name:\"solution 1\",object:addImageAlt({src:\"https://framerusercontent.com/images/lhnWimOxRp9c99VDkKdQzYvaRDE.png\",srcSet:\"https://framerusercontent.com/images/lhnWimOxRp9c99VDkKdQzYvaRDE.png?scale-down-to=512 512w,https://framerusercontent.com/images/lhnWimOxRp9c99VDkKdQzYvaRDE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lhnWimOxRp9c99VDkKdQzYvaRDE.png 1113w\"},\"abstract 3D object\"),solution:\"INTEGRATION\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-z6a7jp-container\",\"data-framer-name\":\"solution 2\",name:\"solution 2\",children:/*#__PURE__*/_jsx(Solution,{description:\"Enhances accessibility by showcasing critical AI-driven insights to a wider audience, fostering informed discussions and actionable strategies.\",height:\"100%\",id:\"EVzA64IRS\",layoutId:\"EVzA64IRS\",name:\"solution 2\",object:addImageAlt({src:\"https://framerusercontent.com/images/ehWTOSD0555965HHftjDcdpBmA.png\",srcSet:\"https://framerusercontent.com/images/ehWTOSD0555965HHftjDcdpBmA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ehWTOSD0555965HHftjDcdpBmA.png 982w\"},\"abstract 3D object\"),solution:\"VISIBILITY\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-injtq5-container\",\"data-framer-name\":\"solution 3\",name:\"solution 3\",children:/*#__PURE__*/_jsx(Solution,{description:\"Eliminates barriers to data monetization, enabling seamless sharing and trading of AI-generated insights across popular decentralized platforms.\",height:\"100%\",id:\"Ht42rX0U4\",layoutId:\"Ht42rX0U4\",name:\"solution 3\",object:addImageAlt({src:\"https://framerusercontent.com/images/O2pqylOHHLBxsOHlJ6zpVTUMxOM.png\",srcSet:\"https://framerusercontent.com/images/O2pqylOHHLBxsOHlJ6zpVTUMxOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/O2pqylOHHLBxsOHlJ6zpVTUMxOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O2pqylOHHLBxsOHlJ6zpVTUMxOM.png 1057w\"},\"abstract 3D object\"),solution:\"TRANSACTIONS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],snapObject:{fluid:false,snap:false,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lty1x7\",\"data-framer-name\":\"pricing\",id:elementId4,name:\"pricing\",ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uol2g0\",\"data-framer-name\":\"text area\",name:\"text area\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ojy1nw\",\"data-styles-preset\":\"F4FBZkY_7\",children:\"PRICING:\"})}),className:\"framer-1nml9jm\",\"data-framer-name\":\"heading\",fonts:[\"Inter\"],name:\"heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{className:\"framer-styles-preset-18ax31e\",\"data-styles-preset\":\"T38c9_U2F\",style:{\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\"},children:\"Choose the right tIER that suits your needs\"})})})}),className:\"framer-b7au7f\",\"data-framer-name\":\"body\",fonts:[\"Inter\"],name:\"body\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{background:{alt:\"purple 3D object\",fit:\"fill\",intrinsicHeight:819,intrinsicWidth:750,loading:getLoadingLazyAtYPosition(4230),pixelHeight:1080,pixelWidth:1920,sizes:\"150px\",src:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png 1920w\"}},umNsjdpmP:{background:{alt:\"purple 3D object\",fit:\"fill\",intrinsicHeight:819,intrinsicWidth:750,loading:getLoadingLazyAtYPosition(4050),pixelHeight:1080,pixelWidth:1920,sizes:\"250px\",src:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"purple 3D object\",fit:\"fill\",intrinsicHeight:819,intrinsicWidth:750,loading:getLoadingLazyAtYPosition(3589),pixelHeight:1080,pixelWidth:1920,sizes:\"300px\",src:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/joX7NgahPP8xrcBvqmg3Om6TNzE.png 1920w\"},className:\"framer-d7nu8j\",\"data-framer-name\":\"purple floating object\",name:\"purple floating object\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ttbsp8\",\"data-framer-name\":\"tiers\",name:\"tiers\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:3885},umNsjdpmP:{height:550,width:\"calc(min(100vw, 1920px) - 80px)\",y:3755}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:645,width:\"calc((min(100vw, 1920px) - 150px) * 0.4514)\",y:3794,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mpio1k-container\",\"data-framer-name\":\"tier 1\",name:\"tier 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umNsjdpmP:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Tier,{D7664j0B4:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",DQnxrGNzJ:\"Monthly requests: 5,000\",E5xBfXHqa:\"BASIC PLAN\",fJb0ORdyS:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",gYP9w41pN:\"GO!\",height:\"100%\",i3S1qkIgS:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",id:\"ty3T_IN5p\",JDmuNufp0:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",JxShxG3va:\" Requests per minute: 5\",kORsX5zox:\"Public engagement metrics: \u2713 \",layoutId:\"ty3T_IN5p\",ml0ch6pdh:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",name:\"tier 1\",rGJIMdh3a:\"$500/MONTH\",style:{width:\"100%\"},t0hU2Gje2:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",UV0fQZ5ww:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",variant:\"uXmnL3nCQ\",width:\"100%\",yAeyO4TQl:\"INCLUDES:\",Yhlyl7Ony:\"GO BASIC!\",yRpX3yLH_:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",ySAvNdI1b:\"Historical data: 30 days\",yVVeJFyyn:\"START WITH BASIC\",zAwrsAMF4:\"rgba(18, 18, 18, 0)\",ZCsbnmGmY:\"rgba(18, 18, 18, 0)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:4540},umNsjdpmP:{height:0,width:\"calc(min(100vw, 1920px) - 80px)\",y:4315}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:645,width:\"max((min(100vw, 1920px) - 150px) * 0.5486 - 10px, 1px)\",y:3794,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tcow5d-container\",\"data-framer-name\":\"tier 2\",name:\"tier 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Tier,{D7664j0B4:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",DQnxrGNzJ:\"Monthly requests: 100,000\",E5xBfXHqa:\"ENTERPRISE PLAN\",fJb0ORdyS:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",gYP9w41pN:\"GO!\",height:\"100%\",i3S1qkIgS:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",id:\"YbrqGyCIF\",JDmuNufp0:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",JxShxG3va:\"Requests per minute: 60\",kORsX5zox:\"Public engagement metrics: \u2713 \",layoutId:\"YbrqGyCIF\",ml0ch6pdh:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",name:\"tier 2\",rGJIMdh3a:\"$5000/MONTH\",style:{height:\"100%\",width:\"100%\"},t0hU2Gje2:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",UV0fQZ5ww:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",variant:\"gCu8_fWoE\",width:\"100%\",yAeyO4TQl:\"INCLUDES:\",Yhlyl7Ony:\"GO ENTERPRISE!\",yRpX3yLH_:\"var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17))\",ySAvNdI1b:\"Historical data: 1 year\",yVVeJFyyn:\"START WITH ENTERPRISE\",zAwrsAMF4:\"var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, rgb(217, 217, 217))\",ZCsbnmGmY:\"rgba(18, 18, 18, 0)\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7vabt\",\"data-framer-name\":\"faq section\",name:\"faq section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t03dzd\",\"data-framer-name\":\"heading\",id:elementId5,name:\"heading\",ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{height:70,y:5335},umNsjdpmP:{height:90,y:4515}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,y:4629,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oe0elm-container\",\"data-framer-name\":\"got faq\",name:\"got faq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{BxjtXAyqY:48},umNsjdpmP:{BxjtXAyqY:80}},children:/*#__PURE__*/_jsx(StrokeText,{BxjtXAyqY:100,height:\"100%\",id:\"EhM4rsqh1\",layoutId:\"EhM4rsqh1\",name:\"got faq\",qZAmctkqd:\"GOT FAQ?\",style:{height:\"100%\"},variant:\"PNTzXdaC2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v9u2io\",\"data-framer-name\":\"faq\",name:\"faq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"max(min(100vw, 1920px) - 30px, 1px)\",y:5455},umNsjdpmP:{width:\"max(min(100vw, 1920px) - 80px, 1px)\",y:4655}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:\"max(min(100vw, 1920px) - 150px, 1px)\",y:4779,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rptj92-container\",\"data-framer-name\":\"accordion\",name:\"accordion\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"vLxEQgVXS\",layoutId:\"vLxEQgVXS\",name:\"accordion\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{width:\"calc(min(100vw, 1920px) - 30px)\",y:6105},umNsjdpmP:{width:\"calc(min(100vw, 1920px) - 80px)\",y:5355}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:526,width:\"calc(min(100vw, 1920px) - 150px)\",y:5479,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3ozv1k-container\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{i2GetygBx:{variant:\"sBO5qeX0A\"},umNsjdpmP:{variant:\"pxPUGb5nH\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jZoQOFxI9\",layoutId:\"jZoQOFxI9\",style:{width:\"100%\"},variant:\"b1HuQQLm3\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rrmg0a-container\",\"data-framer-name\":\"background noise\",name:\"background noise\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:0,height:\"100%\",id:\"RW0fNd2ZS\",layoutId:\"RW0fNd2ZS\",name:\"background noise\",opacity:.05,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-gJz50 { background: var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17)) /* {\"name\":\"Black\"} */; }`,\".framer-gJz50.framer-lux5qc, .framer-gJz50 .framer-lux5qc { display: block; }\",\".framer-gJz50.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, #111111); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-gJz50 .framer-3ezxbe-container { flex: none; height: auto; left: 50%; max-width: 1920px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-gJz50 .framer-1jxy6lr-container { flex: none; height: auto; left: 50%; max-width: 1800px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-gJz50 .framer-1e3wbpc-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-gJz50 .framer-1xmjuwb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: hidden; padding: 175px 0px 65px 150px; position: relative; width: 100%; z-index: 1; }\",\".framer-gJz50 .framer-1apf4zn { aspect-ratio: 1.05 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 743px); overflow: visible; position: absolute; right: -334px; top: 50px; width: 780px; z-index: 0; }\",\".framer-gJz50 .framer-w4rnic { flex: none; height: 612px; left: -111px; overflow: visible; position: absolute; right: 0px; top: -10px; z-index: 1; }\",\".framer-gJz50 .framer-1hy1jj6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 175px; width: 818px; }\",\".framer-gJz50 .framer-4ikq49 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-w72h6d, .framer-gJz50 .framer-2s6s70, .framer-gJz50 .framer-px69ot, .framer-gJz50 .framer-1ezit4d, .framer-gJz50 .framer-172fbg5, .framer-gJz50 .framer-ncnrey, .framer-gJz50 .framer-1nml9jm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gJz50 .framer-1ylr0n5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gJz50 .framer-yrzzk9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-gJz50 .framer-1ccg06c { --border-bottom-width: 1px; --border-color: var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, #d9d9d9); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-1r4t7qg-container { flex: none; height: 60px; position: relative; width: 390px; }\",\".framer-gJz50 .framer-abuy7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 75px; height: 150px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 25px 100px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-1ok6187-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-gJz50 .framer-agzdes, .framer-gJz50 .framer-1ogapu1, .framer-gJz50 .framer-1v7xxn5, .framer-gJz50 .framer-p0n4z9 { --border-bottom-width: 1px; --border-color: var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, #d9d9d9); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 20px 48px 20px 40px; position: relative; width: min-content; }\",\".framer-gJz50 .framer-ys8cxk, .framer-gJz50 .framer-asfszf, .framer-gJz50 .framer-rtqqkt, .framer-gJz50 .framer-1dfmaif { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-gJz50 .framer-m567p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 150px 0px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-gJz50 .framer-qpdjok { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1100px; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-gJz50 .framer-nhwg5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-1uis8an { aspect-ratio: 0.9345386533665836 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 535px); left: 350px; overflow: visible; position: absolute; top: -150px; width: 500px; z-index: -1; }\",\".framer-gJz50 .framer-hpfhj8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 50px 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-gJz50 .framer-1rmnva8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-1x0yhz8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-5hr5rp-container, .framer-gJz50 .framer-1ozvtls-container, .framer-gJz50 .framer-mvsxum-container, .framer-gJz50 .framer-45yt99-container, .framer-gJz50 .framer-4shsmu-container, .framer-gJz50 .framer-10lrhum-container, .framer-gJz50 .framer-3ozv1k-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gJz50 .framer-144unlz, .framer-gJz50 .framer-b7au7f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gJz50 .framer-1d0f6kw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-em8874 { aspect-ratio: 1.3020833333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 133px); left: 13px; overflow: visible; position: absolute; top: 42%; transform: translateY(-50%); width: 173px; z-index: 1; }\",\".framer-gJz50 .framer-1bsiwjv { flex: none; height: 189px; left: -48px; overflow: visible; position: absolute; top: calc(59.859154929577485% - 189px / 2); width: 236px; z-index: 1; }\",\".framer-gJz50 .framer-zjvuvn { background-color: var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, #d9d9d9); flex: none; height: 107%; left: -484px; overflow: visible; position: absolute; right: -484px; top: 100px; z-index: -1; }\",\".framer-gJz50 .framer-updp0g-container { bottom: -26px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: 100%; }\",\".framer-gJz50 .framer-78negr { --border-bottom-width: 1px; --border-color: var(--token-ec3058d2-843b-4836-856e-d99ff3cab10e, #d9d9d9); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 350px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-17daq1h-container { cursor: default; flex: none; height: auto; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-gJz50 .framer-r2i6av-container, .framer-gJz50 .framer-z6a7jp-container, .framer-gJz50 .framer-injtq5-container { height: 600px; position: relative; width: 450px; }\",\".framer-gJz50 .framer-lty1x7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 50px 0px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-gJz50 .framer-1uol2g0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-d7nu8j { aspect-ratio: 0.9157509157509157 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 328px); left: 950px; overflow: visible; position: absolute; top: 100px; width: 300px; z-index: 1; }\",\".framer-gJz50 .framer-1ttbsp8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-mpio1k-container { flex: none; height: auto; position: relative; width: 45%; }\",\".framer-gJz50 .framer-1tcow5d-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-gJz50 .framer-d7vabt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-t03dzd { flex: none; height: 100px; overflow: visible; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-gJz50 .framer-oe0elm-container { flex: none; height: 100px; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: auto; }\",\".framer-gJz50 .framer-1v9u2io { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gJz50 .framer-rptj92-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-gJz50 .framer-1rrmg0a-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gJz50.framer-72rtr7, .framer-gJz50 .framer-1xmjuwb, .framer-gJz50 .framer-1hy1jj6, .framer-gJz50 .framer-4ikq49, .framer-gJz50 .framer-1ccg06c, .framer-gJz50 .framer-abuy7b, .framer-gJz50 .framer-agzdes, .framer-gJz50 .framer-1ogapu1, .framer-gJz50 .framer-1v7xxn5, .framer-gJz50 .framer-p0n4z9, .framer-gJz50 .framer-m567p, .framer-gJz50 .framer-nhwg5u, .framer-gJz50 .framer-hpfhj8, .framer-gJz50 .framer-1rmnva8, .framer-gJz50 .framer-1x0yhz8, .framer-gJz50 .framer-1d0f6kw, .framer-gJz50 .framer-78negr, .framer-gJz50 .framer-lty1x7, .framer-gJz50 .framer-1uol2g0, .framer-gJz50 .framer-1ttbsp8, .framer-gJz50 .framer-d7vabt, .framer-gJz50 .framer-1v9u2io { gap: 0px; } .framer-gJz50.framer-72rtr7 > *, .framer-gJz50 .framer-4ikq49 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gJz50.framer-72rtr7 > :first-child, .framer-gJz50 .framer-1xmjuwb > :first-child, .framer-gJz50 .framer-1hy1jj6 > :first-child, .framer-gJz50 .framer-4ikq49 > :first-child, .framer-gJz50 .framer-1ccg06c > :first-child, .framer-gJz50 .framer-m567p > :first-child, .framer-gJz50 .framer-nhwg5u > :first-child, .framer-gJz50 .framer-hpfhj8 > :first-child, .framer-gJz50 .framer-1rmnva8 > :first-child, .framer-gJz50 .framer-1x0yhz8 > :first-child, .framer-gJz50 .framer-1d0f6kw > :first-child, .framer-gJz50 .framer-78negr > :first-child, .framer-gJz50 .framer-lty1x7 > :first-child, .framer-gJz50 .framer-1uol2g0 > :first-child, .framer-gJz50 .framer-d7vabt > :first-child { margin-top: 0px; } .framer-gJz50.framer-72rtr7 > :last-child, .framer-gJz50 .framer-1xmjuwb > :last-child, .framer-gJz50 .framer-1hy1jj6 > :last-child, .framer-gJz50 .framer-4ikq49 > :last-child, .framer-gJz50 .framer-1ccg06c > :last-child, .framer-gJz50 .framer-m567p > :last-child, .framer-gJz50 .framer-nhwg5u > :last-child, .framer-gJz50 .framer-hpfhj8 > :last-child, .framer-gJz50 .framer-1rmnva8 > :last-child, .framer-gJz50 .framer-1x0yhz8 > :last-child, .framer-gJz50 .framer-1d0f6kw > :last-child, .framer-gJz50 .framer-78negr > :last-child, .framer-gJz50 .framer-lty1x7 > :last-child, .framer-gJz50 .framer-1uol2g0 > :last-child, .framer-gJz50 .framer-d7vabt > :last-child { margin-bottom: 0px; } .framer-gJz50 .framer-1xmjuwb > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-gJz50 .framer-1hy1jj6 > *, .framer-gJz50 .framer-lty1x7 > *, .framer-gJz50 .framer-d7vabt > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-gJz50 .framer-1ccg06c > *, .framer-gJz50 .framer-nhwg5u > *, .framer-gJz50 .framer-1x0yhz8 > *, .framer-gJz50 .framer-78negr > *, .framer-gJz50 .framer-1uol2g0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gJz50 .framer-abuy7b > * { margin: 0px; margin-left: calc(75px / 2); margin-right: calc(75px / 2); } .framer-gJz50 .framer-abuy7b > :first-child, .framer-gJz50 .framer-agzdes > :first-child, .framer-gJz50 .framer-1ogapu1 > :first-child, .framer-gJz50 .framer-1v7xxn5 > :first-child, .framer-gJz50 .framer-p0n4z9 > :first-child, .framer-gJz50 .framer-1ttbsp8 > :first-child, .framer-gJz50 .framer-1v9u2io > :first-child { margin-left: 0px; } .framer-gJz50 .framer-abuy7b > :last-child, .framer-gJz50 .framer-agzdes > :last-child, .framer-gJz50 .framer-1ogapu1 > :last-child, .framer-gJz50 .framer-1v7xxn5 > :last-child, .framer-gJz50 .framer-p0n4z9 > :last-child, .framer-gJz50 .framer-1ttbsp8 > :last-child, .framer-gJz50 .framer-1v9u2io > :last-child { margin-right: 0px; } .framer-gJz50 .framer-agzdes > *, .framer-gJz50 .framer-1ogapu1 > *, .framer-gJz50 .framer-1v7xxn5 > *, .framer-gJz50 .framer-p0n4z9 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gJz50 .framer-m567p > *, .framer-gJz50 .framer-1rmnva8 > *, .framer-gJz50 .framer-1d0f6kw > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-gJz50 .framer-hpfhj8 > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-gJz50 .framer-1ttbsp8 > *, .framer-gJz50 .framer-1v9u2io > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-gJz50 { background: var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17)) /* {\"name\":\"Black\"} */; } .framer-gJz50.framer-72rtr7 { width: 810px; } .framer-gJz50 .framer-1xmjuwb { gap: 150px; padding: 150px 0px 50px 80px; } .framer-gJz50 .framer-1apf4zn { height: var(--framer-aspect-ratio-supported, 610px); left: 490px; right: -320px; top: 40px; width: unset; } .framer-gJz50 .framer-1hy1jj6 { gap: 25px; width: 100%; } .framer-gJz50 .framer-4ikq49 { height: 170px; } .framer-gJz50 .framer-yrzzk9 { width: 60%; } .framer-gJz50 .framer-1r4t7qg-container { height: 50px; width: 350px; } .framer-gJz50 .framer-abuy7b { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 25px; height: min-content; padding: 0px 0px 50px 75px; } .framer-gJz50 .framer-1ok6187-container { flex: none; height: 80px; width: 100%; } .framer-gJz50 .framer-m567p { padding: 0px 0px 100px 0px; } .framer-gJz50 .framer-1uis8an { height: var(--framer-aspect-ratio-supported, 375px); top: -80px; width: 350px; } .framer-gJz50 .framer-1x0yhz8 { gap: 0px; } .framer-gJz50 .framer-em8874 { height: var(--framer-aspect-ratio-supported, 200px); left: 410px; top: 29%; width: 260px; } .framer-gJz50 .framer-1bsiwjv { height: 250px; left: 465px; top: calc(53.89133627019091% - 250px / 2); width: 164px; } .framer-gJz50 .framer-zjvuvn { height: 104%; left: -335px; right: -336px; top: 100px; } .framer-gJz50 .framer-78negr { padding: 200px 0px 50px 0px; } .framer-gJz50 .framer-d7nu8j { height: var(--framer-aspect-ratio-supported, 273px); left: 450px; top: 600px; width: 250px; } .framer-gJz50 .framer-1ttbsp8 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-gJz50 .framer-mpio1k-container { height: 550px; width: 100%; } .framer-gJz50 .framer-1tcow5d-container { align-self: unset; height: 1px; width: 100%; } .framer-gJz50 .framer-d7vabt { padding: 0px; } .framer-gJz50 .framer-t03dzd, .framer-gJz50 .framer-oe0elm-container { height: 90px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gJz50 .framer-1xmjuwb, .framer-gJz50 .framer-1hy1jj6, .framer-gJz50 .framer-abuy7b, .framer-gJz50 .framer-1x0yhz8, .framer-gJz50 .framer-1ttbsp8 { gap: 0px; } .framer-gJz50 .framer-1xmjuwb > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-gJz50 .framer-1xmjuwb > :first-child, .framer-gJz50 .framer-1hy1jj6 > :first-child, .framer-gJz50 .framer-abuy7b > :first-child, .framer-gJz50 .framer-1x0yhz8 > :first-child, .framer-gJz50 .framer-1ttbsp8 > :first-child { margin-top: 0px; } .framer-gJz50 .framer-1xmjuwb > :last-child, .framer-gJz50 .framer-1hy1jj6 > :last-child, .framer-gJz50 .framer-abuy7b > :last-child, .framer-gJz50 .framer-1x0yhz8 > :last-child, .framer-gJz50 .framer-1ttbsp8 > :last-child { margin-bottom: 0px; } .framer-gJz50 .framer-1hy1jj6 > *, .framer-gJz50 .framer-abuy7b > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-gJz50 .framer-1x0yhz8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gJz50 .framer-1ttbsp8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-gJz50 { background: var(--token-38beaf50-f140-4dc5-bb8f-cdaf980dada7, rgb(17, 17, 17)) /* {\"name\":\"Black\"} */; } .framer-gJz50.framer-72rtr7 { width: 390px; } .framer-gJz50 .framer-1xmjuwb { padding: 125px 0px 25px 30px; } .framer-gJz50 .framer-1apf4zn { height: var(--framer-aspect-ratio-supported, 654px); left: 99px; right: -395px; top: 313px; width: unset; } .framer-gJz50 .framer-1hy1jj6 { gap: 25px; width: 100%; } .framer-gJz50 .framer-w72h6d { height: 50px; } .framer-gJz50 .framer-yrzzk9 { width: 225px; } .framer-gJz50 .framer-1ccg06c { border-bottom-left-radius: 50px; } .framer-gJz50 .framer-1r4t7qg-container { height: 50px; order: 0; width: 300px; } .framer-gJz50 .framer-abuy7b { flex-direction: column; gap: 286px; height: min-content; order: 1; padding: 0px 0px 60px 50px; } .framer-gJz50 .framer-2s6s70 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gJz50 .framer-1ok6187-container { flex: none; height: 75px; width: 100%; } .framer-gJz50 .framer-m567p { padding: 25px 0px 125px 0px; } .framer-gJz50 .framer-1uis8an { height: var(--framer-aspect-ratio-supported, 283px); left: 48px; top: -110px; width: 264px; } .framer-gJz50 .framer-hpfhj8 { gap: 50px; } .framer-gJz50 .framer-1x0yhz8 { gap: 0px; } .framer-gJz50 .framer-144unlz { width: 80%; } .framer-gJz50 .framer-em8874 { height: var(--framer-aspect-ratio-supported, 163px); left: unset; right: -75px; top: 27%; width: 212px; } .framer-gJz50 .framer-1bsiwjv { height: 180px; left: unset; right: 50px; top: calc(52.76705276705279% - 180px / 2); width: 118px; } .framer-gJz50 .framer-zjvuvn { height: 104%; left: -319px; right: -320px; top: 48px; } .framer-gJz50 .framer-78negr { padding: 200px 0px 50px 0px; } .framer-gJz50 .framer-b7au7f { width: 90%; } .framer-gJz50 .framer-d7nu8j { height: var(--framer-aspect-ratio-supported, 164px); left: 300px; top: 650px; width: 150px; } .framer-gJz50 .framer-1ttbsp8 { flex-direction: column; } .framer-gJz50 .framer-mpio1k-container { width: 100%; } .framer-gJz50 .framer-1tcow5d-container { align-self: unset; flex: none; width: 100%; } .framer-gJz50 .framer-d7vabt { padding: 0px; } .framer-gJz50 .framer-t03dzd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; } .framer-gJz50 .framer-oe0elm-container { height: 70px; left: unset; position: relative; top: unset; transform: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gJz50 .framer-1hy1jj6, .framer-gJz50 .framer-abuy7b, .framer-gJz50 .framer-hpfhj8, .framer-gJz50 .framer-1x0yhz8, .framer-gJz50 .framer-1ttbsp8, .framer-gJz50 .framer-t03dzd { gap: 0px; } .framer-gJz50 .framer-1hy1jj6 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-gJz50 .framer-1hy1jj6 > :first-child, .framer-gJz50 .framer-abuy7b > :first-child, .framer-gJz50 .framer-hpfhj8 > :first-child, .framer-gJz50 .framer-1x0yhz8 > :first-child, .framer-gJz50 .framer-1ttbsp8 > :first-child { margin-top: 0px; } .framer-gJz50 .framer-1hy1jj6 > :last-child, .framer-gJz50 .framer-abuy7b > :last-child, .framer-gJz50 .framer-hpfhj8 > :last-child, .framer-gJz50 .framer-1x0yhz8 > :last-child, .framer-gJz50 .framer-1ttbsp8 > :last-child { margin-bottom: 0px; } .framer-gJz50 .framer-abuy7b > * { margin: 0px; margin-bottom: calc(286px / 2); margin-top: calc(286px / 2); } .framer-gJz50 .framer-hpfhj8 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-gJz50 .framer-1x0yhz8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gJz50 .framer-1ttbsp8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gJz50 .framer-t03dzd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-gJz50 .framer-t03dzd > :first-child { margin-left: 0px; } .framer-gJz50 .framer-t03dzd > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-gJz50[data-border=\"true\"]::after, .framer-gJz50 [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 6495.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"umNsjdpmP\":{\"layout\":[\"fixed\",\"auto\"]},\"i2GetygBx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gJz50\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6495.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BFBSY7LX5W2U2EROCLVVTQP4VS7S4PC3/IIUX4FGTMD2LK2VWD3RVTAS4SSMUN7B5/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2\",weight:\"700\"}]},...MenuFonts,...StrokeTextFonts,...ButtonFonts,...TickerFonts,...CoreFeaturesFonts,...SolutionsMarqueeFonts,...SolutionFonts,...CarouselFonts,...TierFonts,...AccordionFonts,...FooterFonts,...NoiseFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"umNsjdpmP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i2GetygBx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6495.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "NoiseFonts", "getFonts", "Noise", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "dESCRIPTION", "fEATUREDOWN", "fEATURETOP", "height", "id", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E9PT3qNtY", "TAyp8PDdf", "k0UlGzg0H", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerAIKt3Sd8g", "withCSS", "AIKt3Sd8g_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextOnAppear", "onAppear", "RichText2", "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", "bASICBUTTONHOVER", "bUTTONFILL", "bUTTONHOVERCOLOR", "bUTTONTEXT", "fEATURE1", "fEATURE1COLOR", "fEATURE2", "fEATURE2COLOR", "fEATURE3", "fEATURE3COLOR", "fEATURE4", "fEATURE4COLOR", "fILL", "height", "id", "iNCLUDES", "iNCLUDESCOLOR", "lINK", "pREMIUMBUTTONTEXT", "pRICE", "pRICECOLOR", "tEAR", "tEARCOLOR", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_ref12", "_humanReadableVariantMap_props_variant", "_ref13", "_ref14", "_ref15", "_ref16", "_ref17", "_ref18", "_ref19", "_ref20", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "zAwrsAMF4", "E5xBfXHqa", "i3S1qkIgS", "yAeyO4TQl", "JDmuNufp0", "rGJIMdh3a", "UV0fQZ5ww", "JxShxG3va", "fJb0ORdyS", "DQnxrGNzJ", "yRpX3yLH_", "ySAvNdI1b", "t0hU2Gje2", "kORsX5zox", "D7664j0B4", "yVVeJFyyn", "gYP9w41pN", "Yhlyl7Ony", "ZCsbnmGmY", "ml0ch6pdh", "oGqgVcTQD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "css", "FramerPnYErlF1g", "withCSS", "PnYErlF1g_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "variantClassNames", "transitions", "transformTemplate", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "description", "height", "id", "object", "solution", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "LB11KkpTb", "Sbv6WuMho", "gJJL3QDdr", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "Image2", "css", "FramerrM7AKMQcK", "withCSS", "rM7AKMQcK_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "MenuFonts", "getFonts", "U90YDHNzP_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithFXWithOptimizedAppearEffect", "withFX", "motion", "StrokeTextFonts", "sJyGzZlq0_default", "MotionDivWithOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonFonts", "gwKEAGH29_default", "TickerFonts", "Ticker", "CoreFeaturesFonts", "AIKt3Sd8g_default", "SolutionsMarqueeFonts", "DUIgvi_Y9_default", "SolutionFonts", "rM7AKMQcK_default", "CarouselFonts", "Carousel", "ImageWithFX", "Image2", "TierFonts", "PnYErlF1g_default", "AccordionFonts", "K7YY4Gj6Z_default", "FooterFonts", "PXMnIedkL_default", "NoiseFonts", "Noise", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transformTemplate2", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
