{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/FiiQ0BKlVUNzxXjo8hFs/BDeIULpeB9kBv3zq3U1w/RollingTextHover_Prod.js", "ssg:https://framerusercontent.com/modules/1ZWcdbmv6lko4vZpHsiH/XuIcPIgvir2ZHBOHaojr/JE5xaa8c2.js", "ssg:https://framerusercontent.com/modules/4xJsJPc59it6XmHEERsh/koUifyDPwJ9ohyYl3uMd/itu1soPCZ.js", "ssg:https://framerusercontent.com/modules/wbL0GysLpUpZOLelXsKU/7IhRlKXIvqCTv7OUjGRe/q95pf4lLL.js", "ssg:https://framerusercontent.com/modules/KDL7ECJsldsIWag1NbcR/15cBxb9IoQEeVgISImLA/Hidpv9_80.js", "ssg:https://framerusercontent.com/modules/XiayR5UcPtHmcgeQCQDM/jtvC4KjYm4jMDMxG0xEO/sD1kV62xG.js", "ssg:https://framerusercontent.com/modules/tJOosG2JOxZNbQWEYnPP/BKzNk7fHG0mnOQyBAUFb/dRQhts0tg.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";// --- Helper Functions ---\nconst uuidv4=()=>{return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,c=>{const r=Math.random()*16|0;const v=c===\"x\"?r:r&3|8;return v.toString(16);});};// --- Component ---\n/**\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 50\n * @framerDisableUnlink\n */export default function RollingText({text,transition,stagger,reverse,font,color,textTransform,tag,padding}){const[isHovered,setIsHovered]=useState(false);const innerClassName=`rolling-text-inner-${uuidv4()}`;const Tag=tag;const fontSizeStr=font?.fontSize??\"16px\";const letterSpacingStr=font?.letterSpacing??\"0px\";const rawLineHeight=font?.lineHeight;const fontFamily=font?.fontFamily??\"Inter\";const fontSizeNum=parseInt(fontSizeStr,10)||16;let absoluteLineHeightPx;if(typeof rawLineHeight===\"number\"){absoluteLineHeightPx=fontSizeNum*rawLineHeight;}else if(typeof rawLineHeight===\"string\"&&rawLineHeight.includes(\"em\")){const emValue=parseFloat(rawLineHeight)||1.2;absoluteLineHeightPx=fontSizeNum*emValue;}else if(typeof rawLineHeight===\"string\"){const pxValue=parseFloat(rawLineHeight);absoluteLineHeightPx=isNaN(pxValue)?rawLineHeight:`${pxValue}px`;}else{absoluteLineHeightPx=fontSizeNum*1.2;}const absoluteLineHeightStr=typeof absoluteLineHeightPx===\"number\"?`${absoluteLineHeightPx}px`:absoluteLineHeightPx;const yOffset=`-${absoluteLineHeightStr}`;const styles=`\n    .${innerClassName} {\n      --font-size: ${fontSizeStr};\n      --text: ${color};\n      --line-height-abs: ${absoluteLineHeightStr};\n      box-sizing: border-box; margin: 0; padding: 0; vertical-align: top;\n      display: flex; overflow: hidden; width: max-content;\n      font-family: ${fontFamily}; font-size: ${fontSizeStr};\n      text-transform: ${textTransform}; user-select: none;\n      text-shadow: 0 var(--line-height-abs) 0 var(--text);\n    }\n    .${innerClassName} span {\n      display: block; -webkit-backface-visibility: hidden; backface-visibility: hidden;\n      white-space: pre; flex-shrink: 0;\n      font-family: inherit; font-weight: inherit; font-style: inherit;\n      font-size: inherit; letter-spacing: inherit;\n      line-height: ${rawLineHeight??1.2};\n      color: var(--text);\n    }\n  `;const wrapperStyle={display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"100%\",height:\"100%\",overflow:\"hidden\",padding:padding,boxSizing:\"border-box\"};const spanVariants={initial:{y:\"0%\"},hover:{y:yOffset}};const baseDuration=typeof transition?.duration===\"number\"?transition.duration:.5;// Convert stagger percentage (0-100) to a factor (0-1)\nconst staggerFactor=stagger/100;return /*#__PURE__*/_jsxs(\"div\",{style:wrapperStyle,onMouseEnter:()=>setIsHovered(true),onMouseLeave:()=>setIsHovered(false),children:[/*#__PURE__*/_jsx(Tag,{className:innerClassName,children:[...text].map((str,index)=>{const charIndex=reverse?text.length-1-index:index;// Apply staggerFactor to the delay calculation\nconst delay=text.length>0?baseDuration/text.length*charIndex*staggerFactor// Multiply by factor\n:0;const motionSpanStyle={display:\"block\",...font};return /*#__PURE__*/_jsx(motion.span,{variants:spanVariants,initial:\"initial\",animate:isHovered?\"hover\":\"initial\",transition:{...transition,delay:delay},style:motionSpanStyle,children:str===\" \"?\"\\xa0\":str},index);})}),/*#__PURE__*/_jsx(\"style\",{children:styles})]});}// --- Component Display Name ---\nRollingText.displayName=\"Rolling Text\";// --- Default Properties ---\nconst defaultFont={fontFamily:\"Inter\",fontWeight:\"400\",fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0px\",lineHeight:1.2};const defaultTransition={type:\"spring\",duration:.4,bounce:0};// --- Framer Property Controls ---\naddPropertyControls(RollingText,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"Rolling Text\"},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",defaultValue:defaultFont},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#808080\"},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:defaultTransition},// Added Stagger control\nstagger:{title:\"Stagger\",type:ControlType.Number,min:0,max:100,step:1,defaultValue:35,unit:\"%\"},padding:{title:\"Padding\",type:ControlType.Padding,defaultValue:\"0px\"},reverse:{type:ControlType.Boolean,title:\"Reverse\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},textTransform:{title:\"Transform\",type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"uppercase\",\"lowercase\",\"capitalize\"],optionTitles:[\"None\",\"Uppercase\",\"Lowercase\",\"Capitalize\"]},tag:{type:ControlType.Enum,title:\"Tag\",options:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],optionTitles:[\"p\",\"span\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"],defaultValue:\"p\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RollingText\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RollingTextHover_Prod.map", "// Generated by Framer (2f96024)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,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 RollingText from\"https://framerusercontent.com/modules/FiiQ0BKlVUNzxXjo8hFs/BDeIULpeB9kBv3zq3U1w/RollingTextHover_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/2FWkxfR6umx6AuYdUBgO/Mf6SWJ1oApGTl41hIYd0/OmVBakPYj.js\";const RollingTextFonts=getFonts(RollingText);const enabledGestures={me7hjzFvZ:{hover:true},oD9_LCzwR:{hover:true},xhBwS8hYf:{hover:true}};const cycleOrder=[\"ruWV01xqS\",\"oD9_LCzwR\",\"me7hjzFvZ\",\"xhBwS8hYf\"];const serializationHash=\"framer-6Q0Kc\";const variantClassNames={me7hjzFvZ:\"framer-v-19tlqq9\",oD9_LCzwR:\"framer-v-c5a2jx\",ruWV01xqS:\"framer-v-k99a6h\",xhBwS8hYf:\"framer-v-73fujx\"};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={\"Variant 1\":\"ruWV01xqS\",\"Variant 3\":\"me7hjzFvZ\",\"Variant 4\":\"xhBwS8hYf\",Animated:\"oD9_LCzwR\"};const getProps=({height,id,title,width,...props})=>{return{...props,qDJJ07QMn:title??props.qDJJ07QMn??\"Book a Demo\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ruWV01xqS\"};};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,qDJJ07QMn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ruWV01xqS\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"oD9_LCzwR-hover\",\"xhBwS8hYf-hover\",\"me7hjzFvZ-hover\"].includes(gestureVariant))return true;if([\"oD9_LCzwR\",\"me7hjzFvZ\",\"xhBwS8hYf\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"oD9_LCzwR-hover\",\"xhBwS8hYf-hover\",\"me7hjzFvZ-hover\"].includes(gestureVariant))return false;if([\"oD9_LCzwR\",\"me7hjzFvZ\",\"xhBwS8hYf\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D270Q3Dgj\"},motionChild:true,nodeId:\"ruWV01xqS\",openInNewTab:false,scopeId:\"JE5xaa8c2\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-k99a6h\",className,classNames)} framer-1uqfir2`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ruWV01xqS\",ref:refBinding,style:{backgroundColor:\"var(--token-0b00b8ec-c5d0-4d3e-9748-0f07216afb54, rgb(95, 47, 248))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"me7hjzFvZ-hover\":{backgroundColor:\"var(--token-ea9404bd-e282-4043-af40-13b3db493a8d, rgb(140, 123, 237))\"},\"oD9_LCzwR-hover\":{backgroundColor:\"var(--token-ea9404bd-e282-4043-af40-13b3db493a8d, rgb(140, 123, 237))\"},\"xhBwS8hYf-hover\":{backgroundColor:\"var(--token-ea9404bd-e282-4043-af40-13b3db493a8d, rgb(140, 123, 237))\"}},...addPropertyOverrides({\"me7hjzFvZ-hover\":{\"data-framer-name\":undefined},\"oD9_LCzwR-hover\":{\"data-framer-name\":undefined},\"xhBwS8hYf-hover\":{\"data-framer-name\":undefined},me7hjzFvZ:{\"data-framer-name\":\"Variant 3\"},oD9_LCzwR:{\"data-framer-name\":\"Animated\"},xhBwS8hYf:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h0w405-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ogvuyzD5R-container\",nodeId:\"ogvuyzD5R\",rendersWithMotion:true,scopeId:\"JE5xaa8c2\",children:/*#__PURE__*/_jsx(RollingText,{color:\"rgb(246, 246, 246)\",font:{fontFamily:'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"1em\"},height:\"100%\",id:\"ogvuyzD5R\",layoutId:\"ogvuyzD5R\",padding:\"0px\",reverse:false,stagger:35,tag:\"p\",text:\"Book a demo\",textTransform:\"none\",transition:{bounce:0,delay:0,duration:.4,type:\"spring\"},width:\"100%\",...addPropertyOverrides({me7hjzFvZ:{font:{fontFamily:'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.88)\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0px\",lineHeight:\"100%\"}},oD9_LCzwR:{font:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontSize:\"calc(var(--framer-root-font-size, 1rem) * 0.88)\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0px\",lineHeight:\"100%\"}},xhBwS8hYf:{font:{fontFamily:'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontSize:\"calc(var(--framer-root-font-size, 1rem) * 1.2)\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0px\",lineHeight:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gp3ree\",\"data-styles-preset\":\"OmVBakPYj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aba2492a-c95d-4a7f-a757-9b423371e531, rgb(246, 246, 246)))\"},children:\"Book a Demo\"})}),className:\"framer-zvoqzd\",\"data-framer-name\":\"Book a Demo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GzLJEyR64\",style:{\"--extracted-r6o4lv\":\"var(--token-aba2492a-c95d-4a7f-a757-9b423371e531, rgb(246, 246, 246))\",\"--framer-paragraph-spacing\":\"0px\"},text:qDJJ07QMn,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6Q0Kc.framer-1uqfir2, .framer-6Q0Kc .framer-1uqfir2 { display: block; }\",\".framer-6Q0Kc.framer-k99a6h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-6Q0Kc .framer-h0w405-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6Q0Kc .framer-zvoqzd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6Q0Kc.framer-v-c5a2jx.framer-k99a6h, .framer-6Q0Kc.framer-v-19tlqq9.framer-k99a6h { cursor: pointer; padding: 12px 24px 12px 24px; }\",\".framer-6Q0Kc.framer-v-73fujx.framer-k99a6h { cursor: pointer; padding: 16px 24px 12px 24px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 134\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"oD9_LCzwR\":{\"layout\":[\"auto\",\"auto\"]},\"me7hjzFvZ\":{\"layout\":[\"auto\",\"auto\"]},\"xhBwS8hYf\":{\"layout\":[\"auto\",\"auto\"]},\"Ahwe1nuyy\":{\"layout\":[\"auto\",\"auto\"]},\"m7ZJguI0W\":{\"layout\":[\"auto\",\"auto\"]},\"G_T4YKsf1\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"qDJJ07QMn\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJE5xaa8c2=withCSS(Component,css,\"framer-6Q0Kc\");export default FramerJE5xaa8c2;FramerJE5xaa8c2.displayName=\"CTA Book a Demo\";FramerJE5xaa8c2.defaultProps={height:37,width:134};addPropertyControls(FramerJE5xaa8c2,{variant:{options:[\"ruWV01xqS\",\"oD9_LCzwR\",\"me7hjzFvZ\",\"xhBwS8hYf\"],optionTitles:[\"Variant 1\",\"Animated\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},qDJJ07QMn:{defaultValue:\"Book a Demo\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerJE5xaa8c2,[{explicitInter:true,fonts:[{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VET5UWA4MEKQA4WBV5EGM57GLZ6RJ3WC/S45ZC4DS7EIJMXUV6L2BAG5ELV3HN4S3/YDPYKQPH3JEREPOH5AQV4HHIWBADML7M.woff2\",weight:\"600\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WDPE67UE6MLVKZVLWNP7I6K4BJNXYM75/MEDFVVGRWXNVGRX77CSMLVJYEDA7HC6N/ZCQFQWYK27HETQBG4QFK4TEYPCJZ4KXY.woff2\",weight:\"500\"},{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TBAM3F2B3Q62J3EFZZOFBKD7FY2D2ABJ/UXFRFNKWVYOJXQY4ZT3GUSK23QFKNFJY/FXFHMD66ZLUDCPUIIIVS5BUZ2MFAWPYU.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...RollingTextFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJE5xaa8c2\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"qDJJ07QMn\\\":\\\"title\\\"}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"134\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oD9_LCzwR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"me7hjzFvZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xhBwS8hYf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ahwe1nuyy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"m7ZJguI0W\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G_T4YKsf1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"37\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JE5xaa8c2.map", "// Generated by Framer (6ca5d98)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,cx,motion,useSVGTemplate,withCSS}from\"framer\";import*as React from\"react\";import{forwardRef}from\"react\";const mask=\"var(--framer-icon-mask)\";const Base=/*#__PURE__*/forwardRef(function(props,ref){return /*#__PURE__*/_jsx(\"svg\",{...props,ref:ref,children:props.children});});const MotionSVG=motion.create(Base);const SVG=/*#__PURE__*/forwardRef((props,ref)=>{const{animated,layoutId,children,...rest}=props;return animated?/*#__PURE__*/_jsx(MotionSVG,{...rest,layoutId:layoutId,ref:ref,children:children}):/*#__PURE__*/_jsx(\"svg\",{...rest,ref:ref,children:children});});const svg='<svg display=\"block\" role=\"presentation\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 0 12 L 0 0 L 16.5 0 L 16.5 12 Z\" fill-opacity=\"var(--1m6trwb, 0)\" fill=\"var(--21h8s6, rgb(0, 0, 0))\" height=\"12px\" id=\"gwB_ZdJt6\" transform=\"translate(3.75 6)\" width=\"16.5px\"/><path d=\"M 0 0 L 16.5 0\" fill=\"transparent\" height=\"1px\" id=\"xGkn4qbwc\" stroke-dasharray=\"\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"var(--pgex8v, 1.5)\" stroke=\"var(--21h8s6, rgb(0, 0, 0))\" transform=\"translate(3.75 12)\" width=\"16.5px\"/><path d=\"M 0 0 L 16.5 0\" fill=\"transparent\" height=\"1px\" id=\"uQ9bOFKFt\" stroke-dasharray=\"\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"var(--pgex8v, 1.5)\" stroke=\"var(--21h8s6, rgb(0, 0, 0))\" transform=\"translate(3.75 6)\" width=\"16.5px\"/><path d=\"M 0 0 L 16.5 0\" fill=\"transparent\" height=\"1px\" id=\"hrURkUe9P\" stroke-dasharray=\"\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"var(--pgex8v, 1.5)\" stroke=\"var(--21h8s6, rgb(0, 0, 0))\" transform=\"translate(3.75 18)\" width=\"16.5px\"/></svg>';const getProps=({alpha,color,height,id,width,width1,...props})=>{return{...props,ezTt3ayMo:color??props.ezTt3ayMo??\"rgb(0, 0, 0)\",lschgej4H:width1??props.lschgej4H??1.5,qxTvv_EBh:alpha??props.qxTvv_EBh};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{style,className,layoutId,variant,ezTt3ayMo,lschgej4H,qxTvv_EBh,...restProps}=getProps(props);const href=useSVGTemplate(\"3559153988\",svg);return /*#__PURE__*/_jsx(SVG,{...restProps,className:cx(\"framer-iZmZi\",className),layoutId:layoutId,ref:ref,role:\"presentation\",style:{\"--1m6trwb\":qxTvv_EBh,\"--21h8s6\":ezTt3ayMo,\"--pgex8v\":lschgej4H,...style},viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"use\",{href:href})});});const css=[`.framer-iZmZi { -webkit-mask: ${mask}; aspect-ratio: 1; display: block; mask: ${mask}; width: 24px; }`];/**\n * This is a generated Framer component.\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerVariables {\"ezTt3ayMo\":\"color\",\"lschgej4H\":\"width1\",\"qxTvv_EBh\":\"alpha\"}\n * @framerImmutableVariables true\n * @framerVector {\"name\":\"List\",\"color\":{\"type\":\"variable\",\"value\":\"21h8s6\"},\"set\":{\"localId\":\"vectorSet/NGVKdicsm\",\"id\":\"NGVKdicsm\",\"moduleId\":\"omX0gWFPqDwhaiWwf6ab\"}}\n * @framerDisableUnlink true\n */const Icon=withCSS(Component,css,\"framer-iZmZi\");Icon.displayName=\"List\";export default Icon;addPropertyControls(Icon,{ezTt3ayMo:{defaultValue:\"rgb(0, 0, 0)\",hidden:false,title:\"Color\",type:ControlType.Color},lschgej4H:{defaultValue:1.5,displayStepper:true,hidden:false,max:6,min:0,step:.5,title:\"Width\",type:ControlType.Number},qxTvv_EBh:{defaultValue:0,displayStepper:true,hidden:false,max:1,min:0,step:.1,title:\"Alpha\",type:ControlType.Number}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"ezTt3ayMo\\\":\\\"color\\\",\\\"lschgej4H\\\":\\\"width1\\\",\\\"qxTvv_EBh\\\":\\\"alpha\\\"}\",\"framerVector\":\"{\\\"name\\\":\\\"List\\\",\\\"color\\\":{\\\"type\\\":\\\"variable\\\",\\\"value\\\":\\\"21h8s6\\\"},\\\"set\\\":{\\\"localId\\\":\\\"vectorSet/NGVKdicsm\\\",\\\"id\\\":\\\"NGVKdicsm\\\",\\\"moduleId\\\":\\\"omX0gWFPqDwhaiWwf6ab\\\"}}\",\"framerDisableUnlink\":\"true\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6ca5d98)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,cx,motion,useSVGTemplate,withCSS}from\"framer\";import*as React from\"react\";import{forwardRef}from\"react\";const mask=\"var(--framer-icon-mask)\";const Base=/*#__PURE__*/forwardRef(function(props,ref){return /*#__PURE__*/_jsx(\"svg\",{...props,ref:ref,children:props.children});});const MotionSVG=motion.create(Base);const SVG=/*#__PURE__*/forwardRef((props,ref)=>{const{animated,layoutId,children,...rest}=props;return animated?/*#__PURE__*/_jsx(MotionSVG,{...rest,layoutId:layoutId,ref:ref,children:children}):/*#__PURE__*/_jsx(\"svg\",{...rest,ref:ref,children:children});});const svg='<svg display=\"block\" role=\"presentation\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M 1.5 16.5 C 0.672 16.5 0 15.828 0 15 L 0 1.5 C 0 0.672 0.672 0 1.5 0 L 15 0 C 15.828 0 16.5 0.672 16.5 1.5 L 16.5 15 C 16.5 15.828 15.828 16.5 15 16.5 Z\" fill-opacity=\"var(--1m6trwb, 0)\" fill=\"var(--21h8s6, rgb(0, 0, 0))\" height=\"16.5px\" id=\"LjE0Ycn76\" transform=\"translate(3.75 3.75)\" width=\"16.5px\"/><path d=\"M 13.5 0 L 0 13.5\" fill=\"var(--21h8s6, rgb(0, 0, 0))\" height=\"13.5px\" id=\"oSDwjLCvX\" stroke-dasharray=\"\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"var(--pgex8v, 1.5)\" stroke=\"var(--21h8s6, rgb(0, 0, 0))\" transform=\"translate(5.25 5.25)\" width=\"13.5px\"/><path d=\"M 13.5 13.5 L 0 0\" fill=\"var(--21h8s6, rgb(0, 0, 0))\" height=\"13.5px\" id=\"H9XwXWiXU\" stroke-dasharray=\"\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"var(--pgex8v, 1.5)\" stroke=\"var(--21h8s6, rgb(0, 0, 0))\" transform=\"translate(5.25 5.25)\" width=\"13.5px\"/></svg>';const getProps=({alpha,color,height,id,width,width1,...props})=>{return{...props,ezTt3ayMo:color??props.ezTt3ayMo??\"rgb(0, 0, 0)\",lschgej4H:width1??props.lschgej4H??1.5,qxTvv_EBh:alpha??props.qxTvv_EBh};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{style,className,layoutId,variant,ezTt3ayMo,lschgej4H,qxTvv_EBh,...restProps}=getProps(props);const href=useSVGTemplate(\"2202960551\",svg);return /*#__PURE__*/_jsx(SVG,{...restProps,className:cx(\"framer-AhL2C\",className),layoutId:layoutId,ref:ref,role:\"presentation\",style:{\"--1m6trwb\":qxTvv_EBh,\"--21h8s6\":ezTt3ayMo,\"--pgex8v\":lschgej4H,...style},viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"use\",{href:href})});});const css=[`.framer-AhL2C { -webkit-mask: ${mask}; aspect-ratio: 1; display: block; mask: ${mask}; width: 24px; }`];/**\n * This is a generated Framer component.\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerVariables {\"ezTt3ayMo\":\"color\",\"lschgej4H\":\"width1\",\"qxTvv_EBh\":\"alpha\"}\n * @framerImmutableVariables true\n * @framerVector {\"name\":\"X\",\"color\":{\"type\":\"variable\",\"value\":\"21h8s6\"},\"set\":{\"localId\":\"vectorSet/NGVKdicsm\",\"id\":\"NGVKdicsm\",\"moduleId\":\"omX0gWFPqDwhaiWwf6ab\"}}\n * @framerDisableUnlink true\n */const Icon=withCSS(Component,css,\"framer-AhL2C\");Icon.displayName=\"X\";export default Icon;addPropertyControls(Icon,{ezTt3ayMo:{defaultValue:\"rgb(0, 0, 0)\",hidden:false,title:\"Color\",type:ControlType.Color},lschgej4H:{defaultValue:1.5,displayStepper:true,hidden:false,max:6,min:0,step:.5,title:\"Width\",type:ControlType.Number},qxTvv_EBh:{defaultValue:0,displayStepper:true,hidden:false,max:1,min:0,step:.1,title:\"Alpha\",type:ControlType.Number}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerImmutableVariables\":\"true\",\"framerDisableUnlink\":\"true\",\"framerVector\":\"{\\\"name\\\":\\\"X\\\",\\\"color\\\":{\\\"type\\\":\\\"variable\\\",\\\"value\\\":\\\"21h8s6\\\"},\\\"set\\\":{\\\"localId\\\":\\\"vectorSet/NGVKdicsm\\\",\\\"id\\\":\\\"NGVKdicsm\\\",\\\"moduleId\\\":\\\"omX0gWFPqDwhaiWwf6ab\\\"}}\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ezTt3ayMo\\\":\\\"color\\\",\\\"lschgej4H\\\":\\\"width1\\\",\\\"qxTvv_EBh\\\":\\\"alpha\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a4aa1f7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,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/2FWkxfR6umx6AuYdUBgO/Mf6SWJ1oApGTl41hIYd0/OmVBakPYj.js\";const enabledGestures={KzlDBB1H_:{hover:true}};const serializationHash=\"framer-p75nK\";const variantClassNames={KzlDBB1H_:\"framer-v-1vdyak5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};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,hover,id,link,title,width,...props})=>{return{...props,cscE_qLCU:hover??props.cscE_qLCU,S4Y7eABDL:title??props.S4Y7eABDL??\"Product\",ufNQw5JUm:link??props.ufNQw5JUm};};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,cscE_qLCU,S4Y7eABDL,ufNQw5JUm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"KzlDBB1H_\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1x87ask=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(cscE_qLCU){const res=await cscE_qLCU(...args);if(res===false)return false;}});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__*/_jsx(Link,{href:ufNQw5JUm,motionChild:true,nodeId:\"KzlDBB1H_\",scopeId:\"Hidpv9_80\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1vdyak5\",className,classNames)} framer-15d42uk`,\"data-framer-name\":\"Link\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KzlDBB1H_\",onMouseEnter:onMouseEnter1x87ask,ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"KzlDBB1H_-hover\":{backgroundColor:\"var(--token-0e9d0e09-7e62-4cc8-af01-4aa86283ef5f, rgba(225, 224, 255, 0.1))\"}},...addPropertyOverrides({\"KzlDBB1H_-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gp3ree\",\"data-styles-preset\":\"OmVBakPYj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75)))\"},children:\"Product\"})}),className:\"framer-xjyljj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fhnjcAfe3\",style:{\"--extracted-r6o4lv\":\"var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:S4Y7eABDL,variants:{\"KzlDBB1H_-hover\":{\"--extracted-r6o4lv\":\"var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"KzlDBB1H_-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gp3ree\",\"data-styles-preset\":\"OmVBakPYj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255)))\"},children:\"Product\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-p75nK.framer-15d42uk, .framer-p75nK .framer-15d42uk { display: block; }\",\".framer-p75nK.framer-1vdyak5 { 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: 8px 16px 8px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-p75nK .framer-xjyljj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 82\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ZQem5tUOE\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"cscE_qLCU\":\"hover\",\"S4Y7eABDL\":\"title\",\"ufNQw5JUm\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerHidpv9_80=withCSS(Component,css,\"framer-p75nK\");export default FramerHidpv9_80;FramerHidpv9_80.displayName=\"Nav-link\";FramerHidpv9_80.defaultProps={height:37,width:82};addPropertyControls(FramerHidpv9_80,{cscE_qLCU:{title:\"Hover\",type:ControlType.EventHandler},S4Y7eABDL:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String},ufNQw5JUm:{title:\"Link\",type:ControlType.Link}});addFonts(FramerHidpv9_80,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHidpv9_80\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZQem5tUOE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"37\",\"framerVariables\":\"{\\\"cscE_qLCU\\\":\\\"hover\\\",\\\"S4Y7eABDL\\\":\\\"title\\\",\\\"ufNQw5JUm\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"82\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hidpv9_80.map", "// Generated by Framer (2f96024)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,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 sharedStyle5 from\"https://framerusercontent.com/modules/fHOr6w1DzRXG5lNTe1g3/UEsnQng3RFGNDdgtDHBa/ARR8zkTZF.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/Rq3IMWydKC0V8O2h1Ga0/ubnEDgdLUZPAqduLmOgr/Fuy_SMwYG.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/UGGZACs778HiuQuBGVQi/RCBHdJS3mXqgDlUw4In2/Gtt8k8lpw.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ykK9KFoj8ueBgLFejQx8/43zyaTGeDBLowyvKLUDh/HD_vbeQzq.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/qa6igyS5WH3a7kc2Y1mJ/sF3jMe4DzcrSXuEYP8u1/Lrx2RWGD9.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/urUbQmY2bT5Xmfe0nc59/RUj88vkGfn2v4dhNvSOJ/olHOWGI7b.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/2FWkxfR6umx6AuYdUBgO/Mf6SWJ1oApGTl41hIYd0/OmVBakPYj.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/NPZK8z2X0tnp1KP0jEbY/9adW03AknRwuUHPjRoWJ/tcW3kN4EX.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/I80yqXhc55fdsVS2QsGB/4BsWQ2SYoziLjJ5KcafL/ZazoKHzgi.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/mxNzgAC0MpdattelXDGk/g25sKt824lafAxwG2qSk/ZXg_zZ7N8.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={WHiddNdJ4:{hover:true}};const serializationHash=\"framer-F5aR2\";const variantClassNames={WHiddNdJ4:\"framer-v-1uqjzub\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};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=({description,height,icon,id,link,title,visible,width,...props})=>{return{...props,bxu74NhJ_:description??props.bxu74NhJ_??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Set the project direction with projects and initiatives\"})}),kJAbaonzf:icon??props.kJAbaonzf??\"Sparkle\",Nqb4kUp2a:title??props.Nqb4kUp2a??\"Automated AI decisioning\",waHesuExS:visible??props.waHesuExS??true,znjq8hj7r:link??props.znjq8hj7r};};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,Nqb4kUp2a,znjq8hj7r,waHesuExS,kJAbaonzf,bxu74NhJ_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WHiddNdJ4\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.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__*/_jsx(Link,{href:znjq8hj7r,motionChild:true,nodeId:\"WHiddNdJ4\",scopeId:\"sD1kV62xG\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1uqjzub\",className,classNames)} framer-1b7lvps`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"WHiddNdJ4\",ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"WHiddNdJ4-hover\":{backgroundColor:\"var(--token-83debff1-88b8-4555-9d10-2bf58588bbb8, rgb(221, 217, 250))\"}},...addPropertyOverrides({\"WHiddNdJ4-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ouqan\",layoutDependency:layoutDependency,layoutId:\"Utrhuf0Mt\",style:{backgroundColor:\"var(--token-ea9404bd-e282-4043-af40-13b3db493a8d, rgb(140, 123, 237))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vd3n8o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R_aC4pfLG-container\",nodeId:\"R_aC4pfLG\",rendersWithMotion:true,scopeId:\"sD1kV62xG\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-aba2492a-c95d-4a7f-a757-9b423371e531, rgb(247, 245, 247))\",height:\"100%\",iconSearch:\"House\",iconSelection:kJAbaonzf,id:\"R_aC4pfLG\",layoutId:\"R_aC4pfLG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wweiga\",layoutDependency:layoutDependency,layoutId:\"f47DExc5w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xzkfkv\",\"data-styles-preset\":\"tcW3kN4EX\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255)))\"},children:\"Automated AI decisioning\"})}),className:\"framer-9bdf5h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YWDqQ_4db\",style:{\"--extracted-r6o4lv\":\"var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Nqb4kUp2a,verticalAlignment:\"top\",withExternalLayout:true}),waHesuExS&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:bxu74NhJ_,className:\"framer-11tsj1b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mBF2xoZi6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-a4jpkq\",h1:\"framer-styles-preset-16lpy09\",h2:\"framer-styles-preset-1x7rqhd\",h3:\"framer-styles-preset-13swsv0\",h4:\"framer-styles-preset-9k0ves\",h5:\"framer-styles-preset-1wqwkxk\",img:\"framer-styles-preset-xlt2ij\",p:\"framer-styles-preset-1gp3ree\",table:\"framer-styles-preset-1qdqpvs\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F5aR2.framer-1b7lvps, .framer-F5aR2 .framer-1b7lvps { display: block; }\",\".framer-F5aR2.framer-1uqjzub { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; text-decoration: none; width: 320px; }\",\".framer-F5aR2 .framer-17ouqan { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-F5aR2 .framer-1vd3n8o-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-F5aR2 .framer-wweiga { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-F5aR2 .framer-9bdf5h, .framer-F5aR2 .framer-11tsj1b { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 71\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i80B9x68e\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Nqb4kUp2a\":\"title\",\"znjq8hj7r\":\"link\",\"waHesuExS\":\"visible\",\"kJAbaonzf\":\"icon\",\"bxu74NhJ_\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersD1kV62xG=withCSS(Component,css,\"framer-F5aR2\");export default FramersD1kV62xG;FramersD1kV62xG.displayName=\"Nav-item-overlay\";FramersD1kV62xG.defaultProps={height:71,width:320};addPropertyControls(FramersD1kV62xG,{Nqb4kUp2a:{defaultValue:\"Automated AI decisioning\",displayTextArea:false,title:\"Title\",type:ControlType.String},znjq8hj7r:{title:\"Link\",type:ControlType.Link},waHesuExS:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},kJAbaonzf:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Sparkle\",description:undefined,hidden:undefined,title:\"Icon\"},bxu74NhJ_:{defaultValue:\"<p>Set the project direction with projects and initiatives</p>\",title:\"Description\",type:ControlType.RichText}});addFonts(FramersD1kV62xG,[{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),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersD1kV62xG\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i80B9x68e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"Nqb4kUp2a\\\":\\\"title\\\",\\\"znjq8hj7r\\\":\\\"link\\\",\\\"waHesuExS\\\":\\\"visible\\\",\\\"kJAbaonzf\\\":\\\"icon\\\",\\\"bxu74NhJ_\\\":\\\"description\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"320\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"71\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2f96024)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Instance,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import List from\"https://framerusercontent.com/modules/4xJsJPc59it6XmHEERsh/koUifyDPwJ9ohyYl3uMd/itu1soPCZ.js\";import X from\"https://framerusercontent.com/modules/wbL0GysLpUpZOLelXsKU/7IhRlKXIvqCTv7OUjGRe/q95pf4lLL.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qa6igyS5WH3a7kc2Y1mJ/sF3jMe4DzcrSXuEYP8u1/Lrx2RWGD9.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/QlydU7BpDKaLCTQcBji8/9zvzvFREamq7PMqoVjUs/Ma2TeAX4u.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mxNzgAC0MpdattelXDGk/g25sKt824lafAxwG2qSk/ZXg_zZ7N8.js\";import NavLink from\"https://framerusercontent.com/modules/KDL7ECJsldsIWag1NbcR/15cBxb9IoQEeVgISImLA/Hidpv9_80.js\";import CTABookADemo from\"https://framerusercontent.com/modules/1ZWcdbmv6lko4vZpHsiH/XuIcPIgvir2ZHBOHaojr/JE5xaa8c2.js\";import NavItemOverlay from\"https://framerusercontent.com/modules/XiayR5UcPtHmcgeQCQDM/jtvC4KjYm4jMDMxG0xEO/sD1kV62xG.js\";const NavLinkFonts=getFonts(NavLink);const NavItemOverlayFonts=getFonts(NavItemOverlay);const MotionDivWithFX=withFX(motion.div);const CTABookADemoFonts=getFonts(CTABookADemo);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"E9RVuFzg9\",\"zRTmDnJ4u\",\"IqFiWZGCp\",\"wotw6fFGv\",\"cf6aLoG6S\",\"emG3wVBNf\"];const serializationHash=\"framer-m4jcu\";const variantClassNames={cf6aLoG6S:\"framer-v-y780gf\",E9RVuFzg9:\"framer-v-ez2p8h\",emG3wVBNf:\"framer-v-1bkjs54\",IqFiWZGCp:\"framer-v-ckipsr\",wotw6fFGv:\"framer-v-18g69z1\",zRTmDnJ4u:\"framer-v-26nzmr\"};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 transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition3={delay:.04,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-20,y:0};const transition4={delay:.08,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={delay:.12,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:.2,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={delay:.24,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={delay:.16,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Demo page\":\"cf6aLoG6S\",\"Demp Phone\":\"emG3wVBNf\",\"Phone-closed\":\"IqFiWZGCp\",\"Phone-open\":\"wotw6fFGv\",Desktop:\"E9RVuFzg9\",Tablet:\"zRTmDnJ4u\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"E9RVuFzg9\"};};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:\"E9RVuFzg9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const cscE_qLCUtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTapwh2oqz=activeVariantCallback(async(...args)=>{setVariant(\"wotw6fFGv\");});const onTap1w9j2lv=activeVariantCallback(async(...args)=>{setVariant(\"IqFiWZGCp\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"IqFiWZGCp\",\"wotw6fFGv\",\"cf6aLoG6S\",\"emG3wVBNf\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const router=useRouter();const ref3=React.useRef(null);const ref4=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"cf6aLoG6S\")return false;return true;};const isDisplayed2=()=>{if([\"IqFiWZGCp\",\"wotw6fFGv\",\"emG3wVBNf\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"IqFiWZGCp\",\"wotw6fFGv\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"emG3wVBNf\")return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"wotw6fFGv\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({emG3wVBNf:{value:transition2},IqFiWZGCp:{value:transition2},wotw6fFGv:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ez2p8h\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"E9RVuFzg9\",ref:refBinding,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-aba2492a-c95d-4a7f-a757-9b423371e531, rgb(11, 5, 31))\",WebkitBackdropFilter:\"blur(10px)\",...style},variants:{cf6aLoG6S:{backgroundColor:\"rgba(0, 0, 0, 0)\"},emG3wVBNf:{backgroundColor:\"rgba(0, 0, 0, 0)\"},wotw6fFGv:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"}},...addPropertyOverrides({cf6aLoG6S:{\"data-framer-name\":\"Demo page\"},emG3wVBNf:{\"data-framer-name\":\"Demp Phone\"},IqFiWZGCp:{\"data-framer-name\":\"Phone-closed\"},wotw6fFGv:{\"data-framer-name\":\"Phone-open\"},zRTmDnJ4u:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ig9fpg\",\"data-framer-name\":\"Nav-container\",layoutDependency:layoutDependency,layoutId:\"PGnV6Umyi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ac91it\",layoutDependency:layoutDependency,layoutId:\"braIGlxqV\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"FcKPFXFq5\",openInNewTab:false,scopeId:\"dRQhts0tg\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-rlgjj4 framer-zla4lg\",\"data-framer-name\":\"Frame 3\",layoutDependency:layoutDependency,layoutId:\"FcKPFXFq5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||82)-32-50)/2)+0+7+0),pixelHeight:296,pixelWidth:296,src:\"https://framerusercontent.com/images/Oc2RcWPQqLklFtMjtgILK3rao.png\"},className:\"framer-4qb4xh\",\"data-framer-name\":\"image 1\",layoutDependency:layoutDependency,layoutId:\"FNhi_0tpU\",...addPropertyOverrides({cf6aLoG6S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||68)-32-36)/2)+0+0+0),pixelHeight:296,pixelWidth:296,src:\"https://framerusercontent.com/images/Oc2RcWPQqLklFtMjtgILK3rao.png\"}},emG3wVBNf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||70)-32-38)/2)+0+1+0),pixelHeight:296,pixelWidth:296,src:\"https://framerusercontent.com/images/Oc2RcWPQqLklFtMjtgILK3rao.png\"}},IqFiWZGCp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||70)-32-38)/2)+0+1+0),pixelHeight:296,pixelWidth:296,src:\"https://framerusercontent.com/images/Oc2RcWPQqLklFtMjtgILK3rao.png\"}},wotw6fFGv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+0+7+0),pixelHeight:296,pixelWidth:296,src:\"https://framerusercontent.com/images/Oc2RcWPQqLklFtMjtgILK3rao.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggR3JvdGVzay1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Grotesk\", \"Clash Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 30, 48))\"},children:\"Nudge\"})}),className:\"framer-dllpni\",\"data-framer-name\":\"Nudge\",fonts:[\"FS;Clash Grotesk-medium\"],layoutDependency:layoutDependency,layoutId:\"daJzXKos6\",style:{\"--extracted-r6o4lv\":\"rgb(31, 30, 48)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cwtby9\",\"data-framer-name\":\"Nav-Links-container\",layoutDependency:layoutDependency,layoutId:\"v0fTUcddc\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+(16+((componentViewport?.height||82)-32-50)/2)+0+6.5+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-liymv5-container\",id:`${layoutId}-liymv5`,layoutDependency:layoutDependency,layoutId:\"prIkW2JeR-container\",nodeId:\"prIkW2JeR\",ref:ref1,rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:[/*#__PURE__*/_jsx(NavLink,{cscE_qLCU:cscE_qLCUtxyyif({overlay}),height:\"100%\",id:\"prIkW2JeR\",layoutId:\"prIkW2JeR\",S4Y7eABDL:\"Product\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-liymv5`,offsetX:0,offsetY:8,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-crq44s\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"gBgGdgNvY\",ref:ref2,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0e9d0e09-7e62-4cc8-af01-4aa86283ef5f, rgba(225, 224, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lcjpso\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"SvUnKlvfw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0e9d0e09-7e62-4cc8-af01-4aa86283ef5f, rgba(225, 224, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bA1UzKeAL\"},implicitPathVariables:undefined},{href:{webPageId:\"bA1UzKeAL\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"312px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4suxop-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"s6Mz9S2wK-container\",nodeId:\"s6Mz9S2wK\",rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:/*#__PURE__*/_jsx(NavItemOverlay,{bxu74NhJ_:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"AI that adapts UX in real-time\"})}),height:\"100%\",id:\"s6Mz9S2wK\",kJAbaonzf:\"Sparkle\",layoutId:\"s6Mz9S2wK\",Nqb4kUp2a:\"AI Decisioning\",style:{width:\"100%\"},waHesuExS:true,width:\"100%\",znjq8hj7r:resolvedLinks[0],...addPropertyOverrides({zRTmDnJ4u:{znjq8hj7r:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cDqNoKQM2\"},implicitPathVariables:undefined},{href:{webPageId:\"cDqNoKQM2\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"312px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13vf0tr-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"P6ZlosrnF-container\",nodeId:\"P6ZlosrnF\",rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:/*#__PURE__*/_jsx(NavItemOverlay,{bxu74NhJ_:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interfaces that evolve with every user\"})}),height:\"100%\",id:\"P6ZlosrnF\",kJAbaonzf:\"DeviceMobile\",layoutId:\"P6ZlosrnF\",Nqb4kUp2a:\"1:1 UX Personalization\",style:{width:\"100%\"},waHesuExS:true,width:\"100%\",znjq8hj7r:resolvedLinks1[0],...addPropertyOverrides({zRTmDnJ4u:{znjq8hj7r:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ITndXvcO4\"},implicitPathVariables:undefined},{href:{webPageId:\"ITndXvcO4\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"312px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-czhkbx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zM2D2uFpQ-container\",nodeId:\"zM2D2uFpQ\",rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:/*#__PURE__*/_jsx(NavItemOverlay,{bxu74NhJ_:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Step out of the blackbox\"})}),height:\"100%\",id:\"zM2D2uFpQ\",kJAbaonzf:\"ChartLineUp\",layoutId:\"zM2D2uFpQ\",Nqb4kUp2a:\"Signals\",style:{width:\"100%\"},waHesuExS:true,width:\"100%\",znjq8hj7r:resolvedLinks2[0],...addPropertyOverrides({zRTmDnJ4u:{znjq8hj7r:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})]})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GsE7uka5v\"},implicitPathVariables:undefined},{href:{webPageId:\"GsE7uka5v\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+(16+((componentViewport?.height||82)-32-50)/2)+0+6.5+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-8u4081-container\",id:`${layoutId}-8u4081`,layoutDependency:layoutDependency,layoutId:\"JK6_g40OI-container\",nodeId:\"JK6_g40OI\",ref:ref3,rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:[/*#__PURE__*/_jsx(NavLink,{cscE_qLCU:cscE_qLCUtxyyif({overlay:overlay1}),height:\"100%\",id:\"JK6_g40OI\",layoutId:\"JK6_g40OI\",S4Y7eABDL:\"Resources\",ufNQw5JUm:resolvedLinks3[0],width:\"100%\",...addPropertyOverrides({zRTmDnJ4u:{ufNQw5JUm:resolvedLinks3[1]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-8u4081`,offsetX:0,offsetY:8,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1to5hzm\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"N0UHDS0rS\",ref:ref4,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0e9d0e09-7e62-4cc8-af01-4aa86283ef5f, rgba(225, 224, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g5swkk\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"N64RHU4BR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0e9d0e09-7e62-4cc8-af01-4aa86283ef5f, rgba(225, 224, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GsE7uka5v\"},implicitPathVariables:undefined},{href:{webPageId:\"GsE7uka5v\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"192px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b5z75y-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"wR_3MHM80-container\",nodeId:\"wR_3MHM80\",rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:/*#__PURE__*/_jsx(NavItemOverlay,{bxu74NhJ_:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"AI that adapts UX in real-time\"})}),height:\"100%\",id:\"wR_3MHM80\",kJAbaonzf:\"Laptop\",layoutId:\"wR_3MHM80\",Nqb4kUp2a:\"Blogs\",style:{width:\"100%\"},waHesuExS:false,width:\"100%\",znjq8hj7r:resolvedLinks4[0],...addPropertyOverrides({zRTmDnJ4u:{znjq8hj7r:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jayucVige\"},implicitPathVariables:undefined},{href:{webPageId:\"jayucVige\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"192px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e34ye3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"i4SKzJIXm-container\",nodeId:\"i4SKzJIXm\",rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:/*#__PURE__*/_jsx(NavItemOverlay,{bxu74NhJ_:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interfaces that evolve with every user\"})}),height:\"100%\",id:\"i4SKzJIXm\",kJAbaonzf:\"Book\",layoutId:\"i4SKzJIXm\",Nqb4kUp2a:\"Glossary\",style:{width:\"100%\"},waHesuExS:false,width:\"100%\",znjq8hj7r:resolvedLinks5[0],...addPropertyOverrides({zRTmDnJ4u:{znjq8hj7r:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})]})})})})]})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18djg5p\",layoutDependency:layoutDependency,layoutId:\"SMKpeNZh5\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1un7pkg\",layoutDependency:layoutDependency,layoutId:\"UcIf2JAJ0\",...addPropertyOverrides({emG3wVBNf:{\"data-highlight\":true,onTap:onTapwh2oqz},IqFiWZGCp:{\"data-highlight\":true,onTap:onTapwh2oqz},wotw6fFGv:{\"data-highlight\":true,onTap:onTap1w9j2lv}},baseVariant,gestureVariant),children:isDisplayed3()&&/*#__PURE__*/_jsx(Instance,{animated:true,className:\"framer-9uy3cc\",Component:List,layoutDependency:layoutDependency,layoutId:\"BQTjP6mqe\",style:{\"--1m6trwb\":0,\"--21h8s6\":\"rgb(0, 0, 0)\",\"--pgex8v\":1.5},...addPropertyOverrides({wotw6fFGv:{Component:X}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:(componentViewport?.y||0)+(16+((componentViewport?.height||82)-32-50)/2)+0+0+6.5,...addPropertyOverrides({IqFiWZGCp:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||70)-32-38)/2)+0+0+.5},wotw6fFGv:{y:(componentViewport?.y||0)+16+0+0+0+6.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jvnwl-container\",layoutDependency:layoutDependency,layoutId:\"wruuuuUkh-container\",nodeId:\"wruuuuUkh\",rendersWithMotion:true,scopeId:\"dRQhts0tg\",children:/*#__PURE__*/_jsx(CTABookADemo,{height:\"100%\",id:\"wruuuuUkh\",layoutId:\"wruuuuUkh\",qDJJ07QMn:\"Book a Demo\",variant:\"oD9_LCzwR\",width:\"100%\"})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pn6zn4\",\"data-framer-name\":\"Nav-Links-mobile-container\",layoutDependency:layoutDependency,layoutId:\"nWsZKPCPo\",style:{opacity:0},variants:{wotw6fFGv:{opacity:1}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e8l86f\",layoutDependency:layoutDependency,layoutId:\"jE5LUpBfw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-co7y2c\",layoutDependency:layoutDependency,layoutId:\"pPqcY9siW\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rs8cn1\",\"data-styles-preset\":\"Ma2TeAX4u\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bA1UzKeAL\"},motionChild:true,nodeId:\"UcmQWkAr0\",openInNewTab:false,relValues:[],scopeId:\"dRQhts0tg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-a4jpkq\",\"data-styles-preset\":\"ZXg_zZ7N8\",children:\"AI decisioning\"})})})}),className:\"framer-eu7mgz\",\"data-framer-appear-id\":\"eu7mgz\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"UcmQWkAr0\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rs8cn1\",\"data-styles-preset\":\"Ma2TeAX4u\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cDqNoKQM2\"},motionChild:true,nodeId:\"wrbHd9YHk\",openInNewTab:false,relValues:[],scopeId:\"dRQhts0tg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-a4jpkq\",\"data-styles-preset\":\"ZXg_zZ7N8\",children:\"1:1 UX Personalization\"})})})}),className:\"framer-1qqhtg3\",\"data-framer-appear-id\":\"1qqhtg3\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"wrbHd9YHk\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rs8cn1\",\"data-styles-preset\":\"Ma2TeAX4u\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ITndXvcO4\"},motionChild:true,nodeId:\"NZChTvKjU\",openInNewTab:false,relValues:[],scopeId:\"dRQhts0tg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-a4jpkq\",\"data-styles-preset\":\"ZXg_zZ7N8\",children:\"Signals\"})})})}),className:\"framer-h5ow9k\",\"data-framer-appear-id\":\"h5ow9k\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"NZChTvKjU\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-9k0ves\",\"data-styles-preset\":\"Lrx2RWGD9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255)))\"},children:\"Product\"})}),className:\"framer-9z5pmf\",\"data-framer-appear-id\":\"9z5pmf\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"FjJpLu3xr\",optimized:true,style:{\"--extracted-1eung3n\":\"var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18r96mb\",\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"wMyxkIyUd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1da60d1\",layoutDependency:layoutDependency,layoutId:\"KJF7MZ8ps\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rs8cn1\",\"data-styles-preset\":\"Ma2TeAX4u\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GsE7uka5v\"},motionChild:true,nodeId:\"efUm1cHFF\",openInNewTab:false,relValues:[],scopeId:\"dRQhts0tg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-a4jpkq\",\"data-styles-preset\":\"ZXg_zZ7N8\",children:\"Blogs\"})})})}),className:\"framer-14rfqgn\",\"data-framer-appear-id\":\"14rfqgn\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"efUm1cHFF\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-rs8cn1\",\"data-styles-preset\":\"Ma2TeAX4u\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jayucVige\"},motionChild:true,nodeId:\"m8R1UwELa\",openInNewTab:false,relValues:[],scopeId:\"dRQhts0tg\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-a4jpkq\",\"data-styles-preset\":\"ZXg_zZ7N8\",children:\"Glossary\"})})})}),className:\"framer-jmbbc5\",\"data-framer-appear-id\":\"jmbbc5\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"m8R1UwELa\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-fe3562d9-8e2f-47a3-b8b2-8de42c7961b5, rgba(225, 224, 255, 0.75))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation10,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-9k0ves\",\"data-styles-preset\":\"Lrx2RWGD9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255)))\"},children:\"Resources\"})}),className:\"framer-1m79xof\",\"data-framer-appear-id\":\"1m79xof\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"EiL2uwi5x\",optimized:true,style:{\"--extracted-1eung3n\":\"var(--token-cc0cba5c-ada8-43a1-be29-fb321c3e5170, rgb(224, 225, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12fl2kb\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"U0vASaHe1\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-m4jcu.framer-zla4lg, .framer-m4jcu .framer-zla4lg { display: block; }\",\".framer-m4jcu.framer-ez2p8h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 16px 80px 16px 80px; position: relative; width: 1200px; }\",\".framer-m4jcu .framer-1ig9fpg, .framer-m4jcu .framer-ac91it { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-m4jcu .framer-rlgjj4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-m4jcu .framer-4qb4xh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 36px; }\",\".framer-m4jcu .framer-dllpni { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-m4jcu .framer-1cwtby9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-m4jcu .framer-liymv5-container, .framer-m4jcu .framer-8u4081-container, .framer-m4jcu .framer-jvnwl-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-m4jcu .framer-crq44s { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m4jcu .framer-1lcjpso, .framer-m4jcu .framer-1g5swkk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 1px; }\",\".framer-m4jcu .framer-4suxop-container, .framer-m4jcu .framer-13vf0tr-container, .framer-m4jcu .framer-czhkbx-container, .framer-m4jcu .framer-1b5z75y-container, .framer-m4jcu .framer-1e34ye3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-m4jcu .framer-1to5hzm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 240px; will-change: var(--framer-will-change-override, transform); }\",\".framer-m4jcu .framer-18djg5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-m4jcu .framer-1un7pkg { flex: none; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-m4jcu .framer-9uy3cc { bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; left: 0px; position: absolute; right: 0px; top: 0px; width: calc(100% - 0px); }\",\".framer-m4jcu .framer-pn6zn4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-m4jcu .framer-e8l86f, .framer-m4jcu .framer-18r96mb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-m4jcu .framer-co7y2c, .framer-m4jcu .framer-1da60d1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-m4jcu .framer-eu7mgz, .framer-m4jcu .framer-1qqhtg3, .framer-m4jcu .framer-h5ow9k, .framer-m4jcu .framer-14rfqgn, .framer-m4jcu .framer-jmbbc5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-m4jcu .framer-9z5pmf, .framer-m4jcu .framer-1m79xof { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-m4jcu .framer-12fl2kb { bottom: 0px; flex: none; height: 1px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\".framer-m4jcu.framer-v-26nzmr.framer-ez2p8h { width: 810px; }\",\".framer-m4jcu.framer-v-ckipsr.framer-ez2p8h, .framer-m4jcu.framer-v-1bkjs54.framer-ez2p8h { padding: 16px 20px 16px 20px; width: 390px; }\",\".framer-m4jcu.framer-v-ckipsr .framer-rlgjj4, .framer-m4jcu.framer-v-ckipsr .framer-jvnwl-container, .framer-m4jcu.framer-v-18g69z1 .framer-jvnwl-container, .framer-m4jcu.framer-v-1bkjs54 .framer-rlgjj4 { order: 0; }\",\".framer-m4jcu.framer-v-ckipsr .framer-18djg5p, .framer-m4jcu.framer-v-1bkjs54 .framer-18djg5p { height: 38px; order: 1; }\",\".framer-m4jcu.framer-v-ckipsr .framer-1un7pkg, .framer-m4jcu.framer-v-18g69z1 .framer-1un7pkg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; order: 1; padding: 0px; }\",\".framer-m4jcu.framer-v-ckipsr .framer-9uy3cc, .framer-m4jcu.framer-v-18g69z1 .framer-9uy3cc { bottom: unset; height: var(--framer-aspect-ratio-supported, 24px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-m4jcu.framer-v-18g69z1.framer-ez2p8h { align-content: flex-start; align-items: flex-start; gap: 32px; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 16px 20px 16px 20px; width: 390px; }\",\".framer-m4jcu.framer-v-18g69z1 .framer-1ig9fpg { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: center; order: 0; }\",\".framer-m4jcu.framer-v-18g69z1 .framer-ac91it, .framer-m4jcu.framer-v-18g69z1 .framer-9z5pmf, .framer-m4jcu.framer-v-18g69z1 .framer-1m79xof { flex: none; order: 0; width: 100%; }\",\".framer-m4jcu.framer-v-18g69z1 .framer-pn6zn4 { flex: none; flex-direction: column; order: 1; width: 100%; }\",\".framer-m4jcu.framer-v-18g69z1 .framer-e8l86f { flex: none; flex-direction: column; order: 0; width: 100%; }\",\".framer-m4jcu.framer-v-18g69z1 .framer-co7y2c, .framer-m4jcu.framer-v-18g69z1 .framer-1da60d1 { flex: none; order: 1; width: 100%; }\",\".framer-m4jcu.framer-v-18g69z1 .framer-18r96mb { flex: none; flex-direction: column; order: 2; width: 100%; }\",\".framer-m4jcu.framer-v-18g69z1 .framer-12fl2kb { order: 1; }\",\".framer-m4jcu.framer-v-1bkjs54 .framer-1un7pkg { cursor: pointer; order: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-m4jcu[data-border=\"true\"]::after, .framer-m4jcu [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zRTmDnJ4u\":{\"layout\":[\"fixed\",\"auto\"]},\"IqFiWZGCp\":{\"layout\":[\"fixed\",\"auto\"]},\"wotw6fFGv\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]},\"cf6aLoG6S\":{\"layout\":[\"fixed\",\"auto\"]},\"emG3wVBNf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdRQhts0tg=withCSS(Component,css,\"framer-m4jcu\");export default FramerdRQhts0tg;FramerdRQhts0tg.displayName=\"Navbar\";FramerdRQhts0tg.defaultProps={height:82,width:1200};addPropertyControls(FramerdRQhts0tg,{variant:{options:[\"E9RVuFzg9\",\"zRTmDnJ4u\",\"IqFiWZGCp\",\"wotw6fFGv\",\"cf6aLoG6S\",\"emG3wVBNf\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone-closed\",\"Phone-open\",\"Demo page\",\"Demp Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdRQhts0tg,[{explicitInter:true,fonts:[{family:\"Clash Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2SAK53YLUN7RMYJU4MYLSBV6SSSJEJZB/RXS4DPGJRKOUFZMF5X5BVUGNNKJT65XZ/DJS4RYGIUYUXJQOHY5VCZPKSTXUSHTSP.woff2\",weight:\"500\"},{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\"}]},...NavLinkFonts,...NavItemOverlayFonts,...CTABookADemoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdRQhts0tg\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"82\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zRTmDnJ4u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IqFiWZGCp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wotw6fFGv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]},\\\"cf6aLoG6S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"emG3wVBNf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dRQhts0tg.map"],
  "mappings": "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",
  "names": ["uuidv4", "c", "RollingText", "text", "transition", "stagger", "reverse", "font", "color", "textTransform", "tag", "padding", "isHovered", "setIsHovered", "ye", "innerClassName", "Tag", "fontSizeStr", "letterSpacingStr", "rawLineHeight", "fontFamily", "fontSizeNum", "absoluteLineHeightPx", "emValue", "pxValue", "absoluteLineHeightStr", "yOffset", "styles", "wrapperStyle", "spanVariants", "baseDuration", "staggerFactor", "u", "p", "str", "index", "charIndex", "delay", "motionSpanStyle", "motion", "defaultFont", "defaultTransition", "addPropertyControls", "ControlType", "RollingTextFonts", "getFonts", "RollingText", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "qDJJ07QMn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerJE5xaa8c2", "withCSS", "JE5xaa8c2_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "mask", "Base", "Y", "props", "ref", "p", "MotionSVG", "motion", "SVG", "animated", "layoutId", "children", "rest", "svg", "getProps", "alpha", "color", "height", "id", "width", "width1", "Component", "style", "className", "variant", "ezTt3ayMo", "lschgej4H", "qxTvv_EBh", "restProps", "href", "useSVGTemplate", "cx", "css", "Icon", "withCSS", "itu1soPCZ_default", "addPropertyControls", "ControlType", "mask", "Base", "Y", "props", "ref", "p", "MotionSVG", "motion", "SVG", "animated", "layoutId", "children", "rest", "svg", "getProps", "alpha", "color", "height", "id", "width", "width1", "Component", "style", "className", "variant", "ezTt3ayMo", "lschgej4H", "qxTvv_EBh", "restProps", "href", "useSVGTemplate", "cx", "css", "Icon", "withCSS", "q95pf4lLL_default", "addPropertyControls", "ControlType", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "hover", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "cscE_qLCU", "S4Y7eABDL", "ufNQw5JUm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1x87ask", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FramerHidpv9_80", "withCSS", "Hidpv9_80_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "description", "height", "icon", "id", "link", "title", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Nqb4kUp2a", "znjq8hj7r", "waHesuExS", "kJAbaonzf", "bxu74NhJ_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramersD1kV62xG", "withCSS", "sD1kV62xG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavLinkFonts", "getFonts", "Hidpv9_80_default", "NavItemOverlayFonts", "sD1kV62xG_default", "MotionDivWithFX", "withFX", "motion", "CTABookADemoFonts", "JE5xaa8c2_default", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "transition8", "animation9", "transition9", "animation10", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "cscE_qLCUtxyyif", "overlay", "loadMore", "args", "onTapwh2oqz", "onTap1w9j2lv", "scopingClassNames", "cx", "isDisplayed", "ref1", "ref2", "router", "useRouter", "ref3", "ref4", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "l", "ComponentViewportProvider", "SmartComponentScopedContainer", "AnimatePresence", "Floating", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "overlay1", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "Instance", "itu1soPCZ_default", "q95pf4lLL_default", "css", "FramerdRQhts0tg", "withCSS", "dRQhts0tg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
