{"version":3,"file":"wI91jeQYa.Cv2NCVvo.mjs","names":["fonts","css","className","fonts","css","className","x","Y","u","p","addPropertyOverrides","ShimmerDot","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","ShimmerDotBG2","Button","className","Image","css"],"sources":["https:/framerusercontent.com/modules/QQ1pbin9NObgoISDrdpg/eAtupbXvADUintpRoKcT/O4Odd0hb7.js","https:/framerusercontent.com/modules/amOh4QbkyOzySYXcRRBj/aHgtGo0IaMQTWjoy9F2y/QKW8Jg2Fp.js","https:/framerusercontent.com/modules/DUVzJQodDTCwiiMKuNbI/yIUzxSTOcFABnWxIoms1/ShimmerDot_Prod.js","https:/framerusercontent.com/modules/0b0n1R1pHSTIB4BKOkXp/TZv6d4wLwW66qqDSP0ix/RDn4hFhb4.js","https:/framerusercontent.com/modules/luVSDg9xa93Izh4YDAdm/BjA0KST9xHxoBhtRVW6J/wI91jeQYa.js"],"sourcesContent":["// Generated by Framer (2fef4c5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-qhoIY .framer-styles-preset-1x0ghlb:not(.rich-text-wrapper), .framer-qhoIY .framer-styles-preset-1x0ghlb.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: rgba(255, 255, 255, 0.7); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, #ffffff); --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-qhoIY\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (2ca17d4)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-ktpMw .framer-styles-preset-11khcj2:not(.rich-text-wrapper), .framer-ktpMw .framer-styles-preset-11khcj2.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, #ffffff); --framer-link-hover-text-decoration: none; --framer-link-text-color: rgba(255, 255, 255, 0.5); --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-ktpMw\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useMemo,useState}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const extractRGBColorFromString=str=>{const rgbRegex=/(rgba|rgb)\\(.*?\\)/g;const match=str.match(rgbRegex);return match?match[0]:\"rgb(255,255,255)\";};// Perlin noise implementation\nfunction noise(x,y){const X=Math.floor(x)&255;const Y=Math.floor(y)&255;x-=Math.floor(x);y-=Math.floor(y);const u=fade(x);const v=fade(y);const A=p[X]+Y,B=p[X+1]+Y;return lerp(v,lerp(u,grad(p[A],x,y),grad(p[B],x-1,y)),lerp(u,grad(p[A+1],x,y-1),grad(p[B+1],x-1,y-1)));}function fade(t){return t*t*t*(t*(t*6-15)+10);}function lerp(t,a,b){return a+t*(b-a);}function grad(hash,x,y){const h=hash&15;const u=h<8?x:y;const v=h<4?y:h===12||h===14?x:0;return((h&1)===0?u:-u)+((h&2)===0?v:-v);}const p=new Array(512);for(let i=0;i<256;i++)p[i]=p[i+256]=Math.floor(Math.random()*256);function generatePerlinNoise(width,height,cellSize){const canvas=document.createElement(\"canvas\");canvas.width=width;canvas.height=height;const ctx=canvas.getContext(\"2d\");const imageData=ctx.createImageData(width,height);const data=imageData.data;for(let y=0;y<height;y++){for(let x=0;x<width;x++){const value=(noise(x/cellSize,y/cellSize)+1)/2*255;const cell=(x+y*width)*4;data[cell]=data[cell+1]=data[cell+2]=value;data[cell+3]=255;}}ctx.putImageData(imageData,0,0);return canvas;}function createSeamlessPerlinNoise(width,height,cellSize){const singleNoise=generatePerlinNoise(width,height,cellSize);const canvas=document.createElement(\"canvas\");canvas.width=width*3;canvas.height=height;const ctx=canvas.getContext(\"2d\");// Draw the first noise pattern\nctx.drawImage(singleNoise,0,0);// Draw the flipped middle pattern\nctx.save();ctx.translate(width*2,0);ctx.scale(-1,1);ctx.drawImage(singleNoise,0,0);ctx.restore();// Draw the third noise pattern\nctx.drawImage(singleNoise,width*2,0);return canvas.toDataURL();}/*\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 500\n * @framerIntrinsicHeight 500\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function PerlinWall(props){const{shapeType,size,gap,colors,contrast,speed,radius}=props;const containerRef=useRef(null);const canvasRef=useRef(null);const[isClient,setIsClient]=useState(false);useEffect(()=>{setIsClient(true);},[]);const perlinNoiseDataUrl=useMemo(()=>{if(!isClient)return\"\";const noiseWidth=1e3;const noiseHeight=1e3;const cellSize=Math.max(25,size*2);return createSeamlessPerlinNoise(noiseWidth,noiseHeight,cellSize);},[size,isClient]);// Calculate animation duration\nconst animationDuration=useMemo(()=>{const baseDuration=6e4// 60 seconds to complete one full cycle at speed 50 and size 10\n;const sizeAdjustment=size/10// Adjust for size\n;return baseDuration*sizeAdjustment/(speed/50);},[speed,size]);useEffect(()=>{if(!isClient)return;const container=containerRef.current;const canvas=canvasRef.current;if(!container||!canvas)return;const ctx=canvas.getContext(\"2d\");const resizeCanvas=()=>{canvas.width=container.offsetWidth;canvas.height=container.offsetHeight;drawShapes();};const drawShapes=()=>{ctx.clearRect(0,0,canvas.width,canvas.height);const colorBatch=colors.length>0?colors.map(extractRGBColorFromString):[\"rgb(128,128,128)\"];for(let y=0;y<canvas.height;y+=size+gap){for(let x=0;x<canvas.width;x+=size+gap){const color=colorBatch[Math.floor(Math.random()*colorBatch.length)];const opacity=getRandomOpacity();ctx.fillStyle=color.replace(\")\",`,${opacity})`);if(shapeType===\"Square\"){ctx.fillRect(x,y,size,size);}else{ctx.beginPath();ctx.arc(x+size/2,y+size/2,size/2,0,2*Math.PI);ctx.fill();}}}};const getRandomOpacity=()=>{let opacity=Math.random();if(contrast>0){opacity=Math.pow(opacity,1+contrast/5);}else if(contrast<0){opacity=1-Math.pow(1-opacity,1-contrast/5);}return opacity;};resizeCanvas();const resizeObserver=new ResizeObserver(resizeCanvas);resizeObserver.observe(container);return()=>{resizeObserver.disconnect();};},[shapeType,size,gap,colors,contrast,isClient]);if(!isClient){return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\"}});}return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{width:\"100%\",height:\"100%\",borderRadius:radius,overflow:\"hidden\"},children:[/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"100%\",mask:`url(${perlinNoiseDataUrl}) luminance`,WebkitMask:`url(${perlinNoiseDataUrl}) luminance`,maskSize:\"300% 100%\",WebkitMaskSize:\"300% 100%\",maskRepeat:\"repeat-x\",WebkitMaskRepeat:\"repeat-x\",animation:`moveMask ${animationDuration}ms linear infinite`,willChange:\"mask-position\"}}),/*#__PURE__*/_jsx(\"style\",{children:`\n    @keyframes moveMask {\n        0% { \n            mask-position: 0% 0%;\n            -webkit-mask-position: 0% 0%;\n        }\n        100% { \n            mask-position: -${300*(size/10)}% 0%;\n            -webkit-mask-position: -${300*(size/10)}% 0%;\n        }\n    }\n    `})]});}PerlinWall.displayName=\"Shimmer Dot\";PerlinWall.defaultProps={shapeType:\"Square\",size:3,gap:8,colors:[],contrast:0,speed:15,radius:0};addPropertyControls(PerlinWall,{shapeType:{type:ControlType.Enum,options:[\"Square\",\"Circle\"],defaultValue:PerlinWall.defaultProps.shapeType,displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},size:{type:ControlType.Number,defaultValue:PerlinWall.defaultProps.size,min:1,max:20,step:1},gap:{type:ControlType.Number,defaultValue:PerlinWall.defaultProps.gap,min:0,max:20,step:1},colors:{type:ControlType.Array,control:{type:ControlType.Color},defaultValue:PerlinWall.defaultProps.colors},contrast:{type:ControlType.Number,defaultValue:PerlinWall.defaultProps.contrast,min:-10,max:10,step:1,displayStepper:true},speed:{type:ControlType.Number,defaultValue:PerlinWall.defaultProps.speed,min:1,max:100,step:1},radius:{type:ControlType.Number,defaultValue:PerlinWall.defaultProps.radius,min:0,max:1e3,step:1,description:\"More components at [Framer University](https://framer.university?utm_source=component).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PerlinWall\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"500\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"500\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ShimmerDot_Prod.map","// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ShimmerDot from\"https://framerusercontent.com/modules/DUVzJQodDTCwiiMKuNbI/yIUzxSTOcFABnWxIoms1/ShimmerDot_Prod.js\";const ShimmerDotFonts=getFonts(ShimmerDot);const cycleOrder=[\"xBG6kKEuh\",\"SNlBRqQgP\"];const serializationHash=\"framer-hqIZr\";const variantClassNames={SNlBRqQgP:\"framer-v-1m0pdhp\",xBG6kKEuh:\"framer-v-19qzjti\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:100,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={End:\"SNlBRqQgP\",Start:\"xBG6kKEuh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xBG6kKEuh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xBG6kKEuh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear4j63l6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SNlBRqQgP\"),200);});useOnVariantChange(baseVariant,{default:onAppear4j63l6});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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19qzjti\",className,classNames),\"data-framer-name\":\"Start\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xBG6kKEuh\",ref:refBinding,style:{backgroundColor:\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 18, 77))\",mask:\"none\",WebkitMask:\"none\",...style},variants:{SNlBRqQgP:{mask:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.9) 7.868806306306306%, rgba(0,0,0,1) 100%) add\",WebkitMask:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.9) 7.868806306306306%, rgba(0,0,0,1) 100%) add\"}},...addPropertyOverrides({SNlBRqQgP:{\"data-framer-name\":\"End\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i8ctyv-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Gk5ZFDOsB-container\",nodeId:\"Gk5ZFDOsB\",rendersWithMotion:true,scopeId:\"RDn4hFhb4\",children:/*#__PURE__*/_jsx(ShimmerDot,{colors:[\"rgb(0, 81, 255)\",\"rgb(247, 247, 247)\",\"rgb(0, 81, 255)\"],contrast:-10,gap:6,height:\"100%\",id:\"Gk5ZFDOsB\",layoutId:\"Gk5ZFDOsB\",radius:0,shapeType:\"Circle\",size:2,speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hqIZr.framer-7224hi, .framer-hqIZr .framer-7224hi { display: block; }\",\".framer-hqIZr.framer-19qzjti { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-hqIZr .framer-i8ctyv-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hqIZr.framer-19qzjti { gap: 0px; } .framer-hqIZr.framer-19qzjti > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hqIZr.framer-19qzjti > :first-child { margin-left: 0px; } .framer-hqIZr.framer-19qzjti > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SNlBRqQgP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRDn4hFhb4=withCSS(Component,css,\"framer-hqIZr\");export default FramerRDn4hFhb4;FramerRDn4hFhb4.displayName=\"Shimmer Dot BG 2\";FramerRDn4hFhb4.defaultProps={height:800,width:1200};addPropertyControls(FramerRDn4hFhb4,{variant:{options:[\"xBG6kKEuh\",\"SNlBRqQgP\"],optionTitles:[\"Start\",\"End\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRDn4hFhb4,[{explicitInter:true,fonts:[]},...ShimmerDotFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRDn4hFhb4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SNlBRqQgP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"800\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RDn4hFhb4.map","// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/I3wZOpHbwlNY8el63rmV/9p5WfUR50B17rSVqKUwi/mw1gD9ftT.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/QQ1pbin9NObgoISDrdpg/eAtupbXvADUintpRoKcT/O4Odd0hb7.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/amOh4QbkyOzySYXcRRBj/aHgtGo0IaMQTWjoy9F2y/QKW8Jg2Fp.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ICI8fxHXQWXMNsI6wk1v/ana0h3zXKg871I2aXQlX/Uc8ejiPK9.js\";import ShimmerDotBG2 from\"https://framerusercontent.com/modules/0b0n1R1pHSTIB4BKOkXp/TZv6d4wLwW66qqDSP0ix/RDn4hFhb4.js\";import Button from\"https://framerusercontent.com/modules/S53EoAgV2f22mZcQVmUu/hNPiiKXxvmAo49LPifA7/SDwe4QRL1.js\";const ShimmerDotBG2Fonts=getFonts(ShimmerDotBG2);const ButtonFonts=getFonts(Button);const cycleOrder=[\"iuXSR6CiT\",\"ROZoRi4ei\",\"fA5xyTbpe\"];const serializationHash=\"framer-Ls8up\";const variantClassNames={fA5xyTbpe:\"framer-v-46pigf\",iuXSR6CiT:\"framer-v-1gh56aa\",ROZoRi4ei:\"framer-v-1kgr41m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"iuXSR6CiT\",Mobile:\"fA5xyTbpe\",Tablet:\"ROZoRi4ei\"};const getProps=({bookADemo,height,id,upsell,width,...props})=>{return{...props,dKyTswXye:bookADemo??props.dKyTswXye,HMMCLppPk:upsell??props.HMMCLppPk??\"Ready to Onboard Your Newest  Teammate?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"iuXSR6CiT\"};};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,dKyTswXye,HMMCLppPk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iuXSR6CiT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const cpjnoMgaO1ymofr7=activeVariantCallback(async(...args)=>{if(dKyTswXye){const res=await dKyTswXye(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.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-1gh56aa\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"iuXSR6CiT\",ref:refBinding,style:{backgroundColor:\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 18, 77))\",...style},...addPropertyOverrides({fA5xyTbpe:{\"data-framer-name\":\"Mobile\"},ROZoRi4ei:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||964)-0,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,...addPropertyOverrides({fA5xyTbpe:{height:(componentViewport?.height||1106.5)-0},ROZoRi4ei:{height:(componentViewport?.height||1178.5)-0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1seiexb-container\",layoutDependency:layoutDependency,layoutId:\"YCMbUxQU3-container\",nodeId:\"YCMbUxQU3\",rendersWithMotion:true,scopeId:\"wI91jeQYa\",style:{mask:\"radial-gradient(79% 79% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02795) 36%, rgba(0,0,0,1) 100%) add\",WebkitMask:\"radial-gradient(79% 79% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02795) 36%, rgba(0,0,0,1) 100%) add\"},children:/*#__PURE__*/_jsx(ShimmerDotBG2,{height:\"100%\",id:\"YCMbUxQU3\",layoutId:\"YCMbUxQU3\",style:{height:\"100%\",width:\"100%\"},variant:\"xBG6kKEuh\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u74l6l\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"obqMCZZQE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fgebrk\",\"data-framer-name\":\"Upsell + Links\",layoutDependency:layoutDependency,layoutId:\"A0v6hBxuj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kz2qwj\",\"data-framer-name\":\"Text + Button\",layoutDependency:layoutDependency,layoutId:\"yJZ1S2J4s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:\"Ready to Onboard Your Newest  Teammate?\"})}),className:\"framer-d1beqc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PmKlZqdPs\",style:{\"--extracted-1of0zx5\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HMMCLppPk,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+132+(((componentViewport?.height||964)-196-768.1)/2+0+0)+0+0+0+0+72.8,...addPropertyOverrides({fA5xyTbpe:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||1106.5)-128-1341.7)/2+0+0)+0+0+0+0+0+72.8},ROZoRi4ei:{y:(componentViewport?.y||0)+88+(((componentViewport?.height||1178.5)-152-920.9)/2+0+0)+0+0+0+0+0+72.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kj7dbb-container\",layoutDependency:layoutDependency,layoutId:\"ruFDfqLqx-container\",nodeId:\"ruFDfqLqx\",rendersWithMotion:true,scopeId:\"wI91jeQYa\",children:/*#__PURE__*/_jsx(Button,{B_3osPCN1:\"Book a demo\",cpjnoMgaO:cpjnoMgaO1ymofr7,height:\"100%\",id:\"ruFDfqLqx\",layoutId:\"ruFDfqLqx\",ngt4XRZvK:true,rpaqCW9Ac:false,style:{height:\"100%\"},variant:\"PgIDIW4AU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rcftpr\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"JFOveRSw3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-53jjtl\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"ylgEEPXrG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:\"Uniti\"})}),className:\"framer-1l5we0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OAfjVAM8m\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.65},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QY9gOZiSY\"},motionChild:true,nodeId:\"dsvdl17HF\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Company\"})})})}),className:\"framer-1frtmr1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dsvdl17HF\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://crystal-profit-5a6.notion.site/Work-with-Uniti-AI-175d1430232680afa50ddbabd4ff6d93\",motionChild:true,nodeId:\"DEu3fSNh3\",openInNewTab:true,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Careers\"})})})}),className:\"framer-1vez8ga\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DEu3fSNh3\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bn8bjm\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"DY8E7fGuW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:\"Use Cases\"})}),className:\"framer-9io98p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D5wc11UhP\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.65},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KuMFHP29e\"},motionChild:true,nodeId:\"wEaI7eSye\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Self-storage\"})})})}),className:\"framer-1rwjjum\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wEaI7eSye\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JQncTU3JZ\"},motionChild:true,nodeId:\"n9NlLqhbR\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Coworking\"})})})}),className:\"framer-1uri8g3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n9NlLqhbR\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sby6H54ge\"},motionChild:true,nodeId:\"UltMiOFvE\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Brokerage\"})})})}),className:\"framer-flrfi6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UltMiOFvE\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wkXMLiO90\"},motionChild:true,nodeId:\"e5XobzzQm\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Event Spaces\"})})})}),className:\"framer-12y34gh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e5XobzzQm\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j8IblWvrd\"},motionChild:true,nodeId:\"GiDM6Bvoi\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Residential\"})})})}),className:\"framer-ol4v0u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GiDM6Bvoi\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e7vxzp\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"WoEcEqm2h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:\"Contact us\"})}),className:\"framer-1ish9cv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CK9ZhLaNx\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.65},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@getuniti.com\",motionChild:true,nodeId:\"wVnoStbp8\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"Email\"})})})}),className:\"framer-1s3pkxj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wVnoStbp8\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/uniti-ai/\",motionChild:true,nodeId:\"lk67jPDzH\",openInNewTab:true,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x0ghlb\",\"data-styles-preset\":\"O4Odd0hb7\",children:\"LinkedIn\"})})})}),className:\"framer-3rljfk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lk67jPDzH\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:622,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+132+(((componentViewport?.height||964)-196-768.1)/2+0+0)+0+268.8),pixelHeight:1244,pixelWidth:3300,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,src:\"https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png 3300w\"},className:\"framer-1j3wp0g\",\"data-framer-name\":\"Logo uniti\",layoutDependency:layoutDependency,layoutId:\"aIfsxtu9P\",style:{opacity:.1},...addPropertyOverrides({fA5xyTbpe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:622,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+(((componentViewport?.height||1106.5)-128-1341.7)/2+0+0)+0+821.6),pixelHeight:1244,pixelWidth:3300,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,src:\"https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png 3300w\"}},ROZoRi4ei:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:622,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+88+(((componentViewport?.height||1178.5)-152-920.9)/2+0+0)+0+421.6),pixelHeight:1244,pixelWidth:3300,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,src:\"https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bQ3lME9K2F4pVgh0ybqGBFhqU7s.png 3300w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tc9u42\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"riHdkFqtt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:\"\\xa9 2025 Uniti AI\"})}),className:\"framer-1eva74o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v_IPnWY_B\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wl23da\",layoutDependency:layoutDependency,layoutId:\"SqPsLGW3R\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HOjtJ7__N\"},motionChild:true,nodeId:\"jx9ha262j\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11khcj2\",\"data-styles-preset\":\"QKW8Jg2Fp\",children:\"Privacy Policy\"})})})}),className:\"framer-1ctdgxt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jx9ha262j\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"\\xb7\"})}),className:\"framer-1u9i72c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NZnefOKXv\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JmCcAyCAN\"},motionChild:true,nodeId:\"ZjHuWIA1J\",openInNewTab:false,scopeId:\"wI91jeQYa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11khcj2\",\"data-styles-preset\":\"QKW8Jg2Fp\",children:\"Terms & Conditions\"})})})}),className:\"framer-1qea8mh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZjHuWIA1J\",style:{\"--extracted-r6o4lv\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ls8up.framer-1v56pb1, .framer-Ls8up .framer-1v56pb1 { display: block; }\",\".framer-Ls8up.framer-1gh56aa { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 132px 24px 64px 24px; position: relative; width: 1200px; }\",\".framer-Ls8up .framer-1seiexb-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Ls8up .framer-1u74l6l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Ls8up .framer-1fgebrk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ls8up .framer-1kz2qwj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 3; }\",\".framer-Ls8up .framer-d1beqc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 538px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ls8up .framer-kj7dbb-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-Ls8up .framer-rcftpr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-Ls8up .framer-53jjtl, .framer-Ls8up .framer-1bn8bjm, .framer-Ls8up .framer-e7vxzp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ls8up .framer-1l5we0, .framer-Ls8up .framer-1frtmr1, .framer-Ls8up .framer-1vez8ga, .framer-Ls8up .framer-9io98p, .framer-Ls8up .framer-1rwjjum, .framer-Ls8up .framer-1uri8g3, .framer-Ls8up .framer-flrfi6, .framer-Ls8up .framer-12y34gh, .framer-Ls8up .framer-ol4v0u, .framer-Ls8up .framer-1ish9cv, .framer-Ls8up .framer-1s3pkxj, .framer-Ls8up .framer-3rljfk, .framer-Ls8up .framer-1eva74o, .framer-Ls8up .framer-1ctdgxt, .framer-Ls8up .framer-1u9i72c, .framer-Ls8up .framer-1qea8mh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ls8up .framer-1j3wp0g { aspect-ratio: 2.652733118971061 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 415px); mix-blend-mode: soft-light; overflow: visible; position: relative; width: 100%; }\",\".framer-Ls8up .framer-1tc9u42 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-Ls8up .framer-1wl23da { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Ls8up.framer-v-1kgr41m.framer-1gh56aa { padding: 88px 24px 64px 24px; }\",\".framer-Ls8up.framer-v-1kgr41m .framer-1fgebrk, .framer-Ls8up.framer-v-46pigf .framer-1fgebrk { flex-direction: column; gap: 32px; }\",\".framer-Ls8up.framer-v-1kgr41m .framer-1kz2qwj { max-width: 400px; width: 100%; }\",\".framer-Ls8up.framer-v-1kgr41m .framer-d1beqc, .framer-Ls8up.framer-v-46pigf .framer-1kz2qwj, .framer-Ls8up.framer-v-46pigf .framer-d1beqc { width: 100%; }\",\".framer-Ls8up.framer-v-1kgr41m .framer-rcftpr, .framer-Ls8up.framer-v-46pigf .framer-rcftpr { flex: none; width: 100%; }\",\".framer-Ls8up.framer-v-46pigf.framer-1gh56aa { gap: 32px; padding: 64px 24px 64px 24px; }\",\".framer-Ls8up.framer-v-46pigf .framer-1u74l6l { gap: 48px; }\",\".framer-Ls8up.framer-v-46pigf .framer-1rwjjum, .framer-Ls8up.framer-v-46pigf .framer-1uri8g3, .framer-Ls8up.framer-v-46pigf .framer-flrfi6, .framer-Ls8up.framer-v-46pigf .framer-12y34gh, .framer-Ls8up.framer-v-46pigf .framer-ol4v0u { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ls8up.framer-v-46pigf .framer-1j3wp0g { mix-blend-mode: unset; }\",\".framer-Ls8up.framer-v-46pigf .framer-1tc9u42 { flex-direction: column; gap: 16px; justify-content: flex-start; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 964\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ROZoRi4ei\":{\"layout\":[\"fixed\",\"auto\"]},\"fA5xyTbpe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"dKyTswXye\":\"bookADemo\",\"HMMCLppPk\":\"upsell\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerwI91jeQYa=withCSS(Component,css,\"framer-Ls8up\");export default FramerwI91jeQYa;FramerwI91jeQYa.displayName=\"Footer\";FramerwI91jeQYa.defaultProps={height:964,width:1200};addPropertyControls(FramerwI91jeQYa,{variant:{options:[\"iuXSR6CiT\",\"ROZoRi4ei\",\"fA5xyTbpe\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},dKyTswXye:{title:\"Book A Demo\",type:ControlType.EventHandler},HMMCLppPk:{defaultValue:\"Ready to Onboard Your Newest  Teammate?\",displayTextArea:false,title:\"Upsell\",type:ControlType.String}});addFonts(FramerwI91jeQYa,[{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\"}]},...ShimmerDotBG2Fonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwI91jeQYa\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ROZoRi4ei\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fA5xyTbpe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"dKyTswXye\\\":\\\"bookADemo\\\",\\\"HMMCLppPk\\\":\\\"upsell\\\"}\",\"framerIntrinsicHeight\":\"964\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}