{"version":3,"file":"EIa7lzreq.CVeLAIV4.mjs","names":["useLayoutEffect","useEffect","Input","value","Indicators","Select","css","className","Image"],"sources":["https:/framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0","https:/framerusercontent.com/modules/kpe7auPRGuDOzCOGe8KB/6jSrvE7Westfv99U1PXL/Input_2.js","https:/framerusercontent.com/modules/J997ctdlA9PWmyZgisN7/TFoBfEJFO89EyjQ7AD1P/Loading_1.js","https:/framerusercontent.com/modules/NW1bDPqS50s4bGhfe159/GDa1u7FnGslFbU2VqTKe/Select_5.js","https:/framerusercontent.com/modules/WZt6nDGyUEScvcns5tl3/bZmT9vGpaGHoa3eYNKzX/VL9KDhx3_.js","https:/framerusercontent.com/modules/9TPhQgse5DTzJ1fpHRbp/hXhZJz2lHr2Arooh7fEH/EIa7lzreq.js"],"sourcesContent":["import{useLayoutEffect,useEffect}from\"react\";/**\n * Swaps `useLayoutEffect` for `useEffect` on the server to avoid React warnings.\n * NOTE! The effect won't run on the server.\n */ export const useIsomorphicLayoutEffect=typeof document!==\"undefined\"?useLayoutEffect:useEffect;\nexport const __FramerMetadata__ = {\"exports\":{\"useIsomorphicLayoutEffect\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useIsomorphicLayoutEffect.map","import{jsx as _jsx}from\"react/jsx-runtime\";// @ts-ignore\nimport{ControlType,addPropertyControls,withCSS}from\"framer\";import{useCallback,useEffect,useRef,useMemo}from\"react\";import{fontStack,fontControls,fontSizeOptions,useOnEnter,useFontControls,useIsInPreview,usePadding,useRadius,paddingControl,borderRadiusControl,useControlledState}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useIsomorphicLayoutEffect}from\"https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0\";/**\n * INPUT\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export const Input=withCSS(function Input(props){const{placeholder,backgroundColor,textColor,border,borderWidth,password,onSubmit,onFocus,onBlur,value,textAlign,multiLine,placeholderColor,focused,inputStyle,caretColor,fontFamily,blurOnSubmit,disabled,keyboard,truncate,onChange,onValueChange,maxLength,lineHeight,enableLimit,isRTL,style}=props;const[inputValue,setValue]=useControlledState(value);const inputEle=useRef();const Tag=useMemo(()=>multiLine?\"textarea\":\"input\",[multiLine]);const inPreview=useIsInPreview();const fontStyles=useFontControls(props);const paddingValue=usePadding(props);const borderRadius=useRadius(props);const handleChange=useCallback(event=>{const element=multiLine?event.nativeEvent.target:event.nativeEvent.target;const value=element.value;setValue(value);if(onChange)onChange(value);if(onValueChange)onValueChange(value);},[onChange,multiLine]);useOnEnter(()=>{if(inPreview&&focused)inputEle.current.focus();});useEffect(()=>{if(inPreview&&focused)inputEle.current.focus();},[focused]);useIsomorphicLayoutEffect(()=>{// I only want to control my own height is auto-sizing is enabled\nif(multiLine&&props.style.height!==\"100%\"){// Autosizing hack for multi-line textareas, may have perf impact\ninputEle.current.style.height=\"auto\";inputEle.current.style.height=inputEle.current.scrollHeight+\"px\";}},[inputValue,multiLine,style===null||style===void 0?void 0:style.height,placeholder]);return /*#__PURE__*/_jsx(Tag,{onChange:handleChange,ref:inputEle,value:inputValue,placeholder:placeholder,onKeyDown:e=>{if(e.keyCode===13){if(blurOnSubmit&&inputEle.current)inputEle.current.blur();if(onSubmit)onSubmit();}},disabled:disabled,onFocus:()=>{if(onFocus)onFocus();},onBlur:()=>{if(onBlur)onBlur();},maxLength:enableLimit?maxLength:524288,autoFocus:inPreview&&focused,className:\"framer-default-input\",rows:1,style:{\"--framer-default-input-border-width\":`${props.borderWidth}px`,\"--framer-default-input-border-color\":props.focusColor,\"--framer-default-input-placeholder-color\":props.placeholderColor,...baseInputStyles,color:textColor,backgroundColor,borderRadius,textAlign,lineHeight,caretColor,margin:0,display:\"flex\",height:\"auto\",padding:paddingValue,direction:isRTL?\"rtl\":\"ltr\",overflow:\"show\",textOverflow:truncate?\"ellipsis\":\"unset\",boxShadow:!inPreview&&focused?`inset 0 0 0 ${props.borderWidth}px ${props.focusColor}`:`inset 0 0 0 ${borderWidth}px ${border}`,...inputStyle,...style,...fontStyles},type:password?\"password\":\"text\",inputMode:keyboard});},[\".framer-default-input { --framer-default-input-border-width: 1px; --framer-default-input-border-color: #09f; --framer-default-input-placeholder-color: #aaa; }\",\".framer-default-input:focus { box-shadow: inset 0 0 0 var(--framer-default-input-border-width) var(--framer-default-input-border-color) !important; }\",\".framer-default-input::placeholder { color: var(--framer-default-input-placeholder-color) !important; }\"]);Input.defaultProps={value:\"\",placeholder:\"Type something…\",width:260,height:50,backgroundColor:\"#EBEBEB\",textColor:\"#333\",focusColor:\"#09F\",fontSize:16,fontWeight:400,borderRadius:8,lineHeight:1.4,padding:15,border:\"rgba(0,0,0,0)\",placeholderColor:\"#aaa\",borderWidth:1,truncate:false,alignment:\"left\",caretColor:\"#333\",multiLine:false,maxLength:10,password:false,keyboard:\"\"};addPropertyControls(Input,{placeholder:{type:ControlType.String,title:\"Placeholder\"},value:{type:ControlType.String,title:\"Value\"},textColor:{type:ControlType.Color,title:\"Text\"},caretColor:{type:ControlType.Color,title:\"Caret\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder\"},backgroundColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Color,title:\"Border\"},borderWidth:{type:ControlType.Number,title:\" \",min:1,max:5,displayStepper:true},focusColor:{type:ControlType.Color,title:\"Focus\"},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},...fontControls,fontSize:{...fontSizeOptions},lineHeight:{type:ControlType.Number,min:0,step:.1,max:2,displayStepper:true},...paddingControl,...borderRadiusControl,textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},isRTL:{type:ControlType.Boolean,title:\"Direction\",enabledTitle:\"RTL\",disabledTitle:\"LTR\",defaultValue:false},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},multiLine:{type:ControlType.Boolean,title:\"Text Area\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},truncate:{type:ControlType.Boolean,title:\"Truncate\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\",hidden:({multiLine})=>multiLine},password:{type:ControlType.Boolean,title:\"Password\",hidden:({multiLine})=>multiLine,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},enableLimit:{title:\"Limit\",type:ControlType.Boolean,displayStepper:true,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},maxLength:{title:\" \",type:ControlType.Number,// @ts-ignore\ndefaultValue:Input.defaultProps.maxLength,displayStepper:true,min:1,hidden:({enableLimit})=>!enableLimit},keyboard:{type:ControlType.Enum,title:\"Keyboard\",defaultValue:\"\",options:[\"\",\"numeric\",\"tel\",\"decimal\",\"email\",\"url\",\"search\"],optionTitles:[\"Default\",\"Numeric\",\"Phone\",\"Decimal\",\"Email\",\"URL\",\"Search\"]},onChange:{type:ControlType.EventHandler},onSubmit:{type:ControlType.EventHandler},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler}});const baseInputStyles={pointerEvents:\"auto\",border:\"none\",width:\"100%\",boxSizing:\"border-box\",outline:\"none\",resize:\"none\",margin:0,fontFamily:fontStack,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitAppearance:\"none\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"260\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_2.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{useRef,useEffect}from\"react\";import{addPropertyControls,ControlType,useAnimation,motion}from\"framer\";import{defaultEvents,useOnEnter,useOnExit}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var Indicators;(function(Indicators){Indicators[\"DotWave\"]=\"Dots\";Indicators[\"Material\"]=\"Material\";Indicators[\"IOS\"]=\"iOS\";})(Indicators||(Indicators={}));const angleInRadians=angleInDegrees=>(angleInDegrees-90)*(Math.PI/180);const polarToCartesian=(centerX,centerY,radius,angleInDegrees)=>{const a=angleInRadians(angleInDegrees);return{x:centerX+radius*Math.cos(a),y:centerY+radius*Math.sin(a)};};const arc=(x,y,radius,startAngle,endAngle)=>{const fullCircle=endAngle-startAngle===360;const start=polarToCartesian(x,y,radius,endAngle-.01);const end=polarToCartesian(x,y,radius,startAngle);const arcFlag=endAngle-startAngle<=180?\"0\":\"1\";let d=[\"M\",start.x,start.y,\"A\",radius,radius,0,arcFlag,0,end.x,end.y].join(\" \");if(fullCircle)d+=\"z\";return d;};function Spinner({color}){const length=360;const endPercentage=length/360*100;const strokeWidth=10;const width=100;const height=100;return /*#__PURE__*/_jsxs(motion.div,{style:{height:\"85%\",width:\"85%\",position:\"relative\",originX:.5,originY:.5},animate:{rotate:360},transition:{loop:Infinity,ease:\"linear\",duration:.5},children:[/*#__PURE__*/_jsx(motion.svg,{style:{height:\"100%\",width:\"100%\",top:0,left:0,right:0,bottom:0,position:\"absolute\",WebkitMask:`conic-gradient(rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0,1.0) ${endPercentage}%)`},viewBox:\"0 0 100 100\",children:/*#__PURE__*/_jsx(\"g\",{transform:\"translate(0 0)\",children:/*#__PURE__*/_jsx(\"path\",{d:arc(width/2,height/2,width/2-strokeWidth/2,0,length),fill:\"none\",stroke:color,strokeWidth:strokeWidth,strokeLinecap:\"round\"})})}),/*#__PURE__*/_jsx(motion.svg,{style:{height:\"100%\",width:\"100%\",position:\"absolute\"},viewBox:\"0 0 100 100\",children:/*#__PURE__*/_jsx(\"g\",{transform:\"translate(50 0)\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 0 0 C 2.761 0 5 2.239 5 5 C 5 7.761 2.761 10 0 10 C 0 10 0 0 0 0 Z\",fill:color})})})]});}// <path d=\"M 0 0 C 2.761 0 5 2.239 5 5 C 5 7.761 2.761 10 0 10 C 0 10 0 0 0 0 Z\" fill=\"#CCC\"></path>\n// function Spinner({ color }) {\n//     return (\n//         <svg style={{ height: \"85%\", width: \"85%\" }} viewBox=\"0 0 100 100\">\n//             <motion.g\n//                 transform=\"translate(3 3)\"\n//                 animate={{ rotate: 360 }}\n//                 transition={{ loop: Infinity, ease: \"linear\", duration: 1 }}\n//             >\n//                 {pathStrings.map((data, i) => {\n//                     return <path d={data} fill={color} opacity={i / pathStrings.length} />\n//                 })}\n//             </motion.g>\n//         </svg>\n//     )\n// }\nfunction DotWave({color,animation}){const circles=[0,1,2];const{delay,ease,duration,...animProps}=animation;const transition=animation.type===\"spring\"?animProps:{...animProps,ease,duration};// console.log(animProps)\nreturn /*#__PURE__*/_jsx(motion.svg,{style:{height:\"85%\",width:\"85%\"},viewBox:\"0 0 30 30\",variants:{show:{transition:{delayChildren:.1,staggerChildren:.12}}},animate:\"show\",children:circles.map(circle=>/*#__PURE__*/_jsx(motion.circle,{style:{fill:color},variants:{hidden:{y:0},show:{y:[0,0,0,-10,0,0,0]}},transition:{...transition,yoyo:Infinity},r:3,cx:circle*10+5,cy:15},circle))});}function Material({color,animation}){return /*#__PURE__*/_jsx(motion.svg,{style:{height:\"85%\",width:\"85%\",overflow:\"visible\",originX:\"50%\",originY:\"50%\"},animate:{rotate:360},transition:{ease:\"linear\",loop:Infinity,duration:2},viewBox:\"25 25 50 50\",children:/*#__PURE__*/_jsx(motion.circle,{style:{stroke:color,strokeLinecap:\"round\"},animate:{strokeDasharray:[\"1, 200\",\"89, 200\",\"89, 200\"],strokeDashoffset:[0,-35,-124]},transition:{...animation,loop:Infinity,ease:\"easeInOut\"},cx:\"50\",cy:\"50\",r:\"20\",fill:\"none\",strokeWidth:2,strokeMiterlimit:\"10\"})});}function IOS({color,animation}){const particles=12;// this was the death of me\nconst arrayRotate=(arr,n)=>arr.slice(n,arr.length).concat(arr.slice(0,n));const lines=[...new Array(particles)].map((l,i)=>.9/particles*i+.1).reverse();const lineOpacities=lines.map((l,i)=>arrayRotate(lines,i));return /*#__PURE__*/_jsx(motion.svg,{viewBox:\"-15 -15 30 30\",style:{width:\"100%\",height:\"100%\"},children:lineOpacities.map((lineKeyframes,i)=>/*#__PURE__*/_jsx(motion.g,{initial:{opacity:lineKeyframes[0]},animate:{opacity:lineKeyframes},transition:{...animation,loop:Infinity,repeatDelay:5e-4},children:/*#__PURE__*/_jsx(\"rect\",{style:{width:7,height:2,fill:color,transform:`rotate(${(particles-i)/particles*360-90}deg)`},x:5,y:-1,rx:1})},i))});}function getIndicator(indicator,props){switch(indicator){case\"Dots\":return /*#__PURE__*/_jsx(DotWave,{...props});case\"Material\":return /*#__PURE__*/_jsx(Material,{...props});case\"iOS\":return /*#__PURE__*/_jsx(IOS,{...props});// case Indicators.Spinner:\n//     return <Spinner {...props} />\ndefault:return /*#__PURE__*/_jsx(DotWave,{...props});}}export function handleTimeout(duration,callback){const id=setTimeout(callback,duration*1e3);return()=>clearTimeout(id);}/**\n * Loading\n *\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Loading(props){const{duration,onTimeout,fadeOut,hasDuration,indicator,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,style}=props;const controls=useAnimation();const animDuration=fadeOut?Math.min(duration,.35):0;const animDelay=fadeOut?duration-animDuration:duration;const currentIndicator=getIndicator(indicator,props);const handlers=useRef([]);const onFadeOut=React.useCallback(()=>{if(hasDuration)controls.start({opacity:0,transition:{duration:animDuration,ease:\"easeIn\"}});},[hasDuration,animDuration]);const resetOpacity=async()=>{controls.set({opacity:1});};useOnEnter(()=>{resetOpacity();if(hasDuration)handlers.current=[handleTimeout(duration,onTimeout),handleTimeout(animDelay,onFadeOut)];});// Cancel all timers on exit.\nuseOnExit(()=>handlers.current.forEach(cleanup=>cleanup));// Cancel all timers on unmount.\nuseEffect(()=>()=>handlers.current.forEach(cleanup=>cleanup),[]);return /*#__PURE__*/_jsx(motion.div,{onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,animate:controls,style:{position:\"relative\",overflow:\"show\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",...style},children:currentIndicator});}Loading.defaultProps={height:40,width:40,duration:2,color:\"#888\",animation:{type:\"tween\",ease:\"linear\",duration:1.3},hasDuration:false};// Learn more: https://framer.com/api/property-controls/\naddPropertyControls(Loading,{indicator:{title:\"Indicator\",type:ControlType.Enum,options:Object.keys(Indicators).map(i=>Indicators[i])},color:{type:ControlType.Color,defaultValue:\"#888\"},// transition: { title: \"Animation\", type: ControlType.Transition },\nhasDuration:{title:\"Duration\",type:ControlType.Boolean,defaultValue:Loading.defaultProps.hasDuration,enabledTitle:\"Timeout\",disabledTitle:\"Infinity\"},duration:{title:\"Time\",hidden:({hasDuration})=>!hasDuration,min:.1,max:10,defaultValue:Loading.defaultProps.duration,type:ControlType.Number,step:.1},animation:{type:ControlType.Transition},fadeOut:{title:\"Fade Out\",hidden:({hasDuration})=>!hasDuration,type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},onTimeout:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Loading\":{\"type\":\"reactComponent\",\"name\":\"Loading\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"40\"}},\"handleTimeout\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Loading_1.map","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{getVariantControls,fontSizeOptions,fontControls,useFontControls,usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * SELECT\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export const Select=withCSS(function Select(props){const{disabled,focused,options=[],defaultTextColor,defaultIconColor,defaultBackgroundColor,defaultBorderColor,defaultBorderWidth,focusTextColor,focusIconColor,focusBackgroundColor,focusBorderColor,focusBorderWidth,disabledTextColor,disabledIconColor,disabledBackgroundColor,disabledBorderColor,disabledBorderWidth,disabledOpacity,radius,fontSize,fontFamily,fontWeight,value,variant,onFocus,onBlur,onChange,onSelectOption1,onSelectOption2,onSelectOption3,onSelectOption4,onSelectOption5,onSelectOption6,onSelectOption7,onSelectOption8,onSelectOption9,onSelectOption10,style,padding,...rest}=props;const[currentValue,setCurrentValue]=React.useState(value-1);const isInPreview=RenderTarget.current()===RenderTarget.preview;const handleSelectChange=React.useCallback(event=>{const index=parseInt(event.currentTarget.value,10);const label=options[index];// This shouldn't happen!\nif(!label){console.error(`Could not find option label at index ${index}`);}setCurrentValue(index);if(onChange){onChange(index,label);}switch(index){case 0:onSelectOption1();break;case 1:onSelectOption2();break;case 2:onSelectOption3();break;case 3:onSelectOption4();break;case 4:onSelectOption5();break;case 5:onSelectOption6();break;case 6:onSelectOption7();break;case 7:onSelectOption8();break;case 8:onSelectOption9();break;case 9:onSelectOption10();break;}},[options,onSelectOption1,onSelectOption2,onSelectOption3,onSelectOption4,onSelectOption5,onSelectOption6,onSelectOption7,onSelectOption8,onSelectOption9,onSelectOption10]);const handleFocus=React.useCallback(()=>{if(onFocus){onFocus();}},[onFocus]);const handleBlur=React.useCallback(()=>{if(onBlur){onBlur();}},[onBlur]);React.useEffect(()=>setCurrentValue(value-1),[value]);const variants={default:{backgroundColor:defaultBackgroundColor,caretColor:defaultTextColor,color:defaultTextColor,boxShadow:`inset 0 0 0 ${defaultBorderWidth}px ${defaultBorderColor}`},disabled:{backgroundColor:disabledBackgroundColor,color:disabledTextColor,caretColor:disabledTextColor,boxShadow:`inset 0 0 0 ${disabledBorderWidth}px ${disabledBorderColor}`,opacity:disabledOpacity/100},focus:{backgroundColor:focusBackgroundColor,color:focusTextColor,caretColor:focusTextColor,boxShadow:`inset 0 0 0 ${focusBorderWidth}px ${focusBorderColor}`}};const currentVariantStyle=disabled?variants.disabled:variants[variant];const fontStyles=useFontControls(props);const paddingValue=usePadding(props);return /*#__PURE__*/_jsx(\"select\",{className:\"framer-default-select\",disabled:variant===\"disabled\"||disabled,autoFocus:focused&&isInPreview,style:{...selectStyles,...fontStyles,...style,\"--framer-default-select-focus-background-color\":variants.focus.backgroundColor,\"--framer-default-select-focus-color\":variants.focus.color,\"--framer-default-select-focus-box-shadow\":variants.focus.boxShadow,\"--framer-default-select-disabled-color\":variants.disabled.opacity,padding:paddingValue,borderRadius:radius,fontSize,backgroundImage:`url(\"data:image/svg+xml,${encodeURIComponent(`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n                        <path d=\"M 0 9 L 4.5 4.5 L 0 0\" transform=\"translate(5.75 3.75) rotate(90 2.25 4.5)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"${defaultIconColor}\" stroke-linecap=\"round\"></path>\n                      </svg>`)}\")`,...currentVariantStyle},value:currentValue,onChange:handleSelectChange,onFocus:handleFocus,onBlur:handleBlur,children:options.map((option,index)=>/*#__PURE__*/_jsx(\"option\",{value:index,children:option},`option-${index}`))});},[\".framer-default-select:focus {background-color: var(--framer-default-select-focus-background-color);color: var(--framer-default-select-focus-color);box-shadow: var(--framer-default-select-focus-box-shadow);}\",\".framer-default-select:disabled {opacity: var(--framer-default-select-disabled-color);cursor:default;}\"]);Select.defaultProps={height:50,width:140,value:1,disabled:false,focused:false,defaultTextColor:\"#444444\",defaultIconColor:\"#999999\",defaultBackgroundColor:\"#EBEBEB\",defaultBorderColor:\"#09F\",defaultBorderWidth:0,focusTextColor:\"#444444\",focusIconColor:\"#999999\",focusBackgroundColor:\"#f2f2f2\",focusBorderColor:\"#09F\",focusBorderWidth:1,disabledTextColor:\"#444444\",disabledIconColor:\"#999999\",disabledBackgroundColor:\"#f2f2f2\",disabledBorderColor:\"#09F\",disabledBorderWidth:0,disabledOpacity:60,radius:8,padding:10,paddingPerSide:true,paddingTop:15,paddingRight:50,paddingBottom:15,paddingLeft:15,fontWeight:500,fontSize:16,options:[\"Option 1\",\"Option 2\"],onChange:(index,label)=>{},onFocus:()=>{},onBlur:()=>{},onSelectOption1:(index,label)=>{},onSelectOption2:(index,label)=>{},onSelectOption3:(index,label)=>{},onSelectOption4:(index,label)=>{},onSelectOption5:(index,label)=>{},onSelectOption6:(index,label)=>{},onSelectOption7:(index,label)=>{},onSelectOption8:(index,label)=>{},onSelectOption9:(index,label)=>{},onSelectOption10:(index,label)=>{}};const selectStyles={pointerEvents:\"auto\",WebkitAppearance:\"none\",appearance:\"none\",position:\"relative\",border:\"none\",margin:0,cursor:\"pointer\",outline:0,outlineWidth:0,display:\"inline-block\",backgroundRepeat:\"no-repeat\",boxSizing:\"border-box\",backgroundPosition:\"right 15px center\",paddingLeft:15,paddingRight:15};addPropertyControls(Select,{value:{type:ControlType.Number,title:\"Default\",min:1,displayStepper:true,step:1,defaultValue:Select.defaultProps.value},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:Select.defaultProps.disabled,enabledTitle:\"Yes\",disabledTitle:\"No\"},variant:{title:\"Variant\",type:ControlType.Enum,options:[\"default\",\"focus\",\"disabled\"],optionTitles:[\"Default\",\"Focus\",\"Disabled\"]},...getVariantControls(Select,\"default\"),...getVariantControls(Select,\"focus\"),...getVariantControls(Select,\"disabled\",{disabledOpacity:{title:\"Opacity\",type:ControlType.Number,min:0,max:100,unit:\"%\",defaultValue:Select.defaultProps.disabledOpacity,hidden:props=>props.variant!==\"disabled\"}}),...paddingControl,radius:{title:\"Radius\",type:ControlType.FusedNumber,defaultValue:Select.defaultProps.radius,toggleKey:\"isMixed\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},...fontControls,fontSize:{...fontSizeOptions,defaultValue:Select.defaultProps.fontSize},fontWeight:{...fontControls.fontWeight,defaultValue:Select.defaultProps.fontWeight},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:Select.defaultProps.focused,enabledTitle:\"Yes\",disabledTitle:\"No\"},options:{type:ControlType.Array,title:\"Options\",defaultValue:Select.defaultProps.options,propertyControl:{type:ControlType.String,placeholder:\"Option…\"}},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler},onSelectOption1:{type:ControlType.EventHandler},onSelectOption2:{type:ControlType.EventHandler},onSelectOption3:{type:ControlType.EventHandler},onSelectOption4:{type:ControlType.EventHandler},onSelectOption5:{type:ControlType.EventHandler},onSelectOption6:{type:ControlType.EventHandler},onSelectOption7:{type:ControlType.EventHandler},onSelectOption8:{type:ControlType.EventHandler},onSelectOption9:{type:ControlType.EventHandler},onSelectOption10:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"Select\":{\"type\":\"reactComponent\",\"name\":\"Select\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"140\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Select_5.map","import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-hCwZn .framer-styles-preset-71wtd5:not(.rich-text-wrapper), .framer-hCwZn .framer-styles-preset-71wtd5.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-d756aace-4e08-4219-8a32-a4d9841ee41e, #ffffff); --framer-link-text-decoration: underline; }\"];export const className=\"framer-hCwZn\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/cGBHXozmXUtcAABEfMAq/Hubspot.js\";import{generic_tracking,track_book_expert}from\"https://framerusercontent.com/modules/LgCs8oqN8F9BBTB8SwZM/7eEBJMl16DREZVtwJFqh/Add_ID_trackers.js\";import{withTogglePositionHome}from\"https://framerusercontent.com/modules/57T5qW4OiZMGKbgyACwd/ULbBcUFLvrXrGjnyi0jT/AISection.js\";import{Input}from\"https://framerusercontent.com/modules/kpe7auPRGuDOzCOGe8KB/6jSrvE7Westfv99U1PXL/Input_2.js\";import{Loading}from\"https://framerusercontent.com/modules/J997ctdlA9PWmyZgisN7/TFoBfEJFO89EyjQ7AD1P/Loading_1.js\";import{Select}from\"https://framerusercontent.com/modules/NW1bDPqS50s4bGhfe159/GDa1u7FnGslFbU2VqTKe/Select_5.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/WZt6nDGyUEScvcns5tl3/bZmT9vGpaGHoa3eYNKzX/VL9KDhx3_.js\";const SelectFonts=getFonts(Select);const InputFonts=getFonts(Input);const EmbedFonts=getFonts(Embed);const LoadingFonts=getFonts(Loading);const HubSpotFormFonts=getFonts(HubSpotForm);const MotionDivGeneric_trackingqlrm89=withCodeBoundaryForOverrides(motion.div,{nodeId:\"I22:1644;204:11340\",override:generic_tracking,scopeId:\"EIa7lzreq\"});const MotionDivGeneric_tracking1rjqtkh=withCodeBoundaryForOverrides(motion.div,{nodeId:\"lzTidNtGt\",override:generic_tracking,scopeId:\"EIa7lzreq\"});const RichTextTrack_book_expert13vc93y=withCodeBoundaryForOverrides(RichText,{nodeId:\"I22:1644;204:19810\",override:track_book_expert,scopeId:\"EIa7lzreq\"});const MotionDivGeneric_tracking1vi5dhd=withCodeBoundaryForOverrides(motion.div,{nodeId:\"I22:1644;204:19677\",override:generic_tracking,scopeId:\"EIa7lzreq\"});const RichTextWithTogglePositionHome1gnuge4=withCodeBoundaryForOverrides(RichText,{nodeId:\"I22:1644;204:19849\",override:withTogglePositionHome,scopeId:\"EIa7lzreq\"});const cycleOrder=[\"ifyo_zl7P\",\"zkecmXv3X\",\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"KEcnciUpZ\",\"r5NME5GL3\",\"nNyHcWc10\",\"Bx_PnpsPp\",\"mxd1tAkdF\",\"YlI30mhCn\",\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"];const serializationHash=\"framer-VEF1p\";const variantClassNames={Bx_PnpsPp:\"framer-v-itjv0e\",cManqmx7p:\"framer-v-19nh5kz\",deFkV7Xof:\"framer-v-77v20\",Gdo18QINl:\"framer-v-18uv4qt\",GPwqVgXv_:\"framer-v-1hhnnk5\",HW8bLvfxY:\"framer-v-o7pcsu\",ifyo_zl7P:\"framer-v-2uleqq\",Ju_aAM_4A:\"framer-v-q57rs7\",KEcnciUpZ:\"framer-v-3iytix\",MCBSxdS2b:\"framer-v-4kvb38\",mxd1tAkdF:\"framer-v-18p0hej\",N8HSddbmT:\"framer-v-173x2xn\",nNyHcWc10:\"framer-v-1b34zn6\",nx7Z7CGf2:\"framer-v-1xnmvc0\",PRc25eKF4:\"framer-v-1997vb6\",PuOeFLzb4:\"framer-v-dkd0po\",qMHH26X1m:\"framer-v-1wqocu1\",r5NME5GL3:\"framer-v-zswkxu\",s0Uv500xq:\"framer-v-58j74a\",San5hVE9n:\"framer-v-fufi9i\",t81cxxbaZ:\"framer-v-jmo0rp\",tbJdfbJrw:\"framer-v-ahwsr2\",U422H5rig:\"framer-v-f642y8\",VijhG3n2j:\"framer-v-j06k9w\",Wd30Mwqll:\"framer-v-1w2q3q5\",xKlmQYvTQ:\"framer-v-1owwy0a\",YlI30mhCn:\"framer-v-vqjyv2\",YT8x2e3Hg:\"framer-v-sl73q\",zjTBiJKxp:\"framer-v-e8ev98\",zkecmXv3X:\"framer-v-o0yqgq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={\"loading option 2\":\"xKlmQYvTQ\",\"loading option 3\":\"U422H5rig\",\"loading option 4\":\"s0Uv500xq\",\"loading option 5\":\"GPwqVgXv_\",\"loading option 6\":\"Bx_PnpsPp\",\"loading option 7\":\"mxd1tAkdF\",\"Mobile : default\":\"PuOeFLzb4\",\"mobile : form\":\"deFkV7Xof\",\"Mobile : loading form\":\"San5hVE9n\",\"mobile : loading option 2 \":\"N8HSddbmT\",\"mobile : loading option 3\":\"t81cxxbaZ\",\"mobile : loading option 4\":\"Wd30Mwqll\",\"mobile : loading option 5\":\"tbJdfbJrw\",\"mobile : loading option 6\":\"Gdo18QINl\",\"mobile : option 2\":\"zjTBiJKxp\",\"mobile : option 3\":\"YT8x2e3Hg\",\"mobile : option 4\":\"HW8bLvfxY\",\"mobile : option 5\":\"PRc25eKF4\",\"mobile : option 6\":\"qMHH26X1m\",\"mobile : option 7\":\"VijhG3n2j\",\"mobile: loading option 7\":\"Ju_aAM_4A\",\"option 2\":\"MCBSxdS2b\",\"option 3\":\"nx7Z7CGf2\",\"option 4\":\"cManqmx7p\",\"option 5\":\"KEcnciUpZ\",\"option 6\":\"nNyHcWc10\",\"option 7\":\"YlI30mhCn\",Default:\"ifyo_zl7P\",form:\"zkecmXv3X\",loading:\"r5NME5GL3\"};const getProps=({height,id,tap,width,...props})=>{return{...props,OG5wahFKB:tap??props.OG5wahFKB,variant:humanReadableVariantMap[props.variant]??props.variant??\"ifyo_zl7P\"};};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,OG5wahFKB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ifyo_zl7P\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfsm2h6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(OG5wahFKB){const res=await OG5wahFKB(...args);if(res===false)return false;}});const onAppear1wdvkqm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MCBSxdS2b\"),5e3);});const onAppearwkh3xg=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nx7Z7CGf2\"),5e3);});const onAppear1vf0x95=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"cManqmx7p\"),5e3);});const onAppear1n086t9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KEcnciUpZ\"),5e3);});const onAppear1y9sudf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zkecmXv3X\"),5e3);});const onAppearwthp3x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nNyHcWc10\"),5e3);});const onAppear176w9sv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YlI30mhCn\"),5e3);});const onAppearybeyek=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"deFkV7Xof\"),5e3);});const onAppear1x1mxwl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zjTBiJKxp\"),5e3);});const onAppeary8ynhc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YT8x2e3Hg\"),5e3);});const onAppearujry8y=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HW8bLvfxY\"),5e3);});const onAppearyfks7l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PRc25eKF4\"),5e3);});const onAppear1bjd22s=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qMHH26X1m\"),5e3);});const onAppear1k4r2ip=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VijhG3n2j\"),5e3);});const onSelectOption2js5agx=activeVariantCallback(async(...args)=>{setVariant(\"N8HSddbmT\");});const onSelectOption35lnaws=activeVariantCallback(async(...args)=>{setVariant(\"t81cxxbaZ\");});const onSelectOption412jfq7c=activeVariantCallback(async(...args)=>{setVariant(\"Wd30Mwqll\");});const onSelectOption5znh7l0=activeVariantCallback(async(...args)=>{setVariant(\"tbJdfbJrw\");});const onSelectOption67e9q0e=activeVariantCallback(async(...args)=>{setVariant(\"Gdo18QINl\");});const onSelectOption71n18s58=activeVariantCallback(async(...args)=>{setVariant(\"Ju_aAM_4A\");});const onTapveffz2=activeVariantCallback(async(...args)=>{setVariant(\"San5hVE9n\");});const onChange1cgpnk5=activeVariantCallback(async(...args)=>{setVariant(\"ifyo_zl7P\");});const onSelectOption11cgpnk5=activeVariantCallback(async(...args)=>{setVariant(\"ifyo_zl7P\");});const onSelectOption2abm6jj=activeVariantCallback(async(...args)=>{setVariant(\"xKlmQYvTQ\");});const onSelectOption3ok93gw=activeVariantCallback(async(...args)=>{setVariant(\"U422H5rig\");});const onSelectOption41xqpo69=activeVariantCallback(async(...args)=>{setVariant(\"s0Uv500xq\");});const onSelectOption51y0qu9e=activeVariantCallback(async(...args)=>{setVariant(\"GPwqVgXv_\");});const onSelectOption6ycvqn2=activeVariantCallback(async(...args)=>{setVariant(\"Bx_PnpsPp\");});const onSelectOption79fi0jf=activeVariantCallback(async(...args)=>{setVariant(\"mxd1tAkdF\");});const onTapn8d6j7=activeVariantCallback(async(...args)=>{setVariant(\"r5NME5GL3\");});const onTap12y29ao=activeVariantCallback(async(...args)=>{setVariant(\"MCBSxdS2b\");});const onTapb215ga=activeVariantCallback(async(...args)=>{setVariant(\"zkecmXv3X\");});useOnVariantChange(baseVariant,{Bx_PnpsPp:onAppearwthp3x,Gdo18QINl:onAppear1bjd22s,GPwqVgXv_:onAppear1n086t9,Ju_aAM_4A:onAppear1k4r2ip,mxd1tAkdF:onAppear176w9sv,N8HSddbmT:onAppear1x1mxwl,r5NME5GL3:onAppear1y9sudf,s0Uv500xq:onAppear1vf0x95,San5hVE9n:onAppearybeyek,t81cxxbaZ:onAppeary8ynhc,tbJdfbJrw:onAppearyfks7l,U422H5rig:onAppearwkh3xg,Wd30Mwqll:onAppearujry8y,xKlmQYvTQ:onAppear1wdvkqm});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"VijhG3n2j\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"qMHH26X1m\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"PRc25eKF4\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"HW8bLvfxY\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"YT8x2e3Hg\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"zjTBiJKxp\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"deFkV7Xof\")return true;return false;};const isDisplayed8=()=>{if([\"deFkV7Xof\",\"zjTBiJKxp\",\"YT8x2e3Hg\",\"HW8bLvfxY\",\"PRc25eKF4\",\"qMHH26X1m\",\"VijhG3n2j\"].includes(baseVariant))return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"PuOeFLzb4\")return false;return true;};const isDisplayed10=()=>{if([\"zjTBiJKxp\",\"YT8x2e3Hg\",\"HW8bLvfxY\",\"PRc25eKF4\",\"qMHH26X1m\",\"VijhG3n2j\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"San5hVE9n\",\"N8HSddbmT\",\"t81cxxbaZ\",\"Wd30Mwqll\",\"tbJdfbJrw\",\"Gdo18QINl\",\"Ju_aAM_4A\"].includes(baseVariant))return true;return false;};const isDisplayed12=()=>{if([\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"].includes(baseVariant))return false;return true;};const isDisplayed13=()=>{if([\"San5hVE9n\",\"N8HSddbmT\",\"t81cxxbaZ\",\"Wd30Mwqll\",\"tbJdfbJrw\",\"Gdo18QINl\",\"Ju_aAM_4A\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if([\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"].includes(baseVariant))return false;return true;};const isDisplayed15=()=>{if(baseVariant===\"zkecmXv3X\")return false;return true;};const isDisplayed16=()=>{if([\"nNyHcWc10\",\"YlI30mhCn\"].includes(baseVariant))return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"MCBSxdS2b\")return true;return false;};const isDisplayed18=()=>{if([\"nx7Z7CGf2\",\"cManqmx7p\",\"KEcnciUpZ\"].includes(baseVariant))return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"zkecmXv3X\")return true;return false;};const isDisplayed20=()=>{if([\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"r5NME5GL3\",\"Bx_PnpsPp\",\"mxd1tAkdF\"].includes(baseVariant))return true;return false;};const isDisplayed21=()=>{if([\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"KEcnciUpZ\"].includes(baseVariant))return true;return false;};const isDisplayed22=()=>{if([\"zkecmXv3X\",\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"KEcnciUpZ\",\"r5NME5GL3\",\"nNyHcWc10\",\"Bx_PnpsPp\",\"mxd1tAkdF\",\"YlI30mhCn\"].includes(baseVariant))return false;return true;};const isDisplayed23=()=>{if([\"nx7Z7CGf2\",\"cManqmx7p\",\"KEcnciUpZ\",\"nNyHcWc10\",\"YlI30mhCn\"].includes(baseVariant))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,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-2uleqq\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ifyo_zl7P\",onTap:onTapfsm2h6,ref:refBinding,style:{backgroundColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",...style},...addPropertyOverrides({Bx_PnpsPp:{\"data-framer-name\":\"loading option 6\"},cManqmx7p:{\"data-framer-name\":\"option 4\"},deFkV7Xof:{\"data-framer-name\":\"mobile : form\"},Gdo18QINl:{\"data-framer-name\":\"mobile : loading option 6\"},GPwqVgXv_:{\"data-framer-name\":\"loading option 5\"},HW8bLvfxY:{\"data-framer-name\":\"mobile : option 4\"},Ju_aAM_4A:{\"data-framer-name\":\"mobile: loading option 7\"},KEcnciUpZ:{\"data-framer-name\":\"option 5\"},MCBSxdS2b:{\"data-framer-name\":\"option 2\"},mxd1tAkdF:{\"data-framer-name\":\"loading option 7\"},N8HSddbmT:{\"data-framer-name\":\"mobile : loading option 2 \"},nNyHcWc10:{\"data-framer-name\":\"option 6\"},nx7Z7CGf2:{\"data-framer-name\":\"option 3\"},PRc25eKF4:{\"data-framer-name\":\"mobile : option 5\"},PuOeFLzb4:{\"data-framer-name\":\"Mobile : default\"},qMHH26X1m:{\"data-framer-name\":\"mobile : option 6\"},r5NME5GL3:{\"data-framer-name\":\"loading\",onTap:undefined},s0Uv500xq:{\"data-framer-name\":\"loading option 4\"},San5hVE9n:{\"data-framer-name\":\"Mobile : loading form\"},t81cxxbaZ:{\"data-framer-name\":\"mobile : loading option 3\"},tbJdfbJrw:{\"data-framer-name\":\"mobile : loading option 5\"},U422H5rig:{\"data-framer-name\":\"loading option 3\"},VijhG3n2j:{\"data-framer-name\":\"mobile : option 7\"},Wd30Mwqll:{\"data-framer-name\":\"mobile : loading option 4\"},xKlmQYvTQ:{\"data-framer-name\":\"loading option 2\"},YlI30mhCn:{\"data-framer-name\":\"option 7\"},YT8x2e3Hg:{\"data-framer-name\":\"mobile : option 3\"},zjTBiJKxp:{\"data-framer-name\":\"mobile : option 2\"},zkecmXv3X:{\"data-framer-name\":\"form\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hnabak\",layoutDependency:layoutDependency,layoutId:\"HjZNjkWvz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:[\"Turn any prompt \",/*#__PURE__*/_jsx(motion.br,{}),\"into ready-to-go flows\"]})}),className:\"framer-ox774d\",\"data-framer-name\":\"Turn any prompt \\u2028into ready-to-go workflows\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"eiNLnkExn\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Introducing our AI text-to-automation, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a complete tailored workspace with AI-generated flows.\"})}),className:\"framer-1vx0jgx\",\"data-framer-name\":\"Introducing our AI Agent, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a personalized workspace with AI-generated workflows.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KhUkkPEJf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bs67wr\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"XWIhwXB8b\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q9zs0x\",layoutDependency:layoutDependency,layoutId:\"fZK1dDFUL\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t3d7rw-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"l1dEjobHv-container\",nodeId:\"l1dEjobHv\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"l1dEjobHv\",isMixed:false,layoutId:\"l1dEjobHv\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ypo0vn-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"lCpnyf6G_-container\",nodeId:\"lCpnyf6G_\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"lCpnyf6G_\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"lCpnyf6G_\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-187ut56\",layoutDependency:layoutDependency,layoutId:\"AUecE1gPV\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s6bno0\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ge8qK3CV3\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-3t1a7t\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"qX6bdP8Qc\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ia0ep\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"wlJ025__N\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-odz0p2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"V5RiHX5Jy\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fw2q8j\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"MsEhArqy9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w2mwz\",layoutDependency:layoutDependency,layoutId:\"sDaOudUg4\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gni2kn-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"cxsSAkBn5-container\",nodeId:\"cxsSAkBn5\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"cxsSAkBn5\",isMixed:false,layoutId:\"cxsSAkBn5\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-103ryso-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"N0PPNI82a-container\",nodeId:\"N0PPNI82a\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"N0PPNI82a\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"N0PPNI82a\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jd32zu\",layoutDependency:layoutDependency,layoutId:\"iv2IXEjKH\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6kgcc3\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vqYP5FUhY\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-wis9gn\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"v3t_B9vhu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-im76xn\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"iKKyv2F9r\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gb0n40\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"x36zsBXB_\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g34u9c\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"uA6AcdCzW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vq03oz\",layoutDependency:layoutDependency,layoutId:\"e15UPGQBG\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-d7nu3f-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"IcfjAVOdA-container\",nodeId:\"IcfjAVOdA\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"IcfjAVOdA\",isMixed:false,layoutId:\"IcfjAVOdA\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3qmmgg-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"TGZzb3TMq-container\",nodeId:\"TGZzb3TMq\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"TGZzb3TMq\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"TGZzb3TMq\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Add a chrome extension to the Blocklist on JAMF Pro\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oazd7\",layoutDependency:layoutDependency,layoutId:\"g5pFWagr0\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-unim6u\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kCRYFUvhL\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-1vn7d7u\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"ipGFAucTr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1khx7pq\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"fTMDiHQR7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19345zk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"mTLMsCcFQ\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qamon8\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"fvHCFrUpv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jtjxhm\",layoutDependency:layoutDependency,layoutId:\"I9gVW8H3A\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4m1yz0-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"alHn34NZS-container\",nodeId:\"alHn34NZS\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"alHn34NZS\",isMixed:false,layoutId:\"alHn34NZS\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-75tj1c-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"MylczHnlr-container\",nodeId:\"MylczHnlr\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"MylczHnlr\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"MylczHnlr\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t90ltm\",layoutDependency:layoutDependency,layoutId:\"K95qD7AJe\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o0yrrl\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CohyeME6F\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-qlc2gr\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"YT5ze7ZrD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16jsnan\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"puyZuJpGJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-majloa\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"CQqlbPEaG\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bor7sp\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"joXeQxf3g\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nz7rff\",layoutDependency:layoutDependency,layoutId:\"CyGuYHHB_\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s79b16-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"a_xqCYV5L-container\",nodeId:\"a_xqCYV5L\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"a_xqCYV5L\",isMixed:false,layoutId:\"a_xqCYV5L\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iasi5x-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"bW86nZnnC-container\",nodeId:\"bW86nZnnC\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"bW86nZnnC\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"bW86nZnnC\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c5kg8z\",layoutDependency:layoutDependency,layoutId:\"SdhoKz2Eh\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pvjf1z\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ip1TOVYiP\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-17ipnhw\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"eQRUvFgm_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-saf4et\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"IikLLXGBS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ugq3ab\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"LJX1NTg4A\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13dxr1g\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"E9nT4XEQe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iohmia\",layoutDependency:layoutDependency,layoutId:\"tPoH9EY2D\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14owq1k-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Z94GEdugR-container\",nodeId:\"Z94GEdugR\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"Z94GEdugR\",isMixed:false,layoutId:\"Z94GEdugR\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b68hfh-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"zf9wUCSxP-container\",nodeId:\"zf9wUCSxP\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"zf9wUCSxP\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"zf9wUCSxP\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1luz97r\",layoutDependency:layoutDependency,layoutId:\"Wcm_lKLkP\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wnmazx\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Hm8d26WlG\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-2tmkw5\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"RgJKX88v7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8zs73\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"qLP6nyz3y\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xzr0kc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"FrI8yRJQO\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1awunps\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"EGVOswtgW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lt41vt\",layoutDependency:layoutDependency,layoutId:\"idCOwYziD\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12jfxbk-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"JNzRgztT8-container\",nodeId:\"JNzRgztT8\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"JNzRgztT8\",isMixed:false,layoutId:\"JNzRgztT8\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qxcaqq-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Y2ANN0dEJ-container\",nodeId:\"Y2ANN0dEJ\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"Y2ANN0dEJ\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"Y2ANN0dEJ\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11qzmf1\",layoutDependency:layoutDependency,layoutId:\"DCnSlGNha\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-alocv7\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"AUk56gROI\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-nj81gf\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"cxW1TDBdB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gh6p58\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"GhEY49u04\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p1w32h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"sBZtOyQ5x\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-145ngsx\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"J3gRZ5AEm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lzc6ja\",layoutDependency:layoutDependency,layoutId:\"hlD3smTRT\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-usgwgu-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"dKLqzAbkH-container\",nodeId:\"dKLqzAbkH\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"dKLqzAbkH\",isMixed:false,layoutId:\"dKLqzAbkH\",options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\",...addPropertyOverrides({PuOeFLzb4:{onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-44cobi-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"S3Bb19L4z-container\",nodeId:\"S3Bb19L4z\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"S3Bb19L4z\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"S3Bb19L4z\",lineHeight:1.4,maxLength:10,multiLine:false,onChange:onChange1cgpnk5,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\",...addPropertyOverrides({Gdo18QINl:{onChange:undefined,value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\"},Ju_aAM_4A:{onChange:undefined,value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"},N8HSddbmT:{onChange:undefined,value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},PuOeFLzb4:{onChange:undefined},San5hVE9n:{onChange:undefined},t81cxxbaZ:{onChange:undefined,value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDBreported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},tbJdfbJrw:{onChange:undefined,value:\"Add a chrome extension to the Blocklist on JAMF Pro\"},Wd30Mwqll:{onChange:undefined,value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\"}},baseVariant,gestureVariant)})})})]}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7ixtd\",layoutDependency:layoutDependency,layoutId:\"dgfdVCuF_\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z98qb5\",\"data-framer-name\":\"button\",layoutDependency:layoutDependency,layoutId:\"nmAEjNJT1\",style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},...addPropertyOverrides({PuOeFLzb4:{\"data-highlight\":true,onTap:onTapveffz2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-r4jv9q\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"nPsSxW8pG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vxai6t\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"P7QR6U3bm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-28xdsk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"LdawHAHD3\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11us6z\",layoutDependency:layoutDependency,layoutId:\"oFh1J5XDF\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{Gdo18QINl:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},HW8bLvfxY:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},Ju_aAM_4A:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},N8HSddbmT:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},PRc25eKF4:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},qMHH26X1m:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},t81cxxbaZ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},tbJdfbJrw:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},VijhG3n2j:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},Wd30Mwqll:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},YT8x2e3Hg:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},zjTBiJKxp:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z0s8i9\",\"data-framer-name\":\"light designer\",layoutDependency:layoutDependency,layoutId:\"pIvkdm9Ec\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.12)\"},children:[isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ivwzi3-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pFXXT0tdw-container\",nodeId:\"pFXXT0tdw\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"pFXXT0tdw\",layoutId:\"pFXXT0tdw\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\",width:\"100%\",zoom:1,...addPropertyOverrides({HW8bLvfxY:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},PRc25eKF4:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},qMHH26X1m:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},VijhG3n2j:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"},YT8x2e3Hg:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13mi94h\",layoutDependency:layoutDependency,layoutId:\"GXlnRSMje\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-phxlb4-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Emx4d0nV3-container\",nodeId:\"Emx4d0nV3\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,fadeOut:true,hasDuration:false,height:\"100%\",id:\"Emx4d0nV3\",indicator:\"Dots\",layoutId:\"Emx4d0nV3\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"We're generating your automation for you.\"]})}),className:\"framer-5mkjfa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MRaFhZRO3\",style:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q25qku\",layoutDependency:layoutDependency,layoutId:\"EHAVpghHq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i29jdj\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"LPC1juFzu\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.04)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m32z0q\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"M3smkfC6z\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-uffoy9\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"m2FeJCwcn\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",viewBox:\"0 0 23 20\",viewBoxScale:.5,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-exg097\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"ma9pVcHNY\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gy0k8h\",layoutDependency:layoutDependency,layoutId:\"bP0dfEVI9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5hbiul\",layoutDependency:layoutDependency,layoutId:\"o_GMcHEBQ\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ngbwmt\",layoutDependency:layoutDependency,layoutId:\"S27PZzWzX\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})})]})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ycn3ux\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"bcAoOzIk4\",children:[isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-v5xann\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"krnFkLAQH\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed13()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-124xebh\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"atVIXSXBb\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-wjjuxy\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"lh_97Lhww\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kuoxdt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mvL8mb7lG-container\",nodeId:\"mvL8mb7lG\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"mvL8mb7lG\",layoutId:\"mvL8mb7lG\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed12()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-jnh8e\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PM_Prny3E\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed14()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-m8qi6q\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"GMEiaNsCb\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Interested in exploring edge cases? \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"Investigate combinations with an expert\"})]})}),className:\"framer-az3qh\",\"data-framer-name\":\"Interested in exploring edge cases? \\u2028Investigate combinations with an expert\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Shj0zUwuh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PuOeFLzb4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Interested in exploring edge cases? \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pxQ2zrRqb\"},motionChild:true,nodeId:\"Shj0zUwuh\",openInNewTab:false,scopeId:\"EIa7lzreq\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-71wtd5\",\"data-styles-preset\":\"VL9KDhx3_\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"Investigate combinations with an expert\"})})})]})})}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:561,intrinsicWidth:1121,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:561,pixelWidth:1121,sizes:\"1121px\",src:\"https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png\",srcSet:\"https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png 1121w\"},className:\"framer-1c3qce\",\"data-framer-name\":\"bg_onBlue\",layoutDependency:layoutDependency,layoutId:\"aGuZM9BI9\"}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g47uxu\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:10326\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ft8s4y\",\"data-framer-name\":\"Frame 39271\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:9712\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:[\"Turn any prompt \",/*#__PURE__*/_jsx(motion.br,{}),\"into ready-to-go flows\"]})}),className:\"framer-dz3eiy\",\"data-framer-name\":\"Turn any prompt \\u2028into ready-to-go workflows\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:9713\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bkbdwe\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11333\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1raklki\",layoutDependency:layoutDependency,layoutId:\"p2eYboeIF\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6fu5n1-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"yNoeUwU2z-container\",nodeId:\"yNoeUwU2z\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"yNoeUwU2z\",isMixed:false,layoutId:\"yNoeUwU2z\",onSelectOption1:onSelectOption11cgpnk5,onSelectOption2:onSelectOption2abm6jj,onSelectOption3:onSelectOption3ok93gw,onSelectOption4:onSelectOption41xqpo69,onSelectOption5:onSelectOption51y0qu9e,onSelectOption6:onSelectOption6ycvqn2,onSelectOption7:onSelectOption79fi0jf,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jfohg4-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"hv74UtC1B-container\",nodeId:\"hv74UtC1B\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"hv74UtC1B\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"hv74UtC1B\",lineHeight:1.4,maxLength:10,multiLine:false,onChange:onChange1cgpnk5,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\"},cManqmx7p:{value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\"},GPwqVgXv_:{value:\"Add a chrome extension to the Blocklist on JAMF Pro\"},KEcnciUpZ:{value:\"Add a chrome extension to the Blocklist on JAMF Pro\"},MCBSxdS2b:{value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},mxd1tAkdF:{value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"},nNyHcWc10:{value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\"},nx7Z7CGf2:{value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\"},s0Uv500xq:{value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\"},U422H5rig:{value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\"},xKlmQYvTQ:{value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},YlI30mhCn:{value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(MotionDivGeneric_trackingqlrm89,{className:\"framer-qlrm89\",\"data-framer-name\":\"ai_section-generate\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340\",onTap:onTapn8d6j7,style:{backgroundColor:\"var(--token-8c03a662-8370-4507-8a8e-621a9b62852c, rgb(25, 3, 67))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},...addPropertyOverrides({Bx_PnpsPp:{\"data-highlight\":undefined,onTap:undefined},GPwqVgXv_:{\"data-highlight\":undefined,onTap:undefined},mxd1tAkdF:{\"data-highlight\":undefined,onTap:undefined},r5NME5GL3:{onTap:onTapb215ga},s0Uv500xq:{\"data-highlight\":undefined,onTap:undefined},U422H5rig:{\"data-highlight\":undefined,onTap:undefined},xKlmQYvTQ:{onTap:onTap12y29ao}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-1mtxiha\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340;2:9728\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pxxhex\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340;2:9897\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rcaw5f\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340;2:9897;102:5919\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed16()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qj3w8q\",layoutDependency:layoutDependency,layoutId:\"Oc19rkLOJ\"}),isDisplayed17()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4284j\",layoutDependency:layoutDependency,layoutId:\"Gt76iGpmP\"}),isDisplayed18()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-111ydkk\",layoutDependency:layoutDependency,layoutId:\"N58MatPv9\"}),isDisplayed19()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v7l2xu\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"KcbRqr5Wy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozi222\",layoutDependency:layoutDependency,layoutId:\"JG32Ajp4G\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dolm7w-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"nYd0DmXn9-container\",nodeId:\"nYd0DmXn9\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"nYd0DmXn9\",isMixed:false,layoutId:\"nYd0DmXn9\",onSelectOption1:onSelectOption11cgpnk5,onSelectOption2:onSelectOption2abm6jj,onSelectOption3:onSelectOption3ok93gw,onSelectOption4:onSelectOption41xqpo69,onSelectOption5:onSelectOption51y0qu9e,onSelectOption6:onSelectOption6ycvqn2,onSelectOption7:onSelectOption79fi0jf,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10kapk2-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"YEfoOk4ow-container\",nodeId:\"YEfoOk4ow\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"YEfoOk4ow\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"YEfoOk4ow\",lineHeight:1.4,maxLength:10,multiLine:false,onChange:onChange1cgpnk5,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivGeneric_tracking1rjqtkh,{className:\"framer-1rjqtkh\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lzTidNtGt\",onTap:onTapn8d6j7,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.1)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-q8uomn\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"TIaYPACgq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c9z8wb\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"LjnGW7HXW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pycye7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"rWBjtEUt4\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivGeneric_tracking1vi5dhd,{className:\"framer-1vi5dhd\",\"data-framer-name\":\"ai_section-investigate_with_expert\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19677\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Introducing our AI text-to-automation, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a complete tailored workspace with AI-generated flows.\"})}),className:\"framer-1we07fi\",\"data-framer-name\":\"Introducing our AI Agent, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a personalized workspace with AI-generated workflows.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19798\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTrack_book_expert13vc93y,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Interested in exploring edge cases? \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NVrk61RPa\"},motionChild:true,nodeId:\"I22:1644;204:19810\",openInNewTab:false,scopeId:\"EIa7lzreq\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-71wtd5\",\"data-styles-preset\":\"VL9KDhx3_\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"Investigate combinations with an expert\"})})})]})}),className:\"framer-13vc93y\",\"data-framer-name\":\"Interested in exploring edge cases? \\u2028Investigate combinations with an expert\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19810\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-41q8v6\",\"data-framer-name\":\"playbook\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14955\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12m1h4s\",\"data-framer-name\":\"embed_container\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14811\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.12)\"},children:[isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1012xke-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zb5elPLxX-container\",nodeId:\"zb5elPLxX\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"zb5elPLxX\",layoutId:\"zb5elPLxX\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-db9cba6b-61dc-4bec-9724-8aaef1b0e70f?scale=0.6\",width:\"100%\",zoom:1,...addPropertyOverrides({nNyHcWc10:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},YlI30mhCn:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed20()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sgbpd6-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"Bt6BEwatf-container\",nodeId:\"Bt6BEwatf\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"rgb(136, 136, 136)\",duration:2,fadeOut:true,hasDuration:false,height:\"100%\",id:\"Bt6BEwatf\",indicator:\"Material\",layoutId:\"Bt6BEwatf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},GPwqVgXv_:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},mxd1tAkdF:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},r5NME5GL3:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},s0Uv500xq:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},U422H5rig:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},xKlmQYvTQ:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"}},baseVariant,gestureVariant)})})}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h09md8-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KKKicX1je-container\",nodeId:\"KKKicX1je\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"KKKicX1je\",layoutId:\"KKKicX1je\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-20896bb4-b98a-4032-abb3-58963858cddf?scale=0.6\",width:\"100%\",zoom:1,...addPropertyOverrides({cManqmx7p:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},KEcnciUpZ:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},MCBSxdS2b:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\"},nx7Z7CGf2:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed19()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16k1d8h-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KdeVw6dYo-container\",nodeId:\"KdeVw6dYo\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"KdeVw6dYo\",layoutId:\"KdeVw6dYo\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gkeuqi\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.04)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f3ql3d\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19423\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8j3vsx\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19445\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-anczf9\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19424\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h569ca\",layoutDependency:layoutDependency,layoutId:\"bcMSDZFn5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jjkxut\",layoutDependency:layoutDependency,layoutId:\"cyJlAwX0r\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"text-to-automation\"})}),className:\"framer-1252i19\",\"data-framer-name\":\"text-to-workflows\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19425\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xze19s\",layoutDependency:layoutDependency,layoutId:\"ddfGhXegY\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"Build flows with NLP and AI Agents\"})}),className:\"framer-19g1me4\",\"data-framer-name\":\"Build flows with NLP\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19426\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed22()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13bocpd\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19513\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10jspw7\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19486\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlvtjj\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19487\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-1ws13qi\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19488\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-1ef3qzc\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19566\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed23()&&/*#__PURE__*/_jsx(RichTextWithTogglePositionHome1gnuge4,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-1gnuge4\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19849\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Take a coffee and chill, we generate your automation. \"})}),className:\"framer-13xae93\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dIxYUpIm8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{Bx_PnpsPp:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},GPwqVgXv_:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},mxd1tAkdF:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},r5NME5GL3:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},s0Uv500xq:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},U422H5rig:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},xKlmQYvTQ:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bx_PnpsPp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},GPwqVgXv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},mxd1tAkdF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},r5NME5GL3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"We're generating your automation for you.\"]})})},s0Uv500xq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},U422H5rig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},xKlmQYvTQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ewzt24\",\"data-framer-name\":\"light designer\",layoutDependency:layoutDependency,layoutId:\"Fvv3rMtxl\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.12)\"},children:[isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1robtk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uKI8rJxsa-container\",nodeId:\"uKI8rJxsa\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"uKI8rJxsa\",layoutId:\"uKI8rJxsa\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-db9cba6b-61dc-4bec-9724-8aaef1b0e70f?scale=0.6\",width:\"100%\",zoom:1,...addPropertyOverrides({nNyHcWc10:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},YlI30mhCn:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed20()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hgnisw-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"YBfj79JmF-container\",nodeId:\"YBfj79JmF\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"rgb(136, 136, 136)\",duration:2,fadeOut:true,hasDuration:false,height:\"100%\",id:\"YBfj79JmF\",indicator:\"Material\",layoutId:\"YBfj79JmF\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},GPwqVgXv_:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},mxd1tAkdF:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},r5NME5GL3:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},s0Uv500xq:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},U422H5rig:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},xKlmQYvTQ:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"}},baseVariant,gestureVariant)})})}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tlg2aj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QcKZwZDL8-container\",nodeId:\"QcKZwZDL8\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"QcKZwZDL8\",layoutId:\"QcKZwZDL8\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-20896bb4-b98a-4032-abb3-58963858cddf?scale=0.6\",width:\"100%\",zoom:1,...addPropertyOverrides({cManqmx7p:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},KEcnciUpZ:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},MCBSxdS2b:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\"},nx7Z7CGf2:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed19()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pt78el-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JNi0s_2EZ-container\",nodeId:\"JNi0s_2EZ\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"JNi0s_2EZ\",layoutId:\"JNi0s_2EZ\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xjhar1\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"bJP4yAkTZ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.04)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eefyyb\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"SeD510aU5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nc8s6v\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"U454FcyCg\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-v1imn2\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"fYXYfSz12\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-naiak4\",layoutDependency:layoutDependency,layoutId:\"qjHIqJw4X\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ymast1\",layoutDependency:layoutDependency,layoutId:\"cL7MFxmCo\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"text-to-automation\"})}),className:\"framer-75s5tp\",\"data-framer-name\":\"text-to-workflows\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"PgKA8cDbh\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ku6hj\",layoutDependency:layoutDependency,layoutId:\"oh26YQlb2\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"Build flows with NLP and AI Agents\"})}),className:\"framer-wo6zwo\",\"data-framer-name\":\"Build flows with NLP\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tyv99xmxQ\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed22()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p3koh1\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"XexEdBtDf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-padny8\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"ZKJ8r3JH4\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b3t7vq\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"xYgEz90cS\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-p2b0d4\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"uqTy9oFNa\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-352isd\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HdW_Pgf7p\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-12k92ga\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"CiZ13LrAx\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Take a coffee and chill, we generate your automation. \"})}),className:\"framer-1bq6me5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WJAJs969K\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{Bx_PnpsPp:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},GPwqVgXv_:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},mxd1tAkdF:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},r5NME5GL3:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},s0Uv500xq:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},U422H5rig:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},xKlmQYvTQ:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bx_PnpsPp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},GPwqVgXv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},mxd1tAkdF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},r5NME5GL3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},s0Uv500xq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},U422H5rig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},xKlmQYvTQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-153bxvp\",\"data-framer-name\":\"light designer\",layoutDependency:layoutDependency,layoutId:\"i7ysL3DoD\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.12)\"},children:[isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nakyvp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bInpe648n-container\",nodeId:\"bInpe648n\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"bInpe648n\",layoutId:\"bInpe648n\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-db9cba6b-61dc-4bec-9724-8aaef1b0e70f?scale=0.6\",width:\"100%\",zoom:1,...addPropertyOverrides({nNyHcWc10:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},YlI30mhCn:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed20()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bylgpu-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"x4NSnplZY-container\",nodeId:\"x4NSnplZY\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"rgb(136, 136, 136)\",duration:2,fadeOut:true,hasDuration:false,height:\"100%\",id:\"x4NSnplZY\",indicator:\"Material\",layoutId:\"x4NSnplZY\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},GPwqVgXv_:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},mxd1tAkdF:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},r5NME5GL3:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},s0Uv500xq:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},U422H5rig:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},xKlmQYvTQ:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"}},baseVariant,gestureVariant)})})}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9w8lrx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"g6qaQailr-container\",nodeId:\"g6qaQailr\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"g6qaQailr\",layoutId:\"g6qaQailr\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-20896bb4-b98a-4032-abb3-58963858cddf?scale=0.6\",width:\"100%\",zoom:1,...addPropertyOverrides({cManqmx7p:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},KEcnciUpZ:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},MCBSxdS2b:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\"},nx7Z7CGf2:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed19()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m7vy2h-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mNjUFrnCE-container\",nodeId:\"mNjUFrnCE\",rendersWithMotion:true,scopeId:\"EIa7lzreq\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"mNjUFrnCE\",layoutId:\"mNjUFrnCE\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8xn98\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"ghrfUArIz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.04)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wut0fc\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"KzkWw0aKR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1end2m1\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"WqlgnFLJ4\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-816oa0\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"inKXXck8Z\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-816av\",layoutDependency:layoutDependency,layoutId:\"ZcTn7YYCD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-117vl5v\",layoutDependency:layoutDependency,layoutId:\"alVZFowmO\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"text-to-automation\"})}),className:\"framer-zhmp6q\",\"data-framer-name\":\"text-to-workflows\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yVqM8ENFS\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fbv1je\",layoutDependency:layoutDependency,layoutId:\"HUYmtn1Dk\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"Build flows with NLP and AI Agents\"})}),className:\"framer-i1io2v\",\"data-framer-name\":\"Build flows with NLP\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RsRmg1sC_\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed22()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hzdbi4\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"xGcRtS2ST\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pk6cwo\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"jV6odsoJk\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2kru7x\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"whLWSPoI4\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-1q61c2u\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"u6tM1qe2U\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-ylfkgv\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yW1ksjpHz\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-4r0bel\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"lt2YAcKzE\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Take a coffee and chill, we generate your automation. \"})}),className:\"framer-1mpbyf6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sdVdyfiOj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{Bx_PnpsPp:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},GPwqVgXv_:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},mxd1tAkdF:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},r5NME5GL3:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},s0Uv500xq:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},U422H5rig:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},xKlmQYvTQ:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bx_PnpsPp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},GPwqVgXv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},mxd1tAkdF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},r5NME5GL3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},s0Uv500xq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},U422H5rig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},xKlmQYvTQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VEF1p.framer-1fjocni, .framer-VEF1p .framer-1fjocni { display: block; }\",\".framer-VEF1p.framer-2uleqq { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 640px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-VEF1p .framer-1hnabak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-ox774d, .framer-VEF1p .framer-1vx0jgx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 196px; word-break: break-word; word-wrap: break-word; }\",\".framer-VEF1p .framer-bs67wr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 133px; }\",\".framer-VEF1p .framer-q9zs0x, .framer-VEF1p .framer-w2mwz, .framer-VEF1p .framer-1vq03oz, .framer-VEF1p .framer-1jtjxhm, .framer-VEF1p .framer-nz7rff, .framer-VEF1p .framer-iohmia, .framer-VEF1p .framer-1lt41vt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VEF1p .framer-t3d7rw-container, .framer-VEF1p .framer-gni2kn-container, .framer-VEF1p .framer-d7nu3f-container, .framer-VEF1p .framer-4m1yz0-container, .framer-VEF1p .framer-1s79b16-container, .framer-VEF1p .framer-14owq1k-container, .framer-VEF1p .framer-12jfxbk-container, .framer-VEF1p .framer-usgwgu-container { flex: none; height: 100%; position: relative; width: 15%; }\",\".framer-VEF1p .framer-ypo0vn-container, .framer-VEF1p .framer-103ryso-container, .framer-VEF1p .framer-3qmmgg-container, .framer-VEF1p .framer-75tj1c-container, .framer-VEF1p .framer-iasi5x-container, .framer-VEF1p .framer-1b68hfh-container, .framer-VEF1p .framer-1qxcaqq-container, .framer-VEF1p .framer-44cobi-container { flex: none; height: 100%; position: relative; width: 85%; }\",\".framer-VEF1p .framer-187ut56, .framer-VEF1p .framer-1jd32zu, .framer-VEF1p .framer-1oazd7, .framer-VEF1p .framer-1t90ltm, .framer-VEF1p .framer-c5kg8z, .framer-VEF1p .framer-1luz97r, .framer-VEF1p .framer-11qzmf1, .framer-VEF1p .framer-s7ixtd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 48px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VEF1p .framer-s6bno0, .framer-VEF1p .framer-6kgcc3, .framer-VEF1p .framer-unim6u, .framer-VEF1p .framer-1o0yrrl, .framer-VEF1p .framer-1pvjf1z, .framer-VEF1p .framer-1wnmazx, .framer-VEF1p .framer-alocv7, .framer-VEF1p .framer-qlrm89, .framer-VEF1p .framer-1rjqtkh { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 48px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-VEF1p .framer-3t1a7t, .framer-VEF1p .framer-wis9gn, .framer-VEF1p .framer-1vn7d7u, .framer-VEF1p .framer-qlc2gr, .framer-VEF1p .framer-17ipnhw, .framer-VEF1p .framer-2tmkw5, .framer-VEF1p .framer-nj81gf, .framer-VEF1p .framer-r4jv9q, .framer-VEF1p .framer-wjjuxy, .framer-VEF1p .framer-jnh8e, .framer-VEF1p .framer-1mtxiha, .framer-VEF1p .framer-q8uomn, .framer-VEF1p .framer-13vc93y, .framer-VEF1p .framer-anczf9, .framer-VEF1p .framer-1252i19, .framer-VEF1p .framer-19g1me4, .framer-VEF1p .framer-1ws13qi, .framer-VEF1p .framer-1ef3qzc, .framer-VEF1p .framer-13xae93, .framer-VEF1p .framer-v1imn2, .framer-VEF1p .framer-75s5tp, .framer-VEF1p .framer-wo6zwo, .framer-VEF1p .framer-p2b0d4, .framer-VEF1p .framer-352isd, .framer-VEF1p .framer-1bq6me5, .framer-VEF1p .framer-816oa0, .framer-VEF1p .framer-zhmp6q, .framer-VEF1p .framer-i1io2v, .framer-VEF1p .framer-1q61c2u, .framer-VEF1p .framer-ylfkgv, .framer-VEF1p .framer-1mpbyf6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-VEF1p .framer-10ia0ep, .framer-VEF1p .framer-im76xn, .framer-VEF1p .framer-1khx7pq, .framer-VEF1p .framer-16jsnan, .framer-VEF1p .framer-saf4et, .framer-VEF1p .framer-i8zs73, .framer-VEF1p .framer-gh6p58, .framer-VEF1p .framer-vxai6t, .framer-VEF1p .framer-1pxxhex, .framer-VEF1p .framer-c9z8wb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 24px; }\",\".framer-VEF1p .framer-odz0p2, .framer-VEF1p .framer-gb0n40, .framer-VEF1p .framer-19345zk, .framer-VEF1p .framer-majloa, .framer-VEF1p .framer-ugq3ab, .framer-VEF1p .framer-1xzr0kc, .framer-VEF1p .framer-p1w32h, .framer-VEF1p .framer-28xdsk, .framer-VEF1p .framer-1rcaw5f, .framer-VEF1p .framer-1pycye7 { flex: none; height: 22px; position: relative; width: 16px; }\",\".framer-VEF1p .framer-fw2q8j, .framer-VEF1p .framer-g34u9c, .framer-VEF1p .framer-1qamon8, .framer-VEF1p .framer-bor7sp, .framer-VEF1p .framer-13dxr1g, .framer-VEF1p .framer-1awunps { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: auto; }\",\".framer-VEF1p .framer-145ngsx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 196px; }\",\".framer-VEF1p .framer-1lzc6ja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-VEF1p .framer-z98qb5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 48px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-VEF1p .framer-11us6z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 371px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-VEF1p .framer-z0s8i9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 344px; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-VEF1p .framer-1ivwzi3-container, .framer-VEF1p .framer-16k1d8h-container, .framer-VEF1p .framer-1pt78el-container, .framer-VEF1p .framer-m7vy2h-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-VEF1p .framer-13mi94h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 108px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 244px; }\",\".framer-VEF1p .framer-phxlb4-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-VEF1p .framer-5mkjfa { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-VEF1p .framer-1q25qku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 108px; justify-content: center; overflow: visible; padding: 0px 16px 9px 16px; position: relative; width: 100%; }\",\".framer-VEF1p .framer-i29jdj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-1m32z0q { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 36px; }\",\".framer-VEF1p .framer-uffoy9 { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-VEF1p .framer-exg097, .framer-VEF1p .framer-f3ql3d, .framer-VEF1p .framer-eefyyb, .framer-VEF1p .framer-wut0fc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-1gy0k8h, .framer-VEF1p .framer-1h569ca, .framer-VEF1p .framer-naiak4, .framer-VEF1p .framer-816av { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 37px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 116px; }\",\".framer-VEF1p .framer-5hbiul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 10px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-VEF1p .framer-ngbwmt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 10px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-VEF1p .framer-ycn3ux, .framer-VEF1p .framer-13bocpd, .framer-VEF1p .framer-1p3koh1, .framer-VEF1p .framer-1hzdbi4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-v5xann, .framer-VEF1p .framer-10jspw7, .framer-VEF1p .framer-padny8, .framer-VEF1p .framer-pk6cwo { flex: none; height: 56px; position: relative; width: 48px; }\",\".framer-VEF1p .framer-124xebh, .framer-VEF1p .framer-1rlvtjj, .framer-VEF1p .framer-1b3t7vq, .framer-VEF1p .framer-2kru7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 16px; }\",\".framer-VEF1p .framer-kuoxdt-container { flex: none; height: 520px; position: relative; width: 100%; }\",\".framer-VEF1p .framer-m8qi6q, .framer-VEF1p .framer-12k92ga, .framer-VEF1p .framer-4r0bel { flex: none; height: auto; position: absolute; right: 24px; top: 24px; white-space: pre; width: auto; z-index: 1; }\",\".framer-VEF1p .framer-az3qh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 244px; word-break: break-word; word-wrap: break-word; }\",\".framer-VEF1p .framer-1c3qce { aspect-ratio: 1.9982174688057042 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 561px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 1121px; z-index: 1; }\",\".framer-VEF1p .framer-1g47uxu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; overflow: visible; padding: 120px 80px 80px 80px; position: relative; width: 720px; z-index: 1; }\",\".framer-VEF1p .framer-1ft8s4y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-dz3eiy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 335px; word-break: break-word; word-wrap: break-word; }\",\".framer-VEF1p .framer-bkbdwe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 46px 0px 46px 0px; position: relative; width: 560px; }\",\".framer-VEF1p .framer-1raklki, .framer-VEF1p .framer-ozi222 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-VEF1p .framer-6fu5n1-container, .framer-VEF1p .framer-dolm7w-container { flex: none; height: 100%; position: relative; width: 56px; }\",\".framer-VEF1p .framer-jfohg4-container { cursor: text; flex: none; height: 100%; position: relative; width: 340px; }\",\".framer-VEF1p .framer-1qj3w8q, .framer-VEF1p .framer-111ydkk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 59px; min-width: 190px; overflow: hidden; padding: 22px 0px 22px 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-1w4284j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 71px; min-width: 295px; overflow: hidden; padding: 22px 0px 22px 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-v7l2xu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 46px 0px 0px 0px; position: relative; width: 560px; }\",\".framer-VEF1p .framer-10kapk2-container { flex: none; height: 100%; position: relative; width: 340px; }\",\".framer-VEF1p .framer-1vi5dhd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VEF1p .framer-1we07fi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 555px; word-break: break-word; word-wrap: break-word; }\",\".framer-VEF1p .framer-41q8v6 { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 80px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-VEF1p .framer-12m1h4s { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; width: 94%; z-index: 1; }\",\".framer-VEF1p .framer-1012xke-container, .framer-VEF1p .framer-h09md8-container, .framer-VEF1p .framer-1robtk-container, .framer-VEF1p .framer-1tlg2aj-container, .framer-VEF1p .framer-1nakyvp-container, .framer-VEF1p .framer-9w8lrx-container { flex: none; height: 560px; position: relative; width: 640px; }\",\".framer-VEF1p .framer-sgbpd6-container, .framer-VEF1p .framer-hgnisw-container, .framer-VEF1p .framer-1bylgpu-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-VEF1p .framer-gkeuqi, .framer-VEF1p .framer-1xjhar1, .framer-VEF1p .framer-1c8xn98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 321px; }\",\".framer-VEF1p .framer-8j3vsx, .framer-VEF1p .framer-1nc8s6v, .framer-VEF1p .framer-1end2m1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: visible; padding: 16px; position: relative; width: 52px; }\",\".framer-VEF1p .framer-jjkxut, .framer-VEF1p .framer-1ymast1, .framer-VEF1p .framer-117vl5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-xze19s, .framer-VEF1p .framer-15ku6hj, .framer-VEF1p .framer-fbv1je { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 15px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VEF1p .framer-1gnuge4 { flex: none; height: auto; position: absolute; right: 24px; top: 24px; white-space: pre; width: auto; z-index: 10; }\",\".framer-VEF1p .framer-ewzt24 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -858px; top: -1551px; width: 94%; z-index: 5; }\",\".framer-VEF1p .framer-153bxvp { align-content: center; align-items: center; bottom: -608px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; left: -400px; overflow: visible; padding: 0px; position: absolute; width: 94%; z-index: 5; }\",\".framer-VEF1p.framer-v-o0yqgq .framer-12m1h4s, .framer-VEF1p.framer-v-o0yqgq .framer-ewzt24, .framer-VEF1p.framer-v-o0yqgq .framer-153bxvp { padding: 40px; }\",\".framer-VEF1p.framer-v-o0yqgq .framer-16k1d8h-container { order: 4; }\",\".framer-VEF1p.framer-v-o0yqgq .framer-1pt78el-container, .framer-VEF1p.framer-v-o0yqgq .framer-m7vy2h-container, .framer-VEF1p.framer-v-1xnmvc0 .framer-153bxvp, .framer-VEF1p.framer-v-19nh5kz .framer-153bxvp, .framer-VEF1p.framer-v-3iytix .framer-153bxvp { order: 3; }\",\".framer-VEF1p.framer-v-4kvb38 .framer-bkbdwe, .framer-VEF1p.framer-v-1xnmvc0 .framer-bkbdwe, .framer-VEF1p.framer-v-19nh5kz .framer-bkbdwe, .framer-VEF1p.framer-v-3iytix .framer-bkbdwe, .framer-VEF1p.framer-v-1b34zn6 .framer-bkbdwe, .framer-VEF1p.framer-v-vqjyv2 .framer-bkbdwe { padding: 46px 0px 0px 0px; }\",\".framer-VEF1p.framer-v-4kvb38 .framer-12m1h4s { order: 1; width: 94%; }\",\".framer-VEF1p.framer-v-4kvb38 .framer-h09md8-container, .framer-VEF1p.framer-v-4kvb38 .framer-1tlg2aj-container, .framer-VEF1p.framer-v-4kvb38 .framer-9w8lrx-container, .framer-VEF1p.framer-v-1xnmvc0 .framer-h09md8-container, .framer-VEF1p.framer-v-1xnmvc0 .framer-1tlg2aj-container, .framer-VEF1p.framer-v-1xnmvc0 .framer-9w8lrx-container, .framer-VEF1p.framer-v-1b34zn6 .framer-1012xke-container, .framer-VEF1p.framer-v-1b34zn6 .framer-1robtk-container, .framer-VEF1p.framer-v-1b34zn6 .framer-1nakyvp-container { bottom: 0px; height: unset; left: 0px; position: absolute; right: 0px; top: 24px; width: unset; z-index: 1; }\",\".framer-VEF1p.framer-v-4kvb38 .framer-ewzt24 { order: 2; width: 94%; }\",\".framer-VEF1p.framer-v-4kvb38 .framer-153bxvp { order: 3; width: 94%; }\",\".framer-VEF1p.framer-v-1xnmvc0 .framer-12m1h4s, .framer-VEF1p.framer-v-19nh5kz .framer-12m1h4s, .framer-VEF1p.framer-v-3iytix .framer-12m1h4s { order: 1; }\",\".framer-VEF1p.framer-v-1xnmvc0 .framer-ewzt24, .framer-VEF1p.framer-v-19nh5kz .framer-ewzt24, .framer-VEF1p.framer-v-3iytix .framer-ewzt24 { order: 2; }\",\".framer-VEF1p.framer-v-19nh5kz .framer-h09md8-container, .framer-VEF1p.framer-v-19nh5kz .framer-1tlg2aj-container, .framer-VEF1p.framer-v-19nh5kz .framer-9w8lrx-container, .framer-VEF1p.framer-v-3iytix .framer-h09md8-container, .framer-VEF1p.framer-v-3iytix .framer-1tlg2aj-container, .framer-VEF1p.framer-v-3iytix .framer-9w8lrx-container, .framer-VEF1p.framer-v-vqjyv2 .framer-1012xke-container, .framer-VEF1p.framer-v-vqjyv2 .framer-1robtk-container, .framer-VEF1p.framer-v-vqjyv2 .framer-1nakyvp-container { bottom: 0px; height: unset; left: 0px; position: absolute; right: 0px; top: 30px; width: unset; z-index: 1; }\",\".framer-VEF1p.framer-v-f642y8 .framer-qlrm89, .framer-VEF1p.framer-v-58j74a .framer-qlrm89, .framer-VEF1p.framer-v-1hhnnk5 .framer-qlrm89, .framer-VEF1p.framer-v-itjv0e .framer-qlrm89, .framer-VEF1p.framer-v-18p0hej .framer-qlrm89 { cursor: unset; }\",\".framer-VEF1p.framer-v-dkd0po.framer-2uleqq, .framer-VEF1p.framer-v-fufi9i.framer-2uleqq, .framer-VEF1p.framer-v-77v20.framer-2uleqq, .framer-VEF1p.framer-v-e8ev98.framer-2uleqq, .framer-VEF1p.framer-v-173x2xn.framer-2uleqq, .framer-VEF1p.framer-v-jmo0rp.framer-2uleqq, .framer-VEF1p.framer-v-sl73q.framer-2uleqq, .framer-VEF1p.framer-v-1w2q3q5.framer-2uleqq, .framer-VEF1p.framer-v-o7pcsu.framer-2uleqq, .framer-VEF1p.framer-v-1997vb6.framer-2uleqq, .framer-VEF1p.framer-v-ahwsr2.framer-2uleqq, .framer-VEF1p.framer-v-18uv4qt.framer-2uleqq, .framer-VEF1p.framer-v-1wqocu1.framer-2uleqq, .framer-VEF1p.framer-v-q57rs7.framer-2uleqq, .framer-VEF1p.framer-v-j06k9w.framer-2uleqq { flex-direction: column; flex-wrap: wrap; gap: 48px; height: min-content; padding: 48px 24px 48px 24px; width: min-content; }\",\".framer-VEF1p.framer-v-dkd0po .framer-1hnabak, .framer-VEF1p.framer-v-fufi9i .framer-1hnabak, .framer-VEF1p.framer-v-77v20 .framer-1hnabak, .framer-VEF1p.framer-v-e8ev98 .framer-1hnabak, .framer-VEF1p.framer-v-173x2xn .framer-1hnabak, .framer-VEF1p.framer-v-jmo0rp .framer-1hnabak, .framer-VEF1p.framer-v-sl73q .framer-1hnabak, .framer-VEF1p.framer-v-1w2q3q5 .framer-1hnabak, .framer-VEF1p.framer-v-o7pcsu .framer-1hnabak, .framer-VEF1p.framer-v-1997vb6 .framer-1hnabak, .framer-VEF1p.framer-v-ahwsr2 .framer-1hnabak, .framer-VEF1p.framer-v-18uv4qt .framer-1hnabak, .framer-VEF1p.framer-v-1wqocu1 .framer-1hnabak, .framer-VEF1p.framer-v-q57rs7 .framer-1hnabak, .framer-VEF1p.framer-v-j06k9w .framer-1hnabak { align-self: stretch; gap: 56px; max-width: 800px; order: 0; width: auto; }\",\".framer-VEF1p.framer-v-dkd0po .framer-ox774d, .framer-VEF1p.framer-v-dkd0po .framer-1vx0jgx, .framer-VEF1p.framer-v-dkd0po .framer-145ngsx, .framer-VEF1p.framer-v-fufi9i .framer-ox774d, .framer-VEF1p.framer-v-fufi9i .framer-1vx0jgx, .framer-VEF1p.framer-v-fufi9i .framer-145ngsx, .framer-VEF1p.framer-v-77v20 .framer-ox774d, .framer-VEF1p.framer-v-77v20 .framer-1vx0jgx, .framer-VEF1p.framer-v-e8ev98 .framer-ox774d, .framer-VEF1p.framer-v-e8ev98 .framer-1vx0jgx, .framer-VEF1p.framer-v-173x2xn .framer-ox774d, .framer-VEF1p.framer-v-173x2xn .framer-1vx0jgx, .framer-VEF1p.framer-v-173x2xn .framer-145ngsx, .framer-VEF1p.framer-v-jmo0rp .framer-ox774d, .framer-VEF1p.framer-v-jmo0rp .framer-1vx0jgx, .framer-VEF1p.framer-v-jmo0rp .framer-145ngsx, .framer-VEF1p.framer-v-sl73q .framer-ox774d, .framer-VEF1p.framer-v-sl73q .framer-1vx0jgx, .framer-VEF1p.framer-v-1w2q3q5 .framer-ox774d, .framer-VEF1p.framer-v-1w2q3q5 .framer-1vx0jgx, .framer-VEF1p.framer-v-1w2q3q5 .framer-145ngsx, .framer-VEF1p.framer-v-o7pcsu .framer-ox774d, .framer-VEF1p.framer-v-o7pcsu .framer-1vx0jgx, .framer-VEF1p.framer-v-1997vb6 .framer-ox774d, .framer-VEF1p.framer-v-1997vb6 .framer-1vx0jgx, .framer-VEF1p.framer-v-ahwsr2 .framer-ox774d, .framer-VEF1p.framer-v-ahwsr2 .framer-1vx0jgx, .framer-VEF1p.framer-v-ahwsr2 .framer-145ngsx, .framer-VEF1p.framer-v-18uv4qt .framer-ox774d, .framer-VEF1p.framer-v-18uv4qt .framer-1vx0jgx, .framer-VEF1p.framer-v-18uv4qt .framer-145ngsx, .framer-VEF1p.framer-v-1wqocu1 .framer-ox774d, .framer-VEF1p.framer-v-1wqocu1 .framer-1vx0jgx, .framer-VEF1p.framer-v-q57rs7 .framer-ox774d, .framer-VEF1p.framer-v-q57rs7 .framer-1vx0jgx, .framer-VEF1p.framer-v-q57rs7 .framer-145ngsx, .framer-VEF1p.framer-v-j06k9w .framer-ox774d, .framer-VEF1p.framer-v-j06k9w .framer-1vx0jgx { width: 100%; }\",\".framer-VEF1p.framer-v-dkd0po .framer-1lzc6ja, .framer-VEF1p.framer-v-fufi9i .framer-1lzc6ja, .framer-VEF1p.framer-v-173x2xn .framer-1lzc6ja, .framer-VEF1p.framer-v-jmo0rp .framer-1lzc6ja, .framer-VEF1p.framer-v-1w2q3q5 .framer-1lzc6ja, .framer-VEF1p.framer-v-ahwsr2 .framer-1lzc6ja, .framer-VEF1p.framer-v-18uv4qt .framer-1lzc6ja, .framer-VEF1p.framer-v-q57rs7 .framer-1lzc6ja { max-width: 800px; }\",\".framer-VEF1p.framer-v-dkd0po .framer-z98qb5 { cursor: pointer; }\",\".framer-VEF1p.framer-v-dkd0po .framer-11us6z, .framer-VEF1p.framer-v-fufi9i .framer-11us6z, .framer-VEF1p.framer-v-173x2xn .framer-11us6z, .framer-VEF1p.framer-v-jmo0rp .framer-11us6z, .framer-VEF1p.framer-v-1w2q3q5 .framer-11us6z, .framer-VEF1p.framer-v-ahwsr2 .framer-11us6z, .framer-VEF1p.framer-v-18uv4qt .framer-11us6z, .framer-VEF1p.framer-v-q57rs7 .framer-11us6z { align-self: stretch; flex: none; order: 1; width: auto; }\",\".framer-VEF1p.framer-v-dkd0po .framer-az3qh, .framer-VEF1p.framer-v-fufi9i .framer-az3qh, .framer-VEF1p.framer-v-77v20 .framer-az3qh, .framer-VEF1p.framer-v-e8ev98 .framer-az3qh, .framer-VEF1p.framer-v-173x2xn .framer-az3qh, .framer-VEF1p.framer-v-jmo0rp .framer-az3qh, .framer-VEF1p.framer-v-sl73q .framer-az3qh, .framer-VEF1p.framer-v-1w2q3q5 .framer-az3qh, .framer-VEF1p.framer-v-o7pcsu .framer-az3qh, .framer-VEF1p.framer-v-1997vb6 .framer-az3qh, .framer-VEF1p.framer-v-ahwsr2 .framer-az3qh, .framer-VEF1p.framer-v-18uv4qt .framer-az3qh, .framer-VEF1p.framer-v-1wqocu1 .framer-az3qh, .framer-VEF1p.framer-v-q57rs7 .framer-az3qh, .framer-VEF1p.framer-v-j06k9w .framer-az3qh { align-self: stretch; order: 3; width: auto; }\",\".framer-VEF1p.framer-v-fufi9i .framer-z0s8i9, .framer-VEF1p.framer-v-173x2xn .framer-z0s8i9, .framer-VEF1p.framer-v-jmo0rp .framer-z0s8i9, .framer-VEF1p.framer-v-1w2q3q5 .framer-z0s8i9, .framer-VEF1p.framer-v-ahwsr2 .framer-z0s8i9, .framer-VEF1p.framer-v-18uv4qt .framer-z0s8i9, .framer-VEF1p.framer-v-q57rs7 .framer-z0s8i9 { order: 0; }\",\".framer-VEF1p.framer-v-fufi9i .framer-ycn3ux, .framer-VEF1p.framer-v-173x2xn .framer-ycn3ux, .framer-VEF1p.framer-v-jmo0rp .framer-ycn3ux, .framer-VEF1p.framer-v-1w2q3q5 .framer-ycn3ux, .framer-VEF1p.framer-v-ahwsr2 .framer-ycn3ux, .framer-VEF1p.framer-v-18uv4qt .framer-ycn3ux, .framer-VEF1p.framer-v-q57rs7 .framer-ycn3ux { min-height: 53px; min-width: 46px; }\",\".framer-VEF1p.framer-v-77v20 .framer-1awunps, .framer-VEF1p.framer-v-e8ev98 .framer-13dxr1g, .framer-VEF1p.framer-v-sl73q .framer-bor7sp, .framer-VEF1p.framer-v-o7pcsu .framer-1qamon8, .framer-VEF1p.framer-v-1997vb6 .framer-g34u9c, .framer-VEF1p.framer-v-1wqocu1 .framer-fw2q8j { align-self: unset; width: 100%; }\",\".framer-VEF1p.framer-v-77v20 .framer-11us6z { align-self: stretch; flex: none; height: min-content; order: 1; width: auto; }\",\".framer-VEF1p.framer-v-77v20 .framer-z0s8i9 { height: min-content; max-width: unset; order: 0; padding: 40px 24px 40px 24px; }\",\".framer-VEF1p.framer-v-e8ev98 .framer-11us6z, .framer-VEF1p.framer-v-sl73q .framer-11us6z, .framer-VEF1p.framer-v-o7pcsu .framer-11us6z, .framer-VEF1p.framer-v-1997vb6 .framer-11us6z, .framer-VEF1p.framer-v-1wqocu1 .framer-11us6z, .framer-VEF1p.framer-v-j06k9w .framer-11us6z { align-self: stretch; flex: none; height: min-content; order: 1; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-VEF1p.framer-v-e8ev98 .framer-z0s8i9, .framer-VEF1p.framer-v-sl73q .framer-z0s8i9, .framer-VEF1p.framer-v-o7pcsu .framer-z0s8i9, .framer-VEF1p.framer-v-1997vb6 .framer-z0s8i9, .framer-VEF1p.framer-v-1wqocu1 .framer-z0s8i9, .framer-VEF1p.framer-v-j06k9w .framer-z0s8i9 { height: 600px; max-width: unset; order: 0; }\",...sharedStyle.css,'.framer-VEF1p[data-border=\"true\"]::after, .framer-VEF1p [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 640\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zkecmXv3X\":{\"layout\":[\"fixed\",\"fixed\"]},\"MCBSxdS2b\":{\"layout\":[\"fixed\",\"fixed\"]},\"nx7Z7CGf2\":{\"layout\":[\"fixed\",\"fixed\"]},\"cManqmx7p\":{\"layout\":[\"fixed\",\"fixed\"]},\"xKlmQYvTQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"U422H5rig\":{\"layout\":[\"fixed\",\"fixed\"]},\"s0Uv500xq\":{\"layout\":[\"fixed\",\"fixed\"]},\"GPwqVgXv_\":{\"layout\":[\"fixed\",\"fixed\"]},\"KEcnciUpZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"r5NME5GL3\":{\"layout\":[\"fixed\",\"fixed\"]},\"nNyHcWc10\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bx_PnpsPp\":{\"layout\":[\"fixed\",\"fixed\"]},\"mxd1tAkdF\":{\"layout\":[\"fixed\",\"fixed\"]},\"YlI30mhCn\":{\"layout\":[\"fixed\",\"fixed\"]},\"PuOeFLzb4\":{\"layout\":[\"auto\",\"auto\"]},\"San5hVE9n\":{\"layout\":[\"auto\",\"auto\"]},\"deFkV7Xof\":{\"layout\":[\"auto\",\"auto\"]},\"zjTBiJKxp\":{\"layout\":[\"auto\",\"auto\"]},\"N8HSddbmT\":{\"layout\":[\"auto\",\"auto\"]},\"t81cxxbaZ\":{\"layout\":[\"auto\",\"auto\"]},\"YT8x2e3Hg\":{\"layout\":[\"auto\",\"auto\"]},\"Wd30Mwqll\":{\"layout\":[\"auto\",\"auto\"]},\"HW8bLvfxY\":{\"layout\":[\"auto\",\"auto\"]},\"PRc25eKF4\":{\"layout\":[\"auto\",\"auto\"]},\"tbJdfbJrw\":{\"layout\":[\"auto\",\"auto\"]},\"Gdo18QINl\":{\"layout\":[\"auto\",\"auto\"]},\"qMHH26X1m\":{\"layout\":[\"auto\",\"auto\"]},\"Ju_aAM_4A\":{\"layout\":[\"auto\",\"auto\"]},\"VijhG3n2j\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"OG5wahFKB\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEIa7lzreq=withCSS(Component,css,\"framer-VEF1p\");export default FramerEIa7lzreq;FramerEIa7lzreq.displayName=\"fake_prompt_no_code\";FramerEIa7lzreq.defaultProps={height:640,width:1400};addPropertyControls(FramerEIa7lzreq,{variant:{options:[\"ifyo_zl7P\",\"zkecmXv3X\",\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"KEcnciUpZ\",\"r5NME5GL3\",\"nNyHcWc10\",\"Bx_PnpsPp\",\"mxd1tAkdF\",\"YlI30mhCn\",\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"],optionTitles:[\"Default\",\"form\",\"option 2\",\"option 3\",\"option 4\",\"loading option 2\",\"loading option 3\",\"loading option 4\",\"loading option 5\",\"option 5\",\"loading\",\"option 6\",\"loading option 6\",\"loading option 7\",\"option 7\",\"Mobile : default\",\"Mobile : loading form\",\"mobile : form\",\"mobile : option 2\",\"mobile : loading option 2 \",\"mobile : loading option 3\",\"mobile : option 3\",\"mobile : loading option 4\",\"mobile : option 4\",\"mobile : option 5\",\"mobile : loading option 5\",\"mobile : loading option 6\",\"mobile : option 6\",\"mobile: loading option 7\",\"mobile : option 7\"],title:\"Variant\",type:ControlType.Enum},OG5wahFKB:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerEIa7lzreq,[{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Material Icons\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhI8tIHh.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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SelectFonts,...InputFonts,...EmbedFonts,...LoadingFonts,...HubSpotFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEIa7lzreq\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"OG5wahFKB\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zkecmXv3X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MCBSxdS2b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nx7Z7CGf2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cManqmx7p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xKlmQYvTQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U422H5rig\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s0Uv500xq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GPwqVgXv_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KEcnciUpZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r5NME5GL3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nNyHcWc10\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bx_PnpsPp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mxd1tAkdF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YlI30mhCn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PuOeFLzb4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"San5hVE9n\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"deFkV7Xof\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zjTBiJKxp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N8HSddbmT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"t81cxxbaZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YT8x2e3Hg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Wd30Mwqll\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HW8bLvfxY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PRc25eKF4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tbJdfbJrw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Gdo18QINl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qMHH26X1m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ju_aAM_4A\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VijhG3n2j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"640\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EIa7lzreq.map"],"mappings":"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"}