{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/UZYFWfrjrN4qzwCiaHVd/m0TAWqTEG9UT8fSCOYN6/kUFYJQgyU.js", "ssg:https://framerusercontent.com/modules/f5YFsDE15jgNMf49hhzm/WQwwoZeMQ3yZP3FH6pF4/QStH0WNvv.js", "ssg:https://framerusercontent.com/modules/v2QfAqUr9gD4jnG5rbQk/SzkB7sr66uuCbYM0bKep/rXZGMcOeT.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}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;startTransition(()=>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);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}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]);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:\"\u2728\"}),/*#__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\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7ZzlHLD4yMY3axrQIWEX/w8ZlZMGFO6G4ZvenvoH1/KtyUEnTXi.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={gTxFycZWk:{hover:true}};const serializationHash=\"framer-Revmb\";const variantClassNames={gTxFycZWk:\"framer-v-1e0rvmm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,icon,id,text,width,...props})=>{return{...props,viT8Fnjmb:icon??props.viT8Fnjmb??\"CheckCircle\",wQwnfMzOC:text??props.wQwnfMzOC??\"Text\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,wQwnfMzOC,viT8Fnjmb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"gTxFycZWk\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1e0rvmm\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"gTxFycZWk\",ref:refBinding,style:{backgroundColor:\"var(--token-0f07f556-9e14-491d-9aef-f342061eaaa0, rgb(18, 18, 18))\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,...style},variants:{\"gTxFycZWk-hover\":{backgroundColor:\"var(--token-1a43cf12-cc7c-45d9-9670-b1679bb7919c, rgb(28, 28, 28))\"}},...addPropertyOverrides({\"gTxFycZWk-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e1tndd-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UxCWO7esh-container\",nodeId:\"UxCWO7esh\",rendersWithMotion:true,scopeId:\"kUFYJQgyU\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:viT8Fnjmb,id:\"UxCWO7esh\",layoutId:\"UxCWO7esh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255)))\"},children:\"Fast\"})}),className:\"framer-d0acfv\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tq0SiLKlU\",style:{\"--extracted-r6o4lv\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},text:wQwnfMzOC,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Revmb.framer-iwy8wk, .framer-Revmb .framer-iwy8wk { display: block; }\",\".framer-Revmb.framer-1e0rvmm { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Revmb .framer-1e1tndd-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Revmb .framer-d0acfv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Revmb.framer-1e0rvmm { gap: 0px; } .framer-Revmb.framer-1e0rvmm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Revmb.framer-1e0rvmm > :first-child { margin-left: 0px; } .framer-Revmb.framer-1e0rvmm > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 95.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"FKjgB5Ui2\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"wQwnfMzOC\":\"text\",\"viT8Fnjmb\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkUFYJQgyU=withCSS(Component,css,\"framer-Revmb\");export default FramerkUFYJQgyU;FramerkUFYJQgyU.displayName=\"USP Short\";FramerkUFYJQgyU.defaultProps={height:48,width:95.5};addPropertyControls(FramerkUFYJQgyU,{wQwnfMzOC:{defaultValue:\"Text\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"Text\",type:ControlType.String},viT8Fnjmb:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"CheckCircle\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerkUFYJQgyU,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkUFYJQgyU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"95.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FKjgB5Ui2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"wQwnfMzOC\\\":\\\"text\\\",\\\"viT8Fnjmb\\\":\\\"icon\\\"}\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kUFYJQgyU.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import USPShort from\"https://framerusercontent.com/modules/UZYFWfrjrN4qzwCiaHVd/m0TAWqTEG9UT8fSCOYN6/kUFYJQgyU.js\";const USPShortFonts=getFonts(USPShort);const serializationHash=\"framer-5aY7S\";const variantClassNames={lMl7Ljir6:\"framer-v-am7d1q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"lMl7Ljir6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-am7d1q\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"lMl7Ljir6\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o1q2gd-container\",layoutDependency:layoutDependency,layoutId:\"q3aCeAImJ-container\",nodeId:\"q3aCeAImJ\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"q3aCeAImJ\",layoutId:\"q3aCeAImJ\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Fast\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15rwhh2-container\",layoutDependency:layoutDependency,layoutId:\"bTiooJH35-container\",nodeId:\"bTiooJH35\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"bTiooJH35\",layoutId:\"bTiooJH35\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Simple\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ajoigb-container\",layoutDependency:layoutDependency,layoutId:\"XAnykVMPe-container\",nodeId:\"XAnykVMPe\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"XAnykVMPe\",layoutId:\"XAnykVMPe\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Flexible\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gdxm7b-container\",layoutDependency:layoutDependency,layoutId:\"xzHiQUrhf-container\",nodeId:\"xzHiQUrhf\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"xzHiQUrhf\",layoutId:\"xzHiQUrhf\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Secure\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v9fumt-container\",layoutDependency:layoutDependency,layoutId:\"Lfh0i0tX8-container\",nodeId:\"Lfh0i0tX8\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"Lfh0i0tX8\",layoutId:\"Lfh0i0tX8\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Grows with you\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1icmdpo-container\",layoutDependency:layoutDependency,layoutId:\"mXMvH5hnb-container\",nodeId:\"mXMvH5hnb\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"mXMvH5hnb\",layoutId:\"mXMvH5hnb\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Smart\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d7jwjr-container\",layoutDependency:layoutDependency,layoutId:\"VhrbiZQlC-container\",nodeId:\"VhrbiZQlC\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"VhrbiZQlC\",layoutId:\"VhrbiZQlC\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Fast\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ifprnb-container\",layoutDependency:layoutDependency,layoutId:\"lD1q06bzd-container\",nodeId:\"lD1q06bzd\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"lD1q06bzd\",layoutId:\"lD1q06bzd\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Simple\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(0+((componentViewport?.height||48)-0-48)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-blqtpz-container\",layoutDependency:layoutDependency,layoutId:\"DxuA5ZYRu-container\",nodeId:\"DxuA5ZYRu\",rendersWithMotion:true,scopeId:\"QStH0WNvv\",children:/*#__PURE__*/_jsx(USPShort,{height:\"100%\",id:\"DxuA5ZYRu\",layoutId:\"DxuA5ZYRu\",viT8Fnjmb:\"CheckCircle\",width:\"100%\",wQwnfMzOC:\"Flexible\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5aY7S.framer-1hxhui6, .framer-5aY7S .framer-1hxhui6 { display: block; }\",\".framer-5aY7S.framer-am7d1q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 0px; position: relative; width: min-content; }\",\".framer-5aY7S .framer-1o1q2gd-container, .framer-5aY7S .framer-15rwhh2-container, .framer-5aY7S .framer-1ajoigb-container, .framer-5aY7S .framer-1gdxm7b-container, .framer-5aY7S .framer-v9fumt-container, .framer-5aY7S .framer-1icmdpo-container, .framer-5aY7S .framer-d7jwjr-container, .framer-5aY7S .framer-1ifprnb-container, .framer-5aY7S .framer-blqtpz-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5aY7S.framer-am7d1q { gap: 0px; } .framer-5aY7S.framer-am7d1q > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-5aY7S.framer-am7d1q > :first-child { margin-left: 0px; } .framer-5aY7S.framer-am7d1q > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 1218\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQStH0WNvv=withCSS(Component,css,\"framer-5aY7S\");export default FramerQStH0WNvv;FramerQStH0WNvv.displayName=\"Short USP section\";FramerQStH0WNvv.defaultProps={height:48,width:1218};addFonts(FramerQStH0WNvv,[{explicitInter:true,fonts:[]},...USPShortFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQStH0WNvv\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1218\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QStH0WNvv.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Menu from\"#framer/local/canvasComponent/h3_QYYbAh/h3_QYYbAh.js\";import Badge from\"#framer/local/canvasComponent/H9NusR1qS/H9NusR1qS.js\";import ShortUSPSection from\"#framer/local/canvasComponent/QStH0WNvv/QStH0WNvv.js\";import CTASection from\"#framer/local/canvasComponent/WlUzuJOwV/WlUzuJOwV.js\";import HeroIllustration from\"#framer/local/canvasComponent/yrEVXIgA8/yrEVXIgA8.js\";import*as sharedStyle1 from\"#framer/local/css/CFvrzJmr4/CFvrzJmr4.js\";import*as sharedStyle5 from\"#framer/local/css/GIMNkpwJi/GIMNkpwJi.js\";import*as sharedStyle from\"#framer/local/css/jm6KlDoPH/jm6KlDoPH.js\";import*as sharedStyle4 from\"#framer/local/css/KtyUEnTXi/KtyUEnTXi.js\";import*as sharedStyle3 from\"#framer/local/css/pNktkXffu/pNktkXffu.js\";import*as sharedStyle2 from\"#framer/local/css/VnCRagK4k/VnCRagK4k.js\";import metadataProvider from\"#framer/local/webPageMetadata/rXZGMcOeT/rXZGMcOeT.js\";const MenuFonts=getFonts(Menu);const BadgeFonts=getFonts(Badge);const HeroIllustrationFonts=getFonts(HeroIllustration);const ShortUSPSectionFonts=getFonts(ShortUSPSection);const TickerFonts=getFonts(Ticker);const MotionSectionWithFX=withFX(motion.section);const PhosphorFonts=getFonts(Phosphor);const CTASectionFonts=getFonts(CTASection);const breakpoints={cwsTdj1H_:\"(max-width: 809px)\",m8q9U9Av6:\"(min-width: 1200px)\",u2zpjGntd:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-uRCcS\";const variantClassNames={cwsTdj1H_:\"framer-v-186pqyl\",m8q9U9Av6:\"framer-v-k7pmhi\",u2zpjGntd:\"framer-v-1xb185r\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"m8q9U9Av6\",Phone:\"cwsTdj1H_\",Tablet:\"u2zpjGntd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"m8q9U9Av6\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"m8q9U9Av6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-k7pmhi\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{y:16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:382,y:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ifhwq-container\",layoutScroll:true,nodeId:\"YhRMPVENn\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"YhRMPVENn\",layoutId:\"YhRMPVENn\",variant:\"vp7fb7ZWg\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wrx03g\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jtfb9o\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{y:(componentViewport?.y||0)+80+0+120+0+0+0},u2zpjGntd:{y:(componentViewport?.y||0)+80+0+160+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+0+200+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oc7ep-container\",nodeId:\"x67ZjUS0b\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Badge,{GfKCWZw97:\"features\",height:\"100%\",id:\"x67ZjUS0b\",layoutId:\"x67ZjUS0b\",width:\"100%\",xLnLsOaZM:\"Product\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-twza63\",\"data-styles-preset\":\"jm6KlDoPH\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"var(--token-6a4aeca2-2020-4447-a3b8-da9cf8c08379, rgb(133, 133, 136))\"},children:[\"The end of \",/*#__PURE__*/_jsx(\"br\",{})]}),\"scattered reports\"]})}),className:\"framer-8mh62x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{height:360,width:\"640px\",y:(componentViewport?.y||0)+80+0+120+214},u2zpjGntd:{y:(componentViewport?.y||0)+80+0+160+214}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:720,width:\"1280px\",y:(componentViewport?.y||0)+80+0+200+214,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bw0umo-container\",nodeId:\"I0sqATMTt\",rendersWithMotion:true,scopeId:\"rXZGMcOeT\",style:{rotate:10,skewX:-20},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{variant:\"vSwTve6RO\"}},children:/*#__PURE__*/_jsx(HeroIllustration,{height:\"100%\",id:\"I0sqATMTt\",layoutId:\"I0sqATMTt\",style:{height:\"100%\",width:\"100%\"},variant:\"CzhXph4fc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4i84de\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1shcz1s-container\",isModuleExternal:true,nodeId:\"bg4xM6xYj\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"bg4xM6xYj\",layoutId:\"bg4xM6xYj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"1218px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gk1ajw-container\",inComponentSlot:true,nodeId:\"i9TV_6aH0\",rendersWithMotion:true,scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(ShortUSPSection,{height:\"100%\",id:\"i9TV_6aH0\",layoutId:\"i9TV_6aH0\",width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n0uncu\",\"data-framer-name\":\"USP's large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xg9c4q\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z99459\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a8au2o\",\"data-styles-preset\":\"CFvrzJmr4\",style:{\"--framer-text-alignment\":\"center\"},children:\"Beyond standard analytics\"})}),className:\"framer-52b3mg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cqsz5f\",\"data-styles-preset\":\"VnCRagK4k\",style:{\"--framer-text-alignment\":\"center\"},children:\"We make data accessible and actionable for teams of all sizes.\"})}),className:\"framer-10zfrt4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-135msmf\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13fhk9v\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jyq9pl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{y:(componentViewport?.y||0)+80+830+80+0+0+236+0+0+40+0+0+0},u2zpjGntd:{y:(componentViewport?.y||0)+80+1230+120+0+0+260+0+40+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+1270+160+0+0+260+0+40+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1goudkw-container\",nodeId:\"xQcbCtuc8\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Badge,{GfKCWZw97:\"Feature\",height:\"100%\",id:\"xQcbCtuc8\",layoutId:\"xQcbCtuc8\",width:\"100%\",xLnLsOaZM:\"New\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",style:{\"--framer-text-color\":\"var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0))\"},children:\"Real-time data processing\"})}),className:\"framer-16liutb\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",style:{\"--framer-text-color\":\"var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0))\"},children:\"Turn raw data into useful insights right away. Feature's fast processing engine analyzes millions of data points in seconds, giving you current information when you need to make quick decisions.\"})}),className:\"framer-r6alef\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+830+80+0+0+236+0+0+40+253.2),pixelHeight:720,pixelWidth:1280,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 32px, 1280px) - 80px) * 1.3)`,src:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg 1280w\"}},u2zpjGntd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+1230+120+0+0+260+0+40+253.2),pixelHeight:720,pixelWidth:1280,sizes:`calc((max((min(${componentViewport?.width||\"100vw\"} - 32px, 1280px) - 24px) / 2, 1px) - 80px) * 1.3)`,src:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+1270+160+0+0+260+0+40+253.2),pixelHeight:720,pixelWidth:1280,sizes:`calc((max((min(${componentViewport?.width||\"100vw\"} - 32px, 1280px) - 24px) / 2, 1px) - 80px) * 1.3)`,src:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg 1280w\"},className:\"framer-zu0us5\",\"data-framer-name\":\"Desktop\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjvxr3\",\"data-border\":true,\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pojfv8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{y:(componentViewport?.y||0)+80+830+80+0+0+236+0+677.2+40+0+0+0},u2zpjGntd:{y:(componentViewport?.y||0)+80+1230+120+0+0+260+0+40+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+80+1270+160+0+0+260+0+40+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vid5iv-container\",nodeId:\"jCIQoNqgh\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Badge,{GfKCWZw97:\"Feature\",height:\"100%\",id:\"jCIQoNqgh\",layoutId:\"jCIQoNqgh\",width:\"100%\",xLnLsOaZM:\"New\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19cyt6h\",\"data-styles-preset\":\"pNktkXffu\",children:\"Smart predictive analytics\"})}),className:\"framer-btqzrt\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:\"See what's coming before it happens. Our machine learning spots patterns and shows future trends with impressive accuracy, helping your team get ahead of changes and stay in front of competitors.\"})}),className:\"framer-89u7st\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+830+80+0+0+236+0+677.2+40+253.2),pixelHeight:720,pixelWidth:1280,sizes:`calc((min(${componentViewport?.width||\"100vw\"} - 32px, 1280px) - 80px) * 1.3)`,src:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg 1280w\"}},u2zpjGntd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+1230+120+0+0+260+0+40+253.2),pixelHeight:720,pixelWidth:1280,sizes:`calc((max((min(${componentViewport?.width||\"100vw\"} - 32px, 1280px) - 24px) / 2, 1px) - 80px) * 1.3)`,src:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:360,intrinsicWidth:640,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+1270+160+0+0+260+0+40+253.2),pixelHeight:720,pixelWidth:1280,sizes:`calc((max((min(${componentViewport?.width||\"100vw\"} - 32px, 1280px) - 24px) / 2, 1px) - 80px) * 1.3)`,src:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DxnZcZHLGfqEUMFJjAATfo2dvY.jpg 1280w\"},className:\"framer-oysvco\",\"data-framer-name\":\"Desktop\"})})]})]})]})}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19q7hhy\",\"data-framer-name\":\"USP's small\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bhbefs\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t3n2gp\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ah7hpz\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7atlo\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3k20ju-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"j0vV7mK8M\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Desktop\",id:\"j0vV7mK8M\",layoutId:\"j0vV7mK8M\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17rqch5\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1sv5l88\",\"data-styles-preset\":\"GIMNkpwJi\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Point-and-click dashboard builder\"})}),className:\"framer-17c8jeu\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:\"Create great-looking visual reports without coding. Our easy-to-use interface lets anyone on your team build professional dashboards that tell your data story clearly.\"})}),className:\"framer-1i9p0ip\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10q4wh6\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-179z6t1\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hqlkzl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ih1jr6Wt3\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"PaperPlane\",id:\"Ih1jr6Wt3\",layoutId:\"Ih1jr6Wt3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1615l4t\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1sv5l88\",\"data-styles-preset\":\"GIMNkpwJi\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Scheduled reports on autopilot\"})}),className:\"framer-178b2on\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:\"Set it up once and you're done. Schedule custom reports to be sent to team members automatically\u2014daily, weekly, monthly, or whenever works best for you.\"})}),className:\"framer-19c85d\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pha9t6\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mb0phc\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-spntfm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"W09hmsm5P\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UsersThree\",id:\"W09hmsm5P\",layoutId:\"W09hmsm5P\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pv534i\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1sv5l88\",\"data-styles-preset\":\"GIMNkpwJi\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Smart Access Control\"})}),className:\"framer-16ecfz2\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:\"Share the right information with the right people. Set specific permissions so team members see exactly what they need without exposing sensitive data.\"})}),className:\"framer-1rhvqge\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nmb2cv\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13v8f6n\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-108jvlf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PwYdHu4yh\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Globe\",id:\"PwYdHu4yh\",layoutId:\"PwYdHu4yh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b6kc7h\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1sv5l88\",\"data-styles-preset\":\"GIMNkpwJi\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Works everywhere you do\"})}),className:\"framer-r8ty5d\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:\"Get to your analytics anywhere. Feature works perfectly on desktop, tablet, and mobile devices, keeping your insights handy wherever work takes you.\"})}),className:\"framer-1pqjcb9\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fmyi42\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10tn5bm\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1libkck-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BoaH3Twvj\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Notification\",id:\"BoaH3Twvj\",layoutId:\"BoaH3Twvj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdpdbt\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1sv5l88\",\"data-styles-preset\":\"GIMNkpwJi\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"Helpful alerts & notifications\"})}),className:\"framer-ejs3n9\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:\"Stay on top of important changes. Set custom thresholds and get instant alerts when your numbers move outside expected ranges.\"})}),className:\"framer-1id2d04\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ynom6k\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v215fp\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k9rfdy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VNZ62TxmU\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChartBar\",id:\"VNZ62TxmU\",layoutId:\"VNZ62TxmU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16jdk6y\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1sv5l88\",\"data-styles-preset\":\"GIMNkpwJi\",style:{\"--framer-text-color\":\"var(--token-5122daf9-ab31-43ab-bbf4-0201196f4efe, rgb(255, 255, 255))\"},children:\"One-click data visualization\"})}),className:\"framer-nbdgd7\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z5fobn\",\"data-styles-preset\":\"KtyUEnTXi\",children:\"Turn complex data into clear visual stories with a single click. Feature suggests the most effective charts and graphs for your specific data.\"})}),className:\"framer-8qjl4n\",\"data-framer-name\":\"Desciption\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{y:(componentViewport?.y||0)+80+4200.4},u2zpjGntd:{y:(componentViewport?.y||0)+80+3139.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:448,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+80+3259.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vnkdp3-container\",nodeId:\"DdkC3zdKQ\",scopeId:\"rXZGMcOeT\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cwsTdj1H_:{variant:\"fEOI45LQm\"},u2zpjGntd:{variant:\"Qt8kus4HQ\"}},children:/*#__PURE__*/_jsx(CTASection,{height:\"100%\",id:\"DdkC3zdKQ\",layoutId:\"DdkC3zdKQ\",style:{width:\"100%\"},variant:\"ZLb3_cQKK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uRCcS.framer-2ru1y6, .framer-uRCcS .framer-2ru1y6 { display: block; }\",\".framer-uRCcS.framer-k7pmhi { align-content: center; align-items: center; background-color: var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-uRCcS .framer-8ifhwq-container { flex: none; height: auto; position: fixed; right: 24px; top: 24px; width: auto; z-index: 10; }\",\".framer-uRCcS .framer-1wrx03g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 200px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-1jtfb9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-1oc7ep-container, .framer-uRCcS .framer-1goudkw-container, .framer-uRCcS .framer-1vid5iv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uRCcS .framer-8mh62x, .framer-uRCcS .framer-16liutb, .framer-uRCcS .framer-r6alef, .framer-uRCcS .framer-btqzrt, .framer-uRCcS .framer-89u7st, .framer-uRCcS .framer-17c8jeu, .framer-uRCcS .framer-1i9p0ip, .framer-uRCcS .framer-178b2on, .framer-uRCcS .framer-19c85d, .framer-uRCcS .framer-16ecfz2, .framer-uRCcS .framer-1rhvqge, .framer-uRCcS .framer-r8ty5d, .framer-uRCcS .framer-1pqjcb9, .framer-uRCcS .framer-ejs3n9, .framer-uRCcS .framer-1id2d04, .framer-uRCcS .framer-nbdgd7, .framer-uRCcS .framer-8qjl4n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uRCcS .framer-1bw0umo-container { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 65%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 720px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 65%, rgba(0, 0, 0, 0) 100%) add; position: relative; width: 1280px; z-index: 2; }\",\".framer-uRCcS .framer-4i84de { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-1shcz1s-container { flex: 1 0 0px; height: 56px; position: relative; width: 1px; z-index: 1; }\",\".framer-uRCcS .framer-1gk1ajw-container { height: auto; position: relative; width: auto; }\",\".framer-uRCcS .framer-n0uncu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-xg9c4q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-z99459 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 640px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-52b3mg, .framer-uRCcS .framer-10zfrt4 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uRCcS .framer-135msmf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",'.framer-uRCcS .framer-13fhk9v { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25%) add; align-content: flex-start; align-items: flex-start; background: linear-gradient(135deg, var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, #ffdf7d) /* {\"name\":\"Brand\"} */ 0%, var(--token-5cda19d4-7efa-4b63-b7e4-17b25f40e63f, rgb(255, 223, 125)) /* {\"name\":\"Brand\"} */ 100%); border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25%) add; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-uRCcS .framer-jyq9pl, .framer-uRCcS .framer-1pojfv8, .framer-uRCcS .framer-17rqch5, .framer-uRCcS .framer-1615l4t, .framer-uRCcS .framer-pv534i, .framer-uRCcS .framer-1b6kc7h, .framer-uRCcS .framer-1vdpdbt, .framer-uRCcS .framer-16jdk6y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-zu0us5, .framer-uRCcS .framer-oysvco { aspect-ratio: 1.7777777777777777 / 1; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 360px); overflow: visible; position: relative; width: 130%; }\",'.framer-uRCcS .framer-1wjvxr3 { --border-bottom-width: 1px; --border-color: var(--token-534356b4-1a9b-444d-82a0-f898bbe1568e, rgba(255, 255, 255, 0.06)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25%) add; align-content: flex-start; align-items: flex-start; background: linear-gradient(135deg, var(--token-0f07f556-9e14-491d-9aef-f342061eaaa0, #121212) /* {\"name\":\"Black / 80\"} */ 0%, var(--token-ff0f9235-e262-43fc-9cc6-02e113e6a486, rgb(0, 0, 0)) /* {\"name\":\"Black / 100\"} */ 100%); border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25%) add; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-uRCcS .framer-19q7hhy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 16px 160px 16px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-1bhbefs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-t3n2gp { display: grid; flex: none; gap: 80px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-1ah7hpz, .framer-uRCcS .framer-10q4wh6, .framer-uRCcS .framer-1pha9t6, .framer-uRCcS .framer-nmb2cv, .framer-uRCcS .framer-1fmyi42, .framer-uRCcS .framer-1ynom6k { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uRCcS .framer-1k7atlo, .framer-uRCcS .framer-179z6t1, .framer-uRCcS .framer-1mb0phc, .framer-uRCcS .framer-13v8f6n, .framer-uRCcS .framer-10tn5bm, .framer-uRCcS .framer-v215fp { align-content: center; align-items: center; background-color: var(--token-1a43cf12-cc7c-45d9-9670-b1679bb7919c, #1c1c1c); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-uRCcS .framer-3k20ju-container, .framer-uRCcS .framer-hqlkzl-container, .framer-uRCcS .framer-spntfm-container, .framer-uRCcS .framer-108jvlf-container, .framer-uRCcS .framer-1libkck-container, .framer-uRCcS .framer-1k9rfdy-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-uRCcS .framer-vnkdp3-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uRCcS.framer-k7pmhi, .framer-uRCcS .framer-1wrx03g, .framer-uRCcS .framer-1jtfb9o, .framer-uRCcS .framer-4i84de, .framer-uRCcS .framer-n0uncu, .framer-uRCcS .framer-xg9c4q, .framer-uRCcS .framer-z99459, .framer-uRCcS .framer-135msmf, .framer-uRCcS .framer-13fhk9v, .framer-uRCcS .framer-jyq9pl, .framer-uRCcS .framer-1wjvxr3, .framer-uRCcS .framer-1pojfv8, .framer-uRCcS .framer-19q7hhy, .framer-uRCcS .framer-1bhbefs, .framer-uRCcS .framer-1ah7hpz, .framer-uRCcS .framer-1k7atlo, .framer-uRCcS .framer-17rqch5, .framer-uRCcS .framer-10q4wh6, .framer-uRCcS .framer-179z6t1, .framer-uRCcS .framer-1615l4t, .framer-uRCcS .framer-1pha9t6, .framer-uRCcS .framer-1mb0phc, .framer-uRCcS .framer-pv534i, .framer-uRCcS .framer-nmb2cv, .framer-uRCcS .framer-13v8f6n, .framer-uRCcS .framer-1b6kc7h, .framer-uRCcS .framer-1fmyi42, .framer-uRCcS .framer-10tn5bm, .framer-uRCcS .framer-1vdpdbt, .framer-uRCcS .framer-1ynom6k, .framer-uRCcS .framer-v215fp, .framer-uRCcS .framer-16jdk6y { gap: 0px; } .framer-uRCcS.framer-k7pmhi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-uRCcS.framer-k7pmhi > :first-child, .framer-uRCcS .framer-1wrx03g > :first-child, .framer-uRCcS .framer-1jtfb9o > :first-child, .framer-uRCcS .framer-n0uncu > :first-child, .framer-uRCcS .framer-xg9c4q > :first-child, .framer-uRCcS .framer-z99459 > :first-child, .framer-uRCcS .framer-13fhk9v > :first-child, .framer-uRCcS .framer-jyq9pl > :first-child, .framer-uRCcS .framer-1wjvxr3 > :first-child, .framer-uRCcS .framer-1pojfv8 > :first-child, .framer-uRCcS .framer-19q7hhy > :first-child, .framer-uRCcS .framer-1bhbefs > :first-child, .framer-uRCcS .framer-1ah7hpz > :first-child, .framer-uRCcS .framer-17rqch5 > :first-child, .framer-uRCcS .framer-10q4wh6 > :first-child, .framer-uRCcS .framer-1615l4t > :first-child, .framer-uRCcS .framer-1pha9t6 > :first-child, .framer-uRCcS .framer-pv534i > :first-child, .framer-uRCcS .framer-nmb2cv > :first-child, .framer-uRCcS .framer-1b6kc7h > :first-child, .framer-uRCcS .framer-1fmyi42 > :first-child, .framer-uRCcS .framer-1vdpdbt > :first-child, .framer-uRCcS .framer-1ynom6k > :first-child, .framer-uRCcS .framer-16jdk6y > :first-child { margin-top: 0px; } .framer-uRCcS.framer-k7pmhi > :last-child, .framer-uRCcS .framer-1wrx03g > :last-child, .framer-uRCcS .framer-1jtfb9o > :last-child, .framer-uRCcS .framer-n0uncu > :last-child, .framer-uRCcS .framer-xg9c4q > :last-child, .framer-uRCcS .framer-z99459 > :last-child, .framer-uRCcS .framer-13fhk9v > :last-child, .framer-uRCcS .framer-jyq9pl > :last-child, .framer-uRCcS .framer-1wjvxr3 > :last-child, .framer-uRCcS .framer-1pojfv8 > :last-child, .framer-uRCcS .framer-19q7hhy > :last-child, .framer-uRCcS .framer-1bhbefs > :last-child, .framer-uRCcS .framer-1ah7hpz > :last-child, .framer-uRCcS .framer-17rqch5 > :last-child, .framer-uRCcS .framer-10q4wh6 > :last-child, .framer-uRCcS .framer-1615l4t > :last-child, .framer-uRCcS .framer-1pha9t6 > :last-child, .framer-uRCcS .framer-pv534i > :last-child, .framer-uRCcS .framer-nmb2cv > :last-child, .framer-uRCcS .framer-1b6kc7h > :last-child, .framer-uRCcS .framer-1fmyi42 > :last-child, .framer-uRCcS .framer-1vdpdbt > :last-child, .framer-uRCcS .framer-1ynom6k > :last-child, .framer-uRCcS .framer-16jdk6y > :last-child { margin-bottom: 0px; } .framer-uRCcS .framer-1wrx03g > *, .framer-uRCcS .framer-n0uncu > *, .framer-uRCcS .framer-19q7hhy > *, .framer-uRCcS .framer-1bhbefs > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-uRCcS .framer-1jtfb9o > *, .framer-uRCcS .framer-jyq9pl > *, .framer-uRCcS .framer-1pojfv8 > *, .framer-uRCcS .framer-17rqch5 > *, .framer-uRCcS .framer-1615l4t > *, .framer-uRCcS .framer-pv534i > *, .framer-uRCcS .framer-1b6kc7h > *, .framer-uRCcS .framer-1vdpdbt > *, .framer-uRCcS .framer-16jdk6y > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-uRCcS .framer-4i84de > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-uRCcS .framer-4i84de > :first-child, .framer-uRCcS .framer-135msmf > :first-child, .framer-uRCcS .framer-1k7atlo > :first-child, .framer-uRCcS .framer-179z6t1 > :first-child, .framer-uRCcS .framer-1mb0phc > :first-child, .framer-uRCcS .framer-13v8f6n > :first-child, .framer-uRCcS .framer-10tn5bm > :first-child, .framer-uRCcS .framer-v215fp > :first-child { margin-left: 0px; } .framer-uRCcS .framer-4i84de > :last-child, .framer-uRCcS .framer-135msmf > :last-child, .framer-uRCcS .framer-1k7atlo > :last-child, .framer-uRCcS .framer-179z6t1 > :last-child, .framer-uRCcS .framer-1mb0phc > :last-child, .framer-uRCcS .framer-13v8f6n > :last-child, .framer-uRCcS .framer-10tn5bm > :last-child, .framer-uRCcS .framer-v215fp > :last-child { margin-right: 0px; } .framer-uRCcS .framer-xg9c4q > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-uRCcS .framer-z99459 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-uRCcS .framer-135msmf > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-uRCcS .framer-13fhk9v > *, .framer-uRCcS .framer-1wjvxr3 > *, .framer-uRCcS .framer-1ah7hpz > *, .framer-uRCcS .framer-10q4wh6 > *, .framer-uRCcS .framer-1pha9t6 > *, .framer-uRCcS .framer-nmb2cv > *, .framer-uRCcS .framer-1fmyi42 > *, .framer-uRCcS .framer-1ynom6k > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-uRCcS .framer-1k7atlo > *, .framer-uRCcS .framer-179z6t1 > *, .framer-uRCcS .framer-1mb0phc > *, .framer-uRCcS .framer-13v8f6n > *, .framer-uRCcS .framer-10tn5bm > *, .framer-uRCcS .framer-v215fp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-uRCcS[data-border=\"true\"]::after, .framer-uRCcS [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: 1199px) { .framer-uRCcS.framer-k7pmhi { width: 810px; } .framer-uRCcS .framer-1wrx03g { padding: 160px 16px 0px 16px; } .framer-uRCcS .framer-n0uncu { padding: 120px 16px 0px 16px; } .framer-uRCcS .framer-zu0us5, .framer-uRCcS .framer-oysvco { height: var(--framer-aspect-ratio-supported, 218px); } .framer-uRCcS .framer-19q7hhy { padding: 160px 16px 120px 16px; }}\",\"@media (max-width: 809px) { .framer-uRCcS.framer-k7pmhi { width: 390px; } .framer-uRCcS .framer-8ifhwq-container { right: 16px; top: 16px; } .framer-uRCcS .framer-1wrx03g { padding: 120px 16px 0px 16px; } .framer-uRCcS .framer-1bw0umo-container { height: 360px; width: 640px; } .framer-uRCcS .framer-n0uncu { padding: 80px 16px 0px 16px; } .framer-uRCcS .framer-xg9c4q { gap: 40px; } .framer-uRCcS .framer-135msmf { flex-direction: column; } .framer-uRCcS .framer-13fhk9v, .framer-uRCcS .framer-1wjvxr3 { flex: none; width: 100%; } .framer-uRCcS .framer-zu0us5 { border-top-left-radius: 8px; border-top-right-radius: 8px; height: var(--framer-aspect-ratio-supported, 204px); } .framer-uRCcS .framer-oysvco { border-top-left-radius: 8px; border-top-right-radius: 8px; height: var(--framer-aspect-ratio-supported, 203px); } .framer-uRCcS .framer-19q7hhy { padding: 80px 16px 80px 16px; } .framer-uRCcS .framer-t3n2gp { gap: 32px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-uRCcS .framer-1ah7hpz, .framer-uRCcS .framer-10q4wh6, .framer-uRCcS .framer-1pha9t6, .framer-uRCcS .framer-nmb2cv, .framer-uRCcS .framer-1fmyi42, .framer-uRCcS .framer-1ynom6k { gap: 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-uRCcS .framer-xg9c4q, .framer-uRCcS .framer-135msmf, .framer-uRCcS .framer-t3n2gp, .framer-uRCcS .framer-1ah7hpz, .framer-uRCcS .framer-10q4wh6, .framer-uRCcS .framer-1pha9t6, .framer-uRCcS .framer-nmb2cv, .framer-uRCcS .framer-1fmyi42, .framer-uRCcS .framer-1ynom6k { gap: 0px; } .framer-uRCcS .framer-xg9c4q > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-uRCcS .framer-xg9c4q > :first-child, .framer-uRCcS .framer-135msmf > :first-child, .framer-uRCcS .framer-1ah7hpz > :first-child, .framer-uRCcS .framer-10q4wh6 > :first-child, .framer-uRCcS .framer-1pha9t6 > :first-child, .framer-uRCcS .framer-nmb2cv > :first-child, .framer-uRCcS .framer-1fmyi42 > :first-child, .framer-uRCcS .framer-1ynom6k > :first-child { margin-top: 0px; } .framer-uRCcS .framer-xg9c4q > :last-child, .framer-uRCcS .framer-135msmf > :last-child, .framer-uRCcS .framer-1ah7hpz > :last-child, .framer-uRCcS .framer-10q4wh6 > :last-child, .framer-uRCcS .framer-1pha9t6 > :last-child, .framer-uRCcS .framer-nmb2cv > :last-child, .framer-uRCcS .framer-1fmyi42 > :last-child, .framer-uRCcS .framer-1ynom6k > :last-child { margin-bottom: 0px; } .framer-uRCcS .framer-135msmf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-uRCcS .framer-t3n2gp > *, .framer-uRCcS .framer-t3n2gp > :first-child, .framer-uRCcS .framer-t3n2gp > :last-child { margin: 0px; } .framer-uRCcS .framer-1ah7hpz > *, .framer-uRCcS .framer-10q4wh6 > *, .framer-uRCcS .framer-1pha9t6 > *, .framer-uRCcS .framer-nmb2cv > *, .framer-uRCcS .framer-1fmyi42 > *, .framer-uRCcS .framer-1ynom6k > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4075\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"u2zpjGntd\":{\"layout\":[\"fixed\",\"auto\"]},\"cwsTdj1H_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerrXZGMcOeT=withCSS(Component,css,\"framer-uRCcS\");export default FramerrXZGMcOeT;FramerrXZGMcOeT.displayName=\"Work\";FramerrXZGMcOeT.defaultProps={height:4075,width:1200};addFonts(FramerrXZGMcOeT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...MenuFonts,...BadgeFonts,...HeroIllustrationFonts,...ShortUSPSectionFonts,...TickerFonts,...PhosphorFonts,...CTASectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrXZGMcOeT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u2zpjGntd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cwsTdj1H_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"4075\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "wQwnfMzOC", "viT8Fnjmb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerkUFYJQgyU", "withCSS", "kUFYJQgyU_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "USPShortFonts", "getFonts", "kUFYJQgyU_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "kUFYJQgyU_default", "css", "FramerQStH0WNvv", "withCSS", "QStH0WNvv_default", "addFonts", "USPShortFonts", "MenuFonts", "getFonts", "h3_QYYbAh_default", "BadgeFonts", "H9NusR1qS_default", "HeroIllustrationFonts", "yrEVXIgA8_default", "ShortUSPSectionFonts", "QStH0WNvv_default", "TickerFonts", "Ticker", "MotionSectionWithFX", "withFX", "motion", "PhosphorFonts", "Icon", "CTASectionFonts", "WlUzuJOwV_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "h3_QYYbAh_default", "H9NusR1qS_default", "RichText2", "x", "yrEVXIgA8_default", "Ticker", "QStH0WNvv_default", "MotionSectionWithFX", "getLoadingLazyAtYPosition", "Image2", "Icon", "WlUzuJOwV_default", "css", "FramerrXZGMcOeT", "withCSS", "rXZGMcOeT_default", "addFonts", "MenuFonts", "BadgeFonts", "HeroIllustrationFonts", "ShortUSPSectionFonts", "TickerFonts", "PhosphorFonts", "CTASectionFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
