{"version":3,"file":"FpLlKLGylFqiP36iVJb2ltjp8vaJtFQWb56_YapwVBU.BAbYOamu.mjs","names":["Children","useRef","useMemo","useState","useCallback","size","mapRange","useRef","useMemo","Nav","MainCTALRG","Button2","ShimmerDot","Image","Footer","useRef","metadata","metadataProvider","PropertyOverrides","_Fragment","FormPlainTextInput"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js","https:/framerusercontent.com/modules/QbIURI1CrWibjjH7k1PR/2vNdLnvQNPcA8uP12d7k/FollowCursor_Prod.js","https:/framerusercontent.com/modules/Z7W0nR93oDA0ww3oOjR8/Ek6hdyC7N0hvEfTgS47e/ShimmerGrid_Prod.js","https:/framerusercontent.com/modules/lt0DmePJmSqI4pU75gSn/6A87W7dJDFSXrtIuoidf/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef,useMemo}from\"react\";import{useMotionValue,useSpring,animate}from\"framer-motion\";const ALIGNMENT={left:0,top:0,center:.5,right:1,bottom:1};/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function FollowCursor(props){const{smoothing,enabled,horizontalAlignment,verticalAlignment,transition}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=generateInstanceId();const movementTransition={damping:100,stiffness:mapRange(smoothing,0,100,2e3,50)};const mouseX=useMotionValue(0);const mouseY=useMotionValue(0);const springX=useSpring(mouseX,movementTransition);const springY=useSpring(mouseY,movementTransition);const ref=useRef(null);const parentRef=useRef(null);const transformRef=useRef(null);const styleRef=useRef(null);const hasSpringRef=useRef(smoothing!==0);const previousXRef=useRef(null);const previousYRef=useRef(null);const previousStyleTransformRef=useRef(null);const isInitializedRef=useRef(false);const previousScrollXRef=useRef(0);const previousScrollYRef=useRef(0);const opacityRef=useRef(1);const currentOpacityRef=useRef(0);useEffect(()=>{hasSpringRef.current=smoothing!==0;},[smoothing]);useEffect(()=>{let animationFrameId;const updateTransform=()=>{if(isCanvas)return;animationFrameId=requestAnimationFrame(updateTransform);if(!parentRef.current||!styleRef.current){return;}const xValue=(hasSpringRef.current?springX.get():mouseX.get()).toFixed(3);const yValue=(hasSpringRef.current?springY.get():mouseY.get()).toFixed(3);// Get computed styles to capture all existing transforms\nconst computedStyle=window.getComputedStyle(parentRef.current);const transform=calculateTransform(parentRef.current,computedStyle,xValue,yValue,previousXRef.current,previousYRef.current,previousStyleTransformRef.current);const opacity=currentOpacityRef.current*opacityRef.current;transformRef.current=transform;styleRef.current.textContent=`\n\t\t\t\t[data-followcursor=\"${id}\"] { \n\t\t\t\t\ttransform: ${transform} !important;\n\t\t\t\t\t${opacity<.995?`opacity: ${opacity} !important;`:\"\"}\n\t\t\t\t}\n\t\t\t`;previousXRef.current=xValue;previousYRef.current=yValue;previousStyleTransformRef.current=parentRef.current.style.transform;};if(ref.current){const container=ref.current.parentElement;if(container){const parent=container.parentElement;if(parent){parentRef.current=parent;parent.setAttribute(\"data-followcursor\",id);}}}// Start the animation loop\nupdateTransform();// Cleanup function\nreturn()=>{if(animationFrameId){cancelAnimationFrame(animationFrameId);}};},[]);useEffect(()=>{const handleMouseMove=event=>{if(!parentRef.current)return;let setSpringsInstantly=false;// When initialized for the first time, animate opacity\nif(!isInitializedRef.current){isInitializedRef.current=true;animate(currentOpacityRef.current,enabled?1:0,{...transition,onUpdate:latest=>{currentOpacityRef.current=latest;}});setSpringsInstantly=true;}// Get the element's position without transforms\nconst computedStyle=window.getComputedStyle(parentRef.current);const matrix=new DOMMatrix(computedStyle.transform);const rect=parentRef.current.getBoundingClientRect();// Subtract the transform translation to get the original position\nconst originalLeft=rect.left-matrix.m41;const originalTop=rect.top-matrix.m42;// Add scroll offsets to mouse position\nconst scrollX=window.pageXOffset||document.documentElement.scrollLeft;const scrollY=window.pageYOffset||document.documentElement.scrollTop;// Update previous scroll positions\npreviousScrollXRef.current=scrollX;previousScrollYRef.current=scrollY;const mouseXPos=event.clientX+scrollX-(originalLeft+scrollX)-ALIGNMENT[horizontalAlignment]*rect.width;const mouseYPos=event.clientY+scrollY-(originalTop+scrollY)-ALIGNMENT[verticalAlignment]*rect.height;mouseX.set(mouseXPos);mouseY.set(mouseYPos);if(setSpringsInstantly){springX.jump(mouseXPos);springY.jump(mouseYPos);}};// Add scroll event handler to update position\nconst handleScroll=()=>{if(!parentRef.current||!isInitializedRef.current)return;const scrollX=window.scrollX||window.pageXOffset||document.documentElement.scrollLeft;const scrollY=window.scrollY||window.pageYOffset||document.documentElement.scrollTop;// Calculate scroll delta\nconst deltaX=scrollX-previousScrollXRef.current;const deltaY=scrollY-previousScrollYRef.current;// Update previous scroll positions\npreviousScrollXRef.current=scrollX;previousScrollYRef.current=scrollY;// Update position using scroll delta\nmouseX.set(mouseX.get()+deltaX);mouseY.set(mouseY.get()+deltaY);};window.addEventListener(\"mousemove\",handleMouseMove);window.addEventListener(\"scroll\",handleScroll);return()=>{window.removeEventListener(\"mousemove\",handleMouseMove);window.removeEventListener(\"scroll\",handleScroll);};},[enabled]);useEffect(()=>{if(!styleRef.current||!parentRef.current)return;const computedStyle=window.getComputedStyle(parentRef.current);opacityRef.current=parseFloat(computedStyle.opacity)||1;animate(currentOpacityRef.current,enabled&&isInitializedRef.current?1:0,{...transition,onUpdate:latest=>{currentOpacityRef.current=latest;}});},[enabled,transition]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...props.style},children:/*#__PURE__*/_jsx(\"style\",{ref:styleRef})});}FollowCursor.displayName=\"Follow Cursor\";addPropertyControls(FollowCursor,{enabled:{type:ControlType.Boolean,defaultValue:true},smoothing:{type:ControlType.Number,defaultValue:0,min:0,max:100,step:1},horizontalAlignment:{type:ControlType.Enum,defaultValue:\"center\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Alignment\"},verticalAlignment:{type:ControlType.Enum,defaultValue:\"center\",options:[\"top\",\"center\",\"bottom\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],displaySegmentedControl:true,title:\" \"},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:.2,bounce:0},description:\"More components at [Framer University](https://frameruni.link/cc).\"}});const CHARACTERS=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";const generateInstanceId=()=>{const id=useMemo(()=>{let result=\"\";for(let i=0;i<13;i++){result+=CHARACTERS.charAt(Math.floor(Math.random()*CHARACTERS.length));}return result;},[]);return id;};function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}function calculateTransform(element,computedStyle,xValue,yValue,previousX,previousY,previousStyleTransform){xValue=xValue||0;yValue=yValue||0;previousX=previousX||0;previousY=previousY||0;// Get transform\nconst computedTransform=computedStyle.transform;const styleTransform=element.style.transform;// Subtract previous values from current values for a single transform\nconst finalX=xValue-previousX;const finalY=yValue-previousY;const translateTransform=`translate(${finalX}px, ${finalY}px)`;let transform=translateTransform;if(styleTransform&&styleTransform!==\"none\"){if(previousStyleTransform&&previousStyleTransform!==\"none\"){transform=`${translateTransform} ${invertTransform(previousStyleTransform)} ${styleTransform}`;}else{transform=`${translateTransform} ${styleTransform}`;}}return computedTransform&&computedTransform!==\"none\"?`${transform} ${computedTransform}`:transform;}function invertTransform(transformString){const transforms=transformString.match(/\\w+\\([^)]+\\)/g)||[];const invertedTransforms=transforms.reverse().map(transform=>{const[func,valuesString]=transform.match(/(\\w+)\\(([^)]+)\\)/).slice(1);const values=valuesString.split(\",\").map(v=>v.trim());const invertNumber=v=>{const[_,sign,num,unit]=v.match(/^(-?)(\\d*\\.?\\d+)(\\D*)$/);return`${sign?\"\":\"-\"}${num}${unit}`;};switch(func.toLowerCase()){case\"translate\":case\"translate3d\":case\"translatex\":case\"translatey\":case\"translatez\":return`${func}(${values.map(invertNumber).join(\", \")})`;case\"scale\":case\"scale3d\":return`${func}(${values.map(v=>1/parseFloat(v)).join(\", \")})`;case\"scalex\":case\"scaley\":case\"scalez\":return`${func}(${1/parseFloat(values[0])})`;case\"rotate\":case\"rotatex\":case\"rotatey\":case\"rotatez\":return`${func}(${invertNumber(values[0])})`;case\"rotate3d\":const rotateValues=values.map(parseFloat);return`${func}(${rotateValues[0]}, ${rotateValues[1]}, ${rotateValues[2]}, ${invertNumber(values[3])})`;case\"skew\":case\"skewx\":case\"skewy\":return`${func}(${values.map(invertNumber).join(\", \")})`;case\"matrix\":case\"matrix3d\":console.warn(`Inverting ${func} is not supported. Returning original.`);return transform;default:console.warn(`Unknown transform function: ${func}. Returning original.`);return transform;}});return invertedTransforms.join(\" \");}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FollowCursor\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FollowCursor_Prod.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import FollowCursor from\"https://framerusercontent.com/modules/QbIURI1CrWibjjH7k1PR/2vNdLnvQNPcA8uP12d7k/FollowCursor_Prod.js\";import{cubicBezier}from\"framer-motion\";const ease=cubicBezier(.7,0,.7,1);var Pattern;(function(Pattern){Pattern[\"Grid\"]=\"grid\";Pattern[\"Checkerboard\"]=\"checkerboard\";Pattern[\"HorizontalLines\"]=\"horizontalLines\";Pattern[\"VerticalLines\"]=\"verticalLines\";Pattern[\"DiagonalLines\"]=\"diagonalLines\";Pattern[\"Dots\"]=\"dots\";Pattern[\"Triangles\"]=\"triangles\";Pattern[\"Custom\"]=\"custom\";})(Pattern||(Pattern={}));const IMAGE_SIZING_MAP={fill:\"cover\",fit:\"contain\",stretch:\"100% 100%\"};const POSITION_MAP={topLeft:\"0 0\",topCenter:\"50% 0\",topRight:\"100% 0\",left:\"0 50%\",center:\"50% 50%\",right:\"100% 50%\",bottomLeft:\"0 100%\",bottomCenter:\"50% 100%\",bottomRight:\"100% 100%\"};/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 400\n */export default function ShimmerGrid({color,hoverColor,hoverSize,hoverShape,patternPreset,flip,lineWidth,customPatternImage,customPatternSizing,tileSize,customPatternMode,customPatternPosition,dotSize,radius,smoothing,style}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isCustom=patternPreset===\"custom\";const bgPosition=isCustom&&customPatternSizing!==\"stretch\"?POSITION_MAP[customPatternPosition]:POSITION_MAP.center;let bgImage=\"\";let bgSize=`${tileSize}px ${tileSize}px`;let bgRepeat=\"repeat\";switch(patternPreset){case\"grid\":bgImage=`repeating-conic-gradient(at ${lineWidth}px ${lineWidth}px, [color] 0deg 90deg, transparent 90deg 180deg, [color] 180deg 360deg)`;break;case\"checkerboard\":bgImage=flip?`repeating-conic-gradient([color] 0% 25%, transparent 0% 50%)`:`repeating-conic-gradient(transparent 0% 25%, [color] 0% 50%)`;break;case\"horizontalLines\":bgImage=`linear-gradient(to top, [color] ${lineWidth}px, transparent ${lineWidth}px)`;break;case\"verticalLines\":bgImage=`linear-gradient(to left, [color] ${lineWidth}px, transparent ${lineWidth}px)`;break;case\"diagonalLines\":const w=lineWidth/2;const sideLength=getSideLength(tileSize*2);bgImage=`linear-gradient(to top ${flip?\"left\":\"right\"}, [color] ${w}px, transparent ${w}px, transparent calc(50% - ${w}px), [color] calc(50% - ${w}px), [color] calc(50% + ${w}px), transparent calc(50% + ${w}px), transparent calc(100% - ${w}px), [color] calc(100% - ${w}px), [color] 100%)`;bgSize=`${sideLength}px ${sideLength}px`;break;case\"dots\":bgImage=`radial-gradient([color] ${dotSize/2-.4}px, transparent ${dotSize/2+.4}px)`;break;case\"triangles\":bgImage=`linear-gradient(${flip?-45:45}deg, transparent calc(50% - 0.1px), [color] calc(50% + 0.1px))`;break;case\"custom\":bgImage=`url(\"${customPatternImage?.src}\")`;if(customPatternSizing!==\"tile\"){bgRepeat=\"no-repeat\";bgSize=IMAGE_SIZING_MAP[customPatternSizing];}break;}let hoverStyle={};let hoverSizeValue=hoverSize;if(hoverShape===\"glow\"){const gradientPoints=[];for(let i=0;i<15;i++){const normalized=mapRange(i,0,14,0,1);gradientPoints.push(`rgba(255, 255, 255, ${ease(1-normalized)}) ${mapRange(i,0,14,0,100)}%`);}hoverStyle={maskImage:`radial-gradient(closest-side, ${gradientPoints.join(\", \")})`};hoverSizeValue=hoverSize*2;}else if(hoverShape===\"circle\"){hoverStyle={borderRadius:\"50%\"};}return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",borderRadius:radius,overflow:\"hidden\",backgroundImage:isCustom?\"\":bgImage.replace(/\\[color\\]/g,color),backgroundSize:bgSize,backgroundPosition:bgPosition,backgroundRepeat:bgRepeat,...style},children:[isCustom&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,backgroundColor:color,maskImage:bgImage,maskSize:bgSize,maskPosition:bgPosition,maskRepeat:bgRepeat,maskMode:customPatternMode}}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,maskImage:isCustom?bgImage:bgImage.replace(/\\[color\\]/g,\"white\"),maskSize:bgSize,maskPosition:bgPosition,maskRepeat:bgRepeat,maskMode:isCustom?customPatternMode:undefined,WebkitMaskImage:isCustom?bgImage:bgImage.replace(/\\[color\\]/g,\"white\"),WebkitMaskSize:bgSize,WebkitMaskPosition:bgPosition,WebkitMaskRepeat:bgRepeat,WebkitMaskMode:isCustom?customPatternMode:undefined},children:/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:isCanvas?\"50%\":0,left:isCanvas?\"50%\":0,transform:isCanvas?\"translate(-50%, -50%)\":undefined,width:hoverSizeValue,height:hoverSizeValue,backgroundColor:hoverColor,...hoverStyle},children:/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(FollowCursor,{enabled:true,smoothing:smoothing,horizontalAlignment:\"center\",verticalAlignment:\"center\"})})})})]});}ShimmerGrid.displayName=\"Shimmer Grid\";addPropertyControls(ShimmerGrid,{color:{type:ControlType.Color,defaultValue:\"rgba(153, 153, 153, 0.5)\"},hoverColor:{type:ControlType.Color,defaultValue:\"#FFF\"},hoverSize:{type:ControlType.Number,defaultValue:400,min:1,max:2e3,step:1},hoverShape:{type:ControlType.Enum,defaultValue:\"glow\",options:[\"glow\",\"circle\"],optionTitles:[\"Glow\",\"Circle\"],displaySegmentedControl:true,title:\"Shape\"},patternPreset:{type:ControlType.Enum,defaultValue:\"grid\",options:Object.values(Pattern),optionTitles:[\"Grid\",\"Checkerboard\",\"Horizontal Lines\",\"Vertical Lines\",\"Diagonal Lines\",\"Dots\",\"Triangles\",\"Custom\"],title:\"Pattern\"},customPatternImage:{type:ControlType.ResponsiveImage,title:\"Image\",hidden:props=>props.patternPreset!==\"custom\"},customPatternSizing:{type:ControlType.Enum,defaultValue:\"tile\",options:[\"fill\",\"fit\",\"stretch\",\"tile\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\",\"Tile\"],title:\"Sizing\",hidden:props=>props.patternPreset!==\"custom\"},flip:{type:ControlType.Boolean,defaultValue:false,hidden:props=>props.patternPreset!==\"checkerboard\"&&props.patternPreset!==\"triangles\"&&props.patternPreset!==\"diagonalLines\"},lineWidth:{type:ControlType.Number,defaultValue:2,min:1,step:1,displayStepper:true,hidden:props=>props.patternPreset!==\"horizontalLines\"&&props.patternPreset!==\"verticalLines\"&&props.patternPreset!==\"diagonalLines\"&&props.patternPreset!==\"grid\"},tileSize:{type:ControlType.Number,defaultValue:50,min:1,step:1,hidden:props=>props.patternPreset===\"custom\"&&props.customPatternSizing!==\"tile\"},dotSize:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,hidden:props=>props.patternPreset!==\"dots\"},customPatternPosition:{type:ControlType.Enum,defaultValue:\"center\",options:[\"topLeft\",\"topCenter\",\"topRight\",\"left\",\"center\",\"right\",\"bottomLeft\",\"bottomCenter\",\"bottomRight\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Left\",\"Center\",\"Right\",\"Bottom Left\",\"Bottom Center\",\"Bottom Right\"],title:\"Position\",hidden:props=>props.patternPreset!==\"custom\"||props.customPatternSizing===\"stretch\"},customPatternMode:{type:ControlType.Enum,defaultValue:\"alpha\",options:[\"alpha\",\"luminance\"],optionTitles:[\"Alpha\",\"Luminance\"],title:\"Mode\",hidden:props=>props.patternPreset!==\"custom\"},smoothing:{type:ControlType.Number,defaultValue:0,min:0,max:100,step:1},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});function getSideLength(hypotenuseLength){// Check if input is a valid number\nif(typeof hypotenuseLength!==\"number\"||isNaN(hypotenuseLength)||hypotenuseLength<=0){return hypotenuseLength;}// Calculate the side length using the Pythagorean theorem\n// In a right isosceles triangle: side² + side² = hypotenuse²\n// So, side² = hypotenuse² / 2\nconst sideLength=Math.sqrt(Math.pow(hypotenuseLength,2)/2);// Round the result to 2 decimal places\nreturn Number(sideLength.toFixed(2));}function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ShimmerGrid\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ShimmerGrid_Prod.map","// Generated by Framer (6ae4e96)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import ShimmerDot from\"https://framerusercontent.com/modules/DUVzJQodDTCwiiMKuNbI/2yhbwm9XFCHvLs24O3wG/ShimmerDot_Prod.js\";import ShimmerGrid from\"https://framerusercontent.com/modules/Z7W0nR93oDA0ww3oOjR8/Ek6hdyC7N0hvEfTgS47e/ShimmerGrid_Prod.js\";import MainCTALRG from\"#framer/local/canvasComponent/iZHwYi72N/iZHwYi72N.js\";import Button2 from\"#framer/local/canvasComponent/JNfjGQcku/JNfjGQcku.js\";import Footer from\"#framer/local/canvasComponent/SXvwRAU9u/SXvwRAU9u.js\";import Nav from\"#framer/local/canvasComponent/WNfnTgc0j/WNfnTgc0j.js\";import{withFL0TrackOnSubmit}from\"#framer/local/codeFile/crgO4EP/Examples.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavFonts=getFonts(Nav);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MainCTALRGFonts=getFonts(MainCTALRG);const Button2Fonts=getFonts(Button2);const FormContainerWithFL0TrackOnSubmit1y91gon=withCodeBoundaryForOverrides(FormContainer,{inComponentSlot:true,nodeId:\"wXg0EalmY\",override:withFL0TrackOnSubmit,scopeId:\"augiA20Il\"});const TickerFonts=getFonts(Ticker);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ShimmerDotFonts=getFonts(ShimmerDot);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const ShimmerGridFonts=getFonts(ShimmerGrid);const RichTextWithFX=withFX(RichText);const FormContainerWithFL0TrackOnSubmitpl57sv=withCodeBoundaryForOverrides(FormContainer,{inComponentSlot:true,nodeId:\"FJd0Y4NMp\",override:withFL0TrackOnSubmit,scopeId:\"augiA20Il\"});const FormContainerWithFL0TrackOnSubmit11drelf=withCodeBoundaryForOverrides(FormContainer,{inComponentSlot:true,nodeId:\"ZdEdTz2yn\",override:withFL0TrackOnSubmit,scopeId:\"augiA20Il\"});const FooterFonts=getFonts(Footer);const breakpoints={Iw_35VRLd:\"(max-width: 809.98px)\",lmTuUUgQ7:\"(min-width: 810px) and (max-width: 1199.98px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-CDNmz\";const variantClassNames={Iw_35VRLd:\"framer-v-xcqh4\",lmTuUUgQ7:\"framer-v-z8n4io\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.8,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20};const animation2={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={delay:.05,duration:.3,ease:[.44,0,.66,1],type:\"tween\"};const textEffect={effect:animation2,startDelay:.1,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={delay:.05,duration:.4,ease:[.44,0,.66,1],type:\"tween\"};const textEffect1={effect:animation2,startDelay:.5,tokenization:\"line\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition4};const transition5={delay:.8,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition6={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition7={delay:.9,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:25};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20};const transition8={delay:.3,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:-20};const transition9={delay:.3,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition10={delay:.5,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:20};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0};const transition11={bounce:.2,delay:.3,duration:.4,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:-20,y:0};const transition12={bounce:.2,delay:.1,duration:.4,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:-20,y:0};const transition13={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:-20,y:0};const transition14={delay:.4,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const transition15={bounce:.2,delay:.7,duration:.4,type:\"spring\"};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition15,x:0,y:0};const transition16={bounce:.2,delay:.6,duration:.4,type:\"spring\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition16,x:0,y:0};const transition17={bounce:.2,delay:.4,duration:.4,type:\"spring\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition17,x:0,y:0};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition18={bounce:.2,delay:.8,duration:.4,type:\"spring\"};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition18,x:0,y:0};const transition19={bounce:.2,delay:.9,duration:.4,type:\"spring\"};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition19,x:0,y:0};const transition20={delay:.4,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition20,x:0,y:0};const transition21={delay:.5,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition21,x:0,y:0};const transition22={delay:.7,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition22,x:0,y:20};const transition23={delay:.9,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition23,x:0,y:20};const transition24={delay:.6,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition24,x:0,y:0};const transition25={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition25,x:0,y:0};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:80,y:0};const animation37={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:80,y:0};const transition26={delay:.3,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation38={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition26,x:0,y:0};const animation39={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition27={delay:.6,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation40={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition27,x:0,y:0};const animation41={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Iw_35VRLd\",Tablet:\"lmTuUUgQ7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const kFwMVbk423bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"YkjZp0wqN\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Iw_35VRLd\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Iw_35VRLd\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-wy5kvd-container\",\"data-framer-appear-id\":\"wy5kvd\",initial:animation1,layoutScroll:true,nodeId:\"O0vvckSQL\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{style:{width:\"100%\"},variant:\"kqB8LSX12\"},lmTuUUgQ7:{style:{width:\"100%\"},variant:\"kqB8LSX12\"}},children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"O0vvckSQL\",layoutId:\"O0vvckSQL\",style:{height:\"100%\",width:\"100%\"},variant:\"RtlI0_msD\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xf7a04\",\"data-framer-name\":\"hero wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hhiil3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1640uax\",\"data-framer-name\":\"hero Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yw2m5s\",\"data-framer-name\":\"Hero heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.88px\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Convert intent signals into\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.88px\",\"--framer-line-height\":\"58px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"engaged buyers\"})]})},lmTuUUgQ7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.88px\",\"--framer-line-height\":\"57px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Convert intent signals into\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.88px\",\"--framer-line-height\":\"57px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"engaged buyers\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.88px\",\"--framer-line-height\":\"68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Convert intent signals into\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.88px\",\"--framer-line-height\":\"68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"engaged buyers\"})]}),className:\"framer-1iprvke\",\"data-framer-name\":\"Heading 1 → Infrastructure on\",effect:textEffect,fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18tt70l\",\"data-framer-name\":\"hero paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Identify, engage, and convert your best-fit customers whether they've visited\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"your site or not.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Identify, engage, and convert your best-fit customers whether\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"they've visited your site or not.\"})]}),className:\"framer-y1x6nr\",\"data-framer-name\":\"Identify, engage, and convert your best-fit customers whether they've visited your site or not.\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{y:(componentViewport?.y||0)+0+0+78+-30+0+-287+150+868},lmTuUUgQ7:{y:(componentViewport?.y||0)+0+0+78+0+0+0+150+674}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+78+0+0+0+150+784,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-18jvl4e-container\",\"data-framer-appear-id\":\"18jvl4e\",id:\"18jvl4e\",initial:animation5,nodeId:\"s7heRfUba\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation3,children:[/*#__PURE__*/_jsx(MainCTALRG,{height:\"100%\",id:\"s7heRfUba\",kFwMVbk42:kFwMVbk423bnx0g({overlay}),layoutId:\"s7heRfUba\",variant:\"jB7DRyvKF\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1ewtwrx\"),\"data-framer-portal-id\":\"18jvl4e\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"C4JEdNSpH\"),/*#__PURE__*/_jsx(FormContainerWithFL0TrackOnSubmit1y91gon,{action:\"https://api.framer.com/forms/v1/forms/0bcfefe5-720d-4b95-8842-cdc49e600aa4/submit\",animate:animation7,className:cx(scopingClassNames,\"framer-1y91gon\"),\"data-border\":true,\"data-framer-portal-id\":\"18jvl4e\",exit:animation6,initial:animation8,nodeId:\"wXg0EalmY\",redirectUrl:{webPageId:\"r5XUvPZ4J\"},transformTemplate:transformTemplate1,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sdjg0g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.28px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Request invite to FL0\"})}),className:\"framer-x5av10\",\"data-framer-name\":\"Heading 2 → Product support.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Request your invite by filling out the form below.\"})}),className:\"framer-6m39wi\",\"data-framer-name\":\"Get help from the community. If you're on a paid plan, submit a ticket to our support team.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-yfszwv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your Name\"})}),className:\"framer-62mxa1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1bjl3lq\",inputName:\"Name\",placeholder:\"Enter your full name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1vw0zaw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your work email\"})}),className:\"framer-15vsicg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1vw6n8v\",inputName:\"work email\",placeholder:\"your.name@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-703xbw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your company URL\"})}),className:\"framer-1p1em2a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-642qxj\",inputName:\"Company\",placeholder:\"yourcompany.com\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1hdmb6x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"What problem are you looking to solve with us\"})}),className:\"framer-16zo57e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-16ii25q\",inputName:\"description\",placeholder:\"Please describe the problem you're facing\",type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{width:\"290px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"377px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3w3kpt-container\",inComponentSlot:true,nodeId:\"HDd0alk6O\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"HDd0alk6O\",layoutId:\"HDd0alk6O\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"XGaXqYVws\",success:\"rsPiXR9ZD\"},\"zZ9UFv6A0\"),width:\"100%\"})})})})]})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1992a2y\",\"data-framer-appear-id\":\"1992a2y\",\"data-framer-name\":\"Logo strip\",initial:animation10,optimized:true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c1ndmv\",\"data-framer-name\":\"text box paragraph\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Backed by world-class product leaders\"})}),className:\"framer-5n5kab\",\"data-framer-name\":\"Up to 98% of visitors leave your site without signing up creating a massive missed revenue opportunity.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16373k0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VUa2M3UqK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{gap:25}},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:\"VUa2M3UqK\",layoutId:\"VUa2M3UqK\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-22gyfy\",\"data-framer-name\":\"BlackbirdLogo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16eaubv\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"19\" viewBox=\"0 0 156 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M64.3632 8.05808C63.5599 8.05754 62.9617 8.16794 62.5685 8.38929V8.39011C62.1742 8.61037 61.977 8.9307 61.977 9.3511C61.977 9.77096 62.1962 10.0948 62.6346 10.3227C63.0729 10.5506 63.7043 10.6645 64.5288 10.6645C65.0408 10.6664 65.5515 10.6147 66.0527 10.5103C66.5106 10.4167 66.9557 10.2685 67.3784 10.069L70.5037 16.4525C69.6346 16.9725 68.567 17.3956 67.3009 17.7219C66.1252 18.0307 64.9155 18.1905 63.7 18.1975C61.8373 18.197 60.1954 17.8288 58.7743 17.0929C57.3971 16.3977 56.2533 15.3151 55.4834 13.9783C54.7126 12.6543 54.3122 11.1474 54.3241 9.61542C54.323 7.90498 54.7391 6.36994 55.5723 5.0103C56.3825 3.66758 57.5586 2.5835 58.9627 1.88501C60.4056 1.16331 61.9885 0.80246 63.7114 0.80246C64.9536 0.808078 66.1898 0.975081 67.389 1.29927C68.6263 1.61634 69.6645 2.04246 70.5037 2.57761L67.3784 8.53287C66.9096 8.37156 66.4271 8.25305 65.9369 8.17882C65.4162 8.09805 64.8901 8.05769 64.3632 8.05808ZM15.7467 9.39504C16.4537 8.99694 16.9976 8.50529 17.3783 7.92009C17.759 7.3349 17.9493 6.61891 17.9493 5.77212C17.9493 4.28467 17.3824 3.1287 16.2484 2.30421C15.1259 1.47972 13.5452 1.06747 11.5062 1.06747H0.859375V17.9208H12.743C14.4583 17.9208 15.8315 17.5048 16.8627 16.6727C17.8868 15.8487 18.3988 14.7113 18.3988 13.2602C18.3988 12.3547 18.1742 11.5982 17.725 10.9907C17.2758 10.3832 16.6166 9.85134 15.7475 9.39504H15.7467ZM9.19347 14.3567C8.80398 14.3568 8.42318 14.2415 8.09924 14.0252C7.7753 13.809 7.52276 13.5015 7.37356 13.1417C7.22436 12.7819 7.18519 12.386 7.26102 12.004C7.33685 11.6219 7.52426 11.2709 7.79956 10.9954C8.07486 10.7199 8.42568 10.5322 8.80766 10.456C9.18964 10.3799 9.58562 10.4187 9.94552 10.5676C10.3054 10.7165 10.6131 10.9688 10.8296 11.2926C11.0461 11.6163 11.1618 11.997 11.162 12.3865C11.1618 12.9087 10.9542 13.4094 10.5849 13.7785C10.2156 14.1477 9.71481 14.355 9.19265 14.355L9.19347 14.3567ZM9.19265 8.06531C8.80313 8.06531 8.42235 7.94979 8.09848 7.73336C7.77461 7.51693 7.5222 7.20932 7.37317 6.84943C7.22414 6.48953 7.18519 6.09353 7.26124 5.7115C7.33729 5.32947 7.52493 4.97857 7.80043 4.70319C8.07592 4.42781 8.4269 4.24031 8.80896 4.16442C9.19102 4.08853 9.58701 4.12764 9.94684 4.27682C10.3067 4.426 10.6142 4.67854 10.8305 5.00249C11.0468 5.32645 11.1621 5.70728 11.162 6.09681C11.1618 6.61896 10.9542 7.11965 10.5849 7.4888C10.2156 7.85794 9.71481 8.06531 9.19265 8.06531ZM86.8863 9.46112C88.0145 8.60471 88.8857 7.45472 89.4046 6.13678C89.942 4.8114 90.2106 3.12163 90.2106 1.06747H82.6124C82.6232 1.85766 82.5321 2.64593 82.3416 3.41286C82.1891 4.03218 81.9272 4.61926 81.5682 5.14641C81.2531 5.6045 80.8337 5.98114 80.3445 6.24528C79.8388 6.50981 79.2827 6.66412 78.7129 6.69804V1.06911H71.2583V17.9208H78.7129V11.769C81.1423 11.8576 82.4492 13.9083 82.6336 17.9208H90.6846C90.559 15.9037 90.1742 14.2047 89.5303 12.8238C88.8864 11.4429 88.0048 10.322 86.8855 9.46112H86.8863ZM106.526 9.39504C107.234 8.99694 107.777 8.50529 108.158 7.92009C108.539 7.3349 108.729 6.61891 108.729 5.77212C108.729 4.28467 108.162 3.1287 107.028 2.30421C105.906 1.47972 104.325 1.06747 102.286 1.06747H91.6392V17.9208H103.523C105.238 17.9208 106.611 17.5048 107.642 16.6727C108.665 15.8487 109.177 14.7113 109.177 13.2602C109.177 12.3547 108.952 11.5982 108.503 10.9907C108.054 10.3832 107.395 9.85134 106.526 9.39504ZM100.14 14.3567C99.7503 14.3562 99.3699 14.2403 99.0463 14.0236C98.7228 13.807 98.4708 13.4993 98.3221 13.1395C98.1734 12.7796 98.1347 12.3838 98.2109 12.002C98.2871 11.6201 98.4748 11.2695 98.7502 10.9943C99.0256 10.7191 99.3764 10.5317 99.7583 10.4558C100.14 10.3799 100.536 10.4189 100.896 10.5679C101.255 10.7169 101.563 10.9692 101.779 11.2929C101.996 11.6166 102.111 11.9972 102.111 12.3865C102.112 12.6455 102.061 12.9019 101.962 13.1411C101.863 13.3803 101.717 13.5977 101.534 13.7807C101.351 13.9637 101.134 14.1088 100.894 14.2076C100.655 14.3064 100.399 14.3571 100.14 14.3567ZM100.14 8.06694C99.7501 8.0671 99.3692 7.95172 99.0453 7.73539C98.7213 7.51906 98.4688 7.2115 98.3196 6.85162C98.1704 6.49175 98.1314 6.09572 98.2073 5.71363C98.2833 5.33154 98.4709 4.98057 98.7463 4.70511C99.0218 4.42965 99.3728 4.24207 99.7549 4.16611C100.137 4.09015 100.533 4.12922 100.893 4.27837C101.253 4.42753 101.56 4.68006 101.777 5.00404C101.993 5.32802 102.108 5.70888 102.108 6.09844C102.108 6.62052 101.901 7.12121 101.532 7.49038C101.162 7.85954 100.662 8.06694 100.14 8.06694ZM135.423 8.23499C135.084 8.88064 134.593 9.43414 133.992 9.8478L133.988 9.85025C134.921 10.9087 135.663 12.1213 136.181 13.434C136.721 14.7839 137.076 16.2795 137.246 17.9208H129.504C129.352 15.7046 129.026 14.1106 128.525 13.1387C128.025 12.1668 127.274 11.6809 126.272 11.6809H126.228V17.9208H118.773V1.06747H129.895C131.094 1.07346 132.161 1.30133 133.096 1.7511C134.031 2.20088 134.734 2.81571 135.206 3.5956C135.674 4.35172 135.919 5.2247 135.912 6.11394C135.923 6.85015 135.755 7.57801 135.423 8.23499ZM125.98 7.73784C126.304 7.95416 126.685 8.06955 127.075 8.06938C127.597 8.06938 128.098 7.86199 128.467 7.49283C128.836 7.12366 129.043 6.62296 129.043 6.10089C129.044 5.71132 128.928 5.33047 128.712 5.00649C128.496 4.68251 128.188 4.42997 127.828 4.28082C127.468 4.13167 127.072 4.0926 126.69 4.16856C126.308 4.24452 125.957 4.43209 125.682 4.70756C125.406 4.98302 125.219 5.33399 125.143 5.71608C125.067 6.09816 125.106 6.49419 125.255 6.85407C125.404 7.21395 125.657 7.52151 125.98 7.73784ZM26.4414 1.06747H18.9753V17.9208H32.9791V13.2708H26.4414V1.06747ZM109.895 1.06747H117.349V17.9208H109.895V1.06747ZM154.699 5.20752C153.943 3.87589 152.804 2.80236 151.43 2.12629C150.023 1.41927 148.422 1.06576 146.626 1.06576H138.199V17.9208H146.46C148.286 17.9208 149.913 17.5784 151.342 16.8937C152.77 16.209 153.878 15.2028 154.666 13.8753C155.455 12.5641 155.867 11.0612 155.859 9.5312C155.865 8.01231 155.465 6.51935 154.699 5.20752ZM146.878 11.525C146.489 11.5251 146.108 11.4098 145.784 11.1934C145.46 10.9771 145.208 10.6695 145.058 10.3097C144.909 9.94979 144.87 9.55376 144.946 9.17168C145.022 8.78959 145.21 8.43862 145.485 8.16316C145.761 7.8877 146.112 7.70012 146.494 7.62416C146.876 7.5482 147.272 7.58727 147.632 7.73642C147.992 7.88557 148.299 8.13811 148.515 8.46209C148.732 8.78607 148.847 9.16692 148.847 9.55649C148.847 10.0786 148.64 10.5793 148.27 10.9484C147.901 11.3176 147.401 11.525 146.878 11.525ZM33.5315 17.9208L39.3848 1.06747H50.0202L55.8743 17.9208H48.4196L47.4456 15.0713H41.9676L40.996 17.9208H33.5315ZM43.6367 10.7141C43.9523 10.9249 44.3234 11.0374 44.7029 11.0372V11.0413C45.2114 11.0409 45.6988 10.8386 46.0583 10.479C46.4178 10.1194 46.6198 9.63184 46.62 9.12338C46.6208 8.74385 46.509 8.3726 46.2987 8.05665C46.0884 7.7407 45.7891 7.49424 45.4387 7.34847C45.0883 7.20271 44.7025 7.16419 44.3301 7.2378C43.9578 7.31141 43.6157 7.49383 43.3471 7.76198C43.0785 8.03012 42.8955 8.37193 42.8212 8.74413C42.747 9.11634 42.7848 9.5022 42.93 9.85288C43.0752 10.2036 43.3211 10.5033 43.6367 10.7141Z\" fill=\"#EDEDED\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4rqde3\",\"data-framer-name\":\"WebflowLogo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ql67li\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:101,svg:'<svg width=\"101\" height=\"25\" viewBox=\"0 0 101 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33.1527 9.78729C33.1527 7.99228 31.4131 6.10977 28.3895 6.10977C24.9986 6.10977 21.2757 8.58127 20.7057 13.5142C20.1232 18.4953 23.2409 20.7088 26.3835 20.7088C29.5262 20.7088 31.1717 19.4916 32.8547 17.8682C31.4074 16.062 29.5386 16.8967 29.1805 17.0806C28.5877 17.4077 27.9164 17.5693 27.238 17.5485C26.0254 17.5485 24.7878 17.0077 24.7878 14.7572C32.5577 13.9943 33.1527 11.5711 33.1527 9.78729ZM29.3018 10.0823C29.2519 10.6354 29.0298 11.5823 25.095 12.113C25.9223 9.18484 27.5089 8.96495 28.2376 8.96495C28.3853 8.95828 28.5327 8.98315 28.6698 9.03788C28.8069 9.0926 28.9305 9.1759 29.0322 9.28212C29.134 9.38834 29.2114 9.51498 29.2593 9.65345C29.3071 9.79191 29.3243 9.93896 29.3097 10.0846L29.3018 10.0823ZM16.1419 10.5625L14.3354 16.2078L13.0605 6.40594C10.2159 6.40594 8.68594 8.42309 7.88809 10.5502L5.68496 16.2202L5.37557 10.6108C5.20784 8.0035 2.80298 6.41716 0.859375 6.41716L3.20984 20.5977C6.19041 20.5865 7.7997 18.5806 8.64174 16.4535L10.5049 11.6328C10.5219 11.8291 11.7923 20.5989 11.7923 20.5989C14.7865 20.5989 16.3958 18.7175 17.2582 16.6633L21.4514 6.41828C18.4992 6.41828 16.9431 8.42308 16.1396 10.5625H16.1419ZM44.1412 6.07499C42.2973 6.07499 40.8886 7.07122 39.6987 8.53415V8.52293L40.7617 0C38.3115 0 36.3192 2.11587 35.9361 5.26387L34.0934 20.4878C35.5043 20.4878 37.0014 20.0817 37.806 19.0484C38.5246 19.9706 39.6001 20.7088 41.1969 20.7088C45.3289 20.7088 48.1633 15.9374 48.1633 11.46C48.1383 7.37637 46.146 6.08621 44.1536 6.08621L44.1412 6.07499ZM43.7559 13.393C43.3252 15.8892 41.9244 17.5866 40.577 17.5866C39.2295 17.5866 38.6345 16.9842 38.6345 16.9842C38.8951 14.7965 39.0561 13.4547 39.5502 12.2981C40.0443 11.1414 41.2207 9.29703 42.4458 9.29703C43.6471 9.29703 44.191 10.8834 43.757 13.3919L43.7559 13.393ZM58.4683 6.40706H55.5852L55.5966 6.25898C55.7949 4.38992 56.2403 3.40603 57.709 3.2456C58.712 3.14688 59.1574 2.63081 59.2685 2.06538L59.6277 0.0852632C53.8479 0.0482411 52.0187 2.53096 51.553 6.32068L51.5416 6.40706H51.4793C50.5387 6.40706 49.5005 7.465 49.326 8.80565L49.2637 9.29703H51.1948L49.5742 22.6025L49.0778 24.9888C49.1402 24.9888 49.2138 25 49.275 25C51.9836 24.9013 53.7176 22.7742 54.1006 19.6868L55.3654 9.29478H56.272C57.1628 9.29478 58.2032 8.4085 58.3845 6.93323L58.4683 6.40706ZM73.4641 6.16025C70.1357 6.16025 66.993 8.59473 66.0297 12.4203C65.0664 16.246 66.5261 20.7705 71.4242 20.7705C76.3223 20.7705 79.1272 16.0586 79.1272 12.1365C79.1318 8.23797 76.4731 6.15913 73.4653 6.15913L73.4641 6.16025ZM74.8128 13.2685C74.6405 15.0029 73.8721 17.6349 71.7687 17.6349C69.6653 17.6349 69.9498 14.5609 70.1538 13.0968C70.377 11.5352 71.2553 9.30937 73.148 9.30937C74.8502 9.30937 75.01 11.3142 74.8139 13.2696L74.8128 13.2685ZM95.5748 10.5502L93.7683 16.1955C93.7196 15.7523 92.4945 6.3936 92.4945 6.3936C89.6499 6.3936 88.1268 8.41074 87.3289 10.5378L85.1258 16.2078C85.1145 15.8017 84.8164 10.5984 84.8164 10.5984C84.6373 7.99116 82.2347 6.40482 80.2832 6.40482L82.6212 20.5854C85.6018 20.5742 87.2111 18.5683 88.0531 16.4412L89.9094 11.6204C89.9208 11.8168 91.1969 20.5865 91.1969 20.5865C94.191 20.5865 95.7935 18.7051 96.6628 16.651L100.859 6.40594C97.9151 6.40594 96.3556 8.41074 95.5635 10.5502H95.5748ZM61.1905 0.0830207L58.7653 19.5252L58.2689 21.9238C58.3301 21.9238 58.4049 21.935 58.4661 21.935C61.0749 21.898 62.9313 19.6239 63.2792 16.7575L64.6765 5.60267C65.1004 2.19552 63.0593 0.080776 61.1905 0.080776V0.0830207Z\" fill=\"#EDEDED\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l1w83m\",\"data-framer-name\":\"Rainfall\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:778,pixelWidth:1990,sizes:\"91px\",src:\"https://framerusercontent.com/images/gqOZ8a9697DgXOYhuY9G3MJm9k.svg\",srcSet:\"https://framerusercontent.com/images/gqOZ8a9697DgXOYhuY9G3MJm9k.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gqOZ8a9697DgXOYhuY9G3MJm9k.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gqOZ8a9697DgXOYhuY9G3MJm9k.svg 1990w\"},className:\"framer-4f1hbg\",\"data-framer-name\":\"image 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzammd\",\"data-framer-name\":\"Skip logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13x3wl9\",\"data-framer-name\":\"SKIP CAPITAL\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:117,svg:'<svg width=\"117\" height=\"21\" viewBox=\"-1 -1 117 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.84356 18.8445C3.86767 18.8445 3.02675 18.689 2.32079 18.3781C1.61483 18.0464 1.07498 17.4866 0.701239 16.6989C0.327496 15.9111 0.140625 14.8227 0.140625 13.4337V12.3764C0.555895 12.3764 0.971165 12.3764 1.38643 12.3764C1.8017 12.3764 2.20659 12.3764 2.6011 12.3764V13.5892C2.6011 14.5636 2.69453 15.3202 2.88141 15.8592C3.06828 16.3775 3.3382 16.7403 3.69118 16.9476C4.04416 17.1549 4.43867 17.2586 4.8747 17.2586C5.58066 17.2586 6.16204 17.0306 6.61883 16.5745C7.07563 16.0977 7.30403 15.2477 7.30403 14.0246C7.30403 13.1331 7.16907 12.4697 6.89914 12.0344C6.62922 11.5783 6.22433 11.2155 5.68448 10.946C5.14463 10.6765 4.46981 10.3759 3.66004 10.0442C2.97484 9.75395 2.3727 9.41189 1.85361 9.018C1.33453 8.62411 0.940019 8.1162 0.670094 7.49427C0.400169 6.85161 0.265206 6.05346 0.265206 5.09984C0.265206 3.98036 0.41055 3.06819 0.701239 2.36334C1.01269 1.63775 1.51102 1.09875 2.19621 0.746317C2.88141 0.39389 3.80538 0.217677 4.96814 0.217677C6.44235 0.217677 7.58434 0.58047 8.39411 1.30606C9.20389 2.01091 9.60878 3.02673 9.60878 4.35352V6.43699C9.21427 6.43699 8.81977 6.43699 8.42526 6.43699C8.03075 6.43699 7.63625 6.43699 7.24174 6.43699V5.00655C7.24174 4.03219 7.05487 3.3066 6.68113 2.82979C6.30738 2.35297 5.73639 2.11457 4.96814 2.11457C4.15836 2.11457 3.57698 2.35297 3.224 2.82979C2.87102 3.3066 2.69453 4.04255 2.69453 5.03764C2.69453 5.80469 2.83988 6.41626 3.13057 6.87234C3.44202 7.30769 3.83653 7.64975 4.31409 7.89853C4.81241 8.12657 5.3315 8.34424 5.87135 8.55156C6.80571 8.90398 7.55319 9.27714 8.11381 9.67103C8.69518 10.0442 9.12084 10.5314 9.39076 11.1326C9.66069 11.7338 9.79565 12.5941 9.79565 13.7136C9.79565 14.9782 9.58801 15.994 9.17274 16.761C8.75747 17.5074 8.1761 18.0464 7.42861 18.3781C6.70189 18.689 5.8402 18.8445 4.84356 18.8445Z\" fill=\"#EDEDED\"/>\\n<path d=\"M19.4848 18.6268L15.0622 9.0802L19.3602 0.248773H21.9764L17.4604 9.11129L22.1322 18.6268H19.4848ZM12.2903 18.6268V0.248773H14.6885V18.6268H12.2903Z\" fill=\"#EDEDED\"/>\\n<path d=\"M23.8756 18.6268V0.248773H26.2738V18.6268H23.8756Z\" fill=\"#EDEDED\"/>\\n<path d=\"M29.4996 18.6268V0.248773H35.4484C36.5488 0.248773 37.4105 0.507911 38.0334 1.02619C38.6771 1.52373 38.9989 2.29078 38.9989 3.32733V6.65466C38.9989 7.38025 38.8951 8.06438 38.6875 8.70704C38.5006 9.3497 38.1269 9.86798 37.5662 10.2619C37.0056 10.6558 36.1959 10.8527 35.1369 10.8527H32.0224V18.6268H29.4996ZM32.0224 9.45335H34.3583C35.1058 9.45335 35.6664 9.20458 36.0401 8.70704C36.4139 8.20949 36.6007 7.42171 36.6007 6.3437V4.29133C36.6007 3.35843 36.4243 2.68467 36.0713 2.27005C35.7391 1.8347 35.3134 1.61702 34.7943 1.61702H32.0224V9.45335Z\" fill=\"#EDEDED\"/>\\n<path d=\"M51.0737 19C50.1394 19 49.3088 18.886 48.5821 18.6579C47.8554 18.4506 47.2844 18.0049 46.8691 17.3208C46.4538 16.6367 46.2462 15.6105 46.2462 14.2422V4.10475C46.2462 2.96454 46.4538 2.1042 46.8691 1.52373C47.2844 0.922531 47.8554 0.518276 48.5821 0.310965C49.3296 0.103655 50.1705 0 51.1049 0C52.06 0 52.8801 0.114021 53.5653 0.342063C54.2713 0.549374 54.8215 0.943263 55.216 1.52373C55.6313 2.1042 55.8389 2.96454 55.8389 4.10475V7.46317H53.4408V4.04255C53.4408 3.29624 53.3369 2.74686 53.1293 2.39444C52.9217 2.02128 52.6414 1.78287 52.2884 1.67921C51.9354 1.55483 51.5305 1.49264 51.0737 1.49264C50.6169 1.49264 50.212 1.55483 49.8591 1.67921C49.5061 1.78287 49.2258 2.02128 49.0181 2.39444C48.8313 2.74686 48.7378 3.29624 48.7378 4.04255V14.9885C48.7378 15.7349 48.8313 16.2946 49.0181 16.6678C49.2258 17.0202 49.5061 17.2586 49.8591 17.383C50.212 17.4866 50.6169 17.5385 51.0737 17.5385C51.5513 17.5385 51.9562 17.4866 52.2884 17.383C52.6414 17.2586 52.9217 17.0202 53.1293 16.6678C53.3369 16.2946 53.4408 15.7349 53.4408 14.9885V12.0033H55.8389V14.2422C55.8389 15.6312 55.6313 16.6678 55.216 17.3519C54.8215 18.0153 54.2713 18.4506 53.5653 18.6579C52.8594 18.886 52.0288 19 51.0737 19Z\" fill=\"#EDEDED\"/>\\n<path d=\"M57.2586 18.6268L61.1206 0.248773H64.3597L68.1905 18.6268H65.5432L64.6711 14.5843H60.6222L59.8125 18.6268H57.2586ZM60.7157 13.3404H64.6088L62.6778 2.86088L60.7157 13.3404Z\" fill=\"#EDEDED\"/>\\n<path d=\"M70.0318 18.6268V0.248773H75.9806C77.081 0.248773 77.9427 0.507911 78.5656 1.02619C79.2093 1.52373 79.5311 2.29078 79.5311 3.32733V6.65466C79.5311 7.38025 79.4273 8.06438 79.2197 8.70704C79.0328 9.3497 78.6591 9.86798 78.0985 10.2619C77.5378 10.6558 76.7281 10.8527 75.6691 10.8527H72.5546V18.6268H70.0318ZM72.5546 9.45335H74.8905C75.638 9.45335 76.1986 9.20458 76.5723 8.70704C76.9461 8.20949 77.133 7.42171 77.133 6.3437V4.29133C77.133 3.35843 76.9565 2.68467 76.6035 2.27005C76.2713 1.8347 75.8456 1.61702 75.3265 1.61702H72.5546V9.45335Z\" fill=\"#EDEDED\"/>\\n<path d=\"M81.7997 18.6268V0.248773H84.1979V18.6268H81.7997Z\" fill=\"#EDEDED\"/>\\n<path d=\"M89.0121 18.6268V1.95908H85.9599V0.248773H94.4937V1.95908H91.4103V18.6268H89.0121Z\" fill=\"#EDEDED\"/>\\n<path d=\"M94.1105 18.6268L97.9725 0.248773H101.212L105.042 18.6268H102.395L101.523 14.5843H97.4742L96.6644 18.6268H94.1105ZM97.5676 13.3404H101.461L99.5298 2.86088L97.5676 13.3404Z\" fill=\"#EDEDED\"/>\\n<path d=\"M106.884 18.6268V0.248773H109.282V16.9476H114.141V18.6268H106.884Z\" fill=\"#EDEDED\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gtbtdv\",\"data-framer-name\":\"Buckley\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18kq3ir\",\"data-framer-name\":\"Buckley Ventures\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:140,svg:'<svg width=\"140\" height=\"19\" viewBox=\"-1 -1 140 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.96781 5.737H5.38781C6.35981 5.737 7.05581 5.569 7.47581 5.233C7.90781 4.885 8.12381 4.369 8.12381 3.685C8.12381 3.229 8.05181 2.869 7.90781 2.605C7.76381 2.341 7.56581 2.137 7.31381 1.993C7.06181 1.849 6.76781 1.759 6.43181 1.723C6.10781 1.675 5.75981 1.651 5.38781 1.651H1.96781V5.737ZM0.257812 0.210999H4.91981C5.19581 0.210999 5.48981 0.216998 5.80181 0.228998C6.12581 0.228998 6.44381 0.246998 6.75581 0.282999C7.06781 0.306999 7.35581 0.348999 7.61981 0.408999C7.89581 0.468999 8.12981 0.558999 8.32181 0.678999C8.74181 0.930999 9.09581 1.279 9.38381 1.723C9.68381 2.167 9.83381 2.713 9.83381 3.361C9.83381 4.045 9.66581 4.639 9.32981 5.143C9.00581 5.635 8.53781 6.001 7.92581 6.241V6.277C8.71781 6.445 9.32381 6.805 9.74381 7.357C10.1638 7.909 10.3738 8.581 10.3738 9.373C10.3738 9.841 10.2898 10.297 10.1218 10.741C9.95381 11.185 9.70181 11.581 9.36581 11.929C9.04181 12.265 8.63381 12.541 8.14181 12.757C7.66181 12.961 7.10381 13.063 6.46781 13.063H0.257812V0.210999ZM1.96781 11.623H6.25181C7.00781 11.623 7.59581 11.419 8.01581 11.011C8.44781 10.603 8.66381 10.039 8.66381 9.319C8.66381 8.899 8.58581 8.551 8.42981 8.275C8.27381 7.999 8.06381 7.783 7.79981 7.627C7.54781 7.459 7.25381 7.345 6.91781 7.285C6.58181 7.213 6.23381 7.177 5.87381 7.177H1.96781V11.623Z\" fill=\"#EDEDED\"/>\\n<path d=\"M20.0321 13.063H18.5921V11.587H18.5561C18.2321 12.163 17.8181 12.589 17.3141 12.865C16.8101 13.129 16.2161 13.261 15.5321 13.261C14.9201 13.261 14.4101 13.183 14.0021 13.027C13.5941 12.859 13.2641 12.625 13.0121 12.325C12.7601 12.025 12.5801 11.671 12.4721 11.263C12.3761 10.843 12.3281 10.381 12.3281 9.877V3.757H13.8581V10.057C13.8581 10.633 14.0261 11.089 14.3621 11.425C14.6981 11.761 15.1601 11.929 15.7481 11.929C16.2161 11.929 16.6181 11.857 16.9541 11.713C17.3021 11.569 17.5901 11.365 17.8181 11.101C18.0461 10.837 18.2141 10.531 18.3221 10.183C18.4421 9.823 18.5021 9.433 18.5021 9.013V3.757H20.0321V13.063Z\" fill=\"#EDEDED\"/>\\n<path d=\"M28.648 6.745C28.528 6.157 28.276 5.701 27.892 5.377C27.508 5.053 26.992 4.891 26.344 4.891C25.792 4.891 25.33 4.993 24.958 5.197C24.586 5.401 24.286 5.671 24.058 6.007C23.842 6.343 23.686 6.733 23.59 7.177C23.494 7.609 23.446 8.059 23.446 8.527C23.446 8.959 23.494 9.379 23.59 9.787C23.698 10.195 23.86 10.561 24.076 10.885C24.292 11.197 24.574 11.449 24.922 11.641C25.27 11.833 25.684 11.929 26.164 11.929C26.92 11.929 27.508 11.731 27.928 11.335C28.36 10.939 28.624 10.381 28.72 9.661H30.286C30.118 10.813 29.686 11.701 28.99 12.325C28.306 12.949 27.37 13.261 26.182 13.261C25.474 13.261 24.844 13.147 24.292 12.919C23.752 12.691 23.296 12.367 22.924 11.947C22.564 11.527 22.288 11.029 22.096 10.453C21.916 9.865 21.826 9.223 21.826 8.527C21.826 7.831 21.916 7.183 22.096 6.583C22.276 5.971 22.546 5.443 22.906 4.999C23.278 4.543 23.74 4.189 24.292 3.937C24.844 3.673 25.486 3.541 26.218 3.541C26.746 3.541 27.238 3.607 27.694 3.739C28.162 3.859 28.57 4.051 28.918 4.315C29.278 4.579 29.572 4.915 29.8 5.323C30.028 5.719 30.172 6.193 30.232 6.745H28.648Z\" fill=\"#EDEDED\"/>\\n<path d=\"M32.088 0.210999H33.618V7.825L37.866 3.757H39.918L36.228 7.141L40.188 13.063H38.244L35.058 8.203L33.618 9.535V13.063H32.088V0.210999Z\" fill=\"#EDEDED\"/>\\n<path d=\"M41.422 0.210999H42.952V13.063H41.422V0.210999Z\" fill=\"#EDEDED\"/>\\n<path d=\"M51.7842 7.519C51.7602 7.159 51.6762 6.817 51.5322 6.493C51.4002 6.169 51.2142 5.893 50.9742 5.665C50.7462 5.425 50.4702 5.239 50.1462 5.107C49.8342 4.963 49.4862 4.891 49.1022 4.891C48.7062 4.891 48.3462 4.963 48.0222 5.107C47.7102 5.239 47.4402 5.425 47.2122 5.665C46.9842 5.905 46.8042 6.187 46.6722 6.511C46.5402 6.823 46.4622 7.159 46.4382 7.519H51.7842ZM53.2602 10.111C53.0562 11.155 52.6062 11.941 51.9102 12.469C51.2142 12.997 50.3382 13.261 49.2822 13.261C48.5382 13.261 47.8902 13.141 47.3382 12.901C46.7982 12.661 46.3422 12.325 45.9702 11.893C45.5982 11.461 45.3162 10.945 45.1242 10.345C44.9442 9.745 44.8422 9.091 44.8182 8.383C44.8182 7.675 44.9262 7.027 45.1422 6.439C45.3582 5.851 45.6582 5.341 46.0422 4.909C46.4382 4.477 46.9002 4.141 47.4282 3.901C47.9682 3.661 48.5562 3.541 49.1922 3.541C50.0202 3.541 50.7042 3.715 51.2442 4.063C51.7962 4.399 52.2342 4.831 52.5582 5.359C52.8942 5.887 53.1222 6.463 53.2422 7.087C53.3742 7.711 53.4282 8.305 53.4042 8.869H46.4382C46.4262 9.277 46.4742 9.667 46.5822 10.039C46.6902 10.399 46.8642 10.723 47.1042 11.011C47.3442 11.287 47.6502 11.509 48.0222 11.677C48.3942 11.845 48.8322 11.929 49.3362 11.929C49.9842 11.929 50.5122 11.779 50.9202 11.479C51.3402 11.179 51.6162 10.723 51.7482 10.111H53.2602Z\" fill=\"#EDEDED\"/>\\n<path d=\"M58.6442 14.305C58.4642 14.761 58.2842 15.145 58.1042 15.457C57.9362 15.769 57.7442 16.021 57.5282 16.213C57.3242 16.417 57.0902 16.561 56.8262 16.645C56.5742 16.741 56.2802 16.789 55.9442 16.789C55.7642 16.789 55.5842 16.777 55.4042 16.753C55.2242 16.729 55.0502 16.687 54.8822 16.627V15.223C55.0142 15.283 55.1642 15.331 55.3322 15.367C55.5122 15.415 55.6622 15.439 55.7822 15.439C56.0942 15.439 56.3522 15.361 56.5562 15.205C56.7722 15.061 56.9342 14.851 57.0422 14.575L57.6722 13.009L53.9822 3.757H55.7102L58.4282 11.371H58.4642L61.0742 3.757H62.6942L58.6442 14.305Z\" fill=\"#EDEDED\"/>\\n<path d=\"M74.31 13.063H72.366L67.848 0.210999H69.684L73.356 11.353H73.392L77.1 0.210999H78.882L74.31 13.063Z\" fill=\"#EDEDED\"/>\\n<path d=\"M85.4815 7.519C85.4575 7.159 85.3735 6.817 85.2295 6.493C85.0975 6.169 84.9115 5.893 84.6715 5.665C84.4435 5.425 84.1675 5.239 83.8435 5.107C83.5315 4.963 83.1835 4.891 82.7995 4.891C82.4035 4.891 82.0435 4.963 81.7195 5.107C81.4075 5.239 81.1375 5.425 80.9095 5.665C80.6815 5.905 80.5015 6.187 80.3695 6.511C80.2375 6.823 80.1595 7.159 80.1355 7.519H85.4815ZM86.9575 10.111C86.7535 11.155 86.3035 11.941 85.6075 12.469C84.9115 12.997 84.0355 13.261 82.9795 13.261C82.2355 13.261 81.5875 13.141 81.0355 12.901C80.4955 12.661 80.0395 12.325 79.6675 11.893C79.2955 11.461 79.0135 10.945 78.8215 10.345C78.6415 9.745 78.5395 9.091 78.5155 8.383C78.5155 7.675 78.6235 7.027 78.8395 6.439C79.0555 5.851 79.3555 5.341 79.7395 4.909C80.1355 4.477 80.5975 4.141 81.1255 3.901C81.6655 3.661 82.2535 3.541 82.8895 3.541C83.7175 3.541 84.4015 3.715 84.9415 4.063C85.4935 4.399 85.9315 4.831 86.2555 5.359C86.5915 5.887 86.8195 6.463 86.9395 7.087C87.0715 7.711 87.1255 8.305 87.1015 8.869H80.1355C80.1235 9.277 80.1715 9.667 80.2795 10.039C80.3875 10.399 80.5615 10.723 80.8015 11.011C81.0415 11.287 81.3475 11.509 81.7195 11.677C82.0915 11.845 82.5295 11.929 83.0335 11.929C83.6815 11.929 84.2095 11.779 84.6175 11.479C85.0375 11.179 85.3135 10.723 85.4455 10.111H86.9575Z\" fill=\"#EDEDED\"/>\\n<path d=\"M88.6875 3.757H90.1275V5.233H90.1635C90.7995 4.105 91.8075 3.541 93.1875 3.541C93.7995 3.541 94.3095 3.625 94.7175 3.793C95.1255 3.961 95.4555 4.195 95.7075 4.495C95.9594 4.795 96.1335 5.155 96.2295 5.575C96.3375 5.983 96.3915 6.439 96.3915 6.943V13.063H94.8615V6.763C94.8615 6.187 94.6935 5.731 94.3575 5.395C94.0215 5.059 93.5594 4.891 92.9715 4.891C92.5034 4.891 92.0955 4.963 91.7475 5.107C91.4115 5.251 91.1294 5.455 90.9015 5.719C90.6735 5.983 90.4995 6.295 90.3795 6.655C90.2715 7.003 90.2175 7.387 90.2175 7.807V13.063H88.6875V3.757Z\" fill=\"#EDEDED\"/>\\n<path d=\"M100.813 3.757H102.667V5.107H100.813V10.885C100.813 11.065 100.825 11.209 100.849 11.317C100.885 11.425 100.945 11.509 101.029 11.569C101.113 11.629 101.227 11.671 101.371 11.695C101.527 11.707 101.725 11.713 101.965 11.713H102.667V13.063H101.497C101.101 13.063 100.759 13.039 100.471 12.991C100.195 12.931 99.9674 12.829 99.7874 12.685C99.6194 12.541 99.4934 12.337 99.4094 12.073C99.3254 11.809 99.2834 11.461 99.2834 11.029V5.107H97.6994V3.757H99.2834V0.966998H100.813V3.757Z\" fill=\"#EDEDED\"/>\\n<path d=\"M112.071 13.063H110.631V11.587H110.595C110.271 12.163 109.857 12.589 109.353 12.865C108.849 13.129 108.255 13.261 107.571 13.261C106.959 13.261 106.449 13.183 106.041 13.027C105.633 12.859 105.303 12.625 105.051 12.325C104.799 12.025 104.619 11.671 104.511 11.263C104.415 10.843 104.367 10.381 104.367 9.877V3.757H105.897V10.057C105.897 10.633 106.065 11.089 106.401 11.425C106.737 11.761 107.199 11.929 107.787 11.929C108.255 11.929 108.657 11.857 108.993 11.713C109.341 11.569 109.629 11.365 109.857 11.101C110.085 10.837 110.253 10.531 110.361 10.183C110.481 9.823 110.541 9.433 110.541 9.013V3.757H112.071V13.063Z\" fill=\"#EDEDED\"/>\\n<path d=\"M114.315 3.757H115.755V5.719H115.791C116.163 4.963 116.619 4.405 117.159 4.045C117.699 3.685 118.383 3.517 119.211 3.541V5.161C118.599 5.161 118.077 5.245 117.645 5.413C117.213 5.581 116.865 5.827 116.601 6.151C116.337 6.475 116.145 6.871 116.025 7.339C115.905 7.795 115.845 8.323 115.845 8.923V13.063H114.315V3.757Z\" fill=\"#EDEDED\"/>\\n<path d=\"M126.509 7.519C126.485 7.159 126.401 6.817 126.257 6.493C126.125 6.169 125.939 5.893 125.699 5.665C125.471 5.425 125.195 5.239 124.871 5.107C124.559 4.963 124.211 4.891 123.827 4.891C123.431 4.891 123.071 4.963 122.747 5.107C122.435 5.239 122.165 5.425 121.937 5.665C121.709 5.905 121.529 6.187 121.397 6.511C121.265 6.823 121.187 7.159 121.163 7.519H126.509ZM127.985 10.111C127.781 11.155 127.331 11.941 126.635 12.469C125.939 12.997 125.063 13.261 124.007 13.261C123.263 13.261 122.615 13.141 122.063 12.901C121.523 12.661 121.067 12.325 120.695 11.893C120.323 11.461 120.041 10.945 119.849 10.345C119.669 9.745 119.567 9.091 119.543 8.383C119.543 7.675 119.651 7.027 119.867 6.439C120.083 5.851 120.383 5.341 120.767 4.909C121.163 4.477 121.625 4.141 122.153 3.901C122.693 3.661 123.281 3.541 123.917 3.541C124.745 3.541 125.429 3.715 125.969 4.063C126.521 4.399 126.959 4.831 127.283 5.359C127.619 5.887 127.847 6.463 127.967 7.087C128.099 7.711 128.153 8.305 128.129 8.869H121.163C121.151 9.277 121.199 9.667 121.307 10.039C121.415 10.399 121.589 10.723 121.829 11.011C122.069 11.287 122.375 11.509 122.747 11.677C123.119 11.845 123.557 11.929 124.061 11.929C124.709 11.929 125.237 11.779 125.645 11.479C126.065 11.179 126.341 10.723 126.473 10.111H127.985Z\" fill=\"#EDEDED\"/>\\n<path d=\"M130.651 10.129C130.663 10.465 130.741 10.753 130.885 10.993C131.029 11.221 131.215 11.407 131.443 11.551C131.683 11.683 131.947 11.779 132.235 11.839C132.535 11.899 132.841 11.929 133.153 11.929C133.393 11.929 133.645 11.911 133.909 11.875C134.173 11.839 134.413 11.773 134.629 11.677C134.857 11.581 135.043 11.443 135.187 11.263C135.331 11.071 135.403 10.831 135.403 10.543C135.403 10.147 135.253 9.847 134.953 9.643C134.653 9.439 134.275 9.277 133.819 9.157C133.375 9.025 132.889 8.911 132.361 8.815C131.833 8.707 131.341 8.563 130.885 8.383C130.441 8.191 130.069 7.927 129.769 7.591C129.469 7.255 129.319 6.787 129.319 6.187C129.319 5.719 129.421 5.317 129.625 4.981C129.841 4.645 130.111 4.375 130.435 4.171C130.771 3.955 131.143 3.799 131.551 3.703C131.971 3.595 132.385 3.541 132.793 3.541C133.321 3.541 133.807 3.589 134.251 3.685C134.695 3.769 135.085 3.925 135.421 4.153C135.769 4.369 136.045 4.669 136.249 5.053C136.453 5.425 136.573 5.893 136.609 6.457H135.079C135.055 6.157 134.977 5.911 134.845 5.719C134.713 5.515 134.545 5.353 134.341 5.233C134.137 5.113 133.909 5.029 133.657 4.981C133.417 4.921 133.171 4.891 132.919 4.891C132.691 4.891 132.457 4.909 132.217 4.945C131.989 4.981 131.779 5.047 131.587 5.143C131.395 5.227 131.239 5.347 131.119 5.503C130.999 5.647 130.939 5.839 130.939 6.079C130.939 6.343 131.029 6.565 131.209 6.745C131.401 6.913 131.641 7.057 131.929 7.177C132.217 7.285 132.541 7.381 132.901 7.465C133.261 7.537 133.621 7.615 133.981 7.699C134.365 7.783 134.737 7.885 135.097 8.005C135.469 8.125 135.793 8.287 136.069 8.491C136.357 8.683 136.585 8.929 136.753 9.229C136.933 9.529 137.023 9.901 137.023 10.345C137.023 10.909 136.903 11.377 136.663 11.749C136.435 12.121 136.129 12.421 135.745 12.649C135.373 12.877 134.947 13.033 134.467 13.117C133.999 13.213 133.531 13.261 133.063 13.261C132.547 13.261 132.055 13.207 131.587 13.099C131.119 12.991 130.705 12.817 130.345 12.577C129.985 12.325 129.697 12.001 129.481 11.605C129.265 11.197 129.145 10.705 129.121 10.129H130.651Z\" fill=\"#EDEDED\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dri40s\",\"data-framer-name\":\"JelixLopgo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:224,pixelWidth:300,src:\"https://framerusercontent.com/images/KtmKTLqkiA7SFd7kJJiJhYiWU4.svg\"},className:\"framer-lq2jo4\",\"data-framer-name\":\"image 4\"})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-84wdi5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hwf5WqCfZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ShimmerDot,{animation:{animate:true,speed:52},colors:[\"rgb(240, 240, 240)\",\"rgb(0, 0, 0)\"],contrast:0,gap:20,height:\"100%\",id:\"hwf5WqCfZ\",layoutId:\"hwf5WqCfZ\",radius:0,shapeType:\"Circle\",size:2,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10qg5s4\",\"data-framer-name\":\"Section Intent\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+844+100+0),pixelHeight:176,pixelWidth:520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png\",srcSet:\"https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png 520w\"}},lmTuUUgQ7:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1323+140+0),pixelHeight:176,pixelWidth:520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png\",srcSet:\"https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png 520w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1433+140+0),pixelHeight:176,pixelWidth:520,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png\",srcSet:\"https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ych6za4vsga3Np56q5yQgzL9Y.png 520w\"},className:\"framer-1j02p7n\",\"data-border\":true,\"data-framer-name\":\"Intent sectionCion\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lb54m3\",\"data-framer-name\":\"IntentTitlecon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c6ezbd\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.666 20.2727C16.1889 20.2727 20.666 15.7956 20.666 10.2727C20.666 4.74986 16.1889 0.272705 10.666 0.272705C5.14317 0.272705 0.666016 4.74986 0.666016 10.2727C0.666016 15.7956 5.14317 20.2727 10.666 20.2727Z\" stroke=\"url(#paint0_linear_2061_306)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.666 16.2727C13.9797 16.2727 16.666 13.5864 16.666 10.2727C16.666 6.959 13.9797 4.27271 10.666 4.27271C7.35231 4.27271 4.66602 6.959 4.66602 10.2727C4.66602 13.5864 7.35231 16.2727 10.666 16.2727Z\" stroke=\"url(#paint1_linear_2061_306)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.666 12.2727C11.7706 12.2727 12.666 11.3773 12.666 10.2727C12.666 9.16814 11.7706 8.27271 10.666 8.27271C9.56145 8.27271 8.66602 9.16814 8.66602 10.2727C8.66602 11.3773 9.56145 12.2727 10.666 12.2727Z\" stroke=\"url(#paint2_linear_2061_306)\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_306\" x1=\"10.666\" y1=\"20.2727\" x2=\"10.666\" y2=\"0.272705\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_306\" x1=\"10.666\" y1=\"20.2727\" x2=\"10.666\" y2=\"0.272705\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_306\" x1=\"10.666\" y1=\"20.2727\" x2=\"10.666\" y2=\"0.272705\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kfm7aq\",\"data-framer-name\":\"IntentHeadingIcon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d36pr5\",\"data-framer-name\":\"Heading 2 → The platform to supercharge\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:81,svg:'<svg width=\"81\" height=\"27\" viewBox=\"-1 -1 81 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.58647 0.46582V23.7385H0.666016V0.46582H5.58647Z\" fill=\"url(#paint0_linear_2061_308)\"/>\\n<path d=\"M11.9848 13.6476V23.7385H7.14386V6.284H11.7575V9.36355H11.962C12.3484 8.3484 12.9961 7.54537 13.9052 6.95446C14.8143 6.35597 15.9166 6.05673 17.212 6.05673C18.4242 6.05673 19.481 6.32188 20.3825 6.85218C21.284 7.38249 21.9848 8.14006 22.4848 9.12491C22.9848 10.1022 23.2348 11.2689 23.2348 12.6249V23.7385H18.3939V13.4885C18.4014 12.4204 18.1287 11.587 17.5757 10.9885C17.0226 10.3825 16.2613 10.0795 15.2916 10.0795C14.6401 10.0795 14.0643 10.2196 13.5643 10.4999C13.0719 10.7802 12.6855 11.1893 12.4052 11.7272C12.1325 12.2575 11.9923 12.8976 11.9848 13.6476Z\" fill=\"url(#paint1_linear_2061_308)\"/>\\n<path d=\"M33.9342 6.284V9.92037H23.4228V6.284H33.9342ZM25.8092 2.10218H30.6501V18.3749C30.6501 18.8219 30.7183 19.1704 30.8547 19.4204C30.991 19.6628 31.1804 19.8332 31.4228 19.9317C31.6728 20.0302 31.9607 20.0795 32.2865 20.0795C32.5137 20.0795 32.741 20.0605 32.9683 20.0226C33.1956 19.9772 33.3698 19.9431 33.491 19.9204L34.2524 23.5226C34.01 23.5984 33.669 23.6855 33.2297 23.784C32.7903 23.8901 32.2562 23.9545 31.6274 23.9772C30.4607 24.0226 29.438 23.8673 28.5592 23.5113C27.688 23.1552 27.01 22.6022 26.5251 21.8522C26.0403 21.1022 25.8016 20.1552 25.8092 19.0113V2.10218Z\" fill=\"url(#paint2_linear_2061_308)\"/>\\n<path d=\"M42.4547 24.0795C40.6592 24.0795 39.1137 23.7158 37.8183 22.9885C36.5304 22.2537 35.538 21.2158 34.841 19.8749C34.144 18.5264 33.7956 16.9317 33.7956 15.0908C33.7956 13.2954 34.144 11.7196 34.841 10.3635C35.538 9.00749 36.519 7.95067 37.7842 7.19309C39.0569 6.43552 40.5494 6.05673 42.2615 6.05673C43.413 6.05673 44.485 6.24234 45.4774 6.61355C46.4774 6.97718 47.3486 7.52643 48.091 8.26128C48.841 8.99612 49.4243 9.92037 49.841 11.034C50.2577 12.1401 50.466 13.4355 50.466 14.9204V16.2499H35.7274V13.2499H45.9092C45.9092 12.5529 45.7577 11.9355 45.4547 11.3976C45.1516 10.8598 44.7312 10.4393 44.1933 10.1363C43.663 9.82567 43.0456 9.67037 42.341 9.67037C41.6062 9.67037 40.9547 9.84082 40.3865 10.1817C39.8259 10.5151 39.3865 10.9658 39.0683 11.534C38.7501 12.0946 38.5872 12.7196 38.5797 13.409V16.2613C38.5797 17.1249 38.7387 17.8711 39.0569 18.4999C39.3827 19.1287 39.841 19.6135 40.4319 19.9545C41.0228 20.2954 41.7236 20.4658 42.5342 20.4658C43.0721 20.4658 43.5645 20.3901 44.0115 20.2385C44.4584 20.087 44.841 19.8598 45.1592 19.5567C45.4774 19.2537 45.7198 18.8825 45.8865 18.4431L50.3637 18.7385C50.1365 19.8143 49.6706 20.7537 48.966 21.5567C48.269 22.3522 47.3675 22.9734 46.2615 23.4204C45.163 23.8598 43.894 24.0795 42.4547 24.0795Z\" fill=\"url(#paint3_linear_2061_308)\"/>\\n<path d=\"M56.066 13.6476V23.7385H51.2251V6.284H55.8387V9.36355H56.0433C56.4297 8.3484 57.0774 7.54537 57.9865 6.95446C58.8956 6.35597 59.9978 6.05673 61.2933 6.05673C62.5054 6.05673 63.5622 6.32188 64.4637 6.85218C65.3653 7.38249 66.066 8.14006 66.566 9.12491C67.066 10.1022 67.316 11.2689 67.316 12.6249V23.7385H62.4751V13.4885C62.4827 12.4204 62.21 11.587 61.6569 10.9885C61.1039 10.3825 60.3425 10.0795 59.3728 10.0795C58.7213 10.0795 58.1456 10.2196 57.6456 10.4999C57.1531 10.7802 56.7668 11.1893 56.4865 11.7272C56.2137 12.2575 56.0736 12.8976 56.066 13.6476Z\" fill=\"url(#paint4_linear_2061_308)\"/>\\n<path d=\"M78.0154 6.284V9.92037H67.5041V6.284H78.0154ZM69.8904 2.10218H74.7314V18.3749C74.7314 18.8219 74.7995 19.1704 74.9359 19.4204C75.0723 19.6628 75.2617 19.8332 75.5041 19.9317C75.7541 20.0302 76.042 20.0795 76.3677 20.0795C76.595 20.0795 76.8223 20.0605 77.0495 20.0226C77.2768 19.9772 77.451 19.9431 77.5723 19.9204L78.3336 23.5226C78.0912 23.5984 77.7503 23.6855 77.3109 23.784C76.8715 23.8901 76.3374 23.9545 75.7086 23.9772C74.542 24.0226 73.5192 23.8673 72.6404 23.5113C71.7692 23.1552 71.0912 22.6022 70.6064 21.8522C70.1215 21.1022 69.8829 20.1552 69.8904 19.0113V2.10218Z\" fill=\"url(#paint5_linear_2061_308)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_308\" x1=\"9.49805\" y1=\"-2.7273\" x2=\"48.998\" y2=\"34.2727\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#931E51\"/>\\n<stop offset=\"1\" stop-color=\"#FF8486\" stop-opacity=\"0.99\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_308\" x1=\"9.49805\" y1=\"-2.7273\" x2=\"48.998\" y2=\"34.2727\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#931E51\"/>\\n<stop offset=\"1\" stop-color=\"#FF8486\" stop-opacity=\"0.99\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_308\" x1=\"9.49805\" y1=\"-2.7273\" x2=\"48.998\" y2=\"34.2727\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#931E51\"/>\\n<stop offset=\"1\" stop-color=\"#FF8486\" stop-opacity=\"0.99\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_2061_308\" x1=\"9.49805\" y1=\"-2.7273\" x2=\"48.998\" y2=\"34.2727\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#931E51\"/>\\n<stop offset=\"1\" stop-color=\"#FF8486\" stop-opacity=\"0.99\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_2061_308\" x1=\"9.49805\" y1=\"-2.7273\" x2=\"48.998\" y2=\"34.2727\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#931E51\"/>\\n<stop offset=\"1\" stop-color=\"#FF8486\" stop-opacity=\"0.99\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_2061_308\" x1=\"9.49805\" y1=\"-2.7273\" x2=\"48.998\" y2=\"34.2727\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#931E51\"/>\\n<stop offset=\"1\" stop-color=\"#FF8486\" stop-opacity=\"0.99\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ta8id1\",\"data-framer-name\":\"text box heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\"},children:\"I\"}),\"dentify and convert high-intent prospects before\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"your competitors\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\"},children:\"I\"}),\"dentify and convert high-intent\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"prospects before your competitors\"})]}),className:\"framer-iopd72\",\"data-framer-name\":\"Heading 2 → The platform to supercharge\",fonts:[\"Inter-Medium\",\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vaexa5\",\"data-framer-name\":\"text box paragraph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"High-intent buyers are actively researching your category right now. We detect their early signals, and help you reach them before your competitors do.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"High-intent buyers are actively researching your category right now.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"We detect their early signals, and help you reach them before your competitors do.\"})]}),className:\"framer-1q0d836\",\"data-framer-name\":\"Up to 98% of visitors leave your site without signing up creating a massive missed revenue opportunity.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i8n6f1\",\"data-framer-name\":\"1-3 frames\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkwitx\",\"data-border\":true,\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtdbbd\",\"data-framer-name\":\"Frame 1171278431\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m845gc\",\"data-framer-name\":\"cells\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18ub7b0\",\"data-framer-name\":\"lines\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1khk746\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:184,intrinsicWidth:107,svg:'<svg width=\"107\" height=\"184\" viewBox=\"-2 -2 107 184\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M102.09 179.106C102.09 140.301 86.635 103.253 59.4443 76.8761L13.5385 32.3452C4.96368 24.0272 0.0898443 12.3436 0.0898438 0.105957\" stroke=\"url(#paint0_linear_2055_10180)\" stroke-width=\"2.21762\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2055_10180\" x1=\"51.0898\" y1=\"179.106\" x2=\"51.0898\" y2=\"7.27269\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#262626\"/>\\n<stop offset=\"1\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8ri5u8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:68,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"68\" viewBox=\"-2 -2 44 68\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.0898 63.106L39.0898 50.6902C39.0898 40.6689 32.3337 30.849 19.5898 22.3454L11.8254 17.1648C4.15617 12.0472 0.0898473 6.13706 0.0898476 0.105955\" stroke=\"url(#paint0_linear_2055_10181)\" stroke-width=\"2.21762\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2055_10181\" x1=\"19.5898\" y1=\"63.1059\" x2=\"19.5898\" y2=\"2.62833\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#262626\"/>\\n<stop offset=\"1\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nkdc01\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:121,intrinsicWidth:101,svg:'<svg width=\"101\" height=\"121\" viewBox=\"-2 -2 101 121\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0898488 116.106L0.0898488 115.209C0.0898474 83.7986 18.7493 55.1682 48.0898 41.5575L78.1686 27.6048C89.1229 22.5231 96.0898 11.8334 96.0898 0.105953\" stroke=\"url(#paint0_linear_2055_10182)\" stroke-width=\"2.21762\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2055_10182\" x1=\"0.511723\" y1=\"119.273\" x2=\"94.0117\" y2=\"-33.7273\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#262626\"/>\\n<stop offset=\"1\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d6g7f9\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jv1am\",\"data-framer-name\":\"Frame 1171278511\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1364+0+0+0+0+0+0+0+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wv8OVYr4cRjgJwfoT7nGatO4GM.png\"}},lmTuUUgQ7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1739+0+0+0+0+40+7+0+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wv8OVYr4cRjgJwfoT7nGatO4GM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1849+0+0+0+40+7+0+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wv8OVYr4cRjgJwfoT7nGatO4GM.png\"},className:\"framer-1oain19\",\"data-framer-name\":\"Frame 1171278512\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1if5ts1\",\"data-framer-name\":\"Frame 1171278509\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f1ynjb\",\"data-framer-name\":\"Frame 1171278459\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-170ku3v\",\"data-framer-name\":\"Frame 1171278443\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k3bub1\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Data Automation\"})}),className:\"framer-1n3ss19\",\"data-framer-name\":\"Data Automation\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15cpux7\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.83984 11.231H1.58984C1.19202 11.231 0.810488 11.0729 0.529184 10.7916C0.247879 10.5103 0.0898438 10.1288 0.0898438 9.73096V2.23096C0.0898438 1.83313 0.247879 1.4516 0.529184 1.1703C0.810488 0.888992 1.19202 0.730957 1.58984 0.730957H12.0898C12.4877 0.730957 12.8692 0.888992 13.1505 1.1703C13.4318 1.4516 13.5898 1.83313 13.5898 2.23096V7.85596\" stroke=\"#A1A1A1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M0.0898438 2.23096L6.83984 6.73096L13.5898 2.23096M9.08984 11.231H13.5898M13.5898 11.231L11.3398 8.98096M13.5898 11.231L11.3398 13.481\" stroke=\"#A1A1A1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lpexyn\",\"data-border\":true,\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11yytze\",\"data-framer-name\":\"Frame 1171278511\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1364+0+0+0+0+0+0+54+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Wma1Rzj9qeuno23fWz6dfnhtJE.png\"}},lmTuUUgQ7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1739+0+0+0+0+40+7+54+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Wma1Rzj9qeuno23fWz6dfnhtJE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1849+0+0+0+40+7+54+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Wma1Rzj9qeuno23fWz6dfnhtJE.png\"},className:\"framer-8ru5tp\",\"data-framer-name\":\"Frame 1171278512\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8wqf4f\",\"data-framer-name\":\"Frame 1171278509\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7862m7\",\"data-framer-name\":\"Frame 1171278459\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1mfqm\",\"data-framer-name\":\"Frame 1171278443\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-162lcfv\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Intelligent Insights\"})}),className:\"framer-1sokh8a\",\"data-framer-name\":\"Intelligent Insights\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-otlp2h\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.83984 11.231H1.58984C1.19202 11.231 0.810488 11.0729 0.529184 10.7916C0.247879 10.5103 0.0898438 10.1288 0.0898438 9.73096V2.23096C0.0898438 1.83313 0.247879 1.4516 0.529184 1.1703C0.810488 0.888992 1.19202 0.730957 1.58984 0.730957H12.0898C12.4877 0.730957 12.8692 0.888992 13.1505 1.1703C13.4318 1.4516 13.5898 1.83313 13.5898 2.23096V7.85596\" stroke=\"#A1A1A1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M0.0898438 2.23096L6.83984 6.73096L13.5898 2.23096M9.08984 11.231H13.5898M13.5898 11.231L11.3398 8.98096M13.5898 11.231L11.3398 13.481\" stroke=\"#A1A1A1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-23tuep\",\"data-border\":true,\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y90brh\",\"data-framer-name\":\"Frame 1171278511\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1364+0+0+0+0+0+0+215-107+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4PcDpsX7is2q8sUT069FM1LZhaY.png\"}},lmTuUUgQ7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1739+0+0+0+0+40+7+108+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4PcDpsX7is2q8sUT069FM1LZhaY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1849+0+0+0+40+7+108+10+0),pixelHeight:97,pixelWidth:141,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4PcDpsX7is2q8sUT069FM1LZhaY.png\"},className:\"framer-1mods7t\",\"data-framer-name\":\"Frame 1171278512\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tvuzr\",\"data-framer-name\":\"Frame 1171278509\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tpimcc\",\"data-framer-name\":\"Frame 1171278459\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wjn6b6\",\"data-framer-name\":\"Frame 1171278443\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s75jgu\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Predictive Analytics\"})}),className:\"framer-1q2lzuf\",\"data-framer-name\":\"Predictive Analytics\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-67sbgl\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.83984 11.231H1.58984C1.19202 11.231 0.810488 11.0729 0.529184 10.7916C0.247879 10.5103 0.0898438 10.1288 0.0898438 9.73096V2.23096C0.0898438 1.83313 0.247879 1.4516 0.529184 1.1703C0.810488 0.888992 1.19202 0.730957 1.58984 0.730957H12.0898C12.4877 0.730957 12.8692 0.888992 13.1505 1.1703C13.4318 1.4516 13.5898 1.83313 13.5898 2.23096V7.85596\" stroke=\"#A1A1A1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M0.0898438 2.23096L6.83984 6.73096L13.5898 2.23096M9.08984 11.231H13.5898M13.5898 11.231L11.3398 8.98096M13.5898 11.231L11.3398 13.481\" stroke=\"#A1A1A1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j5xw8p\",\"data-framer-name\":\"icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-we8kwa\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:66,intrinsicWidth:81,svg:'<svg width=\"81\" height=\"66\" viewBox=\"-3 -3 81 66\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M73.0682 52.0226L48.4344 29.7726M27.244 29.7726L2.61016 52.0226M0.755859 11.231L31.0341 32.4257C33.4859 34.142 34.7119 35.0002 36.0453 35.3326C37.2232 35.6262 38.4552 35.6262 39.633 35.3326C40.9665 35.0002 42.1924 34.142 44.6443 32.4257L74.9225 11.231M18.5559 59.4393H57.1225C63.3531 59.4393 66.4684 59.4393 68.8482 58.2267C70.9415 57.1601 72.6434 55.4582 73.71 53.3649C74.9225 50.9852 74.9225 47.8699 74.9225 41.6393V17.906C74.9225 11.6754 74.9225 8.56008 73.71 6.18031C72.6434 4.08701 70.9415 2.3851 68.8482 1.31851C66.4684 0.105957 63.3531 0.105957 57.1225 0.105957H18.5559C12.3253 0.105957 9.20998 0.105957 6.83022 1.31851C4.73691 2.3851 3.035 4.08701 1.96841 6.18031C0.755859 8.56008 0.755859 11.6754 0.755859 17.906V41.6393C0.755859 47.8699 0.755859 50.9852 1.96841 53.3649C3.035 55.4582 4.73691 57.1601 6.83022 58.2267C9.20998 59.4393 12.3253 59.4393 18.5559 59.4393Z\" stroke=\"url(#paint0_linear_2055_10240)\" stroke-width=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2055_10240\" x1=\"37.8392\" y1=\"0.105957\" x2=\"37.8392\" y2=\"59.4393\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#262626\"/>\\n<stop offset=\"1\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ne5lbd\",\"data-framer-name\":\"Frame 1171278430\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-euh9jf\",\"data-framer-name\":\"Frame 1171278429\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11500i2\",\"data-framer-name\":\"chart-breakout-circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ps4gkg\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.84375 1.60596V0.605957M12.47 2.31306L13.1771 1.60596M13.1839 4.93929H14.1839M14.1442 7.93929C13.8097 11.3082 10.9673 13.9393 7.51042 13.9393C3.82852 13.9393 0.84375 10.9545 0.84375 7.27262C0.84375 3.81573 3.47487 0.973357 6.84375 0.638874M7.51042 4.60596H10.1771V7.27262M9.92354 4.60596C8.35397 6.82435 5.76799 8.27262 2.84375 8.27262C2.17515 8.27262 1.52423 8.19691 0.899098 8.0536\" stroke=\"#A1A1A1\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gnrvrf\",\"data-framer-name\":\"Frame 1171278428\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Engage Ahead of Competition\"})}),className:\"framer-1hbau53\",\"data-framer-name\":\"Heading 2 → Scalable serverless compute\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12zpzvq\",\"data-framer-name\":\"Frame 1171278427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Engage buyers ahead of your competition by acting on real-time intent signals\"})}),className:\"framer-lj4qjh\",\"data-framer-name\":\"Strong → Servers made simple.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jtngc\",\"data-border\":true,\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xvgl1m\",\"data-framer-name\":\"Frame 1171278432\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d2uwxb\",\"data-framer-name\":\"Group 1000011275\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11m1vaq\",\"data-framer-name\":\"globe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17iolqv\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:294,intrinsicWidth:295,svg:'<svg width=\"295\" height=\"294\" viewBox=\"0 0 295 294\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:plus-lighter\" opacity=\"0.6\">\\n<path d=\"M147.496 293.788C228.642 293.788 294.423 228.191 294.423 147.273C294.423 66.3544 228.642 0.757324 147.496 0.757324C66.35 0.757324 0.568359 66.3544 0.568359 147.273C0.568359 228.191 66.35 293.788 147.496 293.788Z\" fill=\"black\"/>\\n<path d=\"M147.502 293.788C186.47 293.788 223.841 278.351 251.395 250.875C278.95 223.398 294.429 186.131 294.429 147.273C294.429 108.414 278.95 71.1476 251.395 43.6707C223.841 16.1937 186.47 0.757324 147.502 0.757324\" stroke=\"url(#paint0_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.502 293.788C179.524 293.788 210.234 278.351 232.877 250.875C255.519 223.398 268.24 186.131 268.24 147.273C268.24 108.414 255.519 71.1476 232.877 43.6707C210.234 16.1937 179.524 0.757324 147.502 0.757324\" stroke=\"url(#paint1_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.502 293.788C170.43 293.788 192.419 278.351 208.632 250.875C224.844 223.398 233.952 186.131 233.952 147.273C233.952 108.414 224.844 71.1476 208.632 43.6707C192.419 16.1937 170.43 0.757324 147.502 0.757324\" stroke=\"url(#paint2_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.502 293.788C159.494 293.788 170.995 278.351 179.474 250.875C187.954 223.398 192.718 186.131 192.718 147.273C192.718 108.414 187.954 71.1476 179.474 43.6707C170.995 16.1937 159.494 0.757324 147.502 0.757324\" stroke=\"url(#paint3_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.502 293.788V0.757324\" stroke=\"url(#paint4_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.497 0.757324C135.505 0.757324 124.004 16.1937 115.525 43.6707C107.045 71.1476 102.281 108.414 102.281 147.273C102.281 186.131 107.045 223.398 115.525 250.875C124.004 278.351 135.505 293.788 147.497 293.788\" stroke=\"url(#paint5_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.491 0.757324C124.563 0.757324 102.574 16.1937 86.3617 43.6707C70.1491 71.1476 61.041 108.414 61.041 147.273C61.041 186.131 70.1491 223.398 86.3617 250.875C102.574 278.351 124.563 293.788 147.491 293.788\" stroke=\"url(#paint6_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.498 0.757324C115.476 0.757324 84.7659 16.1937 62.1231 43.6707C39.4803 71.1476 26.7598 108.414 26.7598 147.273C26.7598 186.131 39.4803 223.398 62.1231 250.875C84.7659 278.351 115.476 293.788 147.498 293.788\" stroke=\"url(#paint7_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M147.496 0.757324C108.528 0.757324 71.1566 16.1937 43.6024 43.6707C16.0482 71.1476 0.568359 108.414 0.568359 147.273C0.568359 186.131 16.0482 223.398 43.6024 250.875C71.1566 278.351 108.528 293.788 147.496 293.788\" stroke=\"url(#paint8_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M59.3438 30.0605H235.656\" stroke=\"url(#paint9_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M29.9473 59.3635H265.031\" stroke=\"url(#paint10_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M12.8359 88.667H282.158\" stroke=\"url(#paint11_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M3.54492 117.969H291.462\" stroke=\"url(#paint12_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M0.568359 147.272H294.423\" stroke=\"url(#paint13_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M3.54492 176.576H291.462\" stroke=\"url(#paint14_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M12.8359 205.879H282.158\" stroke=\"url(#paint15_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M29.9473 235.182H265.031\" stroke=\"url(#paint16_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n<path d=\"M59.3438 264.485H235.656\" stroke=\"url(#paint17_linear_2055_10252)\" stroke-width=\"1.22439\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2055_10252\" x1=\"220.51\" y1=\"281.772\" x2=\"282.274\" y2=\"190.894\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#CC556D\"/>\\n<stop offset=\"1\" stop-color=\"#262626\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2055_10252\" x1=\"154.51\" y1=\"8.27246\" x2=\"180.179\" y2=\"289.158\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#CC556D\"/>\\n<stop offset=\"1\" stop-color=\"#262626\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2055_10252\" x1=\"0.574558\" y1=\"0.757324\" x2=\"0.574558\" y2=\"147.273\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_2055_10252\" x1=\"173.51\" y1=\"44.7725\" x2=\"174.483\" y2=\"80.0802\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#CC556D\"/>\\n<stop offset=\"1\" stop-color=\"#262626\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_2055_10252\" x1=\"0.569659\" y1=\"0.757324\" x2=\"0.569659\" y2=\"147.273\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_2055_10252\" x1=\"189.51\" y1=\"266.272\" x2=\"61.1946\" y2=\"61.1691\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#CC556D\"/>\\n<stop offset=\"1\" stop-color=\"#262626\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_2055_10252\" x1=\"0.57032\" y1=\"0.757324\" x2=\"0.57032\" y2=\"147.273\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_2055_10252\" x1=\"123.01\" y1=\"121.772\" x2=\"36.3865\" y2=\"151.31\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#CC556D\"/>\\n<stop offset=\"1\" stop-color=\"#262626\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint11_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint12_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint13_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint14_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint15_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint16_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n<linearGradient id=\"paint17_linear_2055_10252\" x1=\"nan\" y1=\"nan\" x2=\"nan\" y2=\"nan\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1F1F1F\"/>\\n<stop offset=\"1\" stop-color=\"#1F1F1F\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fd9ixf\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-es7d76\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7363 20.7573C16.2592 20.7573 20.7363 16.2802 20.7363 10.7573C20.7363 5.23448 16.2592 0.757324 10.7363 0.757324C5.21348 0.757324 0.736328 5.23448 0.736328 10.7573C0.736328 16.2802 5.21348 20.7573 10.7363 20.7573Z\" stroke=\"url(#paint0_linear_2061_76)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 16.7573C14.05 16.7573 16.7363 14.071 16.7363 10.7573C16.7363 7.44362 14.05 4.75732 10.7363 4.75732C7.42262 4.75732 4.73633 7.44362 4.73633 10.7573C4.73633 14.071 7.42262 16.7573 10.7363 16.7573Z\" stroke=\"url(#paint1_linear_2061_76)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 12.7573C11.8409 12.7573 12.7363 11.8619 12.7363 10.7573C12.7363 9.65275 11.8409 8.75732 10.7363 8.75732C9.63176 8.75732 8.73633 9.65275 8.73633 10.7573C8.73633 11.8619 9.63176 12.7573 10.7363 12.7573Z\" stroke=\"url(#paint2_linear_2061_76)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_76\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_76\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_76\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4naf8u\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pjuoi3\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7363 20.7573C16.2592 20.7573 20.7363 16.2802 20.7363 10.7573C20.7363 5.23448 16.2592 0.757324 10.7363 0.757324C5.21348 0.757324 0.736328 5.23448 0.736328 10.7573C0.736328 16.2802 5.21348 20.7573 10.7363 20.7573Z\" stroke=\"url(#paint0_linear_2061_402)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 16.7573C14.05 16.7573 16.7363 14.071 16.7363 10.7573C16.7363 7.44362 14.05 4.75732 10.7363 4.75732C7.42262 4.75732 4.73633 7.44362 4.73633 10.7573C4.73633 14.071 7.42262 16.7573 10.7363 16.7573Z\" stroke=\"url(#paint1_linear_2061_402)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 12.7573C11.8409 12.7573 12.7363 11.8619 12.7363 10.7573C12.7363 9.65275 11.8409 8.75732 10.7363 8.75732C9.63176 8.75732 8.73633 9.65275 8.73633 10.7573C8.73633 11.8619 9.63176 12.7573 10.7363 12.7573Z\" stroke=\"url(#paint2_linear_2061_402)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_402\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_402\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_402\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b4rcnk\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-89szyx\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7363 20.7573C16.2592 20.7573 20.7363 16.2802 20.7363 10.7573C20.7363 5.23448 16.2592 0.757324 10.7363 0.757324C5.21348 0.757324 0.736328 5.23448 0.736328 10.7573C0.736328 16.2802 5.21348 20.7573 10.7363 20.7573Z\" stroke=\"url(#paint0_linear_2061_438)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 16.7573C14.05 16.7573 16.7363 14.071 16.7363 10.7573C16.7363 7.44362 14.05 4.75732 10.7363 4.75732C7.42262 4.75732 4.73633 7.44362 4.73633 10.7573C4.73633 14.071 7.42262 16.7573 10.7363 16.7573Z\" stroke=\"url(#paint1_linear_2061_438)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 12.7573C11.8409 12.7573 12.7363 11.8619 12.7363 10.7573C12.7363 9.65275 11.8409 8.75732 10.7363 8.75732C9.63176 8.75732 8.73633 9.65275 8.73633 10.7573C8.73633 11.8619 9.63176 12.7573 10.7363 12.7573Z\" stroke=\"url(#paint2_linear_2061_438)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_438\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_438\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_438\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hd2vfw\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15csqtt\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7363 20.7573C16.2592 20.7573 20.7363 16.2802 20.7363 10.7573C20.7363 5.23448 16.2592 0.757324 10.7363 0.757324C5.21348 0.757324 0.736328 5.23448 0.736328 10.7573C0.736328 16.2802 5.21348 20.7573 10.7363 20.7573Z\" stroke=\"url(#paint0_linear_2061_380)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 16.7573C14.05 16.7573 16.7363 14.071 16.7363 10.7573C16.7363 7.44362 14.05 4.75732 10.7363 4.75732C7.42262 4.75732 4.73633 7.44362 4.73633 10.7573C4.73633 14.071 7.42262 16.7573 10.7363 16.7573Z\" stroke=\"url(#paint1_linear_2061_380)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 12.7573C11.8409 12.7573 12.7363 11.8619 12.7363 10.7573C12.7363 9.65275 11.8409 8.75732 10.7363 8.75732C9.63176 8.75732 8.73633 9.65275 8.73633 10.7573C8.73633 11.8619 9.63176 12.7573 10.7363 12.7573Z\" stroke=\"url(#paint2_linear_2061_380)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_380\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_380\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_380\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation28,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aangzs\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-glzy79\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7363 20.7573C16.2592 20.7573 20.7363 16.2802 20.7363 10.7573C20.7363 5.23448 16.2592 0.757324 10.7363 0.757324C5.21348 0.757324 0.736328 5.23448 0.736328 10.7573C0.736328 16.2802 5.21348 20.7573 10.7363 20.7573Z\" stroke=\"url(#paint0_linear_2061_418)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 16.7573C14.05 16.7573 16.7363 14.071 16.7363 10.7573C16.7363 7.44362 14.05 4.75732 10.7363 4.75732C7.42262 4.75732 4.73633 7.44362 4.73633 10.7573C4.73633 14.071 7.42262 16.7573 10.7363 16.7573Z\" stroke=\"url(#paint1_linear_2061_418)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 12.7573C11.8409 12.7573 12.7363 11.8619 12.7363 10.7573C12.7363 9.65275 11.8409 8.75732 10.7363 8.75732C9.63176 8.75732 8.73633 9.65275 8.73633 10.7573C8.73633 11.8619 9.63176 12.7573 10.7363 12.7573Z\" stroke=\"url(#paint2_linear_2061_418)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_418\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_418\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_418\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r95fxq\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1j5jzoc\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7363 20.7573C16.2592 20.7573 20.7363 16.2802 20.7363 10.7573C20.7363 5.23448 16.2592 0.757324 10.7363 0.757324C5.21348 0.757324 0.736328 5.23448 0.736328 10.7573C0.736328 16.2802 5.21348 20.7573 10.7363 20.7573Z\" stroke=\"url(#paint0_linear_2061_551)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 16.7573C14.05 16.7573 16.7363 14.071 16.7363 10.7573C16.7363 7.44362 14.05 4.75732 10.7363 4.75732C7.42262 4.75732 4.73633 7.44362 4.73633 10.7573C4.73633 14.071 7.42262 16.7573 10.7363 16.7573Z\" stroke=\"url(#paint1_linear_2061_551)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.7363 12.7573C11.8409 12.7573 12.7363 11.8619 12.7363 10.7573C12.7363 9.65275 11.8409 8.75732 10.7363 8.75732C9.63176 8.75732 8.73633 9.65275 8.73633 10.7573C8.73633 11.8619 9.63176 12.7573 10.7363 12.7573Z\" stroke=\"url(#paint2_linear_2061_551)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_551\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_551\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_551\" x1=\"10.7363\" y1=\"20.7573\" x2=\"10.7363\" y2=\"0.757324\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6whvjd\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nmntdp\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"23\" viewBox=\"-1 -1 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.6777 20.2725C16.2006 20.2725 20.6777 15.7953 20.6777 10.2725C20.6777 4.74961 16.2006 0.272461 10.6777 0.272461C5.15489 0.272461 0.677734 4.74961 0.677734 10.2725C0.677734 15.7953 5.15489 20.2725 10.6777 20.2725Z\" stroke=\"url(#paint0_linear_2061_394)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6777 16.2725C13.9914 16.2725 16.6777 13.5862 16.6777 10.2725C16.6777 6.95875 13.9914 4.27246 10.6777 4.27246C7.36403 4.27246 4.67773 6.95875 4.67773 10.2725C4.67773 13.5862 7.36403 16.2725 10.6777 16.2725Z\" stroke=\"url(#paint1_linear_2061_394)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.6777 12.2725C11.7823 12.2725 12.6777 11.377 12.6777 10.2725C12.6777 9.16789 11.7823 8.27246 10.6777 8.27246C9.57316 8.27246 8.67773 9.16789 8.67773 10.2725C8.67773 11.377 9.57316 12.2725 10.6777 12.2725Z\" stroke=\"url(#paint2_linear_2061_394)\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2061_394\" x1=\"10.6777\" y1=\"20.2725\" x2=\"10.6777\" y2=\"0.272461\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2061_394\" x1=\"10.6777\" y1=\"20.2725\" x2=\"10.6777\" y2=\"0.272461\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2061_394\" x1=\"10.6777\" y1=\"20.2725\" x2=\"10.6777\" y2=\"0.272461\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EA717B\"/>\\n<stop offset=\"1\" stop-color=\"#972253\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aj0i8t\",\"data-framer-name\":\"Frame 1171278431\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation30,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16zu1na\",\"data-framer-name\":\"Frame 1171278429\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n6y519\",\"data-framer-name\":\"ai\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ngs5z7\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"18\" viewBox=\"-1 -1 17 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.1021 9.53876L10.0398 9.55814C9.80112 9.63243 9.68177 9.66958 9.57421 9.71752C9.10007 9.92889 8.72669 10.3163 8.53299 10.798C8.48905 10.9072 8.45634 11.0279 8.39093 11.2692L8.39092 11.2692C8.20888 11.9406 8.11786 12.2763 8.0325 12.4093C7.62912 13.0377 6.71072 13.0377 6.30734 12.4093C6.22198 12.2763 6.13096 11.9406 5.94892 11.2692C5.8835 11.0279 5.85079 10.9072 5.80686 10.798C5.61316 10.3163 5.23978 9.92889 4.76563 9.71752C4.65808 9.66958 4.53873 9.63243 4.30003 9.55814L4.23776 9.53876C3.49925 9.30891 3.13 9.19398 2.97908 9.07335C2.46574 8.66301 2.46574 7.8824 2.97908 7.47206C3.12999 7.35143 3.49925 7.2365 4.23775 7.00666L4.23776 7.00665L4.30003 6.98727L4.30005 6.98727C4.53873 6.91298 4.65808 6.87583 4.76563 6.82789C5.23978 6.61652 5.61316 6.22907 5.80686 5.74743C5.85079 5.63818 5.8835 5.51755 5.94891 5.27628L5.94892 5.27626C6.13096 4.60481 6.22198 4.26908 6.30734 4.1361C6.71072 3.5077 7.62912 3.5077 8.0325 4.1361C8.11786 4.26908 8.20888 4.6048 8.39092 5.27624L8.39093 5.27626C8.45634 5.51754 8.48905 5.63818 8.53299 5.74743C8.72669 6.22907 9.10007 6.61652 9.57421 6.82789C9.68177 6.87584 9.80112 6.91298 10.0398 6.98727L10.1021 7.00665C10.8406 7.2365 11.2098 7.35143 11.3608 7.47206C11.8741 7.8824 11.8741 8.66301 11.3608 9.07335C11.2098 9.19398 10.8406 9.30891 10.1021 9.53876Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-io9r68\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:9,svg:'<svg width=\"9\" height=\"8\" viewBox=\"-1 -1 9 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.75969 4.27488L3.4258 5.12285C3.33432 5.35518 3.00552 5.35519 2.91404 5.12285L2.58015 4.27488C2.48486 4.03286 2.28101 3.84996 2.03011 3.78135L1.14002 3.53797C0.870067 3.46415 0.870068 3.08126 1.14002 3.00744L2.03012 2.76406C2.28101 2.69545 2.48486 2.51255 2.58015 2.27053L2.91404 1.42256C3.00552 1.19023 3.33432 1.19023 3.4258 1.42256L3.75969 2.27053C3.85499 2.51255 4.05883 2.69545 4.30973 2.76406L5.19982 3.00744C5.46978 3.08126 5.46978 3.46415 5.19982 3.53797L4.30973 3.78135C4.05883 3.84996 3.85499 4.03286 3.75969 4.27488Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nsv62c\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" viewBox=\"-1 -1 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.15745 4.2869L2.93122 4.97638C2.84841 5.22873 2.49143 5.22873 2.40863 4.97638L2.18239 4.2869C2.10058 4.03758 1.90505 3.84204 1.65572 3.76023L0.966244 3.534C0.713893 3.4512 0.713894 3.09421 0.966245 3.01141L1.65572 2.78518C1.90505 2.70337 2.10058 2.50783 2.18239 2.25851L2.40863 1.56903C2.49143 1.31668 2.84841 1.31668 2.93122 1.56903L3.15745 2.25851C3.23926 2.50783 3.4348 2.70337 3.68412 2.78518L4.3736 3.01141C4.62595 3.09421 4.62595 3.4512 4.3736 3.534L3.68412 3.76023C3.4348 3.84204 3.23926 4.03758 3.15745 4.2869Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t6gmcc\",\"data-framer-name\":\"Frame 1171278428\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"AI-Powered Intent Data\"})}),className:\"framer-l1v9nr\",\"data-framer-name\":\"Heading 2 → Scalable serverless compute\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation31,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-157z5ug\",\"data-framer-name\":\"Frame 1171278427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Identify active buyers in real time through our global intent real-time data graph\"})}),className:\"framer-mgromy\",\"data-framer-name\":\"Strong → Servers made simple.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gryxx2\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a81ar5\",\"data-framer-name\":\"Frame 1171278431\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kzptpi\",\"data-framer-name\":\"Frame 1171278510\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ionuu5\",\"data-border\":true,\"data-framer-name\":\"Frame 1171278460\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-duakp3\",\"data-framer-name\":\"Frame 1171278509\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kcmlsi\",\"data-framer-name\":\"Frame 1171278459\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pi6kx4\",\"data-framer-name\":\"Frame 1171278443\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14l3h53\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Product Researchers\"})}),className:\"framer-52n2k2\",\"data-framer-name\":\"Product Researchers\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1al92h6\",\"data-framer-name\":\"Frame 1171278458\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9wv1i1\",\"data-framer-name\":\"MdiAccountMultipleOutline 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.54211 7.21281C9.94707 6.64699 10.1648 5.96862 10.1648 5.27281C10.1648 4.577 9.94707 3.89864 9.54211 3.33281C9.9213 3.0745 10.37 2.93734 10.8288 2.93948C11.4476 2.93948 12.0411 3.18531 12.4787 3.6229C12.9163 4.06048 13.1621 4.65397 13.1621 5.27281C13.1621 5.89165 12.9163 6.48514 12.4787 6.92273C12.0411 7.36031 11.4476 7.60614 10.8288 7.60614C10.37 7.60828 9.9213 7.47112 9.54211 7.21281ZM4.49544 5.27281C4.49544 4.81132 4.63229 4.3602 4.88868 3.97648C5.14507 3.59277 5.50949 3.2937 5.93585 3.11709C6.36221 2.94049 6.83136 2.89428 7.28399 2.98431C7.73661 3.07434 8.15237 3.29657 8.47869 3.6229C8.80501 3.94922 9.02724 4.36498 9.11728 4.8176C9.20731 5.27022 9.1611 5.73938 8.9845 6.16574C8.80789 6.5921 8.50882 6.95652 8.12511 7.21291C7.74139 7.4693 7.29027 7.60614 6.82878 7.60614C6.20994 7.60614 5.61645 7.36031 5.17886 6.92273C4.74128 6.48514 4.49544 5.89165 4.49544 5.27281ZM5.82878 5.27281C5.82878 5.47059 5.88743 5.66393 5.99731 5.82838C6.10719 5.99283 6.26337 6.121 6.44609 6.19669C6.62882 6.27238 6.82989 6.29218 7.02387 6.2536C7.21785 6.21501 7.39603 6.11977 7.53588 5.97992C7.67574 5.84007 7.77098 5.66188 7.80956 5.4679C7.84815 5.27392 7.82834 5.07285 7.75266 4.89013C7.67697 4.7074 7.5488 4.55122 7.38435 4.44134C7.2199 4.33146 7.02656 4.27281 6.82878 4.27281C6.56356 4.27281 6.30921 4.37817 6.12167 4.5657C5.93413 4.75324 5.82878 5.00759 5.82878 5.27281ZM11.4954 11.6061V12.9395H2.16211V11.6061C2.16211 11.6061 2.16211 8.93948 6.82878 8.93948C11.4954 8.93948 11.4954 11.6061 11.4954 11.6061ZM10.1621 11.6061C10.0688 11.0861 9.27544 10.2728 6.82878 10.2728C4.38211 10.2728 3.54211 11.1461 3.49544 11.6061M11.4621 8.93948C11.8707 9.2573 12.2048 9.66071 12.4409 10.1214C12.677 10.5821 12.8094 11.0889 12.8288 11.6061V12.9395H15.4954V11.6061C15.4954 11.6061 15.4954 9.18614 11.4554 8.93948H11.4621Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bntyvz\",\"data-framer-name\":\"Frame 1171278455\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nq5xnl\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"2,500\"})}),className:\"framer-yt1az8\",\"data-framer-name\":\"2,500\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bvrbrv\",\"data-framer-name\":\"Frame 1171278442\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e76lcm\",\"data-framer-name\":\"TablerFlameFilled 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2055_10313)\">\\n<path d=\"M5.83008 1.27282C5.83008 0.832825 6.35808 0.607325 6.67608 0.911825C7.65508 1.84983 8.22408 3.90932 7.55108 5.47182L7.51108 5.55882L7.51708 5.56032C7.82958 5.62682 8.11858 5.34533 8.66858 4.47383L8.73858 4.36183C8.77915 4.29652 8.83423 4.24145 8.89954 4.2009C8.96486 4.16034 9.03864 4.1354 9.11516 4.12799C9.19169 4.12059 9.26888 4.13094 9.34076 4.15823C9.41263 4.18551 9.47725 4.22901 9.52958 4.28532C10.1966 5.00282 10.8301 6.47382 10.8301 7.42032C10.8301 9.55282 9.03458 11.2728 6.83008 11.2728C4.62558 11.2728 2.83008 9.55282 2.83008 7.41982C2.83008 6.29382 3.34108 5.06182 4.14608 4.26933L4.44858 3.97482C4.56908 3.85682 4.66558 3.75983 4.75758 3.66283C5.47258 2.90683 5.83008 2.20082 5.83008 1.27282Z\" fill=\"#F87E82\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2055_10313\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(0.830078 0.272705)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"14px\",\"--framer-text-color\":\"rgb(248, 126, 130)\",\"--framer-text-transform\":\"capitalize\"},children:\"High\"})}),className:\"framer-145zvim\",\"data-framer-name\":\"High\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f3hzqx\",\"data-border\":true,\"data-framer-name\":\"Frame 1171278460\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-136u50c\",\"data-framer-name\":\"Frame 1171278509\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eyzm1g\",\"data-framer-name\":\"Frame 1171278459\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r84h3s\",\"data-framer-name\":\"Frame 1171278443\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1djrwex\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Solution Seekers\"})}),className:\"framer-tjwbkx\",\"data-framer-name\":\"Solution Seekers\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5szzfh\",\"data-framer-name\":\"Frame 1171278458\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7m1q1a\",\"data-framer-name\":\"MdiAccountMultipleOutline 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.54211 7.21281C9.94707 6.64699 10.1648 5.96862 10.1648 5.27281C10.1648 4.577 9.94707 3.89864 9.54211 3.33281C9.9213 3.0745 10.37 2.93734 10.8288 2.93948C11.4476 2.93948 12.0411 3.18531 12.4787 3.6229C12.9163 4.06048 13.1621 4.65397 13.1621 5.27281C13.1621 5.89165 12.9163 6.48514 12.4787 6.92273C12.0411 7.36031 11.4476 7.60614 10.8288 7.60614C10.37 7.60828 9.9213 7.47112 9.54211 7.21281ZM4.49544 5.27281C4.49544 4.81132 4.63229 4.3602 4.88868 3.97648C5.14507 3.59277 5.50949 3.2937 5.93585 3.11709C6.36221 2.94049 6.83136 2.89428 7.28399 2.98431C7.73661 3.07434 8.15237 3.29657 8.47869 3.6229C8.80501 3.94922 9.02724 4.36498 9.11728 4.8176C9.20731 5.27022 9.1611 5.73938 8.9845 6.16574C8.80789 6.5921 8.50882 6.95652 8.12511 7.21291C7.74139 7.4693 7.29027 7.60614 6.82878 7.60614C6.20994 7.60614 5.61645 7.36031 5.17886 6.92273C4.74128 6.48514 4.49544 5.89165 4.49544 5.27281ZM5.82878 5.27281C5.82878 5.47059 5.88743 5.66393 5.99731 5.82838C6.10719 5.99283 6.26337 6.121 6.44609 6.19669C6.62882 6.27238 6.82989 6.29218 7.02387 6.2536C7.21785 6.21501 7.39603 6.11977 7.53588 5.97992C7.67574 5.84007 7.77098 5.66188 7.80956 5.4679C7.84815 5.27392 7.82834 5.07285 7.75266 4.89013C7.67697 4.7074 7.5488 4.55122 7.38435 4.44134C7.2199 4.33146 7.02656 4.27281 6.82878 4.27281C6.56356 4.27281 6.30921 4.37817 6.12167 4.5657C5.93413 4.75324 5.82878 5.00759 5.82878 5.27281ZM11.4954 11.6061V12.9395H2.16211V11.6061C2.16211 11.6061 2.16211 8.93948 6.82878 8.93948C11.4954 8.93948 11.4954 11.6061 11.4954 11.6061ZM10.1621 11.6061C10.0688 11.0861 9.27544 10.2728 6.82878 10.2728C4.38211 10.2728 3.54211 11.1461 3.49544 11.6061M11.4621 8.93948C11.8707 9.2573 12.2048 9.66071 12.4409 10.1214C12.677 10.5821 12.8094 11.0889 12.8288 11.6061V12.9395H15.4954V11.6061C15.4954 11.6061 15.4954 9.18614 11.4554 8.93948H11.4621Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hcritk\",\"data-framer-name\":\"Frame 1171278455\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v801vn\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"4,752\"})}),className:\"framer-1vpu05g\",\"data-framer-name\":\"4,752\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1353ad3\",\"data-framer-name\":\"Frame 1171278442\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tm1j7s\",\"data-framer-name\":\"TablerFlameFilled 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2055_10342)\">\\n<path d=\"M5.83008 1.27282C5.83008 0.832825 6.35808 0.607325 6.67608 0.911825C7.65508 1.84983 8.22408 3.90932 7.55108 5.47182L7.51108 5.55882L7.51708 5.56032C7.82958 5.62682 8.11858 5.34533 8.66858 4.47383L8.73858 4.36183C8.77915 4.29652 8.83423 4.24145 8.89954 4.2009C8.96486 4.16034 9.03864 4.1354 9.11516 4.12799C9.19169 4.12059 9.26888 4.13094 9.34076 4.15823C9.41263 4.18551 9.47725 4.22901 9.52958 4.28532C10.1966 5.00282 10.8301 6.47382 10.8301 7.42032C10.8301 9.55282 9.03458 11.2728 6.83008 11.2728C4.62558 11.2728 2.83008 9.55282 2.83008 7.41982C2.83008 6.29382 3.34108 5.06182 4.14608 4.26933L4.44858 3.97482C4.56908 3.85682 4.66558 3.75983 4.75758 3.66283C5.47258 2.90683 5.83008 2.20082 5.83008 1.27282Z\" fill=\"#F87E82\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2055_10342\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(0.830078 0.272705)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"14px\",\"--framer-text-color\":\"rgb(248, 126, 130)\",\"--framer-text-transform\":\"capitalize\"},children:\"High\"})}),className:\"framer-11re407\",\"data-framer-name\":\"High\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cwhptj\",\"data-border\":true,\"data-framer-name\":\"Frame 1171278460\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wf10td\",\"data-framer-name\":\"Frame 1171278509\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nrma2w\",\"data-framer-name\":\"Frame 1171278459\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13nhumq\",\"data-framer-name\":\"Frame 1171278443\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-51n4li\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Competitor Shoppers\"})}),className:\"framer-16izy7x\",\"data-framer-name\":\"Competitor Shoppers\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1622pcw\",\"data-framer-name\":\"Frame 1171278458\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vbje43\",\"data-framer-name\":\"MdiAccountMultipleOutline 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.54211 7.21281C9.94707 6.64699 10.1648 5.96862 10.1648 5.27281C10.1648 4.577 9.94707 3.89864 9.54211 3.33281C9.9213 3.0745 10.37 2.93734 10.8288 2.93948C11.4476 2.93948 12.0411 3.18531 12.4787 3.6229C12.9163 4.06048 13.1621 4.65397 13.1621 5.27281C13.1621 5.89165 12.9163 6.48514 12.4787 6.92273C12.0411 7.36031 11.4476 7.60614 10.8288 7.60614C10.37 7.60828 9.9213 7.47112 9.54211 7.21281ZM4.49544 5.27281C4.49544 4.81132 4.63229 4.3602 4.88868 3.97648C5.14507 3.59277 5.50949 3.2937 5.93585 3.11709C6.36221 2.94049 6.83136 2.89428 7.28399 2.98431C7.73661 3.07434 8.15237 3.29657 8.47869 3.6229C8.80501 3.94922 9.02724 4.36498 9.11728 4.8176C9.20731 5.27022 9.1611 5.73938 8.9845 6.16574C8.80789 6.5921 8.50882 6.95652 8.12511 7.21291C7.74139 7.4693 7.29027 7.60614 6.82878 7.60614C6.20994 7.60614 5.61645 7.36031 5.17886 6.92273C4.74128 6.48514 4.49544 5.89165 4.49544 5.27281ZM5.82878 5.27281C5.82878 5.47059 5.88743 5.66393 5.99731 5.82838C6.10719 5.99283 6.26337 6.121 6.44609 6.19669C6.62882 6.27238 6.82989 6.29218 7.02387 6.2536C7.21785 6.21501 7.39603 6.11977 7.53588 5.97992C7.67574 5.84007 7.77098 5.66188 7.80956 5.4679C7.84815 5.27392 7.82834 5.07285 7.75266 4.89013C7.67697 4.7074 7.5488 4.55122 7.38435 4.44134C7.2199 4.33146 7.02656 4.27281 6.82878 4.27281C6.56356 4.27281 6.30921 4.37817 6.12167 4.5657C5.93413 4.75324 5.82878 5.00759 5.82878 5.27281ZM11.4954 11.6061V12.9395H2.16211V11.6061C2.16211 11.6061 2.16211 8.93948 6.82878 8.93948C11.4954 8.93948 11.4954 11.6061 11.4954 11.6061ZM10.1621 11.6061C10.0688 11.0861 9.27544 10.2728 6.82878 10.2728C4.38211 10.2728 3.54211 11.1461 3.49544 11.6061M11.4621 8.93948C11.8707 9.2573 12.2048 9.66071 12.4409 10.1214C12.677 10.5821 12.8094 11.0889 12.8288 11.6061V12.9395H15.4954V11.6061C15.4954 11.6061 15.4954 9.18614 11.4554 8.93948H11.4621Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1061cjs\",\"data-framer-name\":\"Frame 1171278455\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14c6uhi\",\"data-framer-name\":\"span.text_wrapper__i87JK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"3,017\"})}),className:\"framer-59uyo1\",\"data-framer-name\":\"3,017\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13opvre\",\"data-framer-name\":\"Frame 1171278442\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-db1atv\",\"data-framer-name\":\"TablerFlameFilled 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2055_10371)\">\\n<path d=\"M5.83008 1.27282C5.83008 0.832825 6.35808 0.607325 6.67608 0.911825C7.65508 1.84983 8.22408 3.90932 7.55108 5.47182L7.51108 5.55882L7.51708 5.56032C7.82958 5.62682 8.11858 5.34533 8.66858 4.47383L8.73858 4.36183C8.77915 4.29652 8.83423 4.24145 8.89954 4.2009C8.96486 4.16034 9.03864 4.1354 9.11516 4.12799C9.19169 4.12059 9.26888 4.13094 9.34076 4.15823C9.41263 4.18551 9.47725 4.22901 9.52958 4.28532C10.1966 5.00282 10.8301 6.47382 10.8301 7.42032C10.8301 9.55282 9.03458 11.2728 6.83008 11.2728C4.62558 11.2728 2.83008 9.55282 2.83008 7.41982C2.83008 6.29382 3.34108 5.06182 4.14608 4.26933L4.44858 3.97482C4.56908 3.85682 4.66558 3.75983 4.75758 3.66283C5.47258 2.90683 5.83008 2.20082 5.83008 1.27282Z\" fill=\"#F87E82\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2055_10371\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(0.830078 0.272705)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"14px\",\"--framer-text-color\":\"rgb(248, 126, 130)\",\"--framer-text-transform\":\"capitalize\"},children:\"High\"})}),className:\"framer-12f2p2s\",\"data-framer-name\":\"High\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hv0sqz\",\"data-framer-name\":\"Frame 1171278430\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation31,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bo4o4j\",\"data-framer-name\":\"Frame 1171278429\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uan6qa\",\"data-framer-name\":\"Audience\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nl57t7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"11\" viewBox=\"0 0 14 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.54406 5.21281C7.94902 4.64699 8.16677 3.96862 8.16677 3.27281C8.16677 2.577 7.94902 1.89864 7.54406 1.33281C7.92326 1.0745 8.37192 0.937344 8.83073 0.939478C9.44957 0.939478 10.0431 1.18531 10.4806 1.6229C10.9182 2.06048 11.1641 2.65397 11.1641 3.27281C11.1641 3.89165 10.9182 4.48514 10.4806 4.92273C10.0431 5.36031 9.44957 5.60614 8.83073 5.60614C8.37192 5.60828 7.92326 5.47112 7.54406 5.21281ZM2.4974 3.27281C2.4974 2.81132 2.63424 2.3602 2.89063 1.97648C3.14702 1.59277 3.51144 1.2937 3.9378 1.11709C4.36416 0.940488 4.83332 0.89428 5.28594 0.984312C5.73856 1.07434 6.15432 1.29657 6.48065 1.6229C6.80697 1.94922 7.0292 2.36498 7.11923 2.8176C7.20926 3.27022 7.16305 3.73938 6.98645 4.16574C6.80984 4.5921 6.51077 4.95652 6.12706 5.21291C5.74335 5.4693 5.29222 5.60614 4.83073 5.60614C4.21189 5.60614 3.6184 5.36031 3.18081 4.92273C2.74323 4.48514 2.4974 3.89165 2.4974 3.27281ZM3.83073 3.27281C3.83073 3.47059 3.88938 3.66393 3.99926 3.82838C4.10914 3.99283 4.26532 4.121 4.44805 4.19669C4.63077 4.27238 4.83184 4.29218 5.02582 4.2536C5.2198 4.21501 5.39798 4.11977 5.53784 3.97992C5.67769 3.84007 5.77293 3.66188 5.81151 3.4679C5.8501 3.27392 5.8303 3.07285 5.75461 2.89013C5.67892 2.7074 5.55075 2.55122 5.3863 2.44134C5.22185 2.33146 5.02851 2.27281 4.83073 2.27281C4.56551 2.27281 4.31116 2.37817 4.12362 2.5657C3.93609 2.75324 3.83073 3.00759 3.83073 3.27281ZM9.4974 9.60614V10.9395H0.164062V9.60614C0.164062 9.60614 0.164062 6.93948 4.83073 6.93948C9.4974 6.93948 9.4974 9.60614 9.4974 9.60614ZM8.16406 9.60614C8.07073 9.08614 7.2774 8.27281 4.83073 8.27281C2.38406 8.27281 1.54406 9.14614 1.4974 9.60614M9.46406 6.93948C9.87267 7.2573 10.2067 7.66071 10.4428 8.12139C10.6789 8.58207 10.8113 9.08885 10.8307 9.60614V10.9395H13.4974V9.60614C13.4974 9.60614 13.4974 7.18614 9.4574 6.93948H9.46406Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yuux06\",\"data-framer-name\":\"Frame 1171278428\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Enhanced Lead Segmentation\"})}),className:\"framer-1pssjl5\",\"data-framer-name\":\"Heading 2 → Scalable serverless compute\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6g78if\",\"data-framer-name\":\"Frame 1171278427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Act on real-time intent signals to engage buyers at the perfect moment before your competition.\"})}),className:\"framer-wsofgi\",\"data-framer-name\":\"Strong → Servers made simple.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161sucs\",\"data-framer-name\":\"Every topic\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vvz7q8\",\"data-framer-name\":\"Frame 1171278518\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3fgbbb\",\"data-framer-name\":\"Frame 1171278522\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ijkme2\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Every topic covered\"})}),className:\"framer-6rzbz5\",\"data-framer-name\":\"Heading 2 → The platform to supercharge\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7g0fmz\",\"data-framer-name\":\"Frame 1171278481\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10gvzj\",\"data-framer-name\":\"tags1 ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kf7ryx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e7RqfUaQU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"e7RqfUaQU\",layoutId:\"e7RqfUaQU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bfzy8k\",\"data-border\":true,\"data-framer-name\":\"Data enrichment\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-58ws9q\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hmcft7\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Data enrichment\"})}),className:\"framer-13ygnq4\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gpl2es\",\"data-border\":true,\"data-framer-name\":\"Funnel optimization\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v7akmh\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ayipy6\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Funnel optimization\"})}),className:\"framer-kib1c2\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pkmhp2\",\"data-border\":true,\"data-framer-name\":\"Lead scoring\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1clleob\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1te1w4d\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Lead scoring\"})}),className:\"framer-rqqoic\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zokngt\",\"data-border\":true,\"data-framer-name\":\"Email automation\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ae5k0f\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-df34gg\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Email automation\"})}),className:\"framer-8se84t\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cgjv85\",\"data-border\":true,\"data-framer-name\":\"Sales outreach\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10jvflg\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-44bybs\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Sales outreach\"})}),className:\"framer-1d9cddp\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17gi6mu\",\"data-framer-name\":\"tags 2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qzlkeb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ifdDf73tw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ifdDf73tw\",layoutId:\"ifdDf73tw\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fqxon0\",\"data-border\":true,\"data-framer-name\":\"Predictive analytics\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0ydwc\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14p0uo6\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Predictive analytics\"})}),className:\"framer-1ejfw43\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qfzba5\",\"data-border\":true,\"data-framer-name\":\"Buyer signals\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-px4pwg\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-30kcho\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Buyer signals\"})}),className:\"framer-svypow\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6dz2wk\",\"data-border\":true,\"data-framer-name\":\"Revenue ops\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x72rr8\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u3dfsz\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Revenue ops\"})}),className:\"framer-fa9w8d\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16mm519\",\"data-border\":true,\"data-framer-name\":\"Pipeline growth\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g5ivp6\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ko0rnk\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Pipeline growth\"})}),className:\"framer-1s7wvav\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qt1095\",\"data-border\":true,\"data-framer-name\":\"conversion tools\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ltu1rq\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ehlq11\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Conversion tools\"})}),className:\"framer-gjz3zk\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kjh3mh\",\"data-border\":true,\"data-framer-name\":\"Retargeting\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r5kn9i\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-674yr0\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Retargeting\"})}),className:\"framer-1ki3gnf\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ltrte8\",\"data-framer-name\":\"tags 3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17n1rd8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tQYMuC3so\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"tQYMuC3so\",layoutId:\"tQYMuC3so\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-upc7x0\",\"data-border\":true,\"data-framer-name\":\"Cold outreach\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k64le2\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jdcnd7\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Cold outreach\"})}),className:\"framer-n72sh6\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x3xp0d\",\"data-border\":true,\"data-framer-name\":\"B2B leads\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wciba6\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tmxog6\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"B2B leads\"})}),className:\"framer-16cy0n2\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ewyqt\",\"data-border\":true,\"data-framer-name\":\"Buyer journey\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g946zu\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7icu28\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Buyer journey\"})}),className:\"framer-rxlh9o\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sdlaj9\",\"data-border\":true,\"data-framer-name\":\"ICP targeting\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n4443k\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17us6os\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"ICP targeting\"})}),className:\"framer-140w54c\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lcg8vk\",\"data-border\":true,\"data-framer-name\":\"Outreach tools\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egr043\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15fhuog\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Outreach tools\"})}),className:\"framer-gz1qij\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-83eo8\",\"data-border\":true,\"data-framer-name\":\"Lead intent\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12mvn10\",\"data-framer-name\":\"target-05\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3r64ci\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"-1 -1 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.50065 13.4393C11.1826 13.4393 14.1673 10.4545 14.1673 6.77262C14.1673 3.09073 11.1826 0.105957 7.50065 0.105957C3.81875 0.105957 0.833984 3.09073 0.833984 6.77262C0.833984 10.4545 3.81875 13.4393 7.50065 13.4393Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 10.7726C9.70979 10.7726 11.5007 8.98176 11.5007 6.77262C11.5007 4.56348 9.70979 2.77262 7.50065 2.77262C5.29151 2.77262 3.50065 4.56348 3.50065 6.77262C3.50065 8.98176 5.29151 10.7726 7.50065 10.7726Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.50065 8.10596C8.23703 8.10596 8.83398 7.509 8.83398 6.77262C8.83398 6.03624 8.23703 5.43929 7.50065 5.43929C6.76427 5.43929 6.16732 6.03624 6.16732 6.77262C6.16732 7.509 6.76427 8.10596 7.50065 8.10596Z\" stroke=\"#EDEDED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Lead intent\"})}),className:\"framer-7vlczy\",\"data-framer-name\":\"Intent topic\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"center\",withExternalLayout:true})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bzlw5x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hDjjBjD9q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ShimmerGrid,{color:\"rgba(0, 0, 0, 0.5)\",customPatternMode:\"alpha\",customPatternPosition:\"center\",customPatternSizing:\"tile\",dotSize:2,flip:false,height:\"100%\",hoverColor:\"rgb(249, 131, 133)\",hoverShape:\"glow\",hoverSize:450,id:\"hDjjBjD9q\",layoutId:\"hDjjBjD9q\",lineWidth:1,patternPreset:\"dots\",radius:\"0px\",smoothing:0,style:{height:\"100%\",width:\"100%\"},tileSize:12,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oc7imw\",\"data-framer-name\":\"Why fl0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17usq9e\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-442qt4\",\"data-framer-name\":\"Frame 1171278493\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Unlocking the Power of Precision and Speed\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.4px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Unlocking the Power of Precision and Speed\"})}),className:\"framer-nlcmqj\",\"data-framer-name\":\"Heading 2 → The platform to supercharge\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Revolutionizing lead engagement with AI-powered technology, delivering precision and global reach.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Revolutionizing lead engagement with AI-powered technology, delivering precision and global reach.\"})}),className:\"framer-1q8n9zb\",\"data-framer-name\":\"Revolutionizing lead engagement with its AI-powered technology, delivering precision and global reach.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation36,__framer__exit:animation37,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lxwd1o\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:140,intrinsicWidth:139,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3843+100+0+0+0+0),pixelHeight:140,pixelWidth:139,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yCf9VoE79yV7vgFEemy1RhWeMY.svg\"}},lmTuUUgQ7:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:140,intrinsicWidth:139,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4161+100+0+93+0),pixelHeight:140,pixelWidth:139,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yCf9VoE79yV7vgFEemy1RhWeMY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:140,intrinsicWidth:139,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3089+100+0+93+0),pixelHeight:140,pixelWidth:139,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yCf9VoE79yV7vgFEemy1RhWeMY.svg\"},className:\"framer-7zxxa3\",\"data-framer-name\":\"Union\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p1knsu\",\"data-framer-name\":\"Frame 1171278492\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nghmur\",\"data-framer-name\":\"Frame 1171278431\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation38,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zcttw9\",\"data-framer-name\":\"Frame 1171278429\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1la5y6z\",\"data-framer-name\":\"ai\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13ev5wl\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"18\" viewBox=\"-1 -1 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.93216 9.53851L9.86989 9.5579C9.63119 9.63219 9.51184 9.66933 9.40429 9.71728C8.93015 9.92865 8.55676 10.3161 8.36307 10.7977C8.31913 10.907 8.28642 11.0276 8.221 11.2689L8.221 11.2689C8.03896 11.9404 7.94794 12.2761 7.86258 12.4091C7.4592 13.0375 6.5408 13.0375 6.13742 12.4091C6.05206 12.2761 5.96104 11.9404 5.779 11.2689C5.71358 11.0276 5.68087 10.907 5.63693 10.7977C5.44324 10.3161 5.06985 9.92865 4.59571 9.71728C4.48816 9.66933 4.36881 9.63219 4.13011 9.55789L4.06784 9.53851C3.32933 9.30866 2.96007 9.19374 2.80916 9.0731C2.29582 8.66277 2.29582 7.88216 2.80916 7.47182C2.96007 7.35118 3.32933 7.23626 4.06783 7.00641L4.06784 7.00641L4.13011 6.98703L4.13013 6.98702C4.36881 6.91273 4.48816 6.87559 4.59571 6.82765C5.06985 6.61627 5.44324 6.22882 5.63693 5.74719C5.68087 5.63794 5.71358 5.5173 5.77899 5.27603L5.779 5.27602C5.96104 4.60456 6.05206 4.26883 6.13742 4.13586C6.5408 3.50746 7.4592 3.50746 7.86258 4.13586C7.94794 4.26883 8.03896 4.60456 8.221 5.276L8.221 5.27602C8.28642 5.5173 8.31913 5.63794 8.36307 5.74719C8.55676 6.22882 8.93015 6.61627 9.40429 6.82765C9.51185 6.87559 9.63119 6.91274 9.86989 6.98703L9.93216 7.00641C10.6707 7.23626 11.0399 7.35118 11.1908 7.47182C11.7042 7.88216 11.7042 8.66277 11.1908 9.0731C11.0399 9.19374 10.6707 9.30866 9.93216 9.53851Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6zidgt\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,svg:'<svg width=\"8\" height=\"8\" viewBox=\"-1 -1 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.58977 4.27464L3.25588 5.12261C3.1644 5.35494 2.8356 5.35494 2.74412 5.12261L2.41023 4.27464C2.31494 4.03262 2.11109 3.84971 1.86019 3.78111L0.970102 3.53772C0.700145 3.46391 0.700146 3.08101 0.970102 3.0072L1.86019 2.76381C2.11109 2.69521 2.31494 2.5123 2.41023 2.27029L2.74412 1.42231C2.8356 1.18998 3.1644 1.18998 3.25588 1.42231L3.58977 2.27028C3.68506 2.5123 3.88891 2.69521 4.13981 2.76381L5.0299 3.0072C5.29986 3.08102 5.29986 3.46391 5.0299 3.53772L4.13981 3.78111C3.88891 3.84971 3.68506 4.03262 3.58977 4.27464Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16vair3\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:7,svg:'<svg width=\"7\" height=\"8\" viewBox=\"-1 -1 7 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.98753 4.28666L2.76129 4.97614C2.67849 5.22849 2.32151 5.22849 2.23871 4.97614L2.01247 4.28666C1.93066 4.03734 1.73513 3.8418 1.4858 3.75999L0.796322 3.53375C0.543971 3.45095 0.543972 3.09397 0.796323 3.01117L1.4858 2.78493C1.73513 2.70312 1.93066 2.50759 2.01247 2.25826L2.23871 1.56878C2.32151 1.31643 2.67849 1.31643 2.76129 1.56878L2.98753 2.25826C3.06934 2.50759 3.26487 2.70312 3.5142 2.78493L4.20368 3.01117C4.45603 3.09397 4.45603 3.45095 4.20368 3.53375L3.5142 3.75999C3.26487 3.8418 3.06934 4.03734 2.98753 4.28666Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ymsbyu\",\"data-framer-name\":\"Frame 1171278428\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"AI-Powered Accuracy\"})}),className:\"framer-7te4b6\",\"data-framer-name\":\"Heading 2 → Scalable serverless compute\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation30,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m72mbk\",\"data-framer-name\":\"Frame 1171278427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Unmatched precision identifying and engaging ideal prospects.\"})}),className:\"framer-1htqwlq\",\"data-framer-name\":\"Strong → Servers made simple.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdnu20\",\"data-framer-name\":\"Frame 1171278485\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u5qjx5\",\"data-framer-name\":\"Frame 1171278429\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jigju\",\"data-framer-name\":\"Globe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u5o03l\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.15442 12.6042C10.5869 12.0708 11.7464 10.9766 12.366 9.5885C11.6492 9.7173 10.857 9.81967 10.011 9.8909C9.82432 10.9479 9.52805 11.8768 9.15442 12.6042ZM7.16992 14.2725C11.0359 14.2725 14.1699 11.1385 14.1699 7.27246C14.1699 3.40647 11.0359 0.272461 7.16992 0.272461C3.30393 0.272461 0.169922 3.40647 0.169922 7.27246C0.169922 11.1385 3.30393 14.2725 7.16992 14.2725ZM7.59296 12.9445C7.45328 12.9547 7.31221 12.96 7.16992 12.96C7.02763 12.96 6.88656 12.9547 6.74689 12.9445C6.74397 12.9417 6.74103 12.9389 6.73808 12.936C6.50623 12.7119 6.24748 12.3347 6.00645 11.7838C5.78387 11.2751 5.59474 10.6599 5.45581 9.96554C6.01147 9.99266 6.58458 10.0068 7.16992 10.0068C7.75526 10.0068 8.32838 9.99266 8.88404 9.96554C8.74511 10.6599 8.55597 11.2751 8.33339 11.7838C8.09236 12.3347 7.83361 12.7119 7.60176 12.936C7.59881 12.9389 7.59587 12.9417 7.59296 12.9445ZM10.1613 8.77961C11.1194 8.6908 11.9926 8.56085 12.7458 8.39951C12.819 8.03522 12.8574 7.65833 12.8574 7.27246C12.8574 6.88659 12.819 6.50971 12.7458 6.14541C11.9926 5.98407 11.1194 5.85412 10.1613 5.7653C10.2078 6.25074 10.2324 6.75505 10.2324 7.27246C10.2324 7.78987 10.2078 8.29418 10.1613 8.77961ZM9.05336 5.68347C9.10866 6.1873 9.13867 6.7195 9.13867 7.27246C9.13867 7.82542 9.10866 8.35762 9.05336 8.86144C8.4485 8.89519 7.81821 8.91309 7.16992 8.91309C6.52163 8.91309 5.89135 8.89519 5.28648 8.86144C5.23118 8.35762 5.20117 7.82542 5.20117 7.27246C5.20117 6.7195 5.23118 6.1873 5.28648 5.68347C5.89135 5.64973 6.52163 5.63184 7.16992 5.63184C7.81822 5.63184 8.4485 5.64973 9.05336 5.68347ZM10.011 4.65401C10.857 4.72526 11.6491 4.82765 12.366 4.95639C11.7464 3.56832 10.5869 2.47415 9.15442 1.94075C9.52805 2.66811 9.82432 3.59705 10.011 4.65401ZM7.59296 1.60046C7.59587 1.60324 7.59881 1.60606 7.60176 1.60891C7.83361 1.83305 8.09236 2.2102 8.33339 2.76111C8.55597 3.26988 8.74511 3.88495 8.88404 4.57938C8.32838 4.55224 7.75526 4.53809 7.16992 4.53809C6.58458 4.53809 6.01147 4.55224 5.45581 4.57938C5.59473 3.88495 5.78387 3.26988 6.00645 2.76111C6.24748 2.2102 6.50623 1.83305 6.73808 1.60891C6.74103 1.60606 6.74396 1.60324 6.74689 1.60046C6.88655 1.59018 7.02763 1.58496 7.16992 1.58496C7.31221 1.58496 7.45328 1.59018 7.59296 1.60046ZM5.18544 1.94076C3.75296 2.47415 2.59345 3.56832 1.97381 4.95639C2.69067 4.82765 3.48282 4.72526 4.32888 4.65401C4.51551 3.59705 4.81177 2.66811 5.18544 1.94076ZM4.17859 5.7653C3.22046 5.85412 2.34725 5.98407 1.59408 6.14541C1.52085 6.50971 1.48242 6.88659 1.48242 7.27246C1.48242 7.65833 1.52085 8.03522 1.59408 8.39951C2.34725 8.56085 3.22046 8.6908 4.17859 8.77961C4.13198 8.29418 4.10742 7.78987 4.10742 7.27246C4.10742 6.75505 4.13198 6.25074 4.17859 5.7653ZM4.32888 9.8909C3.48282 9.81967 2.69067 9.7173 1.97381 9.5885C2.59345 10.9766 3.75296 12.0708 5.18544 12.6042C4.81177 11.8768 4.51551 10.9479 4.32888 9.8909Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1z0ohcc\",\"data-framer-name\":\"Frame 1171278428\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Global Scale\"})}),className:\"framer-1iwve4\",\"data-framer-name\":\"Heading 2 → Scalable serverless compute\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation39,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dnzmsj\",\"data-framer-name\":\"Frame 1171278427\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Uncover more high-value prospects globally & efficiently.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Uncover more high-value prospects globally and efficiently.\"})}),className:\"framer-1slcqse\",\"data-framer-name\":\"Strong → Servers made simple.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sfd79i\",\"data-framer-name\":\"Frame 1171278486\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13i0ta2\",\"data-framer-name\":\"Frame 1171278429\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gwgjj1\",\"data-framer-name\":\"SVG\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.33984 1.27246V13.0225C1.33984 14.2651 2.3472 15.2725 3.58984 15.2725H15.3398V13.7725H3.58984C3.17563 13.7725 2.83984 13.4367 2.83984 13.0225V1.27246H1.33984ZM14.6369 6.28549L15.1499 5.73842L14.0558 4.71235L13.5427 5.25943L10.3224 8.69345L8.04684 6.41875C7.6563 6.02835 7.02324 6.02841 6.63277 6.41888L4.55951 8.49213L4.02918 9.02246L5.08984 10.0831L5.62017 9.55279L7.33994 7.83303L9.62707 10.1193C10.0265 10.5186 10.6771 10.5081 11.0634 10.0961L14.6369 6.28549Z\" fill=\"#A1A1A1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ph3a4i\",\"data-framer-name\":\"Frame 1171278428\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Immediate Actionability\"})}),className:\"framer-138hnsj\",\"data-framer-name\":\"Heading 2 → Scalable serverless compute\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation40,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hzslz7\",\"data-framer-name\":\"Frame 1171278427\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Instantly use insights to accelerate your outbound marketing and sales.\"})}),className:\"framer-bpw0f9\",\"data-framer-name\":\"Strong → Servers made simple.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i24s7x\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation41,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bq3f3u\",\"data-border\":true,\"data-framer-name\":\"Bottom CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wzdq5c\",\"data-framer-name\":\"Frame 1171278499\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqyy1h\",\"data-framer-name\":\"Frame 1171278498\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Convert smarter\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"The right buyers. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"The right moment.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Convert smarter\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.96px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"The right buyers. The right moment.\"})]}),className:\"framer-zv7h4p\",\"data-framer-name\":\"Convert smarter The right buyers. The right moment.\",fonts:[\"Inter-SemiBold\",\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 50px)`,y:(componentViewport?.y||0)+0+5221+0+0+30+0+0+549},lmTuUUgQ7:{y:(componentViewport?.y||0)+0+4991+100+0+40+0+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+3919+100+0+40+0+8,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1m9ncxg-container\",id:\"1m9ncxg\",nodeId:\"J7Q7WrX0g\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(MainCTALRG,{height:\"100%\",id:\"J7Q7WrX0g\",kFwMVbk42:kFwMVbk423bnx0g({overlay:overlay1}),layoutId:\"J7Q7WrX0g\",variant:\"jB7DRyvKF\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1asz4h0\"),\"data-framer-portal-id\":\"1m9ncxg\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"UQpCGZVLx\"),isDisplayed()&&/*#__PURE__*/_jsx(FormContainerWithFL0TrackOnSubmitpl57sv,{action:\"https://api.framer.com/forms/v1/forms/1f9ff3e4-c936-4162-88ed-b8a2d2143b62/submit\",animate:animation7,className:`${cx(scopingClassNames,\"framer-pl57sv\")} hidden-xcqh4`,\"data-border\":true,\"data-framer-portal-id\":\"1m9ncxg\",exit:animation6,initial:animation8,nodeId:\"FJd0Y4NMp\",redirectUrl:{webPageId:\"r5XUvPZ4J\"},transformTemplate:transformTemplate1,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19kpuch\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.28px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Request invite to FL0\"})}),className:\"framer-13wtujb\",\"data-framer-name\":\"Heading 2 → Product support.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Request your invite by filling out the form below.\"})}),className:\"framer-fc9764\",\"data-framer-name\":\"Get help from the community. If you're on a paid plan, submit a ticket to our support team.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-15jzt94\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your Name\"})}),className:\"framer-w20xr7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-wvzufc\",inputName:\"Name\",placeholder:\"Enter your full name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-3ziwal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your work email\"})}),className:\"framer-1ff24eh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-r217jb\",inputName:\"work email\",placeholder:\"your.name@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-lg1aaj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your company URL\"})}),className:\"framer-1pat2ko\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1pthi9d\",inputName:\"Company\",placeholder:\"yourcompany.com\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-18jk9f7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"What problem are you looking to solve with us\"})}),className:\"framer-y6vl5r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1suym9d\",inputName:\"description\",placeholder:\"Please describe the problem you're facing\",type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"377px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3kvrh-container\",inComponentSlot:true,nodeId:\"vYeIXz6Xg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"vYeIXz6Xg\",layoutId:\"vYeIXz6Xg\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"XGaXqYVws\",success:\"rsPiXR9ZD\"},\"zZ9UFv6A0\"),width:\"100%\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(FormContainerWithFL0TrackOnSubmit11drelf,{action:\"https://api.framer.com/forms/v1/forms/583769bc-4077-4303-97c8-4ed4d12c5be0/submit\",animate:animation7,className:`${cx(scopingClassNames,\"framer-11drelf\")} hidden-72rtr7 hidden-z8n4io`,\"data-border\":true,\"data-framer-portal-id\":\"1m9ncxg\",exit:animation6,initial:animation8,nodeId:\"ZdEdTz2yn\",redirectUrl:{webPageId:\"r5XUvPZ4J\"},transformTemplate:transformTemplate1,children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1co2ntx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.28px\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Request invite to FL0\"})}),className:\"framer-37zjus\",\"data-framer-name\":\"Heading 2 → Product support.\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Request your invite by filling out the form below.\"})}),className:\"framer-zd1l5c\",\"data-framer-name\":\"Get help from the community. If you're on a paid plan, submit a ticket to our support team.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-uoyc05\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your Name\"})}),className:\"framer-1i1n0nf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-juph3h\",inputName:\"Name\",placeholder:\"Enter your full name\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-qkjsho\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Your work email\"})}),className:\"framer-ujjc54\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-jzocii\",inputName:\"work email\",placeholder:\"your.name@company.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1i6wp1l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"Company URL\"})}),className:\"framer-cny1un\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1j3bqkk\",inputName:\"company URL\",placeholder:\"https://yourcompany.com\",required:true,type:\"url\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-11a4unx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(161, 161, 161)\"},children:\"What problem are you looking to solve with us\"})}),className:\"framer-or7c9t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1f099js\",inputName:\"description\",placeholder:\"Please describe the problem you're facing\",type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{width:\"290px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9das8-container\",inComponentSlot:true,nodeId:\"udBnbS5c0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"udBnbS5c0\",layoutId:\"udBnbS5c0\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"XGaXqYVws\",success:\"rsPiXR9ZD\"},\"zZ9UFv6A0\"),width:\"100%\"})})})})]})})]}),getContainer())})})]})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5978},lmTuUUgQ7:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5335}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:\"1199px\",y:(componentViewport?.y||0)+0+4263,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o2gv7g-container\",nodeId:\"BWoh4dNtD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Iw_35VRLd:{variant:\"YwMRE0BEW\"},lmTuUUgQ7:{variant:\"YddWa5OWs\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BWoh4dNtD\",layoutId:\"BWoh4dNtD\",style:{width:\"100%\"},variant:\"hi5YdBRSf\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CDNmz.framer-lux5qc, .framer-CDNmz .framer-lux5qc { display: block; }\",\".framer-CDNmz.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; 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-CDNmz .framer-wy5kvd-container { flex: none; height: 60px; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-CDNmz .framer-1xf7a04 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 78px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-hhiil3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-CDNmz .framer-1640uax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 150px 0px 180px 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1yw2m5s, .framer-CDNmz .framer-18tt70l, .framer-CDNmz .framer-1c1ndmv, .framer-CDNmz .framer-1ta8id1, .framer-CDNmz .framer-1nq5xnl, .framer-CDNmz .framer-1v801vn, .framer-CDNmz .framer-14c6uhi, .framer-CDNmz .framer-ijkme2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1iprvke { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1199px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-y1x6nr { --framer-paragraph-spacing: 0px; flex: none; height: 56px; position: relative; white-space: pre-wrap; width: 1199px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-18jvl4e-container, .framer-CDNmz .framer-1m9ncxg-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDNmz.framer-1ewtwrx { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-CDNmz.framer-1y91gon { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 40px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 457px; will-change: var(--framer-will-change-effect-override, transform); z-index: 4; }\",\".framer-CDNmz .framer-1sdjg0g, .framer-CDNmz .framer-19kpuch, .framer-CDNmz .framer-1co2ntx { 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-CDNmz .framer-x5av10, .framer-CDNmz .framer-1n3ss19, .framer-CDNmz .framer-1sokh8a, .framer-CDNmz .framer-1q2lzuf, .framer-CDNmz .framer-1hbau53, .framer-CDNmz .framer-l1v9nr, .framer-CDNmz .framer-52n2k2, .framer-CDNmz .framer-yt1az8, .framer-CDNmz .framer-145zvim, .framer-CDNmz .framer-tjwbkx, .framer-CDNmz .framer-1vpu05g, .framer-CDNmz .framer-11re407, .framer-CDNmz .framer-16izy7x, .framer-CDNmz .framer-59uyo1, .framer-CDNmz .framer-12f2p2s, .framer-CDNmz .framer-1pssjl5, .framer-CDNmz .framer-13ygnq4, .framer-CDNmz .framer-kib1c2, .framer-CDNmz .framer-rqqoic, .framer-CDNmz .framer-8se84t, .framer-CDNmz .framer-1d9cddp, .framer-CDNmz .framer-1ejfw43, .framer-CDNmz .framer-svypow, .framer-CDNmz .framer-fa9w8d, .framer-CDNmz .framer-1s7wvav, .framer-CDNmz .framer-gjz3zk, .framer-CDNmz .framer-1ki3gnf, .framer-CDNmz .framer-n72sh6, .framer-CDNmz .framer-16cy0n2, .framer-CDNmz .framer-rxlh9o, .framer-CDNmz .framer-140w54c, .framer-CDNmz .framer-gz1qij, .framer-CDNmz .framer-7vlczy, .framer-CDNmz .framer-7te4b6, .framer-CDNmz .framer-1iwve4, .framer-CDNmz .framer-138hnsj, .framer-CDNmz .framer-zv7h4p, .framer-CDNmz .framer-13wtujb, .framer-CDNmz .framer-37zjus { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CDNmz .framer-6m39wi, .framer-CDNmz .framer-fc9764, .framer-CDNmz .framer-zd1l5c { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-yfszwv, .framer-CDNmz .framer-1vw0zaw, .framer-CDNmz .framer-703xbw, .framer-CDNmz .framer-1hdmb6x, .framer-CDNmz .framer-15jzt94, .framer-CDNmz .framer-3ziwal, .framer-CDNmz .framer-lg1aaj, .framer-CDNmz .framer-18jk9f7, .framer-CDNmz .framer-uoyc05, .framer-CDNmz .framer-qkjsho, .framer-CDNmz .framer-1i6wp1l, .framer-CDNmz .framer-11a4unx { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-62mxa1, .framer-CDNmz .framer-15vsicg, .framer-CDNmz .framer-1p1em2a, .framer-CDNmz .framer-16zo57e, .framer-CDNmz .framer-w20xr7, .framer-CDNmz .framer-1ff24eh, .framer-CDNmz .framer-1pat2ko, .framer-CDNmz .framer-y6vl5r, .framer-CDNmz .framer-1i1n0nf, .framer-CDNmz .framer-ujjc54, .framer-CDNmz .framer-cny1un { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-CDNmz .framer-1bjl3lq, .framer-CDNmz .framer-642qxj, .framer-CDNmz .framer-wvzufc, .framer-CDNmz .framer-1pthi9d, .framer-CDNmz .framer-juph3h { --framer-input-background: rgba(0, 0, 0, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: #262626; --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 6px; --framer-input-border-radius-bottom-right: 6px; --framer-input-border-radius-top-left: 6px; --framer-input-border-radius-top-right: 6px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-background: #262626; --framer-input-focused-border-color: #dedede; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #ededed; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #4f4f4f; flex: none; height: 45px; position: relative; width: 100%; }','.framer-CDNmz .framer-1vw6n8v, .framer-CDNmz .framer-r217jb, .framer-CDNmz .framer-jzocii, .framer-CDNmz .framer-1j3bqkk { --framer-input-background: rgba(0, 0, 0, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: #262626; --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 6px; --framer-input-border-radius-bottom-right: 6px; --framer-input-border-radius-top-left: 6px; --framer-input-border-radius-top-right: 6px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-background: #262626; --framer-input-focused-border-color: #ededed; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #ededed; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #4f4f4f; flex: none; height: 45px; position: relative; width: 100%; }','.framer-CDNmz .framer-16ii25q, .framer-CDNmz .framer-1suym9d, .framer-CDNmz .framer-1f099js { --framer-input-background: rgba(0, 0, 0, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: #262626; --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 6px; --framer-input-border-radius-bottom-right: 6px; --framer-input-border-radius-top-left: 6px; --framer-input-border-radius-top-right: 6px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-background: #262626; --framer-input-focused-border-color: #dedede; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #ededed; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #4f4f4f; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-CDNmz .framer-3w3kpt-container, .framer-CDNmz .framer-g3kvrh-container, .framer-CDNmz .framer-1v9das8-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1992a2y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 93px; justify-content: flex-start; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-CDNmz .framer-5n5kab { --framer-paragraph-spacing: 0px; flex: none; height: 24px; position: relative; white-space: pre-wrap; width: 1199px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-16373k0-container { flex: none; height: 44px; position: relative; width: 933px; }\",\".framer-CDNmz .framer-22gyfy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 175px; }\",\".framer-CDNmz .framer-16eaubv { flex: none; height: 19px; position: relative; width: 156px; }\",\".framer-CDNmz .framer-4rqde3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 120px; }\",\".framer-CDNmz .framer-1ql67li { flex: none; height: 25px; position: relative; width: 101px; }\",\".framer-CDNmz .framer-l1w83m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 117px; }\",\".framer-CDNmz .framer-4f1hbg { flex: none; height: 36px; position: relative; width: 94%; }\",\".framer-CDNmz .framer-1mzammd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 134px; }\",\".framer-CDNmz .framer-13x3wl9 { flex: none; height: 21px; position: relative; width: 117px; }\",\".framer-CDNmz .framer-1gtbtdv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 157px; }\",\".framer-CDNmz .framer-18kq3ir { flex: none; height: 19px; position: relative; width: 140px; }\",\".framer-CDNmz .framer-1dri40s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 77px; }\",\".framer-CDNmz .framer-lq2jo4 { flex: none; height: 37px; position: relative; width: 50px; }\",\".framer-CDNmz .framer-84wdi5-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-CDNmz .framer-10qg5s4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 140px 0px 40px 0px; position: relative; width: 1199px; }\",\".framer-CDNmz .framer-1j02p7n { --border-bottom-width: 1px; --border-color: #000000; --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: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 10px 40px 0px rgba(253, 130, 133, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-lb54m3 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-CDNmz .framer-1c6ezbd, .framer-CDNmz .framer-es7d76, .framer-CDNmz .framer-pjuoi3, .framer-CDNmz .framer-89szyx, .framer-CDNmz .framer-15csqtt, .framer-CDNmz .framer-glzy79, .framer-CDNmz .framer-1j5jzoc, .framer-CDNmz .framer-nmntdp { bottom: 4px; flex: none; left: 1px; position: absolute; right: 4px; top: 1px; }\",\".framer-CDNmz .framer-kfm7aq { flex: none; gap: 0px; height: 24px; overflow: visible; position: relative; width: 78px; }\",\".framer-CDNmz .framer-d36pr5 { bottom: 2px; flex: none; left: -2px; position: absolute; right: 2px; top: -2px; }\",\".framer-CDNmz .framer-iopd72 { --framer-paragraph-spacing: 0px; flex: none; height: 96px; position: relative; white-space: pre-wrap; width: 1199px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-vaexa5, .framer-CDNmz .framer-1k3bub1, .framer-CDNmz .framer-162lcfv, .framer-CDNmz .framer-1s75jgu, .framer-CDNmz .framer-14l3h53, .framer-CDNmz .framer-1djrwex, .framer-CDNmz .framer-51n4li { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-1q0d836 { --framer-paragraph-spacing: 0px; flex: none; height: 48px; position: relative; white-space: pre; width: auto; }\",\".framer-CDNmz .framer-1i8n6f1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 590px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1199px; }\",\".framer-CDNmz .framer-1pkwitx, .framer-CDNmz .framer-16jtngc { --border-bottom-width: 0px; --border-color: #262626; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 590px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 359px; }\",\".framer-CDNmz .framer-gtdbbd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 376px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-m845gc { flex: none; height: 215px; overflow: visible; position: relative; width: 306px; }\",\".framer-CDNmz .framer-18ub7b0 { flex: none; height: 160px; left: calc(50.08183306055649% - 211px / 2); overflow: hidden; position: absolute; top: calc(52.093023255813975% - 160px / 2); width: 211px; }\",\".framer-CDNmz .framer-1khk746 { flex: none; height: 102px; left: 1px; position: absolute; top: 1px; width: 179px; }\",\".framer-CDNmz .framer-8ri5u8 { bottom: 4px; flex: none; height: 39px; left: calc(48.34123222748817% - 63px / 2); position: absolute; width: 63px; }\",\".framer-CDNmz .framer-nkdc01 { bottom: 1px; flex: none; height: 96px; left: 95px; position: absolute; width: 116px; }\",\".framer-CDNmz .framer-d6g7f9 { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0a0a0a; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 10px 14px 10px 10px; position: absolute; top: 0px; width: min-content; }\",\".framer-CDNmz .framer-16jv1am, .framer-CDNmz .framer-11yytze, .framer-CDNmz .framer-1y90brh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-1oain19, .framer-CDNmz .framer-8ru5tp, .framer-CDNmz .framer-1mods7t { flex: none; height: 24px; position: relative; width: 35px; }\",\".framer-CDNmz .framer-1if5ts1, .framer-CDNmz .framer-8wqf4f, .framer-CDNmz .framer-4tvuzr, .framer-CDNmz .framer-duakp3, .framer-CDNmz .framer-136u50c, .framer-CDNmz .framer-1wf10td { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-f1ynjb, .framer-CDNmz .framer-7862m7, .framer-CDNmz .framer-tpimcc, .framer-CDNmz .framer-1kcmlsi, .framer-CDNmz .framer-eyzm1g, .framer-CDNmz .framer-nrma2w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-170ku3v, .framer-CDNmz .framer-h1mfqm, .framer-CDNmz .framer-wjn6b6, .framer-CDNmz .framer-pi6kx4, .framer-CDNmz .framer-1r84h3s, .framer-CDNmz .framer-13nhumq { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-15cpux7, .framer-CDNmz .framer-otlp2h, .framer-CDNmz .framer-67sbgl { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-CDNmz .framer-lpexyn { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0a0a0a; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 87px; overflow: visible; padding: 10px 14px 10px 10px; position: absolute; top: 54px; width: min-content; }\",\".framer-CDNmz .framer-23tuep { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0a0a0a; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 50px; overflow: visible; padding: 10px 14px 10px 10px; position: absolute; top: 108px; width: min-content; }\",\".framer-CDNmz .framer-1j5xw8p { flex: none; height: 67px; overflow: hidden; position: relative; width: 81px; }\",\".framer-CDNmz .framer-we8kwa { flex: none; height: 66px; left: 0px; position: absolute; right: 0px; top: calc(49.253731343283604% - 66px / 2); }\",\".framer-CDNmz .framer-ne5lbd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 213px; justify-content: flex-start; overflow: visible; padding: 0px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-euh9jf, .framer-CDNmz .framer-16zu1na, .framer-CDNmz .framer-bo4o4j, .framer-CDNmz .framer-zcttw9, .framer-CDNmz .framer-u5qjx5, .framer-CDNmz .framer-13i0ta2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-11500i2 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; }\",\".framer-CDNmz .framer-1ps4gkg { bottom: 3px; flex: none; left: 0px; position: absolute; right: 3px; top: 0px; }\",\".framer-CDNmz .framer-1gnrvrf, .framer-CDNmz .framer-1t6gmcc, .framer-CDNmz .framer-1yuux06, .framer-CDNmz .framer-ymsbyu, .framer-CDNmz .framer-1z0ohcc, .framer-CDNmz .framer-ph3a4i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-12zpzvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 148px; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-lj4qjh, .framer-CDNmz .framer-mgromy, .framer-CDNmz .framer-wsofgi, .framer-CDNmz .framer-1htqwlq, .framer-CDNmz .framer-1slcqse, .framer-CDNmz .framer-bpw0f9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 279px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-1xvgl1m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 376px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1d2uwxb { flex: none; height: 293px; overflow: visible; position: relative; width: 294px; }\",\".framer-CDNmz .framer-11m1vaq { flex: none; height: 295px; left: -1px; overflow: hidden; position: absolute; top: -1px; width: 296px; }\",\".framer-CDNmz .framer-17iolqv { bottom: 0px; flex: none; height: 294px; left: 0px; position: absolute; width: 295px; }\",\".framer-CDNmz .framer-fd9ixf { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); left: 0px; overflow: hidden; position: absolute; top: 77px; width: 24px; }\",\".framer-CDNmz .framer-4naf8u { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); left: 135px; overflow: hidden; position: absolute; top: 135px; width: 24px; }\",\".framer-CDNmz .framer-1b4rcnk { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); left: 176px; overflow: hidden; position: absolute; top: 76px; width: 24px; }\",\".framer-CDNmz .framer-hd2vfw { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); left: 51px; overflow: hidden; position: absolute; top: 105px; width: 24px; }\",\".framer-CDNmz .framer-1aangzs { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); left: 170px; overflow: hidden; position: absolute; top: 222px; width: 24px; }\",\".framer-CDNmz .framer-1r95fxq { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); left: 52px; overflow: hidden; position: absolute; top: 166px; width: 24px; }\",\".framer-CDNmz .framer-6whvjd { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 24px); left: 240px; overflow: hidden; position: absolute; top: 195px; width: 24px; }\",\".framer-CDNmz .framer-aj0i8t, .framer-CDNmz .framer-1hv0sqz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1n6y519, .framer-CDNmz .framer-1la5y6z { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 16px; }\",\".framer-CDNmz .framer-1ngs5z7 { flex: none; height: 18px; left: calc(50% - 17px / 2); position: absolute; top: calc(50% - 18px / 2); width: 17px; }\",\".framer-CDNmz .framer-io9r68 { flex: none; height: 8px; left: calc(12.5% - 9px / 2); position: absolute; top: calc(12.5% - 8px / 2); width: 9px; }\",\".framer-CDNmz .framer-1nsv62c { flex: none; height: 8px; left: calc(84.375% - 8px / 2); position: absolute; top: calc(87.5% - 8px / 2); width: 8px; }\",\".framer-CDNmz .framer-157z5ug, .framer-CDNmz .framer-6g78if, .framer-CDNmz .framer-m72mbk, .framer-CDNmz .framer-dnzmsj, .framer-CDNmz .framer-1hzslz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1gryxx2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 590px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 359px; }\",\".framer-CDNmz .framer-1a81ar5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 376px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1kzptpi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-ionuu5, .framer-CDNmz .framer-f3hzqx, .framer-CDNmz .framer-1cwhptj { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0a0a0a; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px; position: relative; width: 275px; }\",\".framer-CDNmz .framer-1al92h6, .framer-CDNmz .framer-5szzfh, .framer-CDNmz .framer-1622pcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-9wv1i1, .framer-CDNmz .framer-7m1q1a, .framer-CDNmz .framer-1vbje43, .framer-CDNmz .framer-gwgjj1 { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-CDNmz .framer-1bntyvz, .framer-CDNmz .framer-1hcritk, .framer-CDNmz .framer-1061cjs { 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: flex-start; overflow: visible; padding: 0px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-1bvrbrv, .framer-CDNmz .framer-1353ad3, .framer-CDNmz .framer-13opvre { align-content: center; align-items: center; background-color: rgba(248, 126, 130, 0.08); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 8px 6px 8px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-1e76lcm, .framer-CDNmz .framer-tm1j7s, .framer-CDNmz .framer-db1atv { flex: none; height: 13px; position: relative; width: 13px; }\",\".framer-CDNmz .framer-1uan6qa { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 18px); overflow: hidden; position: relative; width: 18px; }\",\".framer-CDNmz .framer-nl57t7 { bottom: 4px; flex: none; left: 1px; position: absolute; right: 2px; top: 2px; }\",\".framer-CDNmz .framer-161sucs { flex: none; gap: 10px; height: 650px; overflow: hidden; position: relative; width: 1199px; }\",\".framer-CDNmz .framer-1vvz7q8 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 47px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-CDNmz .framer-3fgbbb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 47px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1078px; }\",\".framer-CDNmz .framer-6rzbz5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1078px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-7g0fmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-10gvzj, .framer-CDNmz .framer-17gi6mu, .framer-CDNmz .framer-ltrte8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CDNmz .framer-1kf7ryx-container, .framer-CDNmz .framer-1qzlkeb-container, .framer-CDNmz .framer-17n1rd8-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-CDNmz .framer-1bfzy8k, .framer-CDNmz .framer-1gpl2es, .framer-CDNmz .framer-pkmhp2, .framer-CDNmz .framer-zokngt, .framer-CDNmz .framer-cgjv85, .framer-CDNmz .framer-1fqxon0, .framer-CDNmz .framer-1qfzba5, .framer-CDNmz .framer-6dz2wk, .framer-CDNmz .framer-16mm519, .framer-CDNmz .framer-qt1095, .framer-CDNmz .framer-kjh3mh, .framer-CDNmz .framer-upc7x0, .framer-CDNmz .framer-1x3xp0d, .framer-CDNmz .framer-17ewyqt, .framer-CDNmz .framer-1sdlaj9, .framer-CDNmz .framer-lcg8vk, .framer-CDNmz .framer-83eo8 { --border-bottom-width: 1px; --border-color: #252525; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0a0a0a; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-CDNmz .framer-58ws9q, .framer-CDNmz .framer-1v7akmh, .framer-CDNmz .framer-1clleob, .framer-CDNmz .framer-1ae5k0f, .framer-CDNmz .framer-10jvflg, .framer-CDNmz .framer-1g0ydwc, .framer-CDNmz .framer-px4pwg, .framer-CDNmz .framer-x72rr8, .framer-CDNmz .framer-g5ivp6, .framer-CDNmz .framer-1ltu1rq, .framer-CDNmz .framer-r5kn9i, .framer-CDNmz .framer-k64le2, .framer-CDNmz .framer-1wciba6, .framer-CDNmz .framer-g946zu, .framer-CDNmz .framer-1n4443k, .framer-CDNmz .framer-1egr043, .framer-CDNmz .framer-12mvn10 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 17px); overflow: hidden; position: relative; width: 17px; }\",\".framer-CDNmz .framer-1hmcft7, .framer-CDNmz .framer-ayipy6, .framer-CDNmz .framer-1te1w4d, .framer-CDNmz .framer-df34gg, .framer-CDNmz .framer-44bybs, .framer-CDNmz .framer-14p0uo6, .framer-CDNmz .framer-30kcho, .framer-CDNmz .framer-1u3dfsz, .framer-CDNmz .framer-ko0rnk, .framer-CDNmz .framer-1ehlq11, .framer-CDNmz .framer-674yr0, .framer-CDNmz .framer-1jdcnd7, .framer-CDNmz .framer-1tmxog6, .framer-CDNmz .framer-7icu28, .framer-CDNmz .framer-17us6os, .framer-CDNmz .framer-15fhuog, .framer-CDNmz .framer-3r64ci, .framer-CDNmz .framer-7zxxa3 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-CDNmz .framer-bzlw5x-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-CDNmz .framer-1oc7imw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 79px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 120px 0px; position: relative; width: 1199px; }\",\".framer-CDNmz .framer-17usq9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 163px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1199px; }\",\".framer-CDNmz .framer-442qt4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 589px; }\",\".framer-CDNmz .framer-nlcmqj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 538px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-1q8n9zb { --framer-paragraph-spacing: 0px; flex: none; height: 72px; position: relative; white-space: pre-wrap; width: 538px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-lxwd1o { flex: none; height: 140px; overflow: hidden; position: relative; width: 139px; }\",\".framer-CDNmz .framer-1p1knsu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1199px; }\",\".framer-CDNmz .framer-nghmur, .framer-CDNmz .framer-fdnu20, .framer-CDNmz .framer-1sfd79i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 359px; }\",\".framer-CDNmz .framer-13ev5wl { flex: none; height: 18px; left: calc(50% - 16px / 2); position: absolute; top: calc(50% - 18px / 2); width: 16px; }\",\".framer-CDNmz .framer-6zidgt { flex: none; height: 8px; left: calc(12.5% - 8px / 2); position: absolute; top: calc(12.5% - 8px / 2); width: 8px; }\",\".framer-CDNmz .framer-16vair3 { flex: none; height: 8px; left: calc(84.375% - 7px / 2); position: absolute; top: calc(87.5% - 8px / 2); width: 7px; }\",\".framer-CDNmz .framer-13jigju { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 14px); overflow: hidden; position: relative; width: 14px; }\",\".framer-CDNmz .framer-1u5o03l { bottom: 1px; flex: none; left: 0px; position: absolute; right: 1px; top: 0px; }\",\".framer-CDNmz .framer-1i24s7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 1199px; }\",\".framer-CDNmz .framer-bq3f3u { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #0a0a0a; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 144px; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 1099px; }\",\".framer-CDNmz .framer-1wzdq5c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-CDNmz .framer-1tqyy1h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-CDNmz.framer-1asz4h0 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-CDNmz.framer-pl57sv { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 40px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 457px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-CDNmz.framer-11drelf { --border-bottom-width: 1px; --border-color: #333333; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #000000; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 30px; position: fixed; top: 51%; transform: translate(-50%, -50%); width: 350px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-CDNmz .framer-or7c9t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-CDNmz .framer-1o2gv7g-container { flex: none; height: auto; position: relative; width: 1199px; }\",'.framer-CDNmz[data-border=\"true\"]::after, .framer-CDNmz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199.98px) { .framer-CDNmz.framer-72rtr7 { width: 810px; } .framer-CDNmz .framer-wy5kvd-container { height: auto; } .framer-CDNmz .framer-1yw2m5s { width: 656px; } .framer-CDNmz .framer-1iprvke, .framer-CDNmz .framer-5n5kab, .framer-CDNmz .framer-iopd72, .framer-CDNmz .framer-6rzbz5 { flex: 1 0 0px; width: 1px; } .framer-CDNmz .framer-18tt70l, .framer-CDNmz .framer-442qt4, .framer-CDNmz .framer-m72mbk, .framer-CDNmz .framer-dnzmsj, .framer-CDNmz .framer-1sfd79i, .framer-CDNmz .framer-1hzslz7 { width: min-content; } .framer-CDNmz .framer-y1x6nr { white-space: pre; width: auto; } .framer-CDNmz .framer-16373k0-container, .framer-CDNmz .framer-10qg5s4, .framer-CDNmz .framer-161sucs, .framer-CDNmz .framer-1oc7imw, .framer-CDNmz .framer-1p1knsu, .framer-CDNmz .framer-1i24s7x, .framer-CDNmz .framer-bq3f3u, .framer-CDNmz .framer-1o2gv7g-container { width: 100%; } .framer-CDNmz .framer-1i8n6f1 { flex-direction: column; height: min-content; width: 100%; } .framer-CDNmz .framer-1pkwitx, .framer-CDNmz .framer-16jtngc { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; } .framer-CDNmz .framer-3fgbbb { padding: 0px 40px 0px 40px; width: 100%; } .framer-CDNmz .framer-17usq9e { gap: 32px; width: 100%; } .framer-CDNmz .framer-nlcmqj { width: 494px; } .framer-CDNmz .framer-1q8n9zb { width: 404px; } .framer-CDNmz .framer-nghmur { padding: 0px 40px 0px 20px; width: min-content; } .framer-CDNmz .framer-1htqwlq, .framer-CDNmz .framer-1slcqse { width: 220px; } .framer-CDNmz .framer-fdnu20 { padding: 0px; width: min-content; } .framer-CDNmz .framer-bpw0f9 { width: 228px; }}\",\"@media (max-width: 809.98px) { .framer-CDNmz.framer-72rtr7, .framer-CDNmz .framer-1yw2m5s, .framer-CDNmz .framer-1iprvke, .framer-CDNmz .framer-18tt70l, .framer-CDNmz .framer-1992a2y { width: 390px; } .framer-CDNmz .framer-wy5kvd-container { height: auto; } .framer-CDNmz .framer-1xf7a04 { height: 844px; } .framer-CDNmz .framer-hhiil3 { height: 726px; } .framer-CDNmz .framer-1640uax { padding: 150px 0px 141px 0px; } .framer-CDNmz .framer-y1x6nr { height: auto; width: 390px; } .framer-CDNmz.framer-1y91gon { left: 50%; padding: 30px; top: 51%; width: 350px; } .framer-CDNmz .framer-16zo57e { white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; } .framer-CDNmz .framer-5n5kab, .framer-CDNmz .framer-mgromy, .framer-CDNmz .framer-6rzbz5, .framer-CDNmz .framer-bpw0f9 { flex: 1 0 0px; width: 1px; } .framer-CDNmz .framer-16373k0-container, .framer-CDNmz .framer-161sucs, .framer-CDNmz .framer-1o2gv7g-container { width: 100%; } .framer-CDNmz .framer-10qg5s4 { padding: 100px 20px 40px 20px; width: 100%; } .framer-CDNmz .framer-1ta8id1 { height: 192px; } .framer-CDNmz .framer-iopd72 { height: 100%; width: 390px; } .framer-CDNmz .framer-vaexa5 { height: 96px; padding: 0px 20px 0px 20px; width: 390px; } .framer-CDNmz .framer-1q0d836 { height: 96px; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; } .framer-CDNmz .framer-1i8n6f1 { flex-direction: column; gap: 0px; height: min-content; width: 100%; } .framer-CDNmz .framer-1pkwitx { --border-bottom-width: 1px; --border-right-width: 0px; height: min-content; padding: 0px 0px 60px 0px; } .framer-CDNmz .framer-gtdbbd { height: 282px; padding: 0px; width: 359px; } .framer-CDNmz .framer-m845gc, .framer-CDNmz .framer-lj4qjh, .framer-CDNmz .framer-1kzptpi, .framer-CDNmz .framer-ionuu5, .framer-CDNmz .framer-f3hzqx, .framer-CDNmz .framer-1cwhptj, .framer-CDNmz .framer-wsofgi { width: 359px; } .framer-CDNmz .framer-lpexyn { left: 141px; } .framer-CDNmz .framer-23tuep { bottom: 63px; left: 30px; top: unset; } .framer-CDNmz .framer-ne5lbd { gap: 16px; height: min-content; padding: 0px; } .framer-CDNmz .framer-12zpzvq { height: min-content; padding: 0px; } .framer-CDNmz .framer-16jtngc { --border-bottom-width: 1px; --border-right-width: 0px; height: min-content; padding: 20px 0px 60px 0px; } .framer-CDNmz .framer-aj0i8t, .framer-CDNmz .framer-m72mbk { gap: 16px; padding: 0px; } .framer-CDNmz .framer-157z5ug, .framer-CDNmz .framer-6g78if { padding: 0px; } .framer-CDNmz .framer-1gryxx2 { height: min-content; padding: 60px 0px 100px 0px; } .framer-CDNmz .framer-1a81ar5 { height: min-content; padding: 0px 0px 40px 0px; } .framer-CDNmz .framer-1hv0sqz { gap: 16px; padding: 0px; width: 359px; } .framer-CDNmz .framer-3fgbbb { padding: 0px 20px 0px 20px; width: 100%; } .framer-CDNmz .framer-1oc7imw { gap: 20px; padding: 100px 0px 60px 0px; width: 390px; } .framer-CDNmz .framer-17usq9e { flex-direction: column; gap: 40px; padding: 0px 20px 40px 20px; width: 100%; } .framer-CDNmz .framer-442qt4 { align-content: center; align-items: center; order: 1; width: 100%; } .framer-CDNmz .framer-nlcmqj { order: 0; width: 350px; } .framer-CDNmz .framer-1q8n9zb { order: 1; width: 350px; } .framer-CDNmz .framer-lxwd1o { order: 0; } .framer-CDNmz .framer-1p1knsu { align-content: unset; align-items: unset; display: grid; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); justify-content: center; width: 100%; } .framer-CDNmz .framer-nghmur { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-self: start; gap: 16px; height: 140px; justify-self: start; padding: 0px 0px 40px 0px; width: 1fr; } .framer-CDNmz .framer-1htqwlq, .framer-CDNmz .framer-1slcqse { width: 350px; } .framer-CDNmz .framer-fdnu20 { --border-bottom-width: 1px; --border-color: #262626; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-self: start; gap: 16px; justify-self: start; padding: 0px 0px 40px 0px; width: 1fr; } .framer-CDNmz .framer-dnzmsj { gap: 16px; padding: 0px; width: 350px; } .framer-CDNmz .framer-1sfd79i { align-self: start; gap: 16px; justify-self: start; padding: 0px; width: 100%; } .framer-CDNmz .framer-1hzslz7 { padding: 0px; width: 350px; } .framer-CDNmz .framer-1i24s7x { padding: 0px 20px 100px 20px; width: 100%; } .framer-CDNmz .framer-bq3f3u { gap: 0px; height: min-content; padding: 30px; width: 100%; } .framer-CDNmz .framer-1wzdq5c { align-content: unset; align-items: unset; display: grid; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); justify-content: center; } .framer-CDNmz .framer-1tqyy1h { align-self: start; justify-self: start; width: 100%; } .framer-CDNmz .framer-zv7h4p { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-CDNmz .framer-1m9ncxg-container { align-self: start; justify-self: center; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3731\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lmTuUUgQ7\":{\"layout\":[\"fixed\",\"auto\"]},\"Iw_35VRLd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"YkjZp0wqN\":{\"pattern\":\":YkjZp0wqN\",\"name\":\"intent\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-CDNmz\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3731,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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/yDtI2UI8XcEg1W2je9XPN3Noo.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"}]},...NavFonts,...MainCTALRGFonts,...Button2Fonts,...TickerFonts,...ShimmerDotFonts,...ShimmerGridFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lmTuUUgQ7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Iw_35VRLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"3731\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"YkjZp0wqN\\\":{\\\"pattern\\\":\\\":YkjZp0wqN\\\",\\\"name\\\":\\\"intent\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}