{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/8Z4844GJoo1J2By80TF3/98JN9BHB2ort10d0jawu/mZ9iP6q5Y.js", "ssg:https://framerusercontent.com/modules/EZf2TnGQ35HDr6CTkOPx/9NLcj2pWmYB2zc2gNpF9/DpcInyein.js", "ssg:https://framerusercontent.com/modules/RQvlhFlE7v7G94efrRFA/VkSUtwsiKabaeKeNWEWB/dsiziO7wL.js", "ssg:https://framerusercontent.com/modules/IWYwMZ3244lAJN8mh36k/0mkwF68UnFgh5ewrQ5Py/JumwXPbZ7.js", "ssg:https://framerusercontent.com/modules/24qeLSurhZFOunJO3fAh/j8By9PzC5BuA9DC2N5wR/VP3LCsxPN.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/qlN04JKWsPiTjQExBWpf/SlideShow.js", "ssg:https://framerusercontent.com/modules/7bDipOjk4ywylfjfYILp/2TmpskUS0LemPwaJ063e/Z1bDSJ3xt.js", "ssg:https://framerusercontent.com/modules/dijHnh89Ys7tt21SrVkb/Ybe7ZhYD92gwgNcYWNlQ/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (99efa6a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qM59lJqsxsdVFG8M522W/IXOfmNkNqtGfWJQjOMft/Y5ch1hVnn.js\";import ButtonsPrimary from\"https://framerusercontent.com/modules/aqylcmU9lf8bgsl5nRIR/w99j1qPXMbKZqQjZCdUe/TiO6FSbKI.js\";const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const cycleOrder=[\"D_arrNx2k\",\"pSkdqArsw\",\"drPCTQ57r\",\"Bohf5MT85\",\"uMmkRlJx3\",\"BGVXqfWSP\",\"cjHxq07FG\"];const serializationHash=\"framer-81w3I\";const variantClassNames={BGVXqfWSP:\"framer-v-1rkd06y\",Bohf5MT85:\"framer-v-100x2pk\",cjHxq07FG:\"framer-v-5jw770\",D_arrNx2k:\"framer-v-1ufrhc6\",drPCTQ57r:\"framer-v-18egcz7\",pSkdqArsw:\"framer-v-14g6dbm\",uMmkRlJx3:\"framer-v-1np1guy\"};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 humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={\"Variant 1\":\"D_arrNx2k\",\"Variant 2\":\"pSkdqArsw\",\"Variant 3\":\"drPCTQ57r\",\"Variant 4\":\"Bohf5MT85\",\"Variant 5\":\"uMmkRlJx3\",\"Variant 6\":\"BGVXqfWSP\",\"Variant 7\":\"cjHxq07FG\"};const getProps=({click,click2,click3,click4,direction,direction2,direction3,direction4,direction5,height,id,width,...props})=>{return{...props,eUyK0WacS:humanReadableEnumMap[direction]??direction??props.eUyK0WacS??\"row\",FrN2lKxoz:click3??props.FrN2lKxoz,N9h6yxYgT:humanReadableEnumMap[direction5]??direction5??props.N9h6yxYgT??\"row\",QiODHP4e4:click4??props.QiODHP4e4,TLzOjzZxK:humanReadableEnumMap[direction3]??direction3??props.TLzOjzZxK??\"row\",uG1ZnW014:humanReadableEnumMap[direction2]??direction2??props.uG1ZnW014??\"row\",UtG16dv6H:click??props.UtG16dv6H,variant:humanReadableVariantMap[props.variant]??props.variant??\"D_arrNx2k\",WCVdocXhe:humanReadableEnumMap[direction4]??direction4??props.WCVdocXhe??\"row\",xIGQ5zo6B:click2??props.xIGQ5zo6B};};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,UtG16dv6H,xIGQ5zo6B,FrN2lKxoz,QiODHP4e4,eUyK0WacS,uG1ZnW014,TLzOjzZxK,WCVdocXhe,N9h6yxYgT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D_arrNx2k\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1emh7fp=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"pSkdqArsw\"),15e3);});const onAppear1kxj2wv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"drPCTQ57r\"),15e3);});const onAppear1i4b60n=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Bohf5MT85\"),15e3);});const onAppear4xzot1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"D_arrNx2k\"),15e3);});const onTapStart2s8oai=activeVariantCallback(async(...args)=>{setVariant(\"D_arrNx2k\");});const onTap2s8oai=activeVariantCallback(async(...args)=>{setVariant(\"D_arrNx2k\");});const onTapyw05m=activeVariantCallback(async(...args)=>{setVariant(\"pSkdqArsw\");});const onTaphajk3y=activeVariantCallback(async(...args)=>{setVariant(\"drPCTQ57r\");});const onTapt55dse=activeVariantCallback(async(...args)=>{setVariant(\"Bohf5MT85\");});const onTapgsehtq=activeVariantCallback(async(...args)=>{if(UtG16dv6H){const res=await UtG16dv6H(...args);if(res===false)return false;}});const onTapgjadrv=activeVariantCallback(async(...args)=>{if(xIGQ5zo6B){const res=await xIGQ5zo6B(...args);if(res===false)return false;}});const onTapkupl7e=activeVariantCallback(async(...args)=>{if(FrN2lKxoz){const res=await FrN2lKxoz(...args);if(res===false)return false;}});const onTap17aj5lk=activeVariantCallback(async(...args)=>{if(QiODHP4e4){const res=await QiODHP4e4(...args);if(res===false)return false;}});useOnVariantChange(baseVariant,{BGVXqfWSP:undefined,Bohf5MT85:onAppear4xzot1,cjHxq07FG:undefined,default:onAppear1emh7fp,drPCTQ57r:onAppear1i4b60n,pSkdqArsw:onAppear1kxj2wv,uMmkRlJx3:undefined});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"BGVXqfWSP\",\"cjHxq07FG\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"drPCTQ57r\")return true;return false;};const isDisplayed2=()=>{if([\"pSkdqArsw\",\"drPCTQ57r\",\"Bohf5MT85\",\"uMmkRlJx3\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"Bohf5MT85\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"uMmkRlJx3\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"pSkdqArsw\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"BGVXqfWSP\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"cjHxq07FG\")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-1ufrhc6\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"D_arrNx2k\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"4px -4px 16px 8px rgba(192, 62, 220, 0.2)\",...style},variants:{BGVXqfWSP:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({BGVXqfWSP:{\"data-framer-name\":\"Variant 6\",\"data-highlight\":undefined},Bohf5MT85:{\"data-framer-name\":\"Variant 4\"},cjHxq07FG:{\"data-framer-name\":\"Variant 7\",\"data-highlight\":undefined},drPCTQ57r:{\"data-framer-name\":\"Variant 3\"},pSkdqArsw:{\"data-framer-name\":\"Variant 2\"},uMmkRlJx3:{\"data-framer-name\":\"Variant 5\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11wqjro\",\"data-border\":true,\"data-framer-name\":\"Frame\",layoutDependency:layoutDependency,layoutId:\"KMOqpZzRr\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(90deg, rgb(142, 49, 164) 0%, rgb(80, 36, 220) 100%)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3goxzz\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"WDWY3z1rA\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cjevz1\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Horizontal\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Qutqj3APE\",onTapStart:onTapStart2s8oai,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9cdddcf7-70f9-4e62-9cf7-f5f86452d0b9, rgb(146, 87, 221))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(245, 243, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{Bohf5MT85:{\"--border-color\":\"rgba(208, 212, 220, 0.6)\",backgroundColor:\"rgb(255, 255, 255)\"},drPCTQ57r:{\"--border-color\":\"rgba(208, 212, 220, 0.6)\",backgroundColor:\"rgb(255, 255, 255)\"},pSkdqArsw:{\"--border-color\":\"rgba(208, 212, 220, 0.6)\",backgroundColor:\"rgb(255, 255, 255)\"},uMmkRlJx3:{\"--border-color\":\"rgba(208, 212, 220, 0.6)\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({Bohf5MT85:{onTap:onTap2s8oai},drPCTQ57r:{onTap:onTap2s8oai},pSkdqArsw:{onTap:onTap2s8oai},uMmkRlJx3:{onTap:onTap2s8oai}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e6m7p1\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"PCj22rFYL\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{Bohf5MT85:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(208, 212, 220, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},drPCTQ57r:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(208, 212, 220, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},uMmkRlJx3:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(208, 212, 220, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({Bohf5MT85:{\"data-border\":true},drPCTQ57r:{\"data-border\":true},pSkdqArsw:{\"data-highlight\":true,onTap:onTap2s8oai},uMmkRlJx3:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cqipqu\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"CGfGKgCq_\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(60, 34, 187)))\"},children:\"Create a list\"})}),className:\"framer-1a156y6\",\"data-framer-name\":\"Job Change Tracker\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"NuwvEUoGG\",style:{\"--extracted-r6o4lv\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(60, 34, 187))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{Bohf5MT85:{\"--extracted-r6o4lv\":\"var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0))\"},drPCTQ57r:{\"--extracted-r6o4lv\":\"var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0))\"},pSkdqArsw:{\"--extracted-r6o4lv\":\"var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0))\"},uMmkRlJx3:{\"--extracted-r6o4lv\":\"var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Bohf5MT85:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0)))\"},children:\"Create a list\"})})},drPCTQ57r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0)))\"},children:\"Create a list\"})})},pSkdqArsw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0)))\"},children:\"Create a list\"})})},uMmkRlJx3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(0, 0, 0)))\"},children:\"Create a list\"})})}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-exzzln\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Horizontal\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rJQBZ5BGL\",onTap:onTapyw05m,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(208, 212, 220, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{Bohf5MT85:{\"--border-color\":\"rgb(208, 212, 220)\",backgroundColor:\"rgb(255, 255, 255)\"},drPCTQ57r:{\"--border-color\":\"rgb(208, 212, 220)\",backgroundColor:\"rgb(255, 255, 255)\"},pSkdqArsw:{\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",backgroundColor:\"rgb(245, 243, 255)\"},uMmkRlJx3:{\"--border-color\":\"rgb(208, 212, 220)\",backgroundColor:\"rgb(255, 255, 255)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wu0829\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"ncQtmoxTS\",style:{backgroundColor:\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-frx11n\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"msMB2lJsc\",style:{backgroundColor:\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Enrich your data\"})}),className:\"framer-6ndv8h\",\"data-framer-name\":\"Job Change Tracker\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"eT4SaByeF\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{pSkdqArsw:{\"--extracted-r6o4lv\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(60, 34, 187))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({pSkdqArsw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(60, 34, 187)))\"},children:\"Enrich your data\"})})}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lh659n\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Horizontal\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"x1xwmihRr\",onTap:onTaphajk3y,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(208, 212, 220, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{Bohf5MT85:{\"--border-color\":\"rgb(208, 212, 220)\",backgroundColor:\"rgb(255, 255, 255)\"},drPCTQ57r:{\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",backgroundColor:\"rgb(245, 243, 255)\"},uMmkRlJx3:{\"--border-color\":\"rgb(208, 212, 220)\",backgroundColor:\"rgb(255, 255, 255)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xlwdhn\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"vjT8a0G4B\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ilmpp5\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"n88oMTnmA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use our Quantum Agent\"})}),className:\"framer-idcj2u\",\"data-framer-name\":\"Technographics\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"n9BJP37nZ\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3804b6\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Horizontal\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"v8zqnW2ZY\",onTap:onTapt55dse,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(208, 212, 220, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{Bohf5MT85:{\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",backgroundColor:\"rgb(245, 243, 255)\"},uMmkRlJx3:{\"--border-color\":\"rgb(208, 212, 220)\",backgroundColor:\"rgb(255, 255, 255)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tzjlg3\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"cUZ_JYnur\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sccmrs\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"ZxcqvTfVR\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Automate Workflows\"})}),className:\"framer-17gjpd5\",\"data-framer-name\":\"Hiring Trend Analyzer\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"gX1mO4GQf\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iy3rd4\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"ZSVd8bGNY\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{BGVXqfWSP:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},cjHxq07FG:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}},...addPropertyOverrides({BGVXqfWSP:{\"data-border\":true},cjHxq07FG:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n7loml\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"CD4zawB8l\",style:{\"--118pi6o\":eUyK0WacS,\"--11d3ad8\":eUyK0WacS===\"column\"?undefined:\"1 0 0px\",\"--18upzhy\":eUyK0WacS===\"row\"?0:\"calc(40px / 2)\",\"--1os828g\":eUyK0WacS===\"column\"?\"100%\":\"1px\",\"--pakdr9\":eUyK0WacS===\"column\"?0:\"calc(40px / 2)\",backgroundColor:\"var(--token-821dd51f-9d92-44f4-bf42-cdbe0a8185c7, rgb(245, 243, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"-0.39809593676181976px 0.39809593676181976px NaNpx -0.9375px rgba(192, 62, 220, 0.18), -1.207253071552259px 1.207253071552259px NaNpx -1.875px rgba(192, 62, 220, 0.17), -3.1913267607422307px 3.1913267607422307px NaNpx -2.8125px rgba(192, 62, 220, 0.15), -10px 10px NaNpx -3.75px rgba(192, 62, 220, 0.06)\"},variants:{BGVXqfWSP:{backgroundColor:\"rgba(0, 0, 0, 0)\"},cjHxq07FG:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-drbwxt\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"OMb4Suj8J\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c2vj5o\",layoutDependency:layoutDependency,layoutId:\"hR9Ab4MBD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17a5okl\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"BoB54ha8l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1kintjw\",\"data-styles-preset\":\"Y5ch1hVnn\",children:\"Build Hyper-Relevant and Targeted Lead Lists\"})}),className:\"framer-txqr7e\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HO7pDeRAS\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{Bohf5MT85:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\"},drPCTQ57r:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\"},pSkdqArsw:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\"},uMmkRlJx3:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bohf5MT85:{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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Create Hyper Personalized Messaging\"})}),fonts:[\"Inter-Medium\"]},drPCTQ57r:{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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use a powerful AI Agent to automate your workflows\"})}),fonts:[\"Inter-Medium\"]},pSkdqArsw:{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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Get the most updated data of companies and prospects \"})}),fonts:[\"Inter-Medium\"]},uMmkRlJx3:{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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Stay up to date with AI Triggers\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use Persana to build your ideal list of leads and accounts\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(15, 13, 28))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(15, 13, 28))\"},children:\"700M+ contacts, 200M+ companies and 245+ industries worldwide all in Persana, all synced to your CRM (HubSpot, Salesforce, and more)\"})]}),className:\"framer-c4i9cs\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qcFCeawO3\",style:{\"--extracted-1iakedh\":\"rgb(15, 13, 28)\",\"--extracted-2gxw0f\":\"rgb(15, 13, 28)\",\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bohf5MT85:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Create hyper personalized email copy for each prospect at scale \"})})},drPCTQ57r:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Find any information about company or prospect publicly available on the Internet. Do it for 100s of companies and prospects in minutes.\"})})},pSkdqArsw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use 75+ enrichments to both discover more information and expand your outreach campaigns. Find key decision makers\u2019 emails, company tech stacks and more to create hyper relevant campaigns\"})})},uMmkRlJx3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"From tracking open roles and analyzing hiring trends to highlighting talent seeking opportunities, our AI signals can pinpoint which companies to keep on your radar.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ixodf-container\",layoutDependency:layoutDependency,layoutId:\"HgJVn7gNf-container\",nodeId:\"HgJVn7gNf\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"HgJVn7gNf\",layoutId:\"HgJVn7gNf\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eu67nf\",layoutDependency:layoutDependency,layoutId:\"t7sHVvhVg\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,src:\"https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png\",srcSet:\"https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png 2102w\"},className:\"framer-9tb2e5\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"BbeUFiEEq\",...addPropertyOverrides({drPCTQ57r:{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"528px\",src:\"https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png\",srcSet:\"https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png 2102w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"533px\",src:\"https://framerusercontent.com/images/gShMwNAACWc954IWZCiI8Nkbuno.png\",srcSet:\"https://framerusercontent.com/images/gShMwNAACWc954IWZCiI8Nkbuno.png?scale-down-to=512 512w,https://framerusercontent.com/images/gShMwNAACWc954IWZCiI8Nkbuno.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gShMwNAACWc954IWZCiI8Nkbuno.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gShMwNAACWc954IWZCiI8Nkbuno.png 2102w\"},className:\"framer-uqy4dh\",\"data-framer-name\":\"image 6\",layoutDependency:layoutDependency,layoutId:\"EKZOGgMmC\"}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,src:\"https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png\",srcSet:\"https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=512 512w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png 2102w\"},className:\"framer-13c1854\",\"data-framer-name\":\"image 3\",layoutDependency:layoutDependency,layoutId:\"Wjlgx6Fdo\",...addPropertyOverrides({Bohf5MT85:{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"534px\",src:\"https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png\",srcSet:\"https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=512 512w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png 2102w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,src:\"https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png\",srcSet:\"https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png 2102w\"},className:\"framer-jf32gq\",\"data-framer-name\":\"image 5\",layoutDependency:layoutDependency,layoutId:\"o2gRuNOUo\",...addPropertyOverrides({uMmkRlJx3:{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"533px\",src:\"https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png\",srcSet:\"https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png 2102w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,src:\"https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png\",srcSet:\"https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png 2102w\"},className:\"framer-12nx5rj\",\"data-framer-name\":\"image 39\",layoutDependency:layoutDependency,layoutId:\"hgAGKNwo7\",...addPropertyOverrides({pSkdqArsw:{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"528px\",src:\"https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png\",srcSet:\"https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png?scale-down-to=512 512w,https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6vMnNnO1EClUttHCNoZ1JsFcsNc.png 2102w\"}}},baseVariant,gestureVariant)})]})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2iqpbz\",\"data-framer-name\":\"Indicators\",layoutDependency:layoutDependency,layoutId:\"MLwxAXSIC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zo74ij\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"eLdbUBmwG\",style:{backgroundColor:\"var(--token-9cdddcf7-70f9-4e62-9cf7-f5f86452d0b9, rgb(146, 87, 221))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{Bohf5MT85:{backgroundColor:\"rgb(212, 212, 212)\"},drPCTQ57r:{backgroundColor:\"rgb(212, 212, 212)\"},pSkdqArsw:{backgroundColor:\"rgb(212, 212, 212)\"},uMmkRlJx3:{backgroundColor:\"rgb(212, 212, 212)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bxfqpc\",\"data-framer-name\":\"Ellipse\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KRl7ai_kB\",onTap:onTapgsehtq,style:{backgroundColor:\"rgb(212, 212, 212)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{pSkdqArsw:{backgroundColor:\"var(--token-9cdddcf7-70f9-4e62-9cf7-f5f86452d0b9, rgb(146, 87, 221))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3pdghy\",\"data-framer-name\":\"Ellipse\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ETOjiIDDE\",onTap:onTapgjadrv,style:{backgroundColor:\"rgb(212, 212, 212)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{drPCTQ57r:{backgroundColor:\"var(--token-9cdddcf7-70f9-4e62-9cf7-f5f86452d0b9, rgb(146, 87, 221))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10314qc\",\"data-framer-name\":\"Ellipse\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"djNLeY_yr\",onTap:onTapkupl7e,style:{backgroundColor:\"rgb(212, 212, 212)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{Bohf5MT85:{backgroundColor:\"var(--token-9cdddcf7-70f9-4e62-9cf7-f5f86452d0b9, rgb(146, 87, 221))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-adrxom\",\"data-framer-name\":\"Ellipse\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Gvx_1SY07\",onTap:onTap17aj5lk,style:{backgroundColor:\"rgb(212, 212, 212)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{uMmkRlJx3:{backgroundColor:\"var(--token-9cdddcf7-70f9-4e62-9cf7-f5f86452d0b9, rgb(146, 87, 221))\"}}})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-msr3ae\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"Ob7QWgEEd\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v2i62n\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"k37iF8vOP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-po7r9d\",layoutDependency:layoutDependency,layoutId:\"nBPFd6yKk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k7drl2\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"mCnjEcsJi\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Get the most updated data of companies and prospects \"})}),className:\"framer-1d6nhsh\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"OMkPP_ZSW\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use 30+ enrichments to both discover more information and expand your outreach campaigns. Find key decision makers\u2019 emails, company tech stacks and more to create hyper relevant campaigns\"})}),className:\"framer-12amo5l\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m4Kue3yJw\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wxn4l7-container\",layoutDependency:layoutDependency,layoutId:\"bxSyIoCQA-container\",nodeId:\"bxSyIoCQA\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"bxSyIoCQA\",layoutId:\"bxSyIoCQA\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1420,pixelWidth:1860,sizes:\"460px\",src:\"https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png\",srcSet:\"https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png 1860w\"},className:\"framer-1lrs0dg\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"y7z_r6S1q\"})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hwt1ug\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"zTvwDvrQ1\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1imw0yn\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"IBM7FCvHl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejigg7\",layoutDependency:layoutDependency,layoutId:\"LVjBMK489\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t5jdva\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"wV8nIHCNs\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use a powerful AI Agent to automate your workflows\"})}),className:\"framer-1pki0iv\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Ly6sdAxTH\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Find any information about company or prospect publicly available on the Internet. Do it for 100s of companies and prospects in minutes.\"})}),className:\"framer-kglknx\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Bbt4A24Aq\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t927b-container\",layoutDependency:layoutDependency,layoutId:\"yoOfiY3Oy-container\",nodeId:\"yoOfiY3Oy\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"yoOfiY3Oy\",layoutId:\"yoOfiY3Oy\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:2364,pixelWidth:3652,positionX:\"center\",positionY:\"center\",sizes:\"460px\",src:\"https://framerusercontent.com/images/YHF3bNV1o0LxcUZeWjXHewMlYA.png\",srcSet:\"https://framerusercontent.com/images/YHF3bNV1o0LxcUZeWjXHewMlYA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YHF3bNV1o0LxcUZeWjXHewMlYA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YHF3bNV1o0LxcUZeWjXHewMlYA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YHF3bNV1o0LxcUZeWjXHewMlYA.png 3652w\"},className:\"framer-18gump0\",\"data-framer-name\":\"image 7\",layoutDependency:layoutDependency,layoutId:\"P9Jnq5Vvx\"})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1szi8gk\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"yRRR5v5xA\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qaza1c\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"xy0PyVlVL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3qk5vh\",layoutDependency:layoutDependency,layoutId:\"NlNq1YCr0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-udsf5q\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"dPg95eLvZ\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Create Hyper Personalized Messaging\"})}),className:\"framer-15lg950\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"nYv_vvsjI\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Create hyper personalized email copy for each prospect at scale \"})}),className:\"framer-epi4s7\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z3zNRs8hm\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5m8m20-container\",layoutDependency:layoutDependency,layoutId:\"FvRwRnPoM-container\",nodeId:\"FvRwRnPoM\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"FvRwRnPoM\",layoutId:\"FvRwRnPoM\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1004,pixelWidth:1376,sizes:\"460px\",src:\"https://framerusercontent.com/images/S81agGdQBYbw66u9uq8XhP6b3kk.png\",srcSet:\"https://framerusercontent.com/images/S81agGdQBYbw66u9uq8XhP6b3kk.png?scale-down-to=512 512w,https://framerusercontent.com/images/S81agGdQBYbw66u9uq8XhP6b3kk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S81agGdQBYbw66u9uq8XhP6b3kk.png 1376w\"},className:\"framer-1a4504e\",\"data-framer-name\":\"image 1\",layoutDependency:layoutDependency,layoutId:\"JWZ0Qj56P\"})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jjf923\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"tVpSyDp_N\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ate65\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"OXchuD8Fu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tc6ec1\",layoutDependency:layoutDependency,layoutId:\"zAe3SwomP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oo6uhy\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"jWyI9Iy_c\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Stay up to date with AI Triggers\"})}),className:\"framer-1ueu2km\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"qwmGijCFF\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"From tracking open roles and analyzing hiring trends to highlighting talent seeking opportunities, our AI signals can pinpoint which companies to keep on your radar.\"})}),className:\"framer-m2oq5d\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GgrK0kCV0\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i9wber-container\",layoutDependency:layoutDependency,layoutId:\"Ef2aQcuRB-container\",nodeId:\"Ef2aQcuRB\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"Ef2aQcuRB\",layoutId:\"Ef2aQcuRB\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:708,pixelWidth:938,sizes:\"454px\",src:\"https://framerusercontent.com/images/mlDN2dqBKiqzioFybiS0FSwGMM4.png\",srcSet:\"https://framerusercontent.com/images/mlDN2dqBKiqzioFybiS0FSwGMM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/mlDN2dqBKiqzioFybiS0FSwGMM4.png 938w\"},className:\"framer-ftpqq5\",\"data-framer-name\":\"image 1\",layoutDependency:layoutDependency,layoutId:\"Kl4RhJx04\"})]}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-97qe5h\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"LZeu92T4h\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19ujxt3\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"SRLCQRiCW\",style:{\"--1imyc5o\":uG1ZnW014===\"column\"?0:\"calc(40px / 2)\",\"--1ke83jb\":uG1ZnW014===\"row\"?0:\"calc(40px / 2)\",\"--1yjxgaq\":uG1ZnW014===\"column\"?\"100%\":\"1px\",\"--3buyut\":uG1ZnW014===\"column\"?undefined:\"1 0 0px\",\"--4f3gla\":uG1ZnW014,\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b9aj2l\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"T4vWZd3ps\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gk1ka4\",layoutDependency:layoutDependency,layoutId:\"RteD2rUfS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5z16h7\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"nQw7MqS0e\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Get the most updated data of companies and prospects \"})}),className:\"framer-xr1bdp\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Z_2Qjo1Ei\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use 30+ enrichments to both discover more information and expand your outreach campaigns. Find key decision makers\u2019 emails, company tech stacks and more to create hyper relevant campaigns\"})}),className:\"framer-1mzaxso\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"voClJnlfV\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j3seoq-container\",layoutDependency:layoutDependency,layoutId:\"cyata7kun-container\",nodeId:\"cyata7kun\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"cyata7kun\",layoutId:\"cyata7kun\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vh0ipu\",layoutDependency:layoutDependency,layoutId:\"zxvzXm66_\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1420,pixelWidth:1860,sizes:\"433px\",src:\"https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png\",srcSet:\"https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V3FqGPvalB1wqPPTJokv35fAkc.png 1860w\"},className:\"framer-1surad8\",\"data-framer-name\":\"image 8\",layoutDependency:layoutDependency,layoutId:\"iU6Ewh0bB\"})})]})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3x9xl\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"s30F3m992\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ld6ccx\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"beC_9zeIg\",style:{\"--17ccqoc\":TLzOjzZxK===\"column\"?\"100%\":\"1px\",\"--1mccvyg\":TLzOjzZxK,\"--3188ik\":TLzOjzZxK===\"column\"?undefined:\"1 0 0px\",\"--8bk6kt\":TLzOjzZxK===\"row\"?0:\"calc(40px / 2)\",\"--9fngpc\":TLzOjzZxK===\"column\"?0:\"calc(40px / 2)\",\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cqeb44\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"YOLy6Q5Dd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oyvv80\",layoutDependency:layoutDependency,layoutId:\"NcKXFIt0O\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-om0xkm\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"McsrGp__z\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Use a powerful AI Agent to automate your workflows\"})}),className:\"framer-durazh\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"CoXKnIA9c\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Find any information about company or prospect publicly available on the Internet. Do it for 100s of companies and prospects in minutes.\"})}),className:\"framer-1hyhuuw\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OdoGrYUX_\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bgqzqb-container\",layoutDependency:layoutDependency,layoutId:\"zSbsUC6Tq-container\",nodeId:\"zSbsUC6Tq\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"zSbsUC6Tq\",layoutId:\"zSbsUC6Tq\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15j2q3h\",layoutDependency:layoutDependency,layoutId:\"hG0kRyX_W\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"528px\",src:\"https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png\",srcSet:\"https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9wZRl9m40UiFEwP5PTEfVVPNHE.png 2102w\"},className:\"framer-1mmbse6\",\"data-framer-name\":\"image 4\",layoutDependency:layoutDependency,layoutId:\"F66PNqNeX\"})})]})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1un7yra\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"yjBFi0GkF\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sce1uf\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"BPgnA3pPh\",style:{\"--1pjm6cp\":WCVdocXhe===\"column\"?undefined:\"1 0 0px\",\"--4wllkx\":WCVdocXhe===\"column\"?0:\"calc(40px / 2)\",\"--a2bo4g\":WCVdocXhe,\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",\"--rqk4j9\":WCVdocXhe===\"column\"?\"100%\":\"1px\",\"--uwfcfx\":WCVdocXhe===\"row\"?0:\"calc(40px / 2)\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-neb14p\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"c50tZUDGc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15aaycm\",layoutDependency:layoutDependency,layoutId:\"pdC9eTC8n\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ew8btx\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"UX4RYJYQl\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Create Hyper Personalized Messaging\"})}),className:\"framer-5qoxqy\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"QYigtj3So\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Create hyper personalized email copy for each prospect at scale \"})}),className:\"framer-jx26j3\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MJzxSx325\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lcyfzq-container\",layoutDependency:layoutDependency,layoutId:\"fAsYBOAgn-container\",nodeId:\"fAsYBOAgn\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"fAsYBOAgn\",layoutId:\"fAsYBOAgn\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ma70ii\",layoutDependency:layoutDependency,layoutId:\"r2uAdXJE7\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"534px\",src:\"https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png\",srcSet:\"https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=512 512w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qLiXTM3fdMzbgzdptnRiooYUtQM.png 2102w\"},className:\"framer-r6w3pq\",\"data-framer-name\":\"image 3\",layoutDependency:layoutDependency,layoutId:\"Wy8j5asB6\"})})]})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10twzuh\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"EZJQK9SC6\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-anfqxh\",\"data-border\":true,\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"go3R2AVVc\",style:{\"--1nuz85m\":N9h6yxYgT,\"--1qg7o4g\":N9h6yxYgT===\"column\"?\"100%\":\"1px\",\"--1u81qmo\":N9h6yxYgT===\"column\"?undefined:\"1 0 0px\",\"--38s4e9\":N9h6yxYgT===\"row\"?0:\"calc(40px / 2)\",\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",\"--rzd46w\":N9h6yxYgT===\"column\"?0:\"calc(40px / 2)\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5z7p6h\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"V6RdQSSKi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tz9vl9\",layoutDependency:layoutDependency,layoutId:\"g3Zx4gJHq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d68buh\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"n7aBiFY17\",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\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Stay up to date with AI Triggers\"})}),className:\"framer-unk5ih\",\"data-framer-name\":\"Use job change tracker to stay proactive about enhancing client loyalty\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"sFmGsKx5l\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--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-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"From tracking open roles and analyzing hiring trends to highlighting talent seeking opportunities, our AI signals can pinpoint which companies to keep on your radar.\"})}),className:\"framer-1dt6kcq\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IJOaa9_Xp\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wgq5d4-container\",layoutDependency:layoutDependency,layoutId:\"tLgoAxaeV-container\",nodeId:\"tLgoAxaeV\",rendersWithMotion:true,scopeId:\"mZ9iP6q5Y\",children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Get started for free\",height:\"100%\",id:\"tLgoAxaeV\",layoutId:\"tLgoAxaeV\",UWKk6KEUY:\"http://platform.persana.ai\",variant:\"vwmRsjCPM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-58dgl6\",layoutDependency:layoutDependency,layoutId:\"sLfcT7DPR\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2102,pixelWidth:2102,sizes:\"533px\",src:\"https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png\",srcSet:\"https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qFZGs2I6NlApwVX4SjFmBqPyYX0.png 2102w\"},className:\"framer-9o4in3\",\"data-framer-name\":\"image 5\",layoutDependency:layoutDependency,layoutId:\"Rm4g1Mkp0\"})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-81w3I.framer-4e88ru, .framer-81w3I .framer-4e88ru { display: block; }\",\".framer-81w3I.framer-1ufrhc6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 1135px; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-11wqjro { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-81w3I .framer-3goxzz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; min-width: 100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-81w3I .framer-cjevz1, .framer-81w3I .framer-exzzln, .framer-81w3I .framer-1lh659n, .framer-81w3I .framer-3804b6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 120px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-1e6m7p1, .framer-81w3I .framer-wu0829, .framer-81w3I .framer-xlwdhn, .framer-81w3I .framer-1tzjlg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-81w3I .framer-cqipqu, .framer-81w3I .framer-frx11n, .framer-81w3I .framer-ilmpp5, .framer-81w3I .framer-1sccmrs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-81w3I .framer-1a156y6, .framer-81w3I .framer-6ndv8h, .framer-81w3I .framer-idcj2u, .framer-81w3I .framer-17gjpd5, .framer-81w3I .framer-c4i9cs, .framer-81w3I .framer-12amo5l, .framer-81w3I .framer-kglknx, .framer-81w3I .framer-epi4s7, .framer-81w3I .framer-m2oq5d, .framer-81w3I .framer-1mzaxso, .framer-81w3I .framer-1hyhuuw, .framer-81w3I .framer-jx26j3, .framer-81w3I .framer-1dt6kcq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-81w3I .framer-iy3rd4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-81w3I .framer-1n7loml { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1120px; overflow: hidden; padding: 40px 0px 40px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-drbwxt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-height: 315px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-81w3I .framer-1c2vj5o, .framer-81w3I .framer-po7r9d, .framer-81w3I .framer-ejigg7, .framer-81w3I .framer-3qk5vh, .framer-81w3I .framer-1tc6ec1, .framer-81w3I .framer-1gk1ka4, .framer-81w3I .framer-oyvv80, .framer-81w3I .framer-15aaycm, .framer-81w3I .framer-1tz9vl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-81w3I .framer-17a5okl, .framer-81w3I .framer-1k7drl2, .framer-81w3I .framer-t5jdva, .framer-81w3I .framer-udsf5q, .framer-81w3I .framer-1oo6uhy, .framer-81w3I .framer-5z16h7, .framer-81w3I .framer-om0xkm, .framer-81w3I .framer-ew8btx, .framer-81w3I .framer-1d68buh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-81w3I .framer-txqr7e, .framer-81w3I .framer-1d6nhsh, .framer-81w3I .framer-1pki0iv, .framer-81w3I .framer-15lg950, .framer-81w3I .framer-1ueu2km, .framer-81w3I .framer-xr1bdp, .framer-81w3I .framer-durazh, .framer-81w3I .framer-5qoxqy, .framer-81w3I .framer-unk5ih { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-81w3I .framer-8ixodf-container, .framer-81w3I .framer-1wxn4l7-container, .framer-81w3I .framer-1t927b-container, .framer-81w3I .framer-5m8m20-container, .framer-81w3I .framer-i9wber-container, .framer-81w3I .framer-j3seoq-container, .framer-81w3I .framer-1bgqzqb-container, .framer-81w3I .framer-lcyfzq-container, .framer-81w3I .framer-wgq5d4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-81w3I .framer-1eu67nf, .framer-81w3I .framer-1vh0ipu, .framer-81w3I .framer-15j2q3h, .framer-81w3I .framer-ma70ii, .framer-81w3I .framer-58dgl6 { flex: none; height: 341px; overflow: visible; position: relative; width: 400px; }\",\".framer-81w3I .framer-9tb2e5, .framer-81w3I .framer-1mmbse6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 528px); left: -48px; position: absolute; right: -80px; top: -99px; }\",\".framer-81w3I .framer-uqy4dh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 533px); left: -54px; position: absolute; right: -79px; top: -99px; }\",\".framer-81w3I .framer-13c1854, .framer-81w3I .framer-r6w3pq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 534px); left: -54px; position: absolute; right: -80px; top: -120px; }\",\".framer-81w3I .framer-jf32gq, .framer-81w3I .framer-9o4in3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 533px); left: -53px; position: absolute; right: -80px; top: -129px; }\",\".framer-81w3I .framer-12nx5rj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 576px); left: -48px; position: absolute; right: -80px; top: -99px; }\",\".framer-81w3I .framer-2iqpbz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-81w3I .framer-zo74ij { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-81w3I .framer-bxfqpc, .framer-81w3I .framer-3pdghy, .framer-81w3I .framer-10314qc, .framer-81w3I .framer-adrxom { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 8px; }\",\".framer-81w3I .framer-msr3ae, .framer-81w3I .framer-hwt1ug, .framer-81w3I .framer-1szi8gk, .framer-81w3I .framer-jjf923 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1120px; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-v2i62n, .framer-81w3I .framer-1imw0yn, .framer-81w3I .framer-qaza1c, .framer-81w3I .framer-7ate65 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-81w3I .framer-1lrs0dg { aspect-ratio: 1.3098591549295775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 351px); min-width: 200px; position: relative; width: 460px; }\",\".framer-81w3I .framer-18gump0 { aspect-ratio: 1.544839255499154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 298px); min-width: 200px; position: relative; width: 460px; }\",\".framer-81w3I .framer-1a4504e { aspect-ratio: 1.3705179282868525 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 336px); min-width: 200px; position: relative; width: 460px; }\",\".framer-81w3I .framer-ftpqq5 { aspect-ratio: 1.3248587570621468 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 343px); position: relative; width: 454px; }\",\".framer-81w3I .framer-97qe5h, .framer-81w3I .framer-l3x9xl, .framer-81w3I .framer-1un7yra, .framer-81w3I .framer-10twzuh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-81w3I .framer-19ujxt3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: var(--4f3gla); flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 80px 64px 80px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-b9aj2l { align-content: flex-start; align-items: flex-start; display: flex; flex: var(--3buyut); flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-height: 315px; overflow: visible; padding: 0px; position: relative; width: var(--1yjxgaq); }\",\".framer-81w3I .framer-1surad8 { aspect-ratio: 1.3105413105413106 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 330px); left: 0px; min-width: 200px; position: absolute; right: -33px; top: -25px; }\",\".framer-81w3I .framer-ld6ccx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: var(--1mccvyg); flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 80px 64px 80px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-cqeb44 { align-content: flex-start; align-items: flex-start; display: flex; flex: var(--3188ik); flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-height: 315px; overflow: visible; padding: 0px; position: relative; width: var(--17ccqoc); }\",\".framer-81w3I .framer-sce1uf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: var(--a2bo4g); flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 80px 64px 80px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-neb14p { align-content: flex-start; align-items: flex-start; display: flex; flex: var(--1pjm6cp); flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-height: 315px; overflow: visible; padding: 0px; position: relative; width: var(--rqk4j9); }\",\".framer-81w3I .framer-anfqxh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: var(--1nuz85m); flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 80px 64px 80px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-81w3I .framer-5z7p6h { align-content: flex-start; align-items: flex-start; display: flex; flex: var(--1u81qmo); flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-height: 315px; overflow: visible; padding: 0px; position: relative; width: var(--1qg7o4g); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81w3I.framer-1ufrhc6, .framer-81w3I .framer-11wqjro, .framer-81w3I .framer-3goxzz, .framer-81w3I .framer-cjevz1, .framer-81w3I .framer-1e6m7p1, .framer-81w3I .framer-cqipqu, .framer-81w3I .framer-exzzln, .framer-81w3I .framer-wu0829, .framer-81w3I .framer-frx11n, .framer-81w3I .framer-1lh659n, .framer-81w3I .framer-xlwdhn, .framer-81w3I .framer-ilmpp5, .framer-81w3I .framer-3804b6, .framer-81w3I .framer-1tzjlg3, .framer-81w3I .framer-1sccmrs, .framer-81w3I .framer-iy3rd4, .framer-81w3I .framer-1n7loml, .framer-81w3I .framer-drbwxt, .framer-81w3I .framer-1c2vj5o, .framer-81w3I .framer-17a5okl, .framer-81w3I .framer-2iqpbz, .framer-81w3I .framer-msr3ae, .framer-81w3I .framer-v2i62n, .framer-81w3I .framer-po7r9d, .framer-81w3I .framer-1k7drl2, .framer-81w3I .framer-hwt1ug, .framer-81w3I .framer-1imw0yn, .framer-81w3I .framer-ejigg7, .framer-81w3I .framer-t5jdva, .framer-81w3I .framer-1szi8gk, .framer-81w3I .framer-qaza1c, .framer-81w3I .framer-3qk5vh, .framer-81w3I .framer-udsf5q, .framer-81w3I .framer-jjf923, .framer-81w3I .framer-7ate65, .framer-81w3I .framer-1tc6ec1, .framer-81w3I .framer-1oo6uhy, .framer-81w3I .framer-97qe5h, .framer-81w3I .framer-19ujxt3, .framer-81w3I .framer-b9aj2l, .framer-81w3I .framer-1gk1ka4, .framer-81w3I .framer-5z16h7, .framer-81w3I .framer-l3x9xl, .framer-81w3I .framer-ld6ccx, .framer-81w3I .framer-cqeb44, .framer-81w3I .framer-oyvv80, .framer-81w3I .framer-om0xkm, .framer-81w3I .framer-1un7yra, .framer-81w3I .framer-sce1uf, .framer-81w3I .framer-neb14p, .framer-81w3I .framer-15aaycm, .framer-81w3I .framer-ew8btx, .framer-81w3I .framer-10twzuh, .framer-81w3I .framer-anfqxh, .framer-81w3I .framer-5z7p6h, .framer-81w3I .framer-1tz9vl9, .framer-81w3I .framer-1d68buh { gap: 0px; } .framer-81w3I.framer-1ufrhc6 > *, .framer-81w3I .framer-drbwxt > *, .framer-81w3I .framer-v2i62n > *, .framer-81w3I .framer-1imw0yn > *, .framer-81w3I .framer-qaza1c > *, .framer-81w3I .framer-7ate65 > *, .framer-81w3I .framer-b9aj2l > *, .framer-81w3I .framer-cqeb44 > *, .framer-81w3I .framer-neb14p > *, .framer-81w3I .framer-5z7p6h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-81w3I.framer-1ufrhc6 > :first-child, .framer-81w3I .framer-11wqjro > :first-child, .framer-81w3I .framer-cjevz1 > :first-child, .framer-81w3I .framer-cqipqu > :first-child, .framer-81w3I .framer-exzzln > :first-child, .framer-81w3I .framer-frx11n > :first-child, .framer-81w3I .framer-1lh659n > :first-child, .framer-81w3I .framer-ilmpp5 > :first-child, .framer-81w3I .framer-3804b6 > :first-child, .framer-81w3I .framer-1sccmrs > :first-child, .framer-81w3I .framer-drbwxt > :first-child, .framer-81w3I .framer-1c2vj5o > :first-child, .framer-81w3I .framer-v2i62n > :first-child, .framer-81w3I .framer-po7r9d > :first-child, .framer-81w3I .framer-1imw0yn > :first-child, .framer-81w3I .framer-ejigg7 > :first-child, .framer-81w3I .framer-qaza1c > :first-child, .framer-81w3I .framer-3qk5vh > :first-child, .framer-81w3I .framer-7ate65 > :first-child, .framer-81w3I .framer-1tc6ec1 > :first-child, .framer-81w3I .framer-b9aj2l > :first-child, .framer-81w3I .framer-1gk1ka4 > :first-child, .framer-81w3I .framer-cqeb44 > :first-child, .framer-81w3I .framer-oyvv80 > :first-child, .framer-81w3I .framer-neb14p > :first-child, .framer-81w3I .framer-15aaycm > :first-child, .framer-81w3I .framer-5z7p6h > :first-child, .framer-81w3I .framer-1tz9vl9 > :first-child { margin-top: 0px; } .framer-81w3I.framer-1ufrhc6 > :last-child, .framer-81w3I .framer-11wqjro > :last-child, .framer-81w3I .framer-cjevz1 > :last-child, .framer-81w3I .framer-cqipqu > :last-child, .framer-81w3I .framer-exzzln > :last-child, .framer-81w3I .framer-frx11n > :last-child, .framer-81w3I .framer-1lh659n > :last-child, .framer-81w3I .framer-ilmpp5 > :last-child, .framer-81w3I .framer-3804b6 > :last-child, .framer-81w3I .framer-1sccmrs > :last-child, .framer-81w3I .framer-drbwxt > :last-child, .framer-81w3I .framer-1c2vj5o > :last-child, .framer-81w3I .framer-v2i62n > :last-child, .framer-81w3I .framer-po7r9d > :last-child, .framer-81w3I .framer-1imw0yn > :last-child, .framer-81w3I .framer-ejigg7 > :last-child, .framer-81w3I .framer-qaza1c > :last-child, .framer-81w3I .framer-3qk5vh > :last-child, .framer-81w3I .framer-7ate65 > :last-child, .framer-81w3I .framer-1tc6ec1 > :last-child, .framer-81w3I .framer-b9aj2l > :last-child, .framer-81w3I .framer-1gk1ka4 > :last-child, .framer-81w3I .framer-cqeb44 > :last-child, .framer-81w3I .framer-oyvv80 > :last-child, .framer-81w3I .framer-neb14p > :last-child, .framer-81w3I .framer-15aaycm > :last-child, .framer-81w3I .framer-5z7p6h > :last-child, .framer-81w3I .framer-1tz9vl9 > :last-child { margin-bottom: 0px; } .framer-81w3I .framer-11wqjro > *, .framer-81w3I .framer-cjevz1 > *, .framer-81w3I .framer-cqipqu > *, .framer-81w3I .framer-exzzln > *, .framer-81w3I .framer-frx11n > *, .framer-81w3I .framer-1lh659n > *, .framer-81w3I .framer-ilmpp5 > *, .framer-81w3I .framer-3804b6 > *, .framer-81w3I .framer-1sccmrs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-81w3I .framer-3goxzz > *, .framer-81w3I .framer-1e6m7p1 > *, .framer-81w3I .framer-wu0829 > *, .framer-81w3I .framer-xlwdhn > *, .framer-81w3I .framer-1tzjlg3 > *, .framer-81w3I .framer-2iqpbz > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-81w3I .framer-3goxzz > :first-child, .framer-81w3I .framer-1e6m7p1 > :first-child, .framer-81w3I .framer-wu0829 > :first-child, .framer-81w3I .framer-xlwdhn > :first-child, .framer-81w3I .framer-1tzjlg3 > :first-child, .framer-81w3I .framer-iy3rd4 > :first-child, .framer-81w3I .framer-1n7loml > :first-child, .framer-81w3I .framer-17a5okl > :first-child, .framer-81w3I .framer-2iqpbz > :first-child, .framer-81w3I .framer-msr3ae > :first-child, .framer-81w3I .framer-1k7drl2 > :first-child, .framer-81w3I .framer-hwt1ug > :first-child, .framer-81w3I .framer-t5jdva > :first-child, .framer-81w3I .framer-1szi8gk > :first-child, .framer-81w3I .framer-udsf5q > :first-child, .framer-81w3I .framer-jjf923 > :first-child, .framer-81w3I .framer-1oo6uhy > :first-child, .framer-81w3I .framer-97qe5h > :first-child, .framer-81w3I .framer-5z16h7 > :first-child, .framer-81w3I .framer-l3x9xl > :first-child, .framer-81w3I .framer-om0xkm > :first-child, .framer-81w3I .framer-1un7yra > :first-child, .framer-81w3I .framer-ew8btx > :first-child, .framer-81w3I .framer-10twzuh > :first-child, .framer-81w3I .framer-1d68buh > :first-child { margin-left: 0px; } .framer-81w3I .framer-3goxzz > :last-child, .framer-81w3I .framer-1e6m7p1 > :last-child, .framer-81w3I .framer-wu0829 > :last-child, .framer-81w3I .framer-xlwdhn > :last-child, .framer-81w3I .framer-1tzjlg3 > :last-child, .framer-81w3I .framer-iy3rd4 > :last-child, .framer-81w3I .framer-1n7loml > :last-child, .framer-81w3I .framer-17a5okl > :last-child, .framer-81w3I .framer-2iqpbz > :last-child, .framer-81w3I .framer-msr3ae > :last-child, .framer-81w3I .framer-1k7drl2 > :last-child, .framer-81w3I .framer-hwt1ug > :last-child, .framer-81w3I .framer-t5jdva > :last-child, .framer-81w3I .framer-1szi8gk > :last-child, .framer-81w3I .framer-udsf5q > :last-child, .framer-81w3I .framer-jjf923 > :last-child, .framer-81w3I .framer-1oo6uhy > :last-child, .framer-81w3I .framer-97qe5h > :last-child, .framer-81w3I .framer-5z16h7 > :last-child, .framer-81w3I .framer-l3x9xl > :last-child, .framer-81w3I .framer-om0xkm > :last-child, .framer-81w3I .framer-1un7yra > :last-child, .framer-81w3I .framer-ew8btx > :last-child, .framer-81w3I .framer-10twzuh > :last-child, .framer-81w3I .framer-1d68buh > :last-child { margin-right: 0px; } .framer-81w3I .framer-iy3rd4 > *, .framer-81w3I .framer-97qe5h > *, .framer-81w3I .framer-l3x9xl > *, .framer-81w3I .framer-1un7yra > *, .framer-81w3I .framer-10twzuh > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-81w3I .framer-1n7loml > *, .framer-81w3I .framer-msr3ae > *, .framer-81w3I .framer-hwt1ug > *, .framer-81w3I .framer-1szi8gk > *, .framer-81w3I .framer-jjf923 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-81w3I .framer-1c2vj5o > *, .framer-81w3I .framer-po7r9d > *, .framer-81w3I .framer-ejigg7 > *, .framer-81w3I .framer-3qk5vh > *, .framer-81w3I .framer-1tc6ec1 > *, .framer-81w3I .framer-1gk1ka4 > *, .framer-81w3I .framer-oyvv80 > *, .framer-81w3I .framer-15aaycm > *, .framer-81w3I .framer-1tz9vl9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-81w3I .framer-17a5okl > *, .framer-81w3I .framer-1k7drl2 > *, .framer-81w3I .framer-t5jdva > *, .framer-81w3I .framer-udsf5q > *, .framer-81w3I .framer-1oo6uhy > *, .framer-81w3I .framer-5z16h7 > *, .framer-81w3I .framer-om0xkm > *, .framer-81w3I .framer-ew8btx > *, .framer-81w3I .framer-1d68buh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-81w3I .framer-19ujxt3 > * { margin-bottom: var(--1ke83jb); margin-left: var(--1imyc5o); margin-right: var(--1imyc5o); margin-top: var(--1ke83jb); } .framer-81w3I .framer-19ujxt3 > :first-child, .framer-81w3I .framer-ld6ccx > :first-child, .framer-81w3I .framer-sce1uf > :first-child, .framer-81w3I .framer-anfqxh > :first-child { margin-left: 0px; margin-top: 0px; } .framer-81w3I .framer-19ujxt3 > :last-child, .framer-81w3I .framer-ld6ccx > :last-child, .framer-81w3I .framer-sce1uf > :last-child, .framer-81w3I .framer-anfqxh > :last-child { margin-bottom: 0px; margin-right: 0px; } .framer-81w3I .framer-ld6ccx > * { margin-bottom: var(--8bk6kt); margin-left: var(--9fngpc); margin-right: var(--9fngpc); margin-top: var(--8bk6kt); } .framer-81w3I .framer-sce1uf > * { margin-bottom: var(--uwfcfx); margin-left: var(--4wllkx); margin-right: var(--4wllkx); margin-top: var(--uwfcfx); } .framer-81w3I .framer-anfqxh > * { margin-bottom: var(--38s4e9); margin-left: var(--rzd46w); margin-right: var(--rzd46w); margin-top: var(--38s4e9); } }\",\".framer-81w3I.framer-v-14g6dbm .framer-1e6m7p1 { cursor: pointer; }\",\".framer-81w3I.framer-v-14g6dbm .framer-12nx5rj { height: var(--framer-aspect-ratio-supported, 528px); }\",\".framer-81w3I.framer-v-1rkd06y.framer-1ufrhc6 { padding: 24px 0px 24px 0px; width: 390px; will-change: unset; }\",\".framer-81w3I.framer-v-1rkd06y .framer-1n7loml { padding: 40px; }\",\".framer-81w3I.framer-v-5jw770.framer-1ufrhc6 { padding: 40px 40px 24px 40px; }\",\".framer-81w3I.framer-v-5jw770 .framer-iy3rd4 { padding: 0px; }\",\".framer-81w3I.framer-v-5jw770 .framer-1n7loml { flex-direction: var(--118pi6o); max-width: unset; padding: 40px 80px 40px 80px; }\",\".framer-81w3I.framer-v-5jw770 .framer-drbwxt { flex: var(--11d3ad8); width: var(--1os828g); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-81w3I.framer-v-5jw770 .framer-1n7loml { gap: 0px; } .framer-81w3I.framer-v-5jw770 .framer-1n7loml > * { margin-bottom: var(--18upzhy); margin-left: var(--pakdr9); margin-right: var(--pakdr9); margin-top: var(--18upzhy); } .framer-81w3I.framer-v-5jw770 .framer-1n7loml > :first-child { margin-left: 0px; margin-top: 0px; } .framer-81w3I.framer-v-5jw770 .framer-1n7loml > :last-child { margin-bottom: 0px; margin-right: 0px; } }\",...sharedStyle.css,'.framer-81w3I[data-border=\"true\"]::after, .framer-81w3I [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 625\n * @framerIntrinsicWidth 1135\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pSkdqArsw\":{\"layout\":[\"fixed\",\"auto\"]},\"drPCTQ57r\":{\"layout\":[\"fixed\",\"auto\"]},\"Bohf5MT85\":{\"layout\":[\"fixed\",\"auto\"]},\"uMmkRlJx3\":{\"layout\":[\"fixed\",\"auto\"]},\"BGVXqfWSP\":{\"layout\":[\"fixed\",\"auto\"]},\"cjHxq07FG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UtG16dv6H\":\"click\",\"xIGQ5zo6B\":\"click2\",\"FrN2lKxoz\":\"click3\",\"QiODHP4e4\":\"click4\",\"eUyK0WacS\":\"direction\",\"uG1ZnW014\":\"direction2\",\"TLzOjzZxK\":\"direction3\",\"WCVdocXhe\":\"direction4\",\"N9h6yxYgT\":\"direction5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramermZ9iP6q5Y=withCSS(Component,css,\"framer-81w3I\");export default FramermZ9iP6q5Y;FramermZ9iP6q5Y.displayName=\"Flow-Slides\";FramermZ9iP6q5Y.defaultProps={height:625,width:1135};addPropertyControls(FramermZ9iP6q5Y,{variant:{options:[\"D_arrNx2k\",\"pSkdqArsw\",\"drPCTQ57r\",\"Bohf5MT85\",\"uMmkRlJx3\",\"BGVXqfWSP\",\"cjHxq07FG\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum},UtG16dv6H:{title:\"Click\",type:ControlType.EventHandler},xIGQ5zo6B:{title:\"Click 2\",type:ControlType.EventHandler},FrN2lKxoz:{title:\"Click 3\",type:ControlType.EventHandler},QiODHP4e4:{title:\"Click 4\",type:ControlType.EventHandler},eUyK0WacS:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},uG1ZnW014:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction 2\",type:ControlType.Enum},TLzOjzZxK:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction 3\",type:ControlType.Enum},WCVdocXhe:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction 4\",type:ControlType.Enum},N9h6yxYgT:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction 5\",type:ControlType.Enum}});addFonts(FramermZ9iP6q5Y,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+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/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/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\"}]},...ButtonsPrimaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermZ9iP6q5Y\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pSkdqArsw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"drPCTQ57r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bohf5MT85\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uMmkRlJx3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BGVXqfWSP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cjHxq07FG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"625\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1135\",\"framerVariables\":\"{\\\"UtG16dv6H\\\":\\\"click\\\",\\\"xIGQ5zo6B\\\":\\\"click2\\\",\\\"FrN2lKxoz\\\":\\\"click3\\\",\\\"QiODHP4e4\\\":\\\"click4\\\",\\\"eUyK0WacS\\\":\\\"direction\\\",\\\"uG1ZnW014\\\":\\\"direction2\\\",\\\"TLzOjzZxK\\\":\\\"direction3\\\",\\\"WCVdocXhe\\\":\\\"direction4\\\",\\\"N9h6yxYgT\\\":\\\"direction5\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FlowSlides from\"https://framerusercontent.com/modules/8Z4844GJoo1J2By80TF3/98JN9BHB2ort10d0jawu/mZ9iP6q5Y.js\";const FlowSlidesFonts=getFonts(FlowSlides);const cycleOrder=[\"u6yrpTtgP\",\"cNFZTlncj\",\"zwj2FWyfj\",\"rkBz5KCxo\"];const serializationHash=\"framer-6tg0e\";const variantClassNames={cNFZTlncj:\"framer-v-1mhaibf\",rkBz5KCxo:\"framer-v-kaziw1\",u6yrpTtgP:\"framer-v-1rwdgu7\",zwj2FWyfj:\"framer-v-rok5ic\"};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={\"Desktop Medium\":\"u6yrpTtgP\",Desktop:\"cNFZTlncj\",Phone:\"rkBz5KCxo\",Tablet:\"zwj2FWyfj\"};const getProps=({click,click2,click3,click4,height,id,width,...props})=>{return{...props,bEzdgb4jL:click4??props.bEzdgb4jL,Cb2M3OydM:click??props.Cb2M3OydM,Iub7tnPlD:click3??props.Iub7tnPlD,KiNoZH0g6:click2??props.KiNoZH0g6,variant:humanReadableVariantMap[props.variant]??props.variant??\"u6yrpTtgP\"};};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,Cb2M3OydM,KiNoZH0g6,Iub7tnPlD,bEzdgb4jL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"u6yrpTtgP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const UtG16dv6H1q98vx0=activeVariantCallback(async(...args)=>{if(Cb2M3OydM){const res=await Cb2M3OydM(...args);if(res===false)return false;}});const xIGQ5zo6Bv82m3j=activeVariantCallback(async(...args)=>{if(KiNoZH0g6){const res=await KiNoZH0g6(...args);if(res===false)return false;}});const FrN2lKxoz18easvx=activeVariantCallback(async(...args)=>{if(Iub7tnPlD){const res=await Iub7tnPlD(...args);if(res===false)return false;}});const QiODHP4e4sqq1kv=activeVariantCallback(async(...args)=>{if(bEzdgb4jL){const res=await bEzdgb4jL(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rwdgu7\",className,classNames),\"data-framer-name\":\"Desktop Medium\",layoutDependency:layoutDependency,layoutId:\"u6yrpTtgP\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({cNFZTlncj:{\"data-framer-name\":\"Desktop\"},rkBz5KCxo:{\"data-framer-name\":\"Phone\"},zwj2FWyfj:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1000px)`,y:(componentViewport?.y||0)+80+(((componentViewport?.height||200)-160-200)/2+0+0),...addPropertyOverrides({rkBz5KCxo:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1000px)`},zwj2FWyfj:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9axhkz-container\",layoutDependency:layoutDependency,layoutId:\"bQ1ynhwhB-container\",nodeId:\"bQ1ynhwhB\",rendersWithMotion:true,scopeId:\"DpcInyein\",children:/*#__PURE__*/_jsx(FlowSlides,{eUyK0WacS:\"row\",FrN2lKxoz:FrN2lKxoz18easvx,height:\"100%\",id:\"bQ1ynhwhB\",layoutId:\"bQ1ynhwhB\",N9h6yxYgT:\"row\",QiODHP4e4:QiODHP4e4sqq1kv,style:{maxWidth:\"100%\",width:\"100%\"},TLzOjzZxK:\"row\",uG1ZnW014:\"row\",UtG16dv6H:UtG16dv6H1q98vx0,variant:\"D_arrNx2k\",WCVdocXhe:\"row\",width:\"100%\",xIGQ5zo6B:xIGQ5zo6Bv82m3j,...addPropertyOverrides({rkBz5KCxo:{variant:\"BGVXqfWSP\"},zwj2FWyfj:{eUyK0WacS:\"column\",N9h6yxYgT:\"column\",TLzOjzZxK:\"column\",uG1ZnW014:\"column\",variant:\"cjHxq07FG\",WCVdocXhe:\"column\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6tg0e.framer-k3nyc8, .framer-6tg0e .framer-k3nyc8 { display: block; }\",\".framer-6tg0e.framer-1rwdgu7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 1440px; }\",\".framer-6tg0e .framer-9axhkz-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6tg0e.framer-1rwdgu7 { gap: 0px; } .framer-6tg0e.framer-1rwdgu7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6tg0e.framer-1rwdgu7 > :first-child { margin-top: 0px; } .framer-6tg0e.framer-1rwdgu7 > :last-child { margin-bottom: 0px; } }\",\".framer-6tg0e.framer-v-1mhaibf.framer-1rwdgu7 { width: 1200px; }\",\".framer-6tg0e.framer-v-rok5ic.framer-1rwdgu7 { padding: 80px 40px 80px 40px; width: 810px; }\",\".framer-6tg0e.framer-v-kaziw1.framer-1rwdgu7 { padding: 80px 32px 80px 32px; width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cNFZTlncj\":{\"layout\":[\"fixed\",\"auto\"]},\"zwj2FWyfj\":{\"layout\":[\"fixed\",\"auto\"]},\"rkBz5KCxo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Cb2M3OydM\":\"click\",\"KiNoZH0g6\":\"click2\",\"Iub7tnPlD\":\"click3\",\"bEzdgb4jL\":\"click4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDpcInyein=withCSS(Component,css,\"framer-6tg0e\");export default FramerDpcInyein;FramerDpcInyein.displayName=\"Features-slideshow\";FramerDpcInyein.defaultProps={height:200,width:1440};addPropertyControls(FramerDpcInyein,{variant:{options:[\"u6yrpTtgP\",\"cNFZTlncj\",\"zwj2FWyfj\",\"rkBz5KCxo\"],optionTitles:[\"Desktop Medium\",\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},Cb2M3OydM:{title:\"Click\",type:ControlType.EventHandler},KiNoZH0g6:{title:\"Click 2\",type:ControlType.EventHandler},Iub7tnPlD:{title:\"Click 3\",type:ControlType.EventHandler},bEzdgb4jL:{title:\"Click 4\",type:ControlType.EventHandler}});addFonts(FramerDpcInyein,[{explicitInter:true,fonts:[]},...FlowSlidesFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDpcInyein\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerVariables\":\"{\\\"Cb2M3OydM\\\":\\\"click\\\",\\\"KiNoZH0g6\\\":\\\"click2\\\",\\\"Iub7tnPlD\\\":\\\"click3\\\",\\\"bEzdgb4jL\\\":\\\"click4\\\"}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cNFZTlncj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zwj2FWyfj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rkBz5KCxo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";const HeroFonts=getFonts(Hero);const cycleOrder=[\"PlxPvTWT6\",\"LwQZ6tgCe\",\"UailQonvm\"];const serializationHash=\"framer-eu3NH\";const variantClassNames={LwQZ6tgCe:\"framer-v-14swaa6\",PlxPvTWT6:\"framer-v-kp1i4g\",UailQonvm:\"framer-v-1sztwxy\"};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={\"Variant 1\":\"PlxPvTWT6\",\"Variant 2\":\"LwQZ6tgCe\",\"Variant 3\":\"UailQonvm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PlxPvTWT6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PlxPvTWT6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"LwQZ6tgCe\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"UailQonvm\")return true;return false;};const isDisplayed2=()=>{if([\"LwQZ6tgCe\",\"UailQonvm\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"UailQonvm\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.producthunt.com/products/persana-ai-for-prospecting#persana-ai-for-prospecting\",motionChild:true,nodeId:\"PlxPvTWT6\",scopeId:\"dsiziO7wL\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-kp1i4g\",className,classNames)} framer-1a17hf5`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PlxPvTWT6\",ref:refBinding,style:{\"--border-bottom-width\":\"0.6497678160667419px\",\"--border-color\":\"rgb(126, 136, 159)\",\"--border-left-width\":\"0.6497678160667419px\",\"--border-right-width\":\"0.6497678160667419px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6497678160667419px\",borderBottomLeftRadius:7.8,borderBottomRightRadius:7.8,borderTopLeftRadius:7.8,borderTopRightRadius:7.8,...style},variants:{LwQZ6tgCe:{\"--border-color\":\"rgb(255, 97, 83)\"},UailQonvm:{\"--border-color\":\"rgb(255, 97, 83)\"}},...addPropertyOverrides({LwQZ6tgCe:{\"data-framer-name\":\"Variant 2\"},UailQonvm:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1v5fq7h\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"oKGTlPFBa\",svg:'<svg width=\"21\" height=\"22\" viewBox=\"0 0 21 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0675 21.0714C15.6298 21.0714 20.1389 16.5623 20.1389 11C20.1389 5.43772 15.6298 0.928589 10.0675 0.928589C4.50523 0.928589 -0.00390625 5.43772 -0.00390625 11C-0.00390625 16.5623 4.50523 21.0714 10.0675 21.0714ZM8.5048 11.2963L11.3248 11.2962C12.1493 11.2962 12.8177 10.6198 12.8177 9.78551C12.8177 8.95118 12.1493 8.27488 11.3248 8.27488H8.5048V11.2963ZM6.51422 6.26052H11.3248C13.2487 6.26052 14.8083 7.83871 14.8083 9.78551C14.8083 11.7323 13.2487 13.3106 11.3248 13.3106H8.5048V16.3319H6.51422V6.26052Z\" fill=\"#FF6153\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-178xgzl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"yLSdoPU4y-container\",nodeId:\"yLSdoPU4y\",rendersWithMotion:true,scopeId:\"dsiziO7wL\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 97, 83)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",id:\"yLSdoPU4y\",layoutId:\"yLSdoPU4y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-7iekjz\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"X7HKXM8dj\",svg:'<svg width=\"21\" height=\"22\" viewBox=\"0 0 21 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0675 21.0714C15.6298 21.0714 20.1389 16.5623 20.1389 11C20.1389 5.43772 15.6298 0.928589 10.0675 0.928589C4.50523 0.928589 -0.00390625 5.43772 -0.00390625 11C-0.00390625 16.5623 4.50523 21.0714 10.0675 21.0714ZM8.5048 11.2963L11.3248 11.2962C12.1493 11.2962 12.8177 10.6198 12.8177 9.78551C12.8177 8.95118 12.1493 8.27488 11.3248 8.27488H8.5048V11.2963ZM6.51422 6.26052H11.3248C13.2487 6.26052 14.8083 7.83871 14.8083 9.78551C14.8083 11.7323 13.2487 13.3106 11.3248 13.3106H8.5048V16.3319H6.51422V6.26052Z\" fill=\"#7E889F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z192br\",\"data-framer-name\":\"featured text\",layoutDependency:layoutDependency,layoutId:\"J1gJw4W0_\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhLTcwMA==\",\"--framer-font-family\":'\"Helvetica\", \"Helvetica Placeholder\", sans-serif',\"--framer-font-size\":\"4px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 136, 159))\"},children:\"FEATURED ON\"})}),className:\"framer-ipdre8\",\"data-framer-name\":\"FEATURED ON\",fonts:[\"GF;Helvetica-700\"],layoutDependency:layoutDependency,layoutId:\"ZsweUv9AM\",style:{\"--extracted-r6o4lv\":\"rgb(126, 136, 159)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{LwQZ6tgCe:{\"--extracted-r6o4lv\":\"rgb(255, 97, 83)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LwQZ6tgCe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhLTcwMA==\",\"--framer-font-family\":'\"Helvetica\", \"Helvetica Placeholder\", sans-serif',\"--framer-font-size\":\"4px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 97, 83))\"},children:\"FEATURED ON\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhLTcwMA==\",\"--framer-font-family\":'\"Helvetica\", \"Helvetica Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 136, 159))\"},children:\"Product Hunt\"})}),className:\"framer-lz0wq3\",\"data-framer-name\":\"Product Hunt\",fonts:[\"GF;Helvetica-700\"],layoutDependency:layoutDependency,layoutId:\"d1phRwcLv\",style:{\"--extracted-r6o4lv\":\"rgb(126, 136, 159)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{LwQZ6tgCe:{\"--extracted-r6o4lv\":\"rgb(255, 97, 83)\"},UailQonvm:{\"--extracted-r6o4lv\":\"rgb(255, 97, 83)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LwQZ6tgCe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhLTcwMA==\",\"--framer-font-family\":'\"Helvetica\", \"Helvetica Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 97, 83))\"},children:\"Product Hunt\"})})},UailQonvm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 97, 83))\"},children:\"Trusted by 1000+ sales teams and Outbound teams\"})}),fonts:[\"Inter-Bold\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ob2iz0\",\"data-framer-name\":\"count\",layoutDependency:layoutDependency,layoutId:\"EzETmvDj_\",children:isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xe2kdt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"vUKKGWlLe\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.95376 7.07605H0.804688L4.37922 0.578369L7.95376 7.07605Z\" fill=\"#FF6153\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eu3NH.framer-1a17hf5, .framer-eu3NH .framer-1a17hf5 { display: block; }\",\".framer-eu3NH.framer-kp1i4g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 9.746517181396484px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6.497677803039551px; position: relative; text-decoration: none; width: min-content; }\",\".framer-eu3NH .framer-1v5fq7h, .framer-eu3NH .framer-7iekjz { aspect-ratio: 0.9545454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 18px; }\",\".framer-eu3NH .framer-178xgzl-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 16px; }\",\".framer-eu3NH .framer-z192br { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eu3NH .framer-ipdre8, .framer-eu3NH .framer-lz0wq3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eu3NH .framer-ob2iz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2.5990712642669678px; height: min-content; justify-content: flex-start; min-height: 8px; min-width: 8px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eu3NH .framer-xe2kdt { flex: none; height: 8px; position: relative; width: 8px; }\",\".framer-eu3NH.framer-v-14swaa6 .framer-ob2iz0 { min-height: unset; min-width: unset; }\",\".framer-eu3NH.framer-v-1sztwxy .framer-178xgzl-container { height: var(--framer-aspect-ratio-supported, 19px); }\",'.framer-eu3NH[data-border=\"true\"]::after, .framer-eu3NH [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 32\n * @framerIntrinsicWidth 134\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"LwQZ6tgCe\":{\"layout\":[\"auto\",\"auto\"]},\"UailQonvm\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdsiziO7wL=withCSS(Component,css,\"framer-eu3NH\");export default FramerdsiziO7wL;FramerdsiziO7wL.displayName=\"product hunt badge\";FramerdsiziO7wL.defaultProps={height:32,width:134};addPropertyControls(FramerdsiziO7wL,{variant:{options:[\"PlxPvTWT6\",\"LwQZ6tgCe\",\"UailQonvm\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdsiziO7wL,[{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/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\"}]},...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdsiziO7wL\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LwQZ6tgCe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UailQonvm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"134\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dsiziO7wL.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"euKNZdi5H\",\"sQgg404ud\"];const serializationHash=\"framer-frda6\";const variantClassNames={euKNZdi5H:\"framer-v-1oxlbsx\",sQgg404ud:\"framer-v-4g4hxn\"};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={\"Variant 1\":\"euKNZdi5H\",\"Variant 2\":\"sQgg404ud\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"euKNZdi5H\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"euKNZdi5H\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"sQgg404ud\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"sQgg404ud\")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__*/_jsx(Link,{href:\"https://www.g2.com/products/persana-ai/reviews\",motionChild:true,nodeId:\"euKNZdi5H\",scopeId:\"JumwXPbZ7\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1oxlbsx\",className,classNames)} framer-yigdjz`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"euKNZdi5H\",ref:refBinding,style:{...style},...addPropertyOverrides({sQgg404ud:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1e53fw0\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"kIPcwVvJC\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4209_35577)\">\\n<path d=\"M10.5 0C7.84783 0 5.3043 1.05357 3.42893 2.92893C1.55357 4.8043 0.5 7.34783 0.5 10C0.5 12.6522 1.55357 15.1957 3.42893 17.0711C5.3043 18.9464 7.84783 20 10.5 20C13.1522 20 15.6957 18.9464 17.5711 17.0711C19.4464 15.1957 20.5 12.6522 20.5 10C20.5 7.34783 19.4464 4.8043 17.5711 2.92893C15.6957 1.05357 13.1522 0 10.5 0ZM10.6017 4.28583C10.9767 4.28583 11.3517 4.3225 11.72 4.39583L10.6017 6.73417C8.80167 6.73333 7.33583 8.2 7.33583 10C7.33583 11.8 8.8025 13.2667 10.6025 13.2667C11.3833 13.2667 12.1392 12.985 12.73 12.4742L13.9658 14.6175C13.1137 15.2383 12.1065 15.6112 11.0555 15.6949C10.0046 15.7787 8.95098 15.57 8.0113 15.092C7.07163 14.614 6.28253 13.8854 5.73135 12.9867C5.18017 12.0879 4.8884 11.0543 4.88833 10C4.88833 8.48473 5.49027 7.03152 6.56173 5.96006C7.63319 4.88861 9.0864 4.28583 10.6017 4.28583ZM13.5167 4.69417H13.5383C13.8933 4.69417 14.1992 4.78861 14.4558 4.9775C14.7142 5.16917 14.8436 5.43194 14.8442 5.76583C14.8442 6.29833 14.5442 6.62417 13.9817 6.9125L13.6675 7.07167C13.3317 7.24167 13.1658 7.3925 13.12 7.66H14.8283V8.36833H12.2442V8.24833C12.2436 7.81056 12.3308 7.44778 12.5058 7.16C12.6808 6.87278 12.9869 6.61806 13.4242 6.39583L13.6258 6.29833C13.9817 6.11833 14.0742 5.96417 14.0742 5.7775C14.0742 5.55583 13.8842 5.39583 13.5742 5.39583C13.2075 5.39583 12.93 5.58583 12.7375 5.97417L12.2442 5.47833C12.3531 5.24667 12.525 5.05917 12.76 4.91583C12.9862 4.77183 13.2485 4.69496 13.5167 4.69417ZM11.7717 9.18417H14.6L16.0142 11.6317L14.6 14.0817L13.1858 11.6317H10.3583L11.7717 9.18417Z\" fill=\"#7E889F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4209_35577\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1a85p7d\",\"data-framer-name\":\"Auto Layout Horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:89,layoutDependency:layoutDependency,layoutId:\"YFi60MMN4\",style:{filter:\"brightness(1.95) contrast(1.79) hue-rotate(140deg) saturate(2)\",WebkitFilter:\"brightness(1.95) contrast(1.79) hue-rotate(140deg) saturate(2)\"},svg:'<svg width=\"89\" height=\"16\" viewBox=\"0 0 89 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4209_35600)\">\\n<path d=\"M15.8872 6.19962L12.3265 9.27053L13.4144 13.8615C13.4432 13.9795 13.4363 14.1034 13.3947 14.2175C13.3531 14.3316 13.2786 14.4307 13.1806 14.5025C13.0827 14.5743 12.9656 14.6154 12.8443 14.6206C12.723 14.6259 12.6028 14.595 12.499 14.532L8.49806 12.0709L4.49711 14.5313C4.3933 14.5943 4.27314 14.6251 4.15182 14.6199C4.03049 14.6146 3.91345 14.5735 3.81548 14.5018C3.71751 14.43 3.64301 14.3308 3.60139 14.2167C3.55978 14.1026 3.55292 13.9788 3.58168 13.8608L4.66966 9.2698L1.10887 6.19889C1.01808 6.11917 0.952629 6.01461 0.920587 5.89812C0.888545 5.78163 0.89132 5.6583 0.928569 5.54337C0.965817 5.42844 1.03591 5.32693 1.13019 5.25137C1.22447 5.17582 1.33881 5.12953 1.4591 5.11822L6.132 4.73801L7.93214 0.380249C7.97803 0.267824 8.05636 0.171614 8.15716 0.103891C8.25795 0.036168 8.37663 0 8.49806 0C8.61949 0 8.73817 0.036168 8.83896 0.103891C8.93976 0.171614 9.01809 0.267824 9.06398 0.380249L10.8641 4.73801L15.537 5.11822C15.6575 5.1294 15.772 5.17565 15.8664 5.25125C15.9609 5.32684 16.0311 5.42847 16.0683 5.54356C16.1056 5.65864 16.1083 5.78213 16.0761 5.89873C16.044 6.01534 15.9783 6.11995 15.8872 6.19962Z\" fill=\"#373F51\"/>\\n</g>\\n<g clip-path=\"url(#clip1_4209_35600)\">\\n<path d=\"M33.8872 6.19962L30.3265 9.27053L31.4144 13.8615C31.4432 13.9795 31.4363 14.1034 31.3947 14.2175C31.3531 14.3316 31.2786 14.4307 31.1806 14.5025C31.0827 14.5743 30.9656 14.6154 30.8443 14.6206C30.723 14.6259 30.6028 14.595 30.499 14.532L26.4981 12.0709L22.4971 14.5313C22.3933 14.5943 22.2731 14.6251 22.1518 14.6199C22.0305 14.6146 21.9134 14.5735 21.8155 14.5018C21.7175 14.43 21.643 14.3308 21.6014 14.2167C21.5598 14.1026 21.5529 13.9788 21.5817 13.8608L22.6697 9.2698L19.1089 6.19889C19.0181 6.11917 18.9526 6.01461 18.9206 5.89812C18.8885 5.78163 18.8913 5.6583 18.9286 5.54337C18.9658 5.42844 19.0359 5.32693 19.1302 5.25137C19.2245 5.17582 19.3388 5.12953 19.4591 5.11822L24.132 4.73801L25.9321 0.380249C25.978 0.267824 26.0564 0.171614 26.1572 0.103891C26.2579 0.036168 26.3766 0 26.4981 0C26.6195 0 26.7382 0.036168 26.839 0.103891C26.9398 0.171614 27.0181 0.267824 27.064 0.380249L28.8641 4.73801L33.537 5.11822C33.6575 5.1294 33.772 5.17565 33.8664 5.25125C33.9609 5.32684 34.0311 5.42847 34.0683 5.54356C34.1056 5.65864 34.1083 5.78213 34.0761 5.89873C34.044 6.01534 33.9783 6.11995 33.8872 6.19962Z\" fill=\"#373F51\"/>\\n</g>\\n<g clip-path=\"url(#clip2_4209_35600)\">\\n<path d=\"M51.8872 6.19962L48.3265 9.27053L49.4144 13.8615C49.4432 13.9795 49.4363 14.1034 49.3947 14.2175C49.3531 14.3316 49.2786 14.4307 49.1806 14.5025C49.0827 14.5743 48.9656 14.6154 48.8443 14.6206C48.723 14.6259 48.6028 14.595 48.499 14.532L44.4981 12.0709L40.4971 14.5313C40.3933 14.5943 40.2731 14.6251 40.1518 14.6199C40.0305 14.6146 39.9134 14.5735 39.8155 14.5018C39.7175 14.43 39.643 14.3308 39.6014 14.2167C39.5598 14.1026 39.5529 13.9788 39.5817 13.8608L40.6697 9.2698L37.1089 6.19889C37.0181 6.11917 36.9526 6.01461 36.9206 5.89812C36.8885 5.78163 36.8913 5.6583 36.9286 5.54337C36.9658 5.42844 37.0359 5.32693 37.1302 5.25137C37.2245 5.17582 37.3388 5.12953 37.4591 5.11822L42.132 4.73801L43.9321 0.380249C43.978 0.267824 44.0564 0.171614 44.1572 0.103891C44.2579 0.036168 44.3766 0 44.4981 0C44.6195 0 44.7382 0.036168 44.839 0.103891C44.9398 0.171614 45.0181 0.267824 45.064 0.380249L46.8641 4.73801L51.537 5.11822C51.6575 5.1294 51.772 5.17565 51.8664 5.25125C51.9609 5.32684 52.0311 5.42847 52.0683 5.54356C52.1056 5.65864 52.1083 5.78213 52.0761 5.89873C52.044 6.01534 51.9783 6.11995 51.8872 6.19962Z\" fill=\"#373F51\"/>\\n</g>\\n<g clip-path=\"url(#clip3_4209_35600)\">\\n<path d=\"M69.8872 6.19962L66.3265 9.27053L67.4144 13.8615C67.4432 13.9795 67.4363 14.1034 67.3947 14.2175C67.3531 14.3316 67.2786 14.4307 67.1806 14.5025C67.0827 14.5743 66.9656 14.6154 66.8443 14.6206C66.723 14.6259 66.6028 14.595 66.499 14.532L62.4981 12.0709L58.4971 14.5313C58.3933 14.5943 58.2731 14.6251 58.1518 14.6199C58.0305 14.6146 57.9134 14.5735 57.8155 14.5018C57.7175 14.43 57.643 14.3308 57.6014 14.2167C57.5598 14.1026 57.5529 13.9788 57.5817 13.8608L58.6697 9.2698L55.1089 6.19889C55.0181 6.11917 54.9526 6.01461 54.9206 5.89812C54.8885 5.78163 54.8913 5.6583 54.9286 5.54337C54.9658 5.42844 55.0359 5.32693 55.1302 5.25137C55.2245 5.17582 55.3388 5.12953 55.4591 5.11822L60.132 4.73801L61.9321 0.380249C61.978 0.267824 62.0564 0.171614 62.1572 0.103891C62.2579 0.036168 62.3766 0 62.4981 0C62.6195 0 62.7382 0.036168 62.839 0.103891C62.9398 0.171614 63.0181 0.267824 63.064 0.380249L64.8641 4.73801L69.537 5.11822C69.6575 5.1294 69.772 5.17565 69.8664 5.25125C69.9609 5.32684 70.0311 5.42847 70.0683 5.54356C70.1056 5.65864 70.1083 5.78213 70.0761 5.89873C70.044 6.01534 69.9783 6.11995 69.8872 6.19962Z\" fill=\"#373F51\"/>\\n</g>\\n<g clip-path=\"url(#clip4_4209_35600)\">\\n<path d=\"M87.8872 6.19962L84.3265 9.27053L85.4144 13.8615C85.4432 13.9795 85.4363 14.1034 85.3947 14.2175C85.3531 14.3316 85.2786 14.4307 85.1806 14.5025C85.0827 14.5743 84.9656 14.6154 84.8443 14.6206C84.723 14.6259 84.6028 14.595 84.499 14.532L80.4981 12.0709L76.4971 14.5313C76.3933 14.5943 76.2731 14.6251 76.1518 14.6199C76.0305 14.6146 75.9134 14.5735 75.8155 14.5018C75.7175 14.43 75.643 14.3308 75.6014 14.2167C75.5598 14.1026 75.5529 13.9788 75.5817 13.8608L76.6697 9.2698L73.1089 6.19889C73.0181 6.11917 72.9526 6.01461 72.9206 5.89812C72.8885 5.78163 72.8913 5.6583 72.9286 5.54337C72.9658 5.42844 73.0359 5.32693 73.1302 5.25137C73.2245 5.17582 73.3388 5.12953 73.4591 5.11822L78.132 4.73801L79.9321 0.380249C79.978 0.267824 80.0564 0.171614 80.1572 0.103891C80.2579 0.036168 80.3766 0 80.4981 0C80.6195 0 80.7382 0.036168 80.839 0.103891C80.9398 0.171614 81.0181 0.267824 81.064 0.380249L82.8641 4.73801L87.537 5.11822C87.6575 5.1294 87.772 5.17565 87.8664 5.25125C87.9609 5.32684 88.0311 5.42847 88.0683 5.54356C88.1056 5.65864 88.1083 5.78213 88.0761 5.89873C88.044 6.01534 87.9783 6.11995 87.8872 6.19962Z\" fill=\"#373F51\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(18.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(36.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(54.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(72.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-o4ptus\",\"data-framer-name\":\"Auto Layout Horizontal\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:89,layoutDependency:layoutDependency,layoutId:\"lj3n9kKeK\",svg:'<svg width=\"89\" height=\"16\" viewBox=\"0 0 89 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4209_35600)\">\\n<path d=\"M15.8872 6.19962L12.3265 9.27053L13.4144 13.8615C13.4432 13.9795 13.4363 14.1034 13.3947 14.2175C13.3531 14.3316 13.2786 14.4307 13.1806 14.5025C13.0827 14.5743 12.9656 14.6154 12.8443 14.6206C12.723 14.6259 12.6028 14.595 12.499 14.532L8.49806 12.0709L4.49711 14.5313C4.3933 14.5943 4.27314 14.6251 4.15182 14.6199C4.03049 14.6146 3.91345 14.5735 3.81548 14.5018C3.71751 14.43 3.64301 14.3308 3.60139 14.2167C3.55978 14.1026 3.55292 13.9788 3.58168 13.8608L4.66966 9.2698L1.10887 6.19889C1.01808 6.11917 0.952629 6.01461 0.920587 5.89812C0.888545 5.78163 0.89132 5.6583 0.928569 5.54337C0.965817 5.42844 1.03591 5.32693 1.13019 5.25137C1.22447 5.17582 1.33881 5.12953 1.4591 5.11822L6.132 4.73801L7.93214 0.380249C7.97803 0.267824 8.05636 0.171614 8.15716 0.103891C8.25795 0.036168 8.37663 0 8.49806 0C8.61949 0 8.73817 0.036168 8.83896 0.103891C8.93976 0.171614 9.01809 0.267824 9.06398 0.380249L10.8641 4.73801L15.537 5.11822C15.6575 5.1294 15.772 5.17565 15.8664 5.25125C15.9609 5.32684 16.0311 5.42847 16.0683 5.54356C16.1056 5.65864 16.1083 5.78213 16.0761 5.89873C16.044 6.01534 15.9783 6.11995 15.8872 6.19962Z\" fill=\"#7E889F\"/>\\n</g>\\n<g clip-path=\"url(#clip1_4209_35600)\">\\n<path d=\"M33.8872 6.19962L30.3265 9.27053L31.4144 13.8615C31.4432 13.9795 31.4363 14.1034 31.3947 14.2175C31.3531 14.3316 31.2786 14.4307 31.1806 14.5025C31.0827 14.5743 30.9656 14.6154 30.8443 14.6206C30.723 14.6259 30.6028 14.595 30.499 14.532L26.4981 12.0709L22.4971 14.5313C22.3933 14.5943 22.2731 14.6251 22.1518 14.6199C22.0305 14.6146 21.9134 14.5735 21.8155 14.5018C21.7175 14.43 21.643 14.3308 21.6014 14.2167C21.5598 14.1026 21.5529 13.9788 21.5817 13.8608L22.6697 9.2698L19.1089 6.19889C19.0181 6.11917 18.9526 6.01461 18.9206 5.89812C18.8885 5.78163 18.8913 5.6583 18.9286 5.54337C18.9658 5.42844 19.0359 5.32693 19.1302 5.25137C19.2245 5.17582 19.3388 5.12953 19.4591 5.11822L24.132 4.73801L25.9321 0.380249C25.978 0.267824 26.0564 0.171614 26.1572 0.103891C26.2579 0.036168 26.3766 0 26.4981 0C26.6195 0 26.7382 0.036168 26.839 0.103891C26.9398 0.171614 27.0181 0.267824 27.064 0.380249L28.8641 4.73801L33.537 5.11822C33.6575 5.1294 33.772 5.17565 33.8664 5.25125C33.9609 5.32684 34.0311 5.42847 34.0683 5.54356C34.1056 5.65864 34.1083 5.78213 34.0761 5.89873C34.044 6.01534 33.9783 6.11995 33.8872 6.19962Z\" fill=\"#7E889F\"/>\\n</g>\\n<g clip-path=\"url(#clip2_4209_35600)\">\\n<path d=\"M51.8872 6.19962L48.3265 9.27053L49.4144 13.8615C49.4432 13.9795 49.4363 14.1034 49.3947 14.2175C49.3531 14.3316 49.2786 14.4307 49.1806 14.5025C49.0827 14.5743 48.9656 14.6154 48.8443 14.6206C48.723 14.6259 48.6028 14.595 48.499 14.532L44.4981 12.0709L40.4971 14.5313C40.3933 14.5943 40.2731 14.6251 40.1518 14.6199C40.0305 14.6146 39.9134 14.5735 39.8155 14.5018C39.7175 14.43 39.643 14.3308 39.6014 14.2167C39.5598 14.1026 39.5529 13.9788 39.5817 13.8608L40.6697 9.2698L37.1089 6.19889C37.0181 6.11917 36.9526 6.01461 36.9206 5.89812C36.8885 5.78163 36.8913 5.6583 36.9286 5.54337C36.9658 5.42844 37.0359 5.32693 37.1302 5.25137C37.2245 5.17582 37.3388 5.12953 37.4591 5.11822L42.132 4.73801L43.9321 0.380249C43.978 0.267824 44.0564 0.171614 44.1572 0.103891C44.2579 0.036168 44.3766 0 44.4981 0C44.6195 0 44.7382 0.036168 44.839 0.103891C44.9398 0.171614 45.0181 0.267824 45.064 0.380249L46.8641 4.73801L51.537 5.11822C51.6575 5.1294 51.772 5.17565 51.8664 5.25125C51.9609 5.32684 52.0311 5.42847 52.0683 5.54356C52.1056 5.65864 52.1083 5.78213 52.0761 5.89873C52.044 6.01534 51.9783 6.11995 51.8872 6.19962Z\" fill=\"#7E889F\"/>\\n</g>\\n<g clip-path=\"url(#clip3_4209_35600)\">\\n<path d=\"M69.8872 6.19962L66.3265 9.27053L67.4144 13.8615C67.4432 13.9795 67.4363 14.1034 67.3947 14.2175C67.3531 14.3316 67.2786 14.4307 67.1806 14.5025C67.0827 14.5743 66.9656 14.6154 66.8443 14.6206C66.723 14.6259 66.6028 14.595 66.499 14.532L62.4981 12.0709L58.4971 14.5313C58.3933 14.5943 58.2731 14.6251 58.1518 14.6199C58.0305 14.6146 57.9134 14.5735 57.8155 14.5018C57.7175 14.43 57.643 14.3308 57.6014 14.2167C57.5598 14.1026 57.5529 13.9788 57.5817 13.8608L58.6697 9.2698L55.1089 6.19889C55.0181 6.11917 54.9526 6.01461 54.9206 5.89812C54.8885 5.78163 54.8913 5.6583 54.9286 5.54337C54.9658 5.42844 55.0359 5.32693 55.1302 5.25137C55.2245 5.17582 55.3388 5.12953 55.4591 5.11822L60.132 4.73801L61.9321 0.380249C61.978 0.267824 62.0564 0.171614 62.1572 0.103891C62.2579 0.036168 62.3766 0 62.4981 0C62.6195 0 62.7382 0.036168 62.839 0.103891C62.9398 0.171614 63.0181 0.267824 63.064 0.380249L64.8641 4.73801L69.537 5.11822C69.6575 5.1294 69.772 5.17565 69.8664 5.25125C69.9609 5.32684 70.0311 5.42847 70.0683 5.54356C70.1056 5.65864 70.1083 5.78213 70.0761 5.89873C70.044 6.01534 69.9783 6.11995 69.8872 6.19962Z\" fill=\"#7E889F\"/>\\n</g>\\n<g clip-path=\"url(#clip4_4209_35600)\">\\n<path d=\"M87.8872 6.19962L84.3265 9.27053L85.4144 13.8615C85.4432 13.9795 85.4363 14.1034 85.3947 14.2175C85.3531 14.3316 85.2786 14.4307 85.1806 14.5025C85.0827 14.5743 84.9656 14.6154 84.8443 14.6206C84.723 14.6259 84.6028 14.595 84.499 14.532L80.4981 12.0709L76.4971 14.5313C76.3933 14.5943 76.2731 14.6251 76.1518 14.6199C76.0305 14.6146 75.9134 14.5735 75.8155 14.5018C75.7175 14.43 75.643 14.3308 75.6014 14.2167C75.5598 14.1026 75.5529 13.9788 75.5817 13.8608L76.6697 9.2698L73.1089 6.19889C73.0181 6.11917 72.9526 6.01461 72.9206 5.89812C72.8885 5.78163 72.8913 5.6583 72.9286 5.54337C72.9658 5.42844 73.0359 5.32693 73.1302 5.25137C73.2245 5.17582 73.3388 5.12953 73.4591 5.11822L78.132 4.73801L79.9321 0.380249C79.978 0.267824 80.0564 0.171614 80.1572 0.103891C80.2579 0.036168 80.3766 0 80.4981 0C80.6195 0 80.7382 0.036168 80.839 0.103891C80.9398 0.171614 81.0181 0.267824 81.064 0.380249L82.8641 4.73801L87.537 5.11822C87.6575 5.1294 87.772 5.17565 87.8664 5.25125C87.9609 5.32684 88.0311 5.42847 88.0683 5.54356C88.1056 5.65864 88.1083 5.78213 88.0761 5.89873C88.044 6.01534 87.9783 6.11995 87.8872 6.19962Z\" fill=\"#7E889F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(18.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(36.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(54.5)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_4209_35600\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(72.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fdowpk\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"vNKd7L0Ek\",svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4209_35577)\">\\n<path d=\"M10.5 0C7.84783 0 5.3043 1.05357 3.42893 2.92893C1.55357 4.8043 0.5 7.34783 0.5 10C0.5 12.6522 1.55357 15.1957 3.42893 17.0711C5.3043 18.9464 7.84783 20 10.5 20C13.1522 20 15.6957 18.9464 17.5711 17.0711C19.4464 15.1957 20.5 12.6522 20.5 10C20.5 7.34783 19.4464 4.8043 17.5711 2.92893C15.6957 1.05357 13.1522 0 10.5 0ZM10.6017 4.28583C10.9767 4.28583 11.3517 4.3225 11.72 4.39583L10.6017 6.73417C8.80167 6.73333 7.33583 8.2 7.33583 10C7.33583 11.8 8.8025 13.2667 10.6025 13.2667C11.3833 13.2667 12.1392 12.985 12.73 12.4742L13.9658 14.6175C13.1137 15.2383 12.1065 15.6112 11.0555 15.6949C10.0046 15.7787 8.95098 15.57 8.0113 15.092C7.07163 14.614 6.28253 13.8854 5.73135 12.9867C5.18017 12.0879 4.8884 11.0543 4.88833 10C4.88833 8.48473 5.49027 7.03152 6.56173 5.96006C7.63319 4.88861 9.0864 4.28583 10.6017 4.28583ZM13.5167 4.69417H13.5383C13.8933 4.69417 14.1992 4.78861 14.4558 4.9775C14.7142 5.16917 14.8436 5.43194 14.8442 5.76583C14.8442 6.29833 14.5442 6.62417 13.9817 6.9125L13.6675 7.07167C13.3317 7.24167 13.1658 7.3925 13.12 7.66H14.8283V8.36833H12.2442V8.24833C12.2436 7.81056 12.3308 7.44778 12.5058 7.16C12.6808 6.87278 12.9869 6.61806 13.4242 6.39583L13.6258 6.29833C13.9817 6.11833 14.0742 5.96417 14.0742 5.7775C14.0742 5.55583 13.8842 5.39583 13.5742 5.39583C13.2075 5.39583 12.93 5.58583 12.7375 5.97417L12.2442 5.47833C12.3531 5.24667 12.525 5.05917 12.76 4.91583C12.9862 4.77183 13.2485 4.69496 13.5167 4.69417ZM11.7717 9.18417H14.6L16.0142 11.6317L14.6 14.0817L13.1858 11.6317H10.3583L11.7717 9.18417Z\" fill=\"#FF492C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4209_35577\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-frda6.framer-yigdjz, .framer-frda6 .framer-yigdjz { display: block; }\",\".framer-frda6.framer-1oxlbsx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-frda6 .framer-1e53fw0, .framer-frda6 .framer-fdowpk { flex: none; height: 20px; position: relative; width: 21px; }\",\".framer-frda6 .framer-1a85p7d, .framer-frda6 .framer-o4ptus { flex: none; height: 16px; position: relative; width: 89px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-frda6.framer-1oxlbsx { gap: 0px; } .framer-frda6.framer-1oxlbsx > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-frda6.framer-1oxlbsx > :first-child { margin-left: 0px; } .framer-frda6.framer-1oxlbsx > :last-child { margin-right: 0px; } }\",\".framer-frda6.framer-v-4g4hxn .framer-1a85p7d { order: 2; }\",\".framer-frda6.framer-v-4g4hxn .framer-fdowpk { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"sQgg404ud\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJumwXPbZ7=withCSS(Component,css,\"framer-frda6\");export default FramerJumwXPbZ7;FramerJumwXPbZ7.displayName=\"G2 Rating\";FramerJumwXPbZ7.defaultProps={height:200,width:200};addPropertyControls(FramerJumwXPbZ7,{variant:{options:[\"euKNZdi5H\",\"sQgg404ud\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJumwXPbZ7,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJumwXPbZ7\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sQgg404ud\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JumwXPbZ7.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"zWPYZK_Yq\",\"UilBZ2yyq\"];const serializationHash=\"framer-5dFse\";const variantClassNames={UilBZ2yyq:\"framer-v-ehq1lc\",zWPYZK_Yq:\"framer-v-b4xk0g\"};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={\"Variant 1\":\"zWPYZK_Yq\",\"Variant 2\":\"UilBZ2yyq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"zWPYZK_Yq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zWPYZK_Yq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"UilBZ2yyq\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"UilBZ2yyq\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-b4xk0g\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zWPYZK_Yq\",ref:refBinding,style:{\"--border-bottom-width\":\"0.6497678160667419px\",\"--border-color\":\"rgb(126, 136, 159)\",\"--border-left-width\":\"0.6497678160667419px\",\"--border-right-width\":\"0.6497678160667419px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.6497678160667419px\",borderBottomLeftRadius:7.8,borderBottomRightRadius:7.8,borderTopLeftRadius:7.8,borderTopRightRadius:7.8,...style},variants:{UilBZ2yyq:{\"--border-color\":\"rgb(242, 102, 37)\"}},...addPropertyOverrides({UilBZ2yyq:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a32jqn\",\"data-framer-name\":\"featured text\",layoutDependency:layoutDependency,layoutId:\"AuA4Dr_kS\",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-size\":\"6px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(126, 136, 159))\"},children:\"Backed by\"})}),className:\"framer-1kyk02c\",\"data-framer-name\":\"Backed by\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"qN9ywUU7z\",style:{\"--extracted-r6o4lv\":\"rgb(126, 136, 159)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ixg4fw\",\"data-framer-name\":\"Frame 1188\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:82,layoutDependency:layoutDependency,layoutId:\"JlCOFQFkt\",svg:'<svg width=\"82\" height=\"18\" viewBox=\"0 0 82 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.625 0H0.625V18H18.625V0ZM5.90547 4.37981L9.02471 10.1998L9.02757 13.9808H10.2273V10.2606L13.3466 4.37981H12.0266L10.2266 8.03991L10.2238 8.04414C10.1045 8.22301 9.98576 8.40117 9.92614 8.58005C9.89192 8.71813 9.83752 8.81656 9.78606 8.90967C9.74821 8.97816 9.71194 9.04378 9.68647 9.12019C9.65638 9.09046 9.64135 9.04547 9.62631 9.00043C9.61131 8.95551 9.59628 8.91053 9.56628 8.88052C9.53623 8.82043 9.52121 8.77536 9.50618 8.73029C9.49116 8.68521 9.47614 8.64014 9.44609 8.58005V8.51995L9.38599 8.45986C9.36296 8.41407 9.34876 8.377 9.33661 8.34532C9.31707 8.29432 9.30287 8.25726 9.2658 8.22019L9.26579 8.22018C9.2057 8.16009 9.14561 8.1 9.14561 8.03991L7.34561 4.37981H5.90547Z\" fill=\"#F26625\"/>\\n<path d=\"M26.9609 4.93078C27.7677 4.93078 28.4679 5.14617 29.0067 5.57772L28.4686 6.22465C27.9838 5.90195 27.4998 5.68655 26.9084 5.68655C25.9928 5.68655 25.2933 6.17137 24.9166 7.08698C24.7012 7.62507 24.5939 8.32529 24.5939 9.24089C24.5939 9.9411 24.7004 10.5332 24.8633 10.964C25.2941 11.9869 25.9943 12.471 27.0705 12.471C27.6626 12.471 28.2015 12.3096 28.6855 11.9329L29.2236 12.6331C28.5234 13.0639 27.7776 13.28 26.9632 13.28C25.9943 13.28 25.1868 12.9033 24.5406 12.0958C23.8937 11.3347 23.625 10.3194 23.625 9.08182C23.625 7.84427 23.9477 6.87463 24.5939 6.06787C25.186 5.36765 25.9943 4.93687 26.9632 4.93687L26.9609 4.93078ZM30.0296 10.2608C30.0296 9.29188 30.245 8.53763 30.7299 8.0003C31.2147 7.46296 31.8068 7.13873 32.5603 7.13873C33.4219 7.13873 34.1206 7.46144 34.6061 8.16165C34.9829 8.69975 35.1442 9.454 35.1442 10.3688C35.1442 11.4458 34.8215 12.3074 34.2286 12.8455C33.7828 13.2371 33.2069 13.4483 32.6136 13.4376C31.8068 13.4376 31.2132 13.1682 30.7291 12.576C30.2443 12.0379 30.0296 11.2304 30.0296 10.2608ZM33.7986 8.70051C33.5292 8.21569 33.1517 7.93941 32.5603 7.93941C31.9689 7.93941 31.5914 8.1548 31.322 8.58634C31.1066 8.90905 31.0526 9.44791 31.0526 10.1466C31.0526 11.0622 31.1591 11.7069 31.4293 12.0851C31.6995 12.4634 32.0762 12.6773 32.6136 12.6773C33.2605 12.6773 33.6905 12.3545 33.9059 11.7617C34.0125 11.4389 34.0673 11.0006 34.0673 10.4693C34.1206 9.66254 34.014 9.06888 33.7979 8.6929L33.7986 8.70051ZM36.8658 8.80706C36.8658 8.21493 36.8126 7.73011 36.6505 7.36097L37.5661 7.14558C37.7274 7.41501 37.7814 7.73772 37.7814 8.00715V8.06042C37.9968 7.84503 38.2122 7.62964 38.5425 7.46829C38.9193 7.2529 39.2428 7.14558 39.5655 7.14558C40.0503 7.14558 40.4811 7.36097 40.7497 7.73772C40.803 7.84427 40.9111 8.00715 40.9651 8.11446C41.6121 7.46753 42.2034 7.14558 42.8496 7.14558C43.2804 7.14558 43.6564 7.30693 43.9266 7.57636C44.196 7.89907 44.3573 8.27658 44.3573 8.70736V13.175H43.374V8.76064C43.374 8.1685 43.1046 7.89907 42.6129 7.89907C42.3435 7.89907 42.0208 8.00563 41.7513 8.22178C41.6448 8.32833 41.4286 8.49121 41.1592 8.7066L41.0527 8.81315V13.1743H40.0297V8.96842C40.0297 8.59167 39.9765 8.32148 39.8684 8.20732C39.707 8.04596 39.5457 7.99193 39.2762 7.99193C38.8455 7.99193 38.3606 8.26135 37.7693 8.79869V13.2131H36.8666L36.8658 8.80706ZM46.0196 4.71539L46.9885 4.5C47.095 4.93078 47.1498 5.4156 47.1498 6.00698V7.99877C47.6879 7.46068 48.2808 7.19201 48.873 7.19201C49.5732 7.19201 50.1653 7.46144 50.542 7.99877C50.9728 8.53687 51.189 9.29112 51.189 10.206C51.189 11.1748 50.9736 11.9291 50.542 12.5212C50.1105 13.1134 49.5191 13.3828 48.8189 13.3828C48.5005 13.3888 48.1857 13.3147 47.9033 13.1674C47.5806 13.006 47.3652 12.8447 47.2031 12.6293L47.0417 13.2762H46.1261C46.2327 13.0068 46.2875 12.5151 46.2875 11.7693V6.11429C46.2342 5.46736 46.1809 4.9833 46.0181 4.71387L46.0196 4.71539ZM47.5798 8.36867C47.4185 8.47522 47.2571 8.6381 47.1491 8.79945V11.8834C47.5258 12.3682 48.0106 12.5836 48.5952 12.5836C49.08 12.5836 49.4567 12.4223 49.6721 12.0455C49.9415 11.6148 50.1029 11.0226 50.1029 10.1611C50.1029 9.39996 49.9963 8.86871 49.7261 8.546C49.5108 8.2233 49.134 8.06119 48.5952 8.06119C48.2724 8.00791 47.8949 8.11446 47.5722 8.38389L47.5798 8.36867ZM52.5879 5.47649C52.5879 5.2611 52.6412 5.09975 52.8033 4.93839C52.9654 4.77704 53.126 4.723 53.3414 4.723C53.5568 4.723 53.7181 4.77628 53.8795 4.93839C54.0408 5.10051 54.0949 5.2611 54.0949 5.47649C54.0949 5.69188 54.0416 5.85323 53.8795 6.01459C53.7173 6.17594 53.5568 6.22998 53.3414 6.22998C53.126 6.22998 52.9646 6.1767 52.8033 6.01459C52.6419 5.85247 52.5879 5.69188 52.5879 5.47649ZM52.8116 13.223V7.30161L53.7805 7.14025V13.2245L52.8116 13.223ZM55.8728 8.80706C55.8728 8.37628 55.8728 8.10685 55.8195 8.0003C55.8195 7.83894 55.713 7.67759 55.6041 7.40816L56.5197 7.13873C56.667 7.4211 56.7411 7.73592 56.7351 8.05433C57.3272 7.4622 57.9734 7.13873 58.6196 7.13873C58.9423 7.13873 59.2117 7.19201 59.4812 7.35412C59.7506 7.51624 59.966 7.73087 60.0733 8.00106C60.1798 8.21645 60.2346 8.43184 60.2346 8.70127V13.2237H59.319V9.18609C59.319 8.70127 59.2658 8.37932 59.1036 8.21721C59.0197 8.13097 58.9192 8.06264 58.8082 8.01633C58.6971 7.97002 58.5778 7.9467 58.4575 7.94778C58.2421 7.94778 57.9194 8.05434 57.5959 8.21721C57.2968 8.37006 57.0241 8.56998 56.7884 8.80935V13.2237H55.8728V8.80706ZM62.3878 8.59167L61.903 7.94474C62.7097 7.40664 63.518 7.13797 64.3796 7.13797C65.2412 7.13797 65.78 7.46068 66.0487 8.05357C66.1552 8.26896 66.1552 8.59167 66.1552 9.07649V9.3992L66.102 11.3377V11.6071C66.102 11.9299 66.102 12.1452 66.1552 12.3074C66.2085 12.5228 66.3706 12.6841 66.586 12.7922L66.1012 13.4391C65.6704 13.2778 65.401 13.0083 65.2944 12.5775C64.7563 13.1156 64.1634 13.3843 63.5713 13.3843C62.9792 13.3843 62.4943 13.223 62.1252 12.8995C61.8025 12.6301 61.6404 12.1993 61.6404 11.6612C61.6262 11.353 61.6934 11.0465 61.8351 10.7725C61.9769 10.4985 62.1882 10.2666 62.4479 10.1002C62.986 9.72343 63.7935 9.56207 64.7632 9.56207H65.194V9.13129C65.194 8.64647 65.1407 8.32452 64.9786 8.21569C64.8765 8.10538 64.7511 8.01919 64.6116 7.96337C64.472 7.90755 64.3218 7.88351 64.1718 7.89298C63.8491 7.89298 63.4716 7.99954 63.0408 8.16241L62.3939 8.59319L62.3878 8.59167ZM65.2419 11.7685L65.2952 10.2082H64.8104C63.9488 10.2082 63.4099 10.3696 63.0872 10.6931C62.8718 10.9085 62.7645 11.2312 62.7645 11.6619C62.7645 12.3622 63.0872 12.7389 63.7875 12.7389C64.0931 12.7214 64.3885 12.6223 64.6428 12.4519C64.8971 12.2815 65.1011 12.046 65.2335 11.77L65.2419 11.7685ZM69.2255 7.29932H70.7325L70.4631 8.06042H69.2247V11.8834C69.2247 12.2061 69.278 12.4215 69.3861 12.5836C69.4927 12.6902 69.7088 12.799 69.9782 12.799C70.1936 12.799 70.409 12.7458 70.5704 12.6925L70.6769 13.2846C70.3542 13.446 70.03 13.5 69.654 13.5C68.7384 13.5 68.3084 13.0692 68.3084 12.1544V8.06271H67.5009V7.30161H68.262V7.19505C68.262 7.0885 68.3152 6.65696 68.3685 5.95675V5.79463L69.3374 5.57924C69.2308 6.22617 69.2308 6.81755 69.2308 7.30237L69.2255 7.29932ZM71.7021 10.26C71.7021 9.29112 71.9175 8.53687 72.4023 7.99954C72.8331 7.46144 73.4793 7.13797 74.2328 7.13797C75.0943 7.13797 75.793 7.46068 76.2786 8.16089C76.6554 8.69899 76.8167 9.45324 76.8167 10.3681C76.8167 11.445 76.494 12.3066 75.9011 12.8447C75.4553 13.2363 74.8794 13.4475 74.2861 13.4368C73.4793 13.4368 72.8856 13.1674 72.4016 12.5753C71.9708 12.0372 71.7021 11.2296 71.7021 10.26ZM75.5251 8.69975C75.2557 8.21493 74.8782 7.93865 74.2868 7.93865C73.6954 7.93865 73.3179 8.15404 73.0485 8.58558C72.8331 8.90829 72.7791 9.44715 72.7791 10.1458C72.7791 11.0614 72.8856 11.7061 73.1558 12.0844C73.426 12.4626 73.8028 12.6765 74.3401 12.6765C74.987 12.6765 75.4171 12.3538 75.6324 11.7609C75.739 11.4382 75.7938 10.9998 75.7938 10.4685C75.7938 9.66178 75.6872 9.06812 75.5244 8.69214L75.5251 8.69975ZM78.5924 8.69823C78.5924 8.16013 78.5391 7.72935 78.377 7.40588L79.2926 7.13645C79.4399 7.41881 79.5139 7.73363 79.508 8.05205V8.15861C79.9928 7.51167 80.5309 7.18973 81.1771 7.18973C81.2836 7.18973 81.3924 7.18973 81.4998 7.243L81.123 8.26592C81.0165 8.21264 80.9076 8.21264 80.8536 8.21264C80.6382 8.21264 80.3688 8.26592 80.1534 8.42804C79.938 8.59015 79.7226 8.75074 79.6153 8.96613C79.5444 9.1742 79.5081 9.39249 79.508 9.61231V13.3265H78.5924V8.69823Z\" fill=\"#F26625\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-s957oc\",\"data-framer-name\":\"Frame 1188\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:82,layoutDependency:layoutDependency,layoutId:\"pnFOy6nPy\",svg:'<svg width=\"82\" height=\"18\" viewBox=\"0 0 82 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.625 0H0.625V18H18.625V0ZM5.90547 4.37981L9.02471 10.1998L9.02757 13.9808H10.2273V10.2606L13.3466 4.37981H12.0266L10.2266 8.03991L10.2238 8.04414C10.1045 8.22301 9.98576 8.40117 9.92614 8.58005C9.89192 8.71813 9.83752 8.81656 9.78606 8.90967C9.74821 8.97816 9.71194 9.04378 9.68647 9.12019C9.65638 9.09046 9.64135 9.04547 9.62631 9.00043C9.61131 8.95551 9.59628 8.91053 9.56628 8.88052C9.53623 8.82043 9.52121 8.77536 9.50618 8.73029C9.49116 8.68521 9.47614 8.64014 9.44609 8.58005V8.51995L9.38599 8.45986C9.36296 8.41407 9.34876 8.377 9.33661 8.34532C9.31707 8.29432 9.30287 8.25726 9.2658 8.22019L9.26579 8.22018C9.2057 8.16009 9.14561 8.1 9.14561 8.03991L7.34561 4.37981H5.90547Z\" fill=\"#7E889F\"/>\\n<path d=\"M26.9609 4.93078C27.7677 4.93078 28.4679 5.14617 29.0067 5.57772L28.4686 6.22465C27.9838 5.90195 27.4998 5.68655 26.9084 5.68655C25.9928 5.68655 25.2933 6.17137 24.9166 7.08698C24.7012 7.62507 24.5939 8.32529 24.5939 9.24089C24.5939 9.9411 24.7004 10.5332 24.8633 10.964C25.2941 11.9869 25.9943 12.471 27.0705 12.471C27.6626 12.471 28.2015 12.3096 28.6855 11.9329L29.2236 12.6331C28.5234 13.0639 27.7776 13.28 26.9632 13.28C25.9943 13.28 25.1868 12.9033 24.5406 12.0958C23.8937 11.3347 23.625 10.3194 23.625 9.08182C23.625 7.84427 23.9477 6.87463 24.5939 6.06787C25.186 5.36765 25.9943 4.93687 26.9632 4.93687L26.9609 4.93078ZM30.0296 10.2608C30.0296 9.29188 30.245 8.53763 30.7299 8.0003C31.2147 7.46296 31.8068 7.13873 32.5603 7.13873C33.4219 7.13873 34.1206 7.46144 34.6061 8.16165C34.9829 8.69975 35.1442 9.454 35.1442 10.3688C35.1442 11.4458 34.8215 12.3074 34.2286 12.8455C33.7828 13.2371 33.2069 13.4483 32.6136 13.4376C31.8068 13.4376 31.2132 13.1682 30.7291 12.576C30.2443 12.0379 30.0296 11.2304 30.0296 10.2608ZM33.7986 8.70051C33.5292 8.21569 33.1517 7.93941 32.5603 7.93941C31.9689 7.93941 31.5914 8.1548 31.322 8.58634C31.1066 8.90905 31.0526 9.44791 31.0526 10.1466C31.0526 11.0622 31.1591 11.7069 31.4293 12.0851C31.6995 12.4634 32.0762 12.6773 32.6136 12.6773C33.2605 12.6773 33.6905 12.3545 33.9059 11.7617C34.0125 11.4389 34.0673 11.0006 34.0673 10.4693C34.1206 9.66254 34.014 9.06888 33.7979 8.6929L33.7986 8.70051ZM36.8658 8.80706C36.8658 8.21493 36.8126 7.73011 36.6505 7.36097L37.5661 7.14558C37.7274 7.41501 37.7814 7.73772 37.7814 8.00715V8.06042C37.9968 7.84503 38.2122 7.62964 38.5425 7.46829C38.9193 7.2529 39.2428 7.14558 39.5655 7.14558C40.0503 7.14558 40.4811 7.36097 40.7497 7.73772C40.803 7.84427 40.9111 8.00715 40.9651 8.11446C41.6121 7.46753 42.2034 7.14558 42.8496 7.14558C43.2804 7.14558 43.6564 7.30693 43.9266 7.57636C44.196 7.89907 44.3573 8.27658 44.3573 8.70736V13.175H43.374V8.76064C43.374 8.1685 43.1046 7.89907 42.6129 7.89907C42.3435 7.89907 42.0208 8.00563 41.7513 8.22178C41.6448 8.32833 41.4286 8.49121 41.1592 8.7066L41.0527 8.81315V13.1743H40.0297V8.96842C40.0297 8.59167 39.9765 8.32148 39.8684 8.20732C39.707 8.04596 39.5457 7.99193 39.2762 7.99193C38.8455 7.99193 38.3606 8.26135 37.7693 8.79869V13.2131H36.8666L36.8658 8.80706ZM46.0196 4.71539L46.9885 4.5C47.095 4.93078 47.1498 5.4156 47.1498 6.00698V7.99877C47.6879 7.46068 48.2808 7.19201 48.873 7.19201C49.5732 7.19201 50.1653 7.46144 50.542 7.99877C50.9728 8.53687 51.189 9.29112 51.189 10.206C51.189 11.1748 50.9736 11.9291 50.542 12.5212C50.1105 13.1134 49.5191 13.3828 48.8189 13.3828C48.5005 13.3888 48.1857 13.3147 47.9033 13.1674C47.5806 13.006 47.3652 12.8447 47.2031 12.6293L47.0417 13.2762H46.1261C46.2327 13.0068 46.2875 12.5151 46.2875 11.7693V6.11429C46.2342 5.46736 46.1809 4.9833 46.0181 4.71387L46.0196 4.71539ZM47.5798 8.36867C47.4185 8.47522 47.2571 8.6381 47.1491 8.79945V11.8834C47.5258 12.3682 48.0106 12.5836 48.5952 12.5836C49.08 12.5836 49.4567 12.4223 49.6721 12.0455C49.9415 11.6148 50.1029 11.0226 50.1029 10.1611C50.1029 9.39996 49.9963 8.86871 49.7261 8.546C49.5108 8.2233 49.134 8.06119 48.5952 8.06119C48.2724 8.00791 47.8949 8.11446 47.5722 8.38389L47.5798 8.36867ZM52.5879 5.47649C52.5879 5.2611 52.6412 5.09975 52.8033 4.93839C52.9654 4.77704 53.126 4.723 53.3414 4.723C53.5568 4.723 53.7181 4.77628 53.8795 4.93839C54.0408 5.10051 54.0949 5.2611 54.0949 5.47649C54.0949 5.69188 54.0416 5.85323 53.8795 6.01459C53.7173 6.17594 53.5568 6.22998 53.3414 6.22998C53.126 6.22998 52.9646 6.1767 52.8033 6.01459C52.6419 5.85247 52.5879 5.69188 52.5879 5.47649ZM52.8116 13.223V7.30161L53.7805 7.14025V13.2245L52.8116 13.223ZM55.8728 8.80706C55.8728 8.37628 55.8728 8.10685 55.8195 8.0003C55.8195 7.83894 55.713 7.67759 55.6041 7.40816L56.5197 7.13873C56.667 7.4211 56.7411 7.73592 56.7351 8.05433C57.3272 7.4622 57.9734 7.13873 58.6196 7.13873C58.9423 7.13873 59.2117 7.19201 59.4812 7.35412C59.7506 7.51624 59.966 7.73087 60.0733 8.00106C60.1798 8.21645 60.2346 8.43184 60.2346 8.70127V13.2237H59.319V9.18609C59.319 8.70127 59.2658 8.37932 59.1036 8.21721C59.0197 8.13097 58.9192 8.06264 58.8082 8.01633C58.6971 7.97002 58.5778 7.9467 58.4575 7.94778C58.2421 7.94778 57.9194 8.05434 57.5959 8.21721C57.2968 8.37006 57.0241 8.56998 56.7884 8.80935V13.2237H55.8728V8.80706ZM62.3878 8.59167L61.903 7.94474C62.7097 7.40664 63.518 7.13797 64.3796 7.13797C65.2412 7.13797 65.78 7.46068 66.0487 8.05357C66.1552 8.26896 66.1552 8.59167 66.1552 9.07649V9.3992L66.102 11.3377V11.6071C66.102 11.9299 66.102 12.1452 66.1552 12.3074C66.2085 12.5228 66.3706 12.6841 66.586 12.7922L66.1012 13.4391C65.6704 13.2778 65.401 13.0083 65.2944 12.5775C64.7563 13.1156 64.1634 13.3843 63.5713 13.3843C62.9792 13.3843 62.4943 13.223 62.1252 12.8995C61.8025 12.6301 61.6404 12.1993 61.6404 11.6612C61.6262 11.353 61.6934 11.0465 61.8351 10.7725C61.9769 10.4985 62.1882 10.2666 62.4479 10.1002C62.986 9.72343 63.7935 9.56207 64.7632 9.56207H65.194V9.13129C65.194 8.64647 65.1407 8.32452 64.9786 8.21569C64.8765 8.10538 64.7511 8.01919 64.6116 7.96337C64.472 7.90755 64.3218 7.88351 64.1718 7.89298C63.8491 7.89298 63.4716 7.99954 63.0408 8.16241L62.3939 8.59319L62.3878 8.59167ZM65.2419 11.7685L65.2952 10.2082H64.8104C63.9488 10.2082 63.4099 10.3696 63.0872 10.6931C62.8718 10.9085 62.7645 11.2312 62.7645 11.6619C62.7645 12.3622 63.0872 12.7389 63.7875 12.7389C64.0931 12.7214 64.3885 12.6223 64.6428 12.4519C64.8971 12.2815 65.1011 12.046 65.2335 11.77L65.2419 11.7685ZM69.2255 7.29932H70.7325L70.4631 8.06042H69.2247V11.8834C69.2247 12.2061 69.278 12.4215 69.3861 12.5836C69.4927 12.6902 69.7088 12.799 69.9782 12.799C70.1936 12.799 70.409 12.7458 70.5704 12.6925L70.6769 13.2846C70.3542 13.446 70.03 13.5 69.654 13.5C68.7384 13.5 68.3084 13.0692 68.3084 12.1544V8.06271H67.5009V7.30161H68.262V7.19505C68.262 7.0885 68.3152 6.65696 68.3685 5.95675V5.79463L69.3374 5.57924C69.2308 6.22617 69.2308 6.81755 69.2308 7.30237L69.2255 7.29932ZM71.7021 10.26C71.7021 9.29112 71.9175 8.53687 72.4023 7.99954C72.8331 7.46144 73.4793 7.13797 74.2328 7.13797C75.0943 7.13797 75.793 7.46068 76.2786 8.16089C76.6554 8.69899 76.8167 9.45324 76.8167 10.3681C76.8167 11.445 76.494 12.3066 75.9011 12.8447C75.4553 13.2363 74.8794 13.4475 74.2861 13.4368C73.4793 13.4368 72.8856 13.1674 72.4016 12.5753C71.9708 12.0372 71.7021 11.2296 71.7021 10.26ZM75.5251 8.69975C75.2557 8.21493 74.8782 7.93865 74.2868 7.93865C73.6954 7.93865 73.3179 8.15404 73.0485 8.58558C72.8331 8.90829 72.7791 9.44715 72.7791 10.1458C72.7791 11.0614 72.8856 11.7061 73.1558 12.0844C73.426 12.4626 73.8028 12.6765 74.3401 12.6765C74.987 12.6765 75.4171 12.3538 75.6324 11.7609C75.739 11.4382 75.7938 10.9998 75.7938 10.4685C75.7938 9.66178 75.6872 9.06812 75.5244 8.69214L75.5251 8.69975ZM78.5924 8.69823C78.5924 8.16013 78.5391 7.72935 78.377 7.40588L79.2926 7.13645C79.4399 7.41881 79.5139 7.73363 79.508 8.05205V8.15861C79.9928 7.51167 80.5309 7.18973 81.1771 7.18973C81.2836 7.18973 81.3924 7.18973 81.4998 7.243L81.123 8.26592C81.0165 8.21264 80.9076 8.21264 80.8536 8.21264C80.6382 8.21264 80.3688 8.26592 80.1534 8.42804C79.938 8.59015 79.7226 8.75074 79.6153 8.96613C79.5444 9.1742 79.5081 9.39249 79.508 9.61231V13.3265H78.5924V8.69823Z\" fill=\"#7E889F\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5dFse.framer-1crit79, .framer-5dFse .framer-1crit79 { display: block; }\",\".framer-5dFse.framer-b4xk0g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 12px 4px 12px; position: relative; width: min-content; }\",\".framer-5dFse .framer-a32jqn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5dFse .framer-1kyk02c { flex: none; height: 6px; position: relative; white-space: pre-wrap; width: 31px; word-break: break-word; word-wrap: break-word; }\",\".framer-5dFse .framer-1ixg4fw, .framer-5dFse .framer-s957oc { aspect-ratio: 4.555555555555555 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 73px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5dFse.framer-b4xk0g, .framer-5dFse .framer-a32jqn { gap: 0px; } .framer-5dFse.framer-b4xk0g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5dFse.framer-b4xk0g > :first-child { margin-left: 0px; } .framer-5dFse.framer-b4xk0g > :last-child { margin-right: 0px; } .framer-5dFse .framer-a32jqn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5dFse .framer-a32jqn > :first-child { margin-top: 0px; } .framer-5dFse .framer-a32jqn > :last-child { margin-bottom: 0px; } }\",'.framer-5dFse[data-border=\"true\"]::after, .framer-5dFse [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 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"UilBZ2yyq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVP3LCsxPN=withCSS(Component,css,\"framer-5dFse\");export default FramerVP3LCsxPN;FramerVP3LCsxPN.displayName=\"yc badge\";FramerVP3LCsxPN.defaultProps={height:200,width:200};addPropertyControls(FramerVP3LCsxPN,{variant:{options:[\"zWPYZK_Yq\",\"UilBZ2yyq\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVP3LCsxPN,[{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/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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVP3LCsxPN\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UilBZ2yyq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VP3LCsxPN.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (99efa6a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/qlN04JKWsPiTjQExBWpf/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oUA2Om1dZFSKNZab3Wfn/GIT5pikwM18nppgfJZm8/osMSorl2I.js\";const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"bOjrDymec\",\"QEy3pi7UJ\",\"HpAyQH6Zu\",\"iOenGaURr\",\"CjxeLrs7X\"];const serializationHash=\"framer-xTG0u\";const variantClassNames={bOjrDymec:\"framer-v-a1g8e6\",CjxeLrs7X:\"framer-v-zp3ehg\",HpAyQH6Zu:\"framer-v-gocnmj\",iOenGaURr:\"framer-v-18kxlqw\",QEy3pi7UJ:\"framer-v-ksd94m\"};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={\"Desktop Medium\":\"bOjrDymec\",\"Variant 5\":\"CjxeLrs7X\",Desktop:\"QEy3pi7UJ\",Phone:\"iOenGaURr\",Tablet:\"HpAyQH6Zu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bOjrDymec\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bOjrDymec\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-a1g8e6\",className,classNames),\"data-framer-name\":\"Desktop Medium\",layoutDependency:layoutDependency,layoutId:\"bOjrDymec\",ref:refBinding,style:{backgroundColor:\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\",...style},...addPropertyOverrides({CjxeLrs7X:{\"data-framer-name\":\"Variant 5\"},HpAyQH6Zu:{\"data-framer-name\":\"Tablet\"},iOenGaURr:{\"data-framer-name\":\"Phone\"},QEy3pi7UJ:{\"data-framer-name\":\"Desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10y0is3\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"OvXOw6LMB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-osg3qb\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"JQdR5RqJH\",style:{borderBottomLeftRadius:64,borderBottomRightRadius:64},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uk9xuo\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"Q5DBTY8sN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1b9e51a\",\"data-styles-preset\":\"osMSorl2I\",style:{\"--framer-text-alignment\":\"center\"},children:\"Learn from best GTM leaders who leverage Persana daily\"})}),className:\"framer-1430nxd\",\"data-framer-name\":\"Excellent Sales Teams Deserve Excellent Resources\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gZWqKu8zK\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3gfozg\",\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"HDTL4N4q3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mmsqsg-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"UFFKlflx1-container\",nodeId:\"UFFKlflx1\",rendersWithMotion:true,scopeId:\"Z1bDSJ3xt\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"var(--token-821dd51f-9d92-44f4-bf42-cdbe0a8185c7, rgb(245, 243, 255))\",arrowGap:16,arrowPadding:100,arrowPaddingBottom:-64,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/x6fXyVHDPJjyPJe6TOQuAQGKqrI.png\",rightArrow:\"https://framerusercontent.com/images/ltBwPp5rpLUJmrpoo4lI0AwPefg.png\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"UFFKlflx1\",intervalControl:2,itemAmount:2,layoutId:\"UFFKlflx1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(57, 55, 97, 0.05)\",dotsBlur:16,dotsFill:\"var(--token-e58e716d-1e67-4ab7-bdc8-e1740581d5a0, rgb(16, 40, 255))\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-froy1a\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ztnJydbUQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Link,{href:\"https://persana.ai/learn-persana/persana-academy\",motionChild:true,nodeId:\"IJx3rRAsL\",openInNewTab:true,scopeId:\"Z1bDSJ3xt\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1qdgb5m framer-l1tgc\",\"data-border\":true,\"data-framer-name\":\"Persana Academy\",layoutDependency:layoutDependency,layoutId:\"IJx3rRAsL\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:\"546px\",src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-1yxksnd\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"ZFxRku6C2\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:.4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j49el4\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"uVMEKYmyz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wtacjz\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"FsMuJQ_9Y\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17zf5ut\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"xe0TG59Hv\",style:{backgroundColor:\"rgb(245, 243, 255)\",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\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Persana Academy\"})}),className:\"framer-1j0fgkb\",\"data-framer-name\":\"Persana Academy\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"TLTc6Oyv5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pihtuh\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"Sf9HZ1PMk\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"16\" cy=\"16\" r=\"15.5\" fill=\"#C03EDC\" stroke=\"white\"/>\\n<path d=\"M12.2266 12.2275H19.7628V19.7638\" stroke=\"white\"/>\\n<path d=\"M19.2833 12.7343L12.2891 19.7285\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8esxmg\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"cwvU2cD7Q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Become a Persana Pro in a few lessons and boost your sales!\"})}),className:\"framer-a5cle0\",\"data-framer-name\":\"Master Persana in a few core lessons and boost your meeting success rate!\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Kl6qrGntc\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-67ufq5\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ZiOro0GAR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kxm3_W_gM\"},motionChild:true,nodeId:\"Xb8lNWZXw\",openInNewTab:true,scopeId:\"Z1bDSJ3xt\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13r7pey framer-l1tgc\",\"data-border\":true,\"data-framer-name\":\"Blog\",layoutDependency:layoutDependency,layoutId:\"Xb8lNWZXw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:\"546px\",src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-1j38iep\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"b1QHU8Lj2\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:.4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qdpt4b\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"UF5Q_FHOc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10e567g\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"LlCih83Zs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-166fner\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"Y0YvLPlgs\",style:{backgroundColor:\"rgb(245, 243, 255)\",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\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\"},children:\"Library\"})}),className:\"framer-1rpzrmz\",\"data-framer-name\":\"Library\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"HrJipw1w5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13otvi2\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"W0dkx7YkI\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"16\" cy=\"16\" r=\"15.5\" fill=\"#C03EDC\" stroke=\"white\"/>\\n<path d=\"M12.2266 12.2275H19.7628V19.7638\" stroke=\"white\"/>\\n<path d=\"M19.2833 12.7343L12.2891 19.7285\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lg7xrb\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"hFkE9fRVQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Explore our recorded webinars, guides, and case studies.\"})}),className:\"framer-1g4xoqi\",\"data-framer-name\":\"Explore our go-to-market blog, guides and case studies\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"KkUCvSdbL\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o56op\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"US4xtMdFO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iw4ttADpB\"},motionChild:true,nodeId:\"vrQQbWdwH\",openInNewTab:true,scopeId:\"Z1bDSJ3xt\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-15jfh5i framer-l1tgc\",\"data-border\":true,\"data-framer-name\":\"Integrations\",layoutDependency:layoutDependency,layoutId:\"vrQQbWdwH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:\"546px\",src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-1e3g99q\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"HUqoDXnA7\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:.4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-64hllq\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"I_8nOP4AJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t8u5ow\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"Nnta7Xrns\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yly9jl\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"NXqwFHwU7\",style:{backgroundColor:\"rgb(245, 243, 255)\",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\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Integrations\"})}),className:\"framer-7by9v8\",\"data-framer-name\":\"Persana Academy\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"euUQCrBvS\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-znykhr\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"zEpkWCwzd\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"16\" cy=\"16\" r=\"15.5\" fill=\"#C03EDC\" stroke=\"white\"/>\\n<path d=\"M12.2266 12.2275H19.7628V19.7638\" stroke=\"white\"/>\\n<path d=\"M19.2833 12.7343L12.2891 19.7285\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9dlcx0\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"wbdL1bcc9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Browse through all integrations to find top-rated tools on Persana.\"})}),className:\"framer-l7a4wc\",\"data-framer-name\":\"Master Persana in a few core lessons and boost your meeting success rate!\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ocEfs45Yj\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-klmori\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"MonGzuR0R\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kOM6DDruG\"},motionChild:true,nodeId:\"Jt1luFG0k\",openInNewTab:true,scopeId:\"Z1bDSJ3xt\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1pomtdp framer-l1tgc\",\"data-border\":true,\"data-framer-name\":\"Use Cases\",layoutDependency:layoutDependency,layoutId:\"Jt1luFG0k\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(170, 107, 250))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:\"546px\",src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-12j00yx\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"VAqzrLYAS\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:.4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13vb5ll\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"yPZK1fY2Q\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184ylnw\",\"data-framer-name\":\"Auto Layout Horizontal\",layoutDependency:layoutDependency,layoutId:\"AJEQGIJBT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u3npar\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"VWm_UIYGr\",style:{backgroundColor:\"rgb(245, 243, 255)\",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\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\"},children:\"Use Cases\"})}),className:\"framer-7twk0k\",\"data-framer-name\":\"Persana Academy\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"QunCQGVQ6\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ou5m3q\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"cmvyFoHBG\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"16\" cy=\"16\" r=\"15.5\" fill=\"#C03EDC\" stroke=\"white\"/>\\n<path d=\"M12.2266 12.2275H19.7628V19.7638\" stroke=\"white\"/>\\n<path d=\"M19.2833 12.7343L12.2891 19.7285\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-naufxp\",\"data-framer-name\":\"Auto Layout Vertical\",layoutDependency:layoutDependency,layoutId:\"c6r3Oatpi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 13, 28))\"},children:\"Become a Persana Pro in a few lessons and boost your sales!\"})}),className:\"framer-1b8mxy\",\"data-framer-name\":\"Master Persana in a few core lessons and boost your meeting success rate!\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"WRU48KAz3\",style:{\"--extracted-r6o4lv\":\"rgb(15, 13, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({HpAyQH6Zu:{arrowOptions:{arrowFill:\"var(--token-821dd51f-9d92-44f4-bf42-cdbe0a8185c7, rgb(245, 243, 255))\",arrowGap:16,arrowPadding:100,arrowPaddingBottom:-64,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/x6fXyVHDPJjyPJe6TOQuAQGKqrI.png\",rightArrow:\"https://framerusercontent.com/images/ltBwPp5rpLUJmrpoo4lI0AwPefg.png\",showMouseControls:false},direction:\"top\",paddingLeft:64,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(57, 55, 97, 0.05)\",dotsBlur:16,dotsFill:\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true}},iOenGaURr:{arrowOptions:{arrowFill:\"var(--token-821dd51f-9d92-44f4-bf42-cdbe0a8185c7, rgb(245, 243, 255))\",arrowGap:16,arrowPadding:100,arrowPaddingBottom:-64,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/x6fXyVHDPJjyPJe6TOQuAQGKqrI.png\",rightArrow:\"https://framerusercontent.com/images/ltBwPp5rpLUJmrpoo4lI0AwPefg.png\",showMouseControls:false},autoPlayControl:true,direction:\"top\",paddingLeft:40,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(57, 55, 97, 0.05)\",dotsBlur:16,dotsFill:\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220))\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.2,dotsPadding:10,dotsRadius:50,showProgressDots:true}}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xTG0u.framer-l1tgc, .framer-xTG0u .framer-l1tgc { display: block; }\",\".framer-xTG0u.framer-a1g8e6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 80px 80px 80px; position: relative; width: 1440px; }\",\".framer-xTG0u .framer-10y0is3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xTG0u .framer-osg3qb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xTG0u .framer-1uk9xuo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-xTG0u .framer-1430nxd { flex: 1 0 0px; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xTG0u .framer-3gfozg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xTG0u .framer-mmsqsg-container { flex: 1 0 0px; height: 200px; max-width: 1000px; position: relative; width: 1px; }\",\".framer-xTG0u .framer-froy1a, .framer-xTG0u .framer-67ufq5, .framer-xTG0u .framer-o56op, .framer-xTG0u .framer-klmori { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 570px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xTG0u .framer-1qdgb5m, .framer-xTG0u .framer-13r7pey, .framer-xTG0u .framer-15jfh5i, .framer-xTG0u .framer-1pomtdp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; text-decoration: none; width: 1px; }\",\".framer-xTG0u .framer-1yxksnd, .framer-xTG0u .framer-1j38iep, .framer-xTG0u .framer-1e3g99q, .framer-xTG0u .framer-12j00yx { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-xTG0u .framer-1j49el4, .framer-xTG0u .framer-qdpt4b, .framer-xTG0u .framer-64hllq, .framer-xTG0u .framer-13vb5ll { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xTG0u .framer-1wtacjz, .framer-xTG0u .framer-10e567g, .framer-xTG0u .framer-t8u5ow, .framer-xTG0u .framer-184ylnw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xTG0u .framer-17zf5ut, .framer-xTG0u .framer-166fner, .framer-xTG0u .framer-1yly9jl, .framer-xTG0u .framer-u3npar { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 8px 6px 8px; position: relative; width: min-content; }\",\".framer-xTG0u .framer-1j0fgkb, .framer-xTG0u .framer-1rpzrmz, .framer-xTG0u .framer-7by9v8, .framer-xTG0u .framer-7twk0k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xTG0u .framer-1pihtuh, .framer-xTG0u .framer-13otvi2, .framer-xTG0u .framer-znykhr, .framer-xTG0u .framer-1ou5m3q { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-xTG0u .framer-8esxmg, .framer-xTG0u .framer-lg7xrb, .framer-xTG0u .framer-9dlcx0, .framer-xTG0u .framer-naufxp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xTG0u .framer-a5cle0, .framer-xTG0u .framer-1g4xoqi, .framer-xTG0u .framer-l7a4wc, .framer-xTG0u .framer-1b8mxy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xTG0u.framer-a1g8e6, .framer-xTG0u .framer-10y0is3, .framer-xTG0u .framer-osg3qb, .framer-xTG0u .framer-1uk9xuo, .framer-xTG0u .framer-3gfozg, .framer-xTG0u .framer-froy1a, .framer-xTG0u .framer-1qdgb5m, .framer-xTG0u .framer-1j49el4, .framer-xTG0u .framer-17zf5ut, .framer-xTG0u .framer-8esxmg, .framer-xTG0u .framer-67ufq5, .framer-xTG0u .framer-13r7pey, .framer-xTG0u .framer-qdpt4b, .framer-xTG0u .framer-166fner, .framer-xTG0u .framer-lg7xrb, .framer-xTG0u .framer-o56op, .framer-xTG0u .framer-15jfh5i, .framer-xTG0u .framer-64hllq, .framer-xTG0u .framer-1yly9jl, .framer-xTG0u .framer-9dlcx0, .framer-xTG0u .framer-klmori, .framer-xTG0u .framer-1pomtdp, .framer-xTG0u .framer-13vb5ll, .framer-xTG0u .framer-u3npar, .framer-xTG0u .framer-naufxp { gap: 0px; } .framer-xTG0u.framer-a1g8e6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-xTG0u.framer-a1g8e6 > :first-child, .framer-xTG0u .framer-1uk9xuo > :first-child, .framer-xTG0u .framer-3gfozg > :first-child, .framer-xTG0u .framer-froy1a > :first-child, .framer-xTG0u .framer-17zf5ut > :first-child, .framer-xTG0u .framer-67ufq5 > :first-child, .framer-xTG0u .framer-166fner > :first-child, .framer-xTG0u .framer-o56op > :first-child, .framer-xTG0u .framer-1yly9jl > :first-child, .framer-xTG0u .framer-klmori > :first-child, .framer-xTG0u .framer-u3npar > :first-child { margin-left: 0px; } .framer-xTG0u.framer-a1g8e6 > :last-child, .framer-xTG0u .framer-1uk9xuo > :last-child, .framer-xTG0u .framer-3gfozg > :last-child, .framer-xTG0u .framer-froy1a > :last-child, .framer-xTG0u .framer-17zf5ut > :last-child, .framer-xTG0u .framer-67ufq5 > :last-child, .framer-xTG0u .framer-166fner > :last-child, .framer-xTG0u .framer-o56op > :last-child, .framer-xTG0u .framer-1yly9jl > :last-child, .framer-xTG0u .framer-klmori > :last-child, .framer-xTG0u .framer-u3npar > :last-child { margin-right: 0px; } .framer-xTG0u .framer-10y0is3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xTG0u .framer-10y0is3 > :first-child, .framer-xTG0u .framer-osg3qb > :first-child, .framer-xTG0u .framer-1qdgb5m > :first-child, .framer-xTG0u .framer-1j49el4 > :first-child, .framer-xTG0u .framer-8esxmg > :first-child, .framer-xTG0u .framer-13r7pey > :first-child, .framer-xTG0u .framer-qdpt4b > :first-child, .framer-xTG0u .framer-lg7xrb > :first-child, .framer-xTG0u .framer-15jfh5i > :first-child, .framer-xTG0u .framer-64hllq > :first-child, .framer-xTG0u .framer-9dlcx0 > :first-child, .framer-xTG0u .framer-1pomtdp > :first-child, .framer-xTG0u .framer-13vb5ll > :first-child, .framer-xTG0u .framer-naufxp > :first-child { margin-top: 0px; } .framer-xTG0u .framer-10y0is3 > :last-child, .framer-xTG0u .framer-osg3qb > :last-child, .framer-xTG0u .framer-1qdgb5m > :last-child, .framer-xTG0u .framer-1j49el4 > :last-child, .framer-xTG0u .framer-8esxmg > :last-child, .framer-xTG0u .framer-13r7pey > :last-child, .framer-xTG0u .framer-qdpt4b > :last-child, .framer-xTG0u .framer-lg7xrb > :last-child, .framer-xTG0u .framer-15jfh5i > :last-child, .framer-xTG0u .framer-64hllq > :last-child, .framer-xTG0u .framer-9dlcx0 > :last-child, .framer-xTG0u .framer-1pomtdp > :last-child, .framer-xTG0u .framer-13vb5ll > :last-child, .framer-xTG0u .framer-naufxp > :last-child { margin-bottom: 0px; } .framer-xTG0u .framer-osg3qb > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-xTG0u .framer-1uk9xuo > *, .framer-xTG0u .framer-3gfozg > *, .framer-xTG0u .framer-froy1a > *, .framer-xTG0u .framer-67ufq5 > *, .framer-xTG0u .framer-o56op > *, .framer-xTG0u .framer-klmori > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xTG0u .framer-1qdgb5m > *, .framer-xTG0u .framer-13r7pey > *, .framer-xTG0u .framer-15jfh5i > *, .framer-xTG0u .framer-1pomtdp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xTG0u .framer-1j49el4 > *, .framer-xTG0u .framer-qdpt4b > *, .framer-xTG0u .framer-64hllq > *, .framer-xTG0u .framer-13vb5ll > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-xTG0u .framer-17zf5ut > *, .framer-xTG0u .framer-166fner > *, .framer-xTG0u .framer-1yly9jl > *, .framer-xTG0u .framer-u3npar > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xTG0u .framer-8esxmg > *, .framer-xTG0u .framer-lg7xrb > *, .framer-xTG0u .framer-9dlcx0 > *, .framer-xTG0u .framer-naufxp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-xTG0u.framer-v-ksd94m.framer-a1g8e6 { width: 1200px; }\",\".framer-xTG0u.framer-v-gocnmj.framer-a1g8e6 { width: 810px; }\",\".framer-xTG0u.framer-v-gocnmj .framer-mmsqsg-container { height: 400px; }\",\".framer-xTG0u.framer-v-18kxlqw.framer-a1g8e6 { padding: 48px 24px 80px 24px; width: 390px; }\",\".framer-xTG0u.framer-v-18kxlqw .framer-mmsqsg-container { height: 560px; }\",...sharedStyle.css,'.framer-xTG0u[data-border=\"true\"]::after, .framer-xTG0u [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 480\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QEy3pi7UJ\":{\"layout\":[\"fixed\",\"auto\"]},\"HpAyQH6Zu\":{\"layout\":[\"fixed\",\"auto\"]},\"iOenGaURr\":{\"layout\":[\"fixed\",\"auto\"]},\"CjxeLrs7X\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZ1bDSJ3xt=withCSS(Component,css,\"framer-xTG0u\");export default FramerZ1bDSJ3xt;FramerZ1bDSJ3xt.displayName=\"Resources\";FramerZ1bDSJ3xt.defaultProps={height:480,width:1440};addPropertyControls(FramerZ1bDSJ3xt,{variant:{options:[\"bOjrDymec\",\"QEy3pi7UJ\",\"HpAyQH6Zu\",\"iOenGaURr\",\"CjxeLrs7X\"],optionTitles:[\"Desktop Medium\",\"Desktop\",\"Tablet\",\"Phone\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZ1bDSJ3xt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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\"}]},...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ1bDSJ3xt\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"480\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QEy3pi7UJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HpAyQH6Zu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iOenGaURr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CjxeLrs7X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Banner from\"#framer/local/canvasComponent/A5EKy3b8v/A5EKy3b8v.js\";import CustomerBanners from\"#framer/local/canvasComponent/AvmoWvPR1/AvmoWvPR1.js\";import Nav from\"#framer/local/canvasComponent/C2jJi5Emd/C2jJi5Emd.js\";import FeaturesSlideshow from\"#framer/local/canvasComponent/DpcInyein/DpcInyein.js\";import ProductHuntBadge from\"#framer/local/canvasComponent/dsiziO7wL/dsiziO7wL.js\";import MainCTA from\"#framer/local/canvasComponent/ffP5Oeo_G/ffP5Oeo_G.js\";import PrimaryButtons,*as PrimaryButtonsInfo from\"#framer/local/canvasComponent/HfDn6d3dK/HfDn6d3dK.js\";import G2Rating from\"#framer/local/canvasComponent/JumwXPbZ7/JumwXPbZ7.js\";import ServicesScrollAnimation from\"#framer/local/canvasComponent/LAdUDUEIX/LAdUDUEIX.js\";import ButtonsPrimary from\"#framer/local/canvasComponent/TiO6FSbKI/TiO6FSbKI.js\";import YcBadge from\"#framer/local/canvasComponent/VP3LCsxPN/VP3LCsxPN.js\";import ComponentFooter from\"#framer/local/canvasComponent/w2xO0vofy/w2xO0vofy.js\";import SliderLogo from\"#framer/local/canvasComponent/wDnPAJW1U/wDnPAJW1U.js\";import Resources from\"#framer/local/canvasComponent/Z1bDSJ3xt/Z1bDSJ3xt.js\";import{NumberCounter as NumberCounter1}from\"#framer/local/codeFile/l2UdiPq/Counter_1.js\";import{NumberCounter}from\"#framer/local/codeFile/o8k18Ic/Counter_6.js\";import{NumberCounter as NumberCounter2}from\"#framer/local/codeFile/Q5MtL40/Counter.js\";import{withSetDataAttribute}from\"#framer/local/codeFile/rRbcOjh/setDataAttribute.js\";import*as sharedStyle1 from\"#framer/local/css/gI2SEeM23/gI2SEeM23.js\";import*as sharedStyle2 from\"#framer/local/css/gSAwXFsCZ/gSAwXFsCZ.js\";import*as sharedStyle7 from\"#framer/local/css/HlQdpSvRx/HlQdpSvRx.js\";import*as sharedStyle3 from\"#framer/local/css/osMSorl2I/osMSorl2I.js\";import*as sharedStyle6 from\"#framer/local/css/Sb4kk3WTh/Sb4kk3WTh.js\";import*as sharedStyle4 from\"#framer/local/css/VwV9uET3X/VwV9uET3X.js\";import*as sharedStyle5 from\"#framer/local/css/Y5ch1hVnn/Y5ch1hVnn.js\";import*as sharedStyle8 from\"#framer/local/css/ya1cURDkj/ya1cURDkj.js\";import*as sharedStyle from\"#framer/local/css/yCjoliBP7/yCjoliBP7.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const BannerFonts=getFonts(Banner);const NavFonts=getFonts(Nav);const ProductHuntBadgeFonts=getFonts(ProductHuntBadge);const G2RatingFonts=getFonts(G2Rating);const YcBadgeFonts=getFonts(YcBadge);const PrimaryButtonsFonts=getFonts(PrimaryButtons);const PrimaryButtonsWithSetDataAttribute1prlfmaWithMappedReactProps6vbfya=withMappedReactProps(withCodeBoundaryForOverrides(PrimaryButtons,{nodeId:\"Nkd1s8I_R\",override:withSetDataAttribute,scopeId:\"augiA20Il\"}),PrimaryButtonsInfo);const PrimaryButtonsWithSetDataAttribute1kvftquWithMappedReactProps6vbfya=withMappedReactProps(withCodeBoundaryForOverrides(PrimaryButtons,{nodeId:\"aMfKjJkeC\",override:withSetDataAttribute,scopeId:\"augiA20Il\"}),PrimaryButtonsInfo);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const CustomerBannersFonts=getFonts(CustomerBanners);const TickerFonts=getFonts(Ticker);const NumberCounterFonts=getFonts(NumberCounter);const NumberCounter1Fonts=getFonts(NumberCounter1);const NumberCounter2Fonts=getFonts(NumberCounter2);const ServicesScrollAnimationFonts=getFonts(ServicesScrollAnimation);const ServicesScrollAnimationWithVariantAppearEffect=withVariantAppearEffect(ServicesScrollAnimation);const ImageWithFX=withFX(Image);const EmbedFonts=getFonts(Embed);const SliderLogoFonts=getFonts(SliderLogo);const RichTextWithFX=withFX(RichText);const Ticker1Fonts=getFonts(Ticker1);const ButtonsPrimaryFonts=getFonts(ButtonsPrimary);const FeaturesSlideshowFonts=getFonts(FeaturesSlideshow);const ResourcesFonts=getFonts(Resources);const MainCTAFonts=getFonts(MainCTA);const ComponentFooterFonts=getFonts(ComponentFooter);const breakpoints={hFTQGMuWi:\"(min-width: 1200px) and (max-width: 1439px)\",tUjpDqDOP:\"(min-width: 1920px)\",vbaRdeOhj:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1919px)\",X84QJldhy:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-e99Ka\";const variantClassNames={hFTQGMuWi:\"framer-v-qknf8o\",tUjpDqDOP:\"framer-v-1e4si6q\",vbaRdeOhj:\"framer-v-1vqy315\",WQLkyLRf1:\"framer-v-72rtr7\",X84QJldhy:\"framer-v-1b9w7w8\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:30,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:25};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:25};const animation4={opacity:.5,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={damping:60,delay:.1,mass:3,stiffness:400,type:\"spring\"};const animation5={opacity:.5,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:100};const animation6={opacity:0,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition4={damping:50,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation7={opacity:0,rotate:2,rotateX:0,rotateY:4,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:100};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition5={damping:80,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:100};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.99,skewX:0,skewY:0,transition:transition2};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition6={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const transition7={damping:40,delay:.4,mass:1,stiffness:150,type:\"spring\"};const transition8={damping:40,delay:.6,mass:1,stiffness:150,type:\"spring\"};const transition9={damping:40,delay:.8,mass:1,stiffness:150,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition10={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition10,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Medium\":\"hFTQGMuWi\",Desktop:\"WQLkyLRf1\",Large:\"tUjpDqDOP\",Phone:\"vbaRdeOhj\",Tablet:\"X84QJldhy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"uLmCAoi6R\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vbaRdeOhj\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vbaRdeOhj\")return true;return false;};const elementId1=useRouteElementId(\"Xz66Iu4HQ\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"X84QJldhy\",\"vbaRdeOhj\"].includes(baseVariant))return false;return true;};const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const elementId2=useRouteElementId(\"U6_kA_sNJ\");const ref7=React.useRef(null);const elementId3=useRouteElementId(\"tfPfSw7uX\");const elementId4=useRouteElementId(\"cpCBDyPVX\");const elementId5=useRouteElementId(\"COk2Jb52A\");const elementId6=useRouteElementId(\"YxOiJLaeg\");const elementId7=useRouteElementId(\"hiihNe0Yb\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"B59mSWCoW\");const ref9=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1724,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Id3o4usIsvNyNKgCBGOITADjKE.png\",srcSet:\"https://framerusercontent.com/images/Id3o4usIsvNyNKgCBGOITADjKE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Id3o4usIsvNyNKgCBGOITADjKE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Id3o4usIsvNyNKgCBGOITADjKE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Id3o4usIsvNyNKgCBGOITADjKE.png 2880w\"},className:\"framer-1by31ed\",\"data-framer-name\":\"Header\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-110y5bt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k78vo4-container\",nodeId:\"e53BNqk6F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Banner,{height:\"100%\",id:\"e53BNqk6F\",layoutId:\"e53BNqk6F\",style:{height:\"100%\",width:\"100%\"},variant:\"U8XIM4XNf\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-alcnct-container\",nodeId:\"OGs5iWQPS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{variant:\"OOFaa2SJm\"},vbaRdeOhj:{variant:\"OnZFDcJfI\"},X84QJldhy:{variant:\"bH9wCO3zs\"}},children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"OGs5iWQPS\",layoutId:\"OGs5iWQPS\",style:{width:\"100%\"},variant:\"vIvdP5mBh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrb2o8\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9njpzx\",\"data-framer-name\":\"Gradient\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:227,intrinsicWidth:1033,svg:'<svg width=\"1033\" height=\"227\" viewBox=\"0 0 1033 227\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:plus-lighter\" opacity=\"0.8\">\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter0_f_190_490)\">\\n<path d=\"M858.5 60.5L1025 94.5L1009 172H853L504 128.5L858.5 60.5Z\" fill=\"url(#paint0_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter1_f_190_490)\">\\n<rect x=\"598\" y=\"0.749023\" width=\"280\" height=\"226\" rx=\"113\" fill=\"url(#paint1_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter2_f_190_490)\">\\n<rect x=\"371\" y=\"53.749\" width=\"155\" height=\"162\" rx=\"77.5\" fill=\"url(#paint2_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter3_f_190_490)\">\\n<rect x=\"274.668\" y=\"32.6089\" width=\"154.877\" height=\"183.439\" rx=\"77.4387\" fill=\"url(#paint3_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter4_f_190_490)\">\\n<rect x=\"474\" y=\"33\" width=\"134\" height=\"144\" fill=\"url(#paint4_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:plus-lighter\" filter=\"url(#filter5_f_190_490)\">\\n<path d=\"M18 133.5L33 100.5L195.5 86.5L117.26 157.023L255 169.604L29 172.749L18 133.5Z\" fill=\"url(#paint5_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter6_f_190_490)\">\\n<rect x=\"85\" y=\"66.749\" width=\"254\" height=\"122\" fill=\"url(#paint6_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:plus-lighter\" filter=\"url(#filter7_f_190_490)\">\\n<path d=\"M408.5 115.75C248.707 115.544 0 139.25 0 139.25H808C808 139.25 564.784 115.952 408.5 115.75Z\" fill=\"white\"/>\\n</g>\\n<g style=\"mix-blend-mode:plus-lighter\" filter=\"url(#filter8_f_190_490)\">\\n<path d=\"M862.916 115.75C794.885 115.54 689 139.749 689 139.749H1033C1033 139.749 929.453 115.957 862.916 115.75Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_190_490\" x=\"458.14\" y=\"14.6401\" width=\"612.72\" height=\"203.22\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"22.9299\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter1_f_190_490\" x=\"495.58\" y=\"-101.671\" width=\"484.841\" height=\"430.841\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"51.2102\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter2_f_190_490\" x=\"279.28\" y=\"-37.9707\" width=\"338.439\" height=\"345.439\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"45.8599\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter3_f_190_490\" x=\"167.661\" y=\"-74.3975\" width=\"368.89\" height=\"397.452\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"53.5032\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter4_f_190_490\" x=\"418.968\" y=\"-22.0318\" width=\"244.064\" height=\"254.064\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"27.5159\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter5_f_190_490\" x=\"-32.4459\" y=\"36.0541\" width=\"337.892\" height=\"187.141\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"25.2229\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter6_f_190_490\" x=\"-22.0064\" y=\"-40.2573\" width=\"468.013\" height=\"336.013\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"53.5032\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter7_f_190_490\" x=\"-30\" y=\"85.749\" width=\"868\" height=\"83.5015\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"15\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter8_f_190_490\" x=\"655\" y=\"81.749\" width=\"412\" height=\"92\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"17\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_190_490\" x1=\"931\" y1=\"172\" x2=\"931\" y2=\"-13\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#571894\"/>\\n<stop offset=\"0.25\" stop-color=\"#7C27D1\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_190_490\" x1=\"738\" y1=\"226.749\" x2=\"738\" y2=\"0.749023\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_190_490\" x1=\"448.5\" y1=\"215.749\" x2=\"448.5\" y2=\"53.749\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_190_490\" x1=\"352.106\" y1=\"216.048\" x2=\"352.106\" y2=\"32.6089\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_190_490\" x1=\"541\" y1=\"177\" x2=\"541\" y2=\"33\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_190_490\" x1=\"81.1539\" y1=\"172.749\" x2=\"81.1539\" y2=\"37.7491\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6822FC\"/>\\n<stop offset=\"0.565\" stop-color=\"#6822FC\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_190_490\" x1=\"212\" y1=\"188.749\" x2=\"212\" y2=\"66.749\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6822FC\"/>\\n<stop offset=\"0.25\" stop-color=\"#7C27D1\"/>\\n<stop offset=\"0.565\" stop-color=\"#6822FC\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16rb12\",\"data-framer-name\":\"Gradient\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:227,intrinsicWidth:1033,svg:'<svg width=\"1033\" height=\"227\" viewBox=\"0 0 1033 227\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g style=\"mix-blend-mode:plus-lighter\" opacity=\"0.8\">\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter0_f_190_490)\">\\n<path d=\"M858.5 60.5L1025 94.5L1009 172H853L504 128.5L858.5 60.5Z\" fill=\"url(#paint0_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter1_f_190_490)\">\\n<rect x=\"598\" y=\"0.749023\" width=\"280\" height=\"226\" rx=\"113\" fill=\"url(#paint1_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter2_f_190_490)\">\\n<rect x=\"371\" y=\"53.749\" width=\"155\" height=\"162\" rx=\"77.5\" fill=\"url(#paint2_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter3_f_190_490)\">\\n<rect x=\"274.668\" y=\"32.6089\" width=\"154.877\" height=\"183.439\" rx=\"77.4387\" fill=\"url(#paint3_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter4_f_190_490)\">\\n<rect x=\"474\" y=\"33\" width=\"134\" height=\"144\" fill=\"url(#paint4_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:plus-lighter\" filter=\"url(#filter5_f_190_490)\">\\n<path d=\"M18 133.5L33 100.5L195.5 86.5L117.26 157.023L255 169.604L29 172.749L18 133.5Z\" fill=\"url(#paint5_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter6_f_190_490)\">\\n<rect x=\"85\" y=\"66.749\" width=\"254\" height=\"122\" fill=\"url(#paint6_linear_190_490)\"/>\\n</g>\\n<g style=\"mix-blend-mode:plus-lighter\" filter=\"url(#filter7_f_190_490)\">\\n<path d=\"M408.5 115.75C248.707 115.544 0 139.25 0 139.25H808C808 139.25 564.784 115.952 408.5 115.75Z\" fill=\"white\"/>\\n</g>\\n<g style=\"mix-blend-mode:plus-lighter\" filter=\"url(#filter8_f_190_490)\">\\n<path d=\"M862.916 115.75C794.885 115.54 689 139.749 689 139.749H1033C1033 139.749 929.453 115.957 862.916 115.75Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_190_490\" x=\"458.14\" y=\"14.6401\" width=\"612.72\" height=\"203.22\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"22.9299\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter1_f_190_490\" x=\"495.58\" y=\"-101.671\" width=\"484.841\" height=\"430.841\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"51.2102\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter2_f_190_490\" x=\"279.28\" y=\"-37.9707\" width=\"338.439\" height=\"345.439\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"45.8599\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter3_f_190_490\" x=\"167.661\" y=\"-74.3975\" width=\"368.89\" height=\"397.452\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"53.5032\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter4_f_190_490\" x=\"418.968\" y=\"-22.0318\" width=\"244.064\" height=\"254.064\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"27.5159\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter5_f_190_490\" x=\"-32.4459\" y=\"36.0541\" width=\"337.892\" height=\"187.141\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"25.2229\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter6_f_190_490\" x=\"-22.0064\" y=\"-40.2573\" width=\"468.013\" height=\"336.013\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"53.5032\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter7_f_190_490\" x=\"-30\" y=\"85.749\" width=\"868\" height=\"83.5015\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"15\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<filter id=\"filter8_f_190_490\" x=\"655\" y=\"81.749\" width=\"412\" height=\"92\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"17\" result=\"effect1_foregroundBlur_190_490\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_190_490\" x1=\"931\" y1=\"172\" x2=\"931\" y2=\"-13\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#571894\"/>\\n<stop offset=\"0.25\" stop-color=\"#7C27D1\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_190_490\" x1=\"738\" y1=\"226.749\" x2=\"738\" y2=\"0.749023\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_190_490\" x1=\"448.5\" y1=\"215.749\" x2=\"448.5\" y2=\"53.749\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_190_490\" x1=\"352.106\" y1=\"216.048\" x2=\"352.106\" y2=\"32.6089\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_190_490\" x1=\"541\" y1=\"177\" x2=\"541\" y2=\"33\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#9020A8\"/>\\n<stop offset=\"0.565\" stop-color=\"#9020A8\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_190_490\" x1=\"81.1539\" y1=\"172.749\" x2=\"81.1539\" y2=\"37.7491\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6822FC\"/>\\n<stop offset=\"0.565\" stop-color=\"#6822FC\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_190_490\" x1=\"212\" y1=\"188.749\" x2=\"212\" y2=\"66.749\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#6822FC\"/>\\n<stop offset=\"0.25\" stop-color=\"#7C27D1\"/>\\n<stop offset=\"0.565\" stop-color=\"#6822FC\" stop-opacity=\"0.71519\"/>\\n<stop offset=\"1\" stop-color=\"#281041\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dbrtry\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9sg1fr\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-191dk2p\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tfp66w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(32, 26, 45)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Scale with AI Agents \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"That Close Deals 24/7\"})]})}),className:\"framer-1a8pxz7\",\"data-framer-name\":\"Compare Our Platform Features Against Competitors\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1eapp9l\",\"data-styles-preset\":\"yCjoliBP7\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Boost your sales, marketing, and recruitment with AI Agents. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Find, engage, and close deals\"}),\" on autopilot\u2014powered by the world's largest database from 100+ top sources.\"]})}),className:\"framer-tke0os\",\"data-framer-name\":\"Find, enrich, and personalize outbound at scale all in seconds, and\\xa0book more meetings.\",fonts:[\"Inter\",\"Inter-Bold\"],id:\"tke0os\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dzjazd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jrccku-container\",nodeId:\"gUnRg3CsR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProductHuntBadge,{height:\"100%\",id:\"gUnRg3CsR\",layoutId:\"gUnRg3CsR\",variant:\"LwQZ6tgCe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6941cl-container\",nodeId:\"NSKdf7Bqs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(G2Rating,{height:\"100%\",id:\"NSKdf7Bqs\",layoutId:\"NSKdf7Bqs\",variant:\"sQgg404ud\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16984u5-container\",nodeId:\"BJGVL0GGK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YcBadge,{height:\"100%\",id:\"BJGVL0GGK\",layoutId:\"BJGVL0GGK\",variant:\"UilBZ2yyq\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12jf2fp\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1prlfma-container\",\"data-framer-name\":\"Primary Buttons\",name:\"Primary Buttons\",nodeId:\"Nkd1s8I_R\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PrimaryButtonsWithSetDataAttribute1prlfmaWithMappedReactProps6vbfya,{FYMxOO38R:\"Archive\",height:\"100%\",id:\"Nkd1s8I_R\",layoutId:\"Nkd1s8I_R\",lCmOGmLbQ:true,name:\"Primary Buttons\",nvSiwTZaw:\"https://calendly.com/d/2xg-4vb-t3c/persana-ai-onboarding\",UwWl5jDXK:\"Book a demo\",variant:\"a9WUFeQQp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kvftqu-container\",\"data-framer-name\":\"Primary Buttons\",name:\"Primary Buttons\",nodeId:\"aMfKjJkeC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PrimaryButtonsWithSetDataAttribute1kvftquWithMappedReactProps6vbfya,{FYMxOO38R:\"Archive\",height:\"100%\",id:\"aMfKjJkeC\",layoutId:\"aMfKjJkeC\",lCmOGmLbQ:true,name:\"Primary Buttons\",nvSiwTZaw:\"https://platform.persana.ai\",UwWl5jDXK:\"Try now for free\",variant:\"F2ftAn80j\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yczzmp\",\"data-border\":true,\"data-framer-name\":\"Image\",style:{transformPerspective:1e3},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-plfn15-container\",isModuleExternal:true,nodeId:\"CkJTrYUI7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"CkJTrYUI7\",isMixedBorderRadius:false,isRed:true,layoutId:\"CkJTrYUI7\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/he85p9IsASw?si=Dp7NY_dCME1wkafR\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{X84QJldhy:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1000px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dygewn-container hidden-1vqy315\",nodeId:\"ybjSePJ_G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CustomerBanners,{height:\"100%\",id:\"ybjSePJ_G\",layoutId:\"ybjSePJ_G\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"do91Zf3c_\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xaj5pz hidden-72rtr7 hidden-qknf8o hidden-1b9w7w8 hidden-1e4si6q\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1thqi6t\",\"data-styles-preset\":\"gI2SEeM23\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted and loved by teams, and businesses of all sizes\"})}),className:\"framer-slisqd\",\"data-framer-name\":\"Trusted and loved by teams, and businesses of all sizes\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19uah5i-container\",\"data-framer-name\":\"Desktop\",isAuthoredByUser:true,isModuleExternal:true,name:\"Desktop\",nodeId:\"VKi8uCoiE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"VKi8uCoiE\",layoutId:\"VKi8uCoiE\",name:\"Desktop\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:59,pixelHeight:40,pixelWidth:59,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Ewk35l595gkv2LmUIPbbjhWLT4A.svg\"},className:\"framer-ijy6qw\",\"data-framer-name\":\"Salesforce/Large\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:120,pixelWidth:418,src:\"https://framerusercontent.com/images/ABlJF72hgOIcw7blv48VYzStZ8o.png\"},className:\"framer-q4gvqx\",\"data-framer-name\":\"Fluix\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:439,intrinsicWidth:1046,pixelHeight:439,pixelWidth:1046,positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png\",srcSet:\"https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png 1046w\"},className:\"framer-7sde9n\",\"data-framer-name\":\"Ms startup/Large\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:114,intrinsicWidth:580,pixelHeight:114,pixelWidth:580,positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/gEbFs7zjYbQOcL7mRiLeepALs.png\",srcSet:\"https://framerusercontent.com/images/gEbFs7zjYbQOcL7mRiLeepALs.png?scale-down-to=512 512w,https://framerusercontent.com/images/gEbFs7zjYbQOcL7mRiLeepALs.png 580w\"},className:\"framer-i63kyi\",\"data-framer-name\":\"Quest/Large\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hn6uc0\",\"data-border\":true,\"data-framer-name\":\"Analytics\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-1i9242f\",\"data-framer-name\":\"Header\"}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ogre60\",\"data-framer-name\":\"Result Analytics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4svv3\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gdr7ty\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qonc28\",\"data-styles-preset\":\"gSAwXFsCZ\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"SCALE YOUR REVENUE WITH AI\"})})}),className:\"framer-p3w8q6\",\"data-framer-name\":\"USE CASES\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1b9e51a\",\"data-styles-preset\":\"osMSorl2I\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"An end-to-end solution that\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\" scales your entire go-to-market\"})]})}),className:\"framer-1lkd3kt\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w85g3t\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gy3r8y\",\"data-border\":true,\"data-framer-name\":\"Cards/ Result & Analytics Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 258px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}},X84QJldhy:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px), 550px) - 20px) / 2, 250px), 264px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 60px) / 4, 1px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-5kk03g\",\"data-framer-name\":\"Header\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m65qf9\",\"data-framer-name\":\"Count\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xfboz8-container\",isAuthoredByUser:true,nodeId:\"BA1PXtBeP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:75,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\",fontSize:64,height:\"100%\",id:\"BA1PXtBeP\",layoutId:\"BA1PXtBeP\",loop:false,prefix:\"\",speed:20,startNumber:0,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\"},children:\"+\"})}),className:\"framer-18tbi66\",\"data-framer-name\":\"Number\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6yv24g\",\"data-styles-preset\":\"VwV9uET3X\",style:{\"--framer-text-alignment\":\"center\"},children:\"Of The World's Best Data Sources\"})}),className:\"framer-jkgsg9\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18zpihi\",\"data-border\":true,\"data-framer-name\":\"Cards/ Result & Analytics Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 258px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}},X84QJldhy:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px), 550px) - 20px) / 2, 250px), 264px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 60px) / 4, 1px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-3cczjk\",\"data-framer-name\":\"Header\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-133n82l\",\"data-framer-name\":\"Count\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qa815s-container\",isAuthoredByUser:true,nodeId:\"QR9mlMVid\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter1,{decimalSeparator:\"comma\",endNumber:98,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\",fontSize:64,height:\"100%\",id:\"QR9mlMVid\",layoutId:\"QR9mlMVid\",loop:false,prefix:\"\",speed:20,startNumber:0,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\"},children:\"%\"})}),className:\"framer-ok6osj\",\"data-framer-name\":\"Number\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6yv24g\",\"data-styles-preset\":\"VwV9uET3X\",style:{\"--framer-text-alignment\":\"center\"},children:\"Data Relevance & Accuracy\"})}),className:\"framer-1jzf7o6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htbw9w\",\"data-border\":true,\"data-framer-name\":\"Cards/ Result & Analytics Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 258px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}},X84QJldhy:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px), 550px) - 20px) / 2, 250px), 264px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 60px) / 4, 1px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-sjtdu9\",\"data-framer-name\":\"Header\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fywoic\",\"data-framer-name\":\"Count\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ctthid-container\",isAuthoredByUser:true,nodeId:\"qFXDOJZTK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter2,{decimalSeparator:\"comma\",endNumber:2,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\",fontSize:64,height:\"100%\",id:\"qFXDOJZTK\",layoutId:\"qFXDOJZTK\",loop:false,prefix:\"\",speed:120,startNumber:.1,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"78px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\"},children:\"B\"})}),className:\"framer-1726wuz\",\"data-framer-name\":\"Number\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6yv24g\",\"data-styles-preset\":\"VwV9uET3X\",style:{\"--framer-text-alignment\":\"center\"},children:\"Global Contacts\"})}),className:\"framer-1xaekej\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mzd2wq\",\"data-border\":true,\"data-framer-name\":\"Cards/ Result & Analytics Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 258px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}},X84QJldhy:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px), 550px) - 20px) / 2, 250px), 264px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 60px) / 4, 1px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-g53r82\",\"data-framer-name\":\"Header\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0vf60\",\"data-framer-name\":\"Count\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b5nayi-container\",isAuthoredByUser:true,nodeId:\"GdWFv5B7I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NumberCounter,{decimalSeparator:\"comma\",endNumber:200,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontColor:\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\",fontSize:64,height:\"100%\",id:\"GdWFv5B7I\",layoutId:\"GdWFv5B7I\",loop:false,prefix:\"\",speed:15,startNumber:0,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"90%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e2a5e0bd-497e-4607-a561-cd697f0df84a, rgb(25, 25, 25))\"},children:\"m\"})}),className:\"framer-1k185vy\",\"data-framer-name\":\"Number\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6yv24g\",\"data-styles-preset\":\"VwV9uET3X\",style:{\"--framer-text-alignment\":\"center\"},children:\"Global qualified companies\"})}),className:\"framer-1dwfy5u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5ma6qi\",\"data-framer-name\":\"Services-wrapper\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rn8xh9\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uzdvaa\",\"data-framer-name\":\"content-txt\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b5hzc4\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mjyc3m\",\"data-framer-name\":\"Top-txt\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1abrejx\",\"data-framer-name\":\"heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qonc28\",\"data-styles-preset\":\"gSAwXFsCZ\",children:\"SCALE YOUR PROSPECTING WITH AGENTS\"})}),className:\"framer-c0imnc\",\"data-framer-name\":\"We blend a strategic approach with studio-caliber creativity.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-um81y\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b9e51a\",\"data-styles-preset\":\"osMSorl2I\",children:\"The future of prospecting is finally here\"})}),className:\"framer-cj6x6x\",\"data-framer-name\":\"Compare Our Platform Features Against Competitors\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jolya9 hidden-1b9w7w8 hidden-1vqy315\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUjpDqDOP:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1000px) - 160px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 40px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rusg5u-container\",nodeId:\"BKWbpeld0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref3,target:\"tdwO3F9nK\"},{ref:ref4,target:\"XAGVD69qD\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"BKWbpeld0\",kCh3xRGWK:\"1. Find and Engage Your Ideal Buyers\",layoutId:\"BKWbpeld0\",style:{width:\"100%\"},variant:\"XAGVD69qD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUjpDqDOP:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1000px) - 160px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 40px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-po25cz-container\",nodeId:\"PhAkp9shq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref4,target:\"tdwO3F9nK\"},{ref:ref5,target:\"XAGVD69qD\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"PhAkp9shq\",kCh3xRGWK:\"2. Multi-Channel Engagement\",layoutId:\"PhAkp9shq\",style:{width:\"100%\"},variant:\"XAGVD69qD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUjpDqDOP:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1000px) - 160px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 40px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnc8au-container\",nodeId:\"lyyGXZEbO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref5,target:\"tdwO3F9nK\"},{ref:ref6,target:\"XAGVD69qD\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"lyyGXZEbO\",kCh3xRGWK:\"3. 24/7 Automated Outreach\",layoutId:\"lyyGXZEbO\",style:{width:\"100%\"},variant:\"XAGVD69qD\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUjpDqDOP:{width:`max((min(${componentViewport?.width||\"100vw\"} - 220px, 1000px) - 160px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 40px) / 2, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ndin35-container\",nodeId:\"GDztJOREu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ServicesScrollAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"tdwO3F9nK\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"GDztJOREu\",kCh3xRGWK:\"4. AI-Driven Personalization at Scale\",layoutId:\"GDztJOREu\",style:{width:\"100%\"},variant:\"XAGVD69qD\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p6avxs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{__framer__styleAppearEffectEnabled:undefined},X84QJldhy:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-k6xaje\",\"data-border\":true,\"data-framer-name\":\"cards\",id:elementId2,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7},X84QJldhy:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d6079o\",\"data-framer-name\":\"card1\",id:elementId3,ref:ref3,style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg\",srcSet:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg 2731w\"},className:\"framer-11mko5 hidden-1vqy315\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1kintjw\",\"data-styles-preset\":\"Y5ch1hVnn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Put Prospecting on Autopilot\"})}),className:\"framer-1161zrn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cw23nz\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ea5ge4\",\"data-styles-preset\":\"Sb4kk3WTh\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Build your Ideal Customer Profile (ICP), use website visits, company hiring, job change (and 75 other intent signals) all inbuilt into the Persana platform\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ea5ge4\",\"data-styles-preset\":\"Sb4kk3WTh\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-mbb61\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUjpDqDOP:{background:{alt:\"\",fit:\"fill\",pixelHeight:540,pixelWidth:820,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 220px, 1000px) - 160px) / 2, 1px) - 60px)`,src:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png\",srcSet:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png 820w\"}},vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",pixelHeight:540,pixelWidth:820,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 1px) - 48px)`,src:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png\",srcSet:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png 820w\"}},X84QJldhy:{background:{alt:\"\",fit:\"fill\",pixelHeight:540,pixelWidth:820,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 96px, 1px) - 60px)`,src:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png\",srcSet:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png 820w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:540,pixelWidth:820,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 40px) / 2, 1px) - 60px)`,src:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png\",srcSet:\"https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/SeJHi6ZaeNq5S0cR5P04diWJcU.png 820w\"},className:\"framer-10q4vf6\",\"data-framer-name\":\"icp\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7},X84QJldhy:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17gmnpc\",\"data-framer-name\":\"card2\",id:elementId4,ref:ref4,style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg\",srcSet:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg 2731w\"},className:\"framer-5s676z hidden-1vqy315\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtifmq\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kintjw\",\"data-styles-preset\":\"Y5ch1hVnn\",style:{\"--framer-text-alignment\":\"left\"},children:\"Multi-Channel Engagement\"})}),className:\"framer-1esjr0k\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ea5ge4\",\"data-styles-preset\":\"Sb4kk3WTh\",children:[\"Maintain seamless conversations across \",/*#__PURE__*/_jsx(\"strong\",{children:\"email and other social platforms\"}),\"\u2014ensuring no opportunity slips through the cracks. All your data is consolidated in one place for easy management.\"]})}),className:\"framer-dtsmy9\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7},X84QJldhy:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gf923g\",\"data-framer-name\":\"card3\",id:elementId5,ref:ref5,style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg\",srcSet:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg 2731w\"},className:\"framer-pbrvvx hidden-1vqy315\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nfrl8v\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kintjw\",\"data-styles-preset\":\"Y5ch1hVnn\",style:{\"--framer-text-alignment\":\"left\"},children:\"24/7 Automated Outreach\"})}),className:\"framer-t8skpr\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ea5ge4\",\"data-styles-preset\":\"Sb4kk3WTh\",children:\"Use agents to automate your outreach; operating around the clock, sending follow-ups and booking meetings autonomously. Your sales machine runs continuously, without manual effort.\"})}),className:\"framer-1euohy7\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUjpDqDOP:{background:{alt:\"\",fit:\"fill\",pixelHeight:958,pixelWidth:1442,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 220px, 1000px) - 160px) / 2, 1px) - 60px)`,src:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png\",srcSet:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png 1442w\"}},vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",pixelHeight:958,pixelWidth:1442,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 1px) - 48px)`,src:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png\",srcSet:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png 1442w\"}},X84QJldhy:{background:{alt:\"\",fit:\"fill\",pixelHeight:958,pixelWidth:1442,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 96px, 1px) - 60px)`,src:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png\",srcSet:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png 1442w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:958,pixelWidth:1442,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 40px) / 2, 1px) - 60px)`,src:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png\",srcSet:\"https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TmUKVd3N0h55wpHhqUNk7ygfIo.png 1442w\"},className:\"framer-1k03xpn\",\"data-framer-name\":\"image 35\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7},X84QJldhy:{__framer__animate:{transition:transition4},__framer__enter:animation6,__framer__exit:animation7}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jfdh4m\",\"data-framer-name\":\"card4\",id:elementId6,ref:ref6,style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:2731,pixelHeight:4096,pixelWidth:2731,sizes:\"412px\",src:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg\",srcSet:\"https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/riMo928x8QWPSwd7H7FkVMJPeU.jpg 2731w\"},className:\"framer-17e5uls hidden-1vqy315\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6grcpb\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kintjw\",\"data-styles-preset\":\"Y5ch1hVnn\",style:{\"--framer-text-alignment\":\"left\"},children:\"AI-Driven Personalization at Scale\"})}),className:\"framer-16izmrm\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ea5ge4\",\"data-styles-preset\":\"Sb4kk3WTh\",children:\"Deliver hyper-relevant messages based on each prospect\u2019s unique needs, recent activities, and company growth, going beyond basic personalization.\"})}),className:\"framer-5w0gw6\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tUjpDqDOP:{background:{alt:\"\",fit:\"fill\",pixelHeight:590,pixelWidth:870,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 220px, 1000px) - 160px) / 2, 1px) - 60px)`,src:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png\",srcSet:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png 870w\"}},vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",pixelHeight:590,pixelWidth:870,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 1px) - 48px)`,src:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png\",srcSet:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png 870w\"}},X84QJldhy:{background:{alt:\"\",fit:\"fill\",pixelHeight:590,pixelWidth:870,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 96px, 1px) - 60px)`,src:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png\",srcSet:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png 870w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:590,pixelWidth:870,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) - 40px) / 2, 1px) - 60px)`,src:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png\",srcSet:\"https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sPanet1GPWU5dkhReXxRl7bgBzw.png 870w\"},className:\"framer-k0ysur\",\"data-framer-name\":\"image 66\"})})]})})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lzq5zy\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15thzdr\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-klbh14-container\",isModuleExternal:true,nodeId:\"PqoCOJ8z4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://cdn.commoninja.com/sdk/latest/commonninja.js\" defer></script>\\n<div class=\"commonninja_component pid-edd8133f-ffad-41f9-8cdc-b32df08f9103\"></div>',id:\"PqoCOJ8z4\",layoutId:\"PqoCOJ8z4\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-j4h06e\",\"data-framer-name\":\"highlights\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16v6mfd\",\"data-framer-name\":\"text\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nsbj03\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qmaopt\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b9e51a\",\"data-styles-preset\":\"osMSorl2I\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\"},children:\"The future of AI & GTM is here\"})}),className:\"framer-1sjm0ih\",\"data-framer-name\":\"Elevate your teams with AI-driven workflows\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uvmby9\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eapp9l\",\"data-styles-preset\":\"yCjoliBP7\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ee506612-bf77-4878-94ae-0cb5f1e517db, rgb(255, 255, 255))\"},children:\"Drive your pipeline with 75+ intent data sources, AI, and automation. Scale prospecting, personalize outreach, and streamline engagement\u2014all in one powerful platform.\"})}),className:\"framer-1nok9vc\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lue6bd\",\"data-framer-name\":\"cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nct8if\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q2mcqn\",\"data-border\":true,whileHover:animation10,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{width:`max(min(${componentViewport?.width||\"100vw\"} - 128px, 1000px) * 0.6 - 24px, 1px)`},vbaRdeOhj:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1000px)`},X84QJldhy:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) * 0.6 - 24px, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gl434x-container\",nodeId:\"bxct447vF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SliderLogo,{height:\"100%\",id:\"bxct447vF\",layoutId:\"bxct447vF\",style:{width:\"100%\"},variant:\"ucBPXTN7f\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qy8d3u\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-szqe3h\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6yv24g\",\"data-styles-preset\":\"VwV9uET3X\",style:{\"--framer-text-color\":\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\"},children:\"75+ of the world's best data providers on one platform\"})}),className:\"framer-sbn65x\",\"data-framer-name\":\"Waterfalls have never yielded results this good\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"One affordable subscription. No other subscriptions needed.\"})}),className:\"framer-10sodj3\",\"data-framer-name\":\"Waterfalls have never yielded results this good\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iw4ttADpB\"},motionChild:true,nodeId:\"l78WLudBQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1d21iuj framer-lux5qc\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rsnqp1\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cd3exq\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 36, 220)\"},children:\"Browse all integrations\"})}),className:\"framer-1bciylr\",\"data-framer-name\":\"Browse all integrations\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jqr15g\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rcd3gz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692.8,intrinsicWidth:776,pixelHeight:866,pixelWidth:970,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 128px, 1000px) * 0.6 - 24px, 1px) - 88px) / 2, 1px)`,src:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif\",srcSet:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif 970w\"}},vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692.8,intrinsicWidth:776,pixelHeight:866,pixelWidth:970,sizes:\"250px\",src:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif\",srcSet:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif 970w\"}},X84QJldhy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692.8,intrinsicWidth:776,pixelHeight:866,pixelWidth:970,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1000px) - 88px) / 2, 1px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif\",srcSet:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif 970w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:692.8,intrinsicWidth:776,pixelHeight:866,pixelWidth:970,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) * 0.6 - 24px, 1px) - 88px) / 2, 1px)`,src:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif\",srcSet:\"https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/IIi0zuiNhRPpnJnrnBJfxRa7IE.gif 970w\"},className:\"framer-t2t9p0\",\"data-framer-name\":\"waterfall_animation_v4\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zwx4kt\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyr7j2\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vckkfq\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6yv24g\",\"data-styles-preset\":\"VwV9uET3X\",style:{\"--framer-text-color\":\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\"},children:\"The best in-class coverage and accuracy for email and phone number data\"})}),className:\"framer-11zanus\",\"data-framer-name\":\"Waterfalls have never yielded results this good\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Higher match rate than Apollo & ZoomInfo combined.\"})}),className:\"framer-nf659l\",\"data-framer-name\":\"Waterfalls have never yielded results this good\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"www.platform.persana.ai\",motionChild:true,nodeId:\"LYCa9dXVn\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-k2pfal framer-lux5qc\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dv1v9b\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7u6ys0\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"19.88px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 36, 220)\"},children:\"Try a playbook\"})}),className:\"framer-sq5ybb\",\"data-framer-name\":\"Try a playbook\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4gtxnj\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ni44iu\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10toh54\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-6yv24g\",\"data-styles-preset\":\"VwV9uET3X\",style:{\"--framer-text-color\":\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\"},children:\"A 24/7 AI Sales Agent\"})}),className:\"framer-11tq2xs\",\"data-framer-name\":\"Waterfalls have never yielded results this good\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AI-driven personalization and round-the-clock automation, your team can focus on closing deals.\"})}),className:\"framer-nnefpo\",\"data-framer-name\":\"Waterfalls have never yielded results this good\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-140tw5y\",\"data-framer-name\":\"img\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{background:{alt:\"\",fit:\"fill\",pixelHeight:2118,pixelWidth:1458,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 128px, 1000px) * 0.4 - 48px)`,src:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png\",srcSet:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=1024 704w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=2048 1409w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png 1458w\"}},vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",pixelHeight:2118,pixelWidth:1458,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px) - 56px)`,src:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png\",srcSet:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=1024 704w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=2048 1409w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png 1458w\"}},X84QJldhy:{background:{alt:\"\",fit:\"fill\",pixelHeight:2118,pixelWidth:1458,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 128px, 1000px) - 32px)`,src:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png\",srcSet:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=1024 704w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=2048 1409w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png 1458w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2118,pixelWidth:1458,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px) * 0.4 - 48px)`,src:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png\",srcSet:\"https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=1024 704w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png?scale-down-to=2048 1409w,https://framerusercontent.com/images/CjnMlps57wTYaFiqyZX2obSnk.png 1458w\"},className:\"framer-1rxavsg\",\"data-framer-name\":\"image 65\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vpo043\",\"data-framer-name\":\"Scalability\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-470m98\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6lb9vu\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193hpn7\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kx3oce\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qonc28\",\"data-styles-preset\":\"gSAwXFsCZ\",children:\"FEATURED SIGNALS\"})}),className:\"framer-1xw5f8z\",\"data-framer-name\":\"USE CASES\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gxcgan\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nbci0m\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b9e51a\",\"data-styles-preset\":\"osMSorl2I\",style:{\"--framer-text-alignment\":\"left\"},children:\"Signal-Based Selling = Warm Outbound\"})}),className:\"framer-1cqpre0\",\"data-framer-name\":\"Elevate your teams with AI-driven workflows\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y1ilts\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(15, 13, 28)\"},children:\"Signal-based selling with Persana AI puts your go-to-market strategy on steroids by capturing and unifying every signal from across the buyer\u2019s journey. Whether it's job changes, or hiring signals - Persana's got you!\"})}),className:\"framer-1oi2dyj\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vkx793\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14e7eko\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ywg4ni\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4q8gm\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-90vdkk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Funding news\"})}),className:\"framer-yfxzjx\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j6p4d8\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9apknx\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l0zb88\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vtsnkl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Hiring Trends\"})}),className:\"framer-jlj3eb\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1299xov\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qnjny7\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14sbrp1\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xil9v\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"G2 reviews\"})}),className:\"framer-14za6st\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jllwnn\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9k51p\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2b3rgw\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4ka39f\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Website Visits\"})}),className:\"framer-hx3bw1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1csakm0\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pv8vgd\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hn8zl9\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10cw7wz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Keyword Intent\"})}),className:\"framer-2y4ih5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vn46jt\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qpclr\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-acl28l\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ftsl0f\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Competitors info\"})}),className:\"framer-t3e28e\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qwmp1m\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nb7avw\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xe6iyt\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qhl3zp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Technographics\"})}),className:\"framer-12py8xb\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wiax1t\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-165wg5b\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4g091r\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yo3qmc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Website Activity\"})}),className:\"framer-1frhz3a\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v2oyi1\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bacpde\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10zkqcf\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dvhka3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Product Data\"})}),className:\"framer-1diza7y\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zasr07\",\"data-border\":true,\"data-framer-name\":\"Component / Small Benefits\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ll2yg5\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8zg260\",\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-btikrr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 6 0.577 C 6.619 0.22 7.381 0.22 8 0.577 L 12.062 2.923 C 12.681 3.28 13.062 3.94 13.062 4.655 L 13.062 9.345 C 13.062 10.06 12.681 10.72 12.062 11.077 L 8 13.423 C 7.381 13.78 6.619 13.78 6 13.423 L 1.938 11.077 C 1.319 10.72 0.938 10.06 0.938 9.345 L 0.938 4.655 C 0.938 3.94 1.319 3.28 1.938 2.923 Z\" fill=\"var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) /* {&quot;name&quot;:&quot;Pink&quot;} */\"></path></svg>',svgContentId:10097138750,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220))\"},children:\"Social Listening\"})}),className:\"framer-11ucspu\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ddg4hf\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jasnb\",\"data-framer-name\":\"Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-c4azdx hidden-1vqy315\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3y5rc\",\"data-framer-name\":\"Item 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gp25ls\",\"data-framer-name\":\"Glow\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l69b9k\",\"data-framer-name\":\"Point\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a4re9a\",\"data-framer-name\":\"Flare\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0vq1d\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1micv75\",\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xxmj5\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pqgurs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",pixelHeight:210,pixelWidth:705,sizes:`calc(max(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1px) - 40px, 270px) * 0.88)`,src:\"https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png\",srcSet:\"https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png?scale-down-to=512 512w,https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png 705w\"}},X84QJldhy:{background:{alt:\"\",fit:\"fill\",pixelHeight:210,pixelWidth:705,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 70px, 1000px) - 40px, 270px) * 0.88)`,src:\"https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png\",srcSet:\"https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png?scale-down-to=512 512w,https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png 705w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:210,pixelWidth:705,sizes:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1000px) - 60px) / 2, 1px) - 40px, 270px) * 0.88)`,src:\"https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png\",srcSet:\"https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png?scale-down-to=512 512w,https://framerusercontent.com/images/CZcGwZ2LOy0nAu1T4dD9dBInw.png 705w\"},className:\"framer-6h48no\",\"data-framer-name\":\"image 1\",transformTemplate:transformTemplate1})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ub8652\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a76jov\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(15, 13, 28)\"},children:\"Actively Hiring Companies\"})}),className:\"framer-ffre0n\",\"data-framer-name\":\"Discover Hot Leads Among Actively Hiring Companies Within Your Target Market\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f288ra\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(15, 13, 28)\"},children:\"We spotlight companies that are in growth mode who are actively seeking new talent, signaling high intent.\"})}),className:\"framer-91a8br\",\"data-framer-name\":\"We spotlight companies that are in growth mode who are actively seeking new talent, signaling potential business opportunities and partnership possibilities.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1omgx7n\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v7vuhq\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(80, 36, 220)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a6PEh0vB_\"},motionChild:true,nodeId:\"g234rLXvD\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14w26mk\",\"data-styles-preset\":\"HlQdpSvRx\",children:\"Learn more\"})})})}),className:\"framer-1hmi7x7\",\"data-framer-name\":\"Learn more\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"a6PEh0vB_\"},motionChild:true,nodeId:\"CZYaMZWQe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-ck36yb framer-lux5qc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5 2.5L11 8.5L5 14.5\" stroke=\"#5024DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jaekcy\",\"data-framer-name\":\"Item 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbak20\",\"data-framer-name\":\"Glow\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-utjjko\",\"data-framer-name\":\"Point\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9j21ks\",\"data-framer-name\":\"Flare\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rej1xn\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cfvbij\",\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1grk30v\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",pixelHeight:216,pixelWidth:705,sizes:`calc(max(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 1px) - 40px, 270px) * 0.8822)`,src:\"https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png\",srcSet:\"https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png 705w\"}},X84QJldhy:{background:{alt:\"\",fit:\"fill\",pixelHeight:216,pixelWidth:705,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 70px, 1000px) - 40px, 270px) * 0.8822)`,src:\"https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png\",srcSet:\"https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png 705w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:216,pixelWidth:705,sizes:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1000px) - 60px) / 2, 1px) - 40px, 270px) * 0.8822)`,src:\"https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png\",srcSet:\"https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/msiCag5aIM4svo3P0XlqdyLRGE.png 705w\"},className:\"framer-108g5ok\",\"data-framer-name\":\"image 1\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3c3gnb\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rczig\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(15, 13, 28)\"},children:\"Track Job Changes\"})}),className:\"framer-190qiaq\",\"data-framer-name\":\"Use Job Change Tracker To Stay Proactive About Enhancing Client Loyalty\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o5znlh\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(15, 13, 28)\"},children:\"Get alerts in real-time when a prospect changes roles, allowing you to stay proactive and capture new accounts fast.\"})}),className:\"framer-74eed8\",\"data-framer-name\":\"Get alerts in real-time when a prospect changes roles, allowing you to be the first to congratulate them and explore new business opportunities in their new position.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-151md7s\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125b7dn\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(80, 36, 220)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZvUbHt38k\"},motionChild:true,nodeId:\"VU2LvKaVY\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-14w26mk\",\"data-styles-preset\":\"HlQdpSvRx\",children:\"Learn more\"})})})}),className:\"framer-vltp9r\",\"data-framer-name\":\"Learn more\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZvUbHt38k\"},motionChild:true,nodeId:\"kYllWNZPZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ihp43w framer-lux5qc\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5 2.5L11 8.5L5 14.5\" stroke=\"#5024DC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]})})]})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hd86h1\",\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1frd7hc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iqs6ir\",\"data-border\":true,\"data-framer-name\":\"CTA Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ty166a\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"FEATURED IN\"})}),className:\"framer-n5cy2m\",\"data-framer-name\":\"USE CASES\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-127gulj\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a8oapz\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-myhpwu\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tpqrg2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7jqaqe\",\"data-framer-name\":\"Design\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kx3cv1\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Design Image\",fit:\"fit\",pixelHeight:30,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QqewTInDs8Izd3bHgsZDsaJpdOw.svg\"},className:\"framer-4166s\",\"data-framer-name\":\"Design\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yqdpgt\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1728,intrinsicWidth:3072,pixelHeight:2160,pixelWidth:3840,sizes:\"113.7778px\",src:\"https://framerusercontent.com/images/iURqEPqTc78yRhhEUG6FrAuXyo.png\",srcSet:\"https://framerusercontent.com/images/iURqEPqTc78yRhhEUG6FrAuXyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/iURqEPqTc78yRhhEUG6FrAuXyo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iURqEPqTc78yRhhEUG6FrAuXyo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iURqEPqTc78yRhhEUG6FrAuXyo.png 3840w\"},className:\"framer-1rm6hat\",\"data-framer-name\":\"Forbes-Logo-1978-1999 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7wf3\",\"data-framer-name\":\"Design\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Design Image\",fit:\"fit\",pixelHeight:30,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QqewTInDs8Izd3bHgsZDsaJpdOw.svg\"},className:\"framer-1lrffpz\",\"data-framer-name\":\"Design\",style:{rotate:180}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1odixbq\",\"data-framer-name\":\"Line\"})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uccd0s\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rtk2x0\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1lyfmg\",\"data-styles-preset\":\"ya1cURDkj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(32, 26, 45)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(283deg, var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) 0%, var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220)) 100%)\"},children:'\"Persana frees sales teams to focus on what they do best\u2014selling.\"'})})}),className:\"framer-val9bp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hzg7ys\",\"data-framer-name\":\"Action\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nckyis-container\",nodeId:\"qP46FJuQL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PrimaryButtons,{FYMxOO38R:\"Archive\",height:\"100%\",id:\"qP46FJuQL\",layoutId:\"qP46FJuQL\",lCmOGmLbQ:true,nvSiwTZaw:\"https://www.forbes.com/sites/davidprosser/2024/10/31/how-persana-ai-plans-to-help-sales-teams-get-back-to-what-they-do-best/\",UwWl5jDXK:\"Read article here\",variant:\"aWp0cNrnC\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z2blaz\",\"data-framer-name\":\"Gradient\"})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygpd2d\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16uiiw5\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a31hqg\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jpg9uf\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b9e51a\",\"data-styles-preset\":\"osMSorl2I\",style:{\"--framer-text-alignment\":\"center\"},children:\"Here's what our customers say about us\"})}),className:\"framer-x4zpzb\",\"data-framer-name\":\"See Why People Love Persana AI\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-irc8ps\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lqqfio\",\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kf1vst\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r0figj-container\",isModuleExternal:true,nodeId:\"Nx9F6vjxF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{direction:\"top\"}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:16,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"Nx9F6vjxF\",layoutId:\"Nx9F6vjxF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbxfuu\",\"data-border\":true,\"data-framer-name\":\"Testimonial 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-frvcyw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vnh508\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lnxdxx\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/fSdjWF3LrxXxdk0TqZ790KpDug.jpg\"},className:\"framer-10iytqv\",\"data-framer-name\":\"1687179563911 (1) 1\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-njj8uz\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bocr71\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Imad Badreddine\"})}),className:\"framer-jfljv7\",\"data-framer-name\":\"Debparna Pratiher\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ogecnr\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Founder, Alpaca Leads\"})}),className:\"framer-kw4dc8\",\"data-framer-name\":\"Co-founder, Quest Labs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uimdw1\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"We\u2019ve been using Persana AI at Alpaca and it\u2019s honestly been a game-changer. It\u2019s super easy to get started with, and it has made our outreach efforts way more targeted and efficient. \"})}),className:\"framer-mn5yk0\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fc563m\",\"data-border\":true,\"data-framer-name\":\"Testimonial 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l0rqmr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hykuo\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mpdume\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:634,pixelWidth:720,sizes:\"82px\",src:\"https://framerusercontent.com/images/GaaYHAAwvuLvQqGCGxID1RUzWk.jpg\",srcSet:\"https://framerusercontent.com/images/GaaYHAAwvuLvQqGCGxID1RUzWk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GaaYHAAwvuLvQqGCGxID1RUzWk.jpg 720w\"},className:\"framer-1mnvvkn\",\"data-framer-name\":\"BLee headshot with small margins 1\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cfbfti\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q30glz\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Bryant Lee\"})}),className:\"framer-1hoffsp\",\"data-framer-name\":\"Debparna Pratiher\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iz64ii\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"CEO, Vaero\"})}),className:\"framer-iou9wn\",\"data-framer-name\":\"Co-founder, Quest Labs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aoqiis\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"Persana helped us book more meetings than I thought possible. We were able to personalize our leads instantly with their platform, a process that used to take weeks. '})}),className:\"framer-fr4kdm\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nt2f3f\",\"data-border\":true,\"data-framer-name\":\"Testimonial 3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r44ipo\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18wsf24\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t9tfzq\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/ANeEL8AsqoEkKRlH6ZYpvuCe8.jpg\"},className:\"framer-1sfpa83\",\"data-framer-name\":\"1697154658465 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:350,pixelWidth:350,src:\"https://framerusercontent.com/images/6thIH7WSDHFBGoj9zUZfZZWoZR0.png\"},className:\"framer-110qzs5\",\"data-framer-name\":\"Matthieu-Reijers-2-qgr3903cm9t2l9fm5i8q0yfru6lti2palptlur410s 1\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mdwd2s\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jgjdbj\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Matthieu Reijers\"})}),className:\"framer-awe9ld\",\"data-framer-name\":\"Debparna Pratiher\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2o5ln8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Go-to-Market specialist, MTTRS\"})}),className:\"framer-snow0s\",\"data-framer-name\":\"Co-founder, Quest Labs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ub4hl6\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"Incredible results with Persana! The platform\\'s intuitive design and powerful tools have streamlined our sales process and boosted productivity\"'})}),className:\"framer-6y5ddv\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1opy45h\",\"data-framer-name\":\"Category\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ows9m1\",\"data-framer-name\":\"persana-pro\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.43417 2.18683C9.59036 2.01524 9.78067 1.87815 9.99291 1.78435C10.2051 1.69054 10.4346 1.64209 10.6667 1.64209C10.8987 1.64209 11.1282 1.69054 11.3404 1.78435C11.5527 1.87815 11.743 2.01524 11.8992 2.18683L12.7492 3.12016C12.9142 3.30134 13.1172 3.4439 13.3436 3.53767C13.57 3.63144 13.8144 3.67411 14.0592 3.66266L15.32 3.60433C15.5517 3.59341 15.7831 3.63098 15.9995 3.71462C16.2158 3.79826 16.4123 3.92614 16.5764 4.09007C16.7405 4.25401 16.8685 4.45039 16.9524 4.66665C17.0362 4.88291 17.074 5.11429 17.0633 5.346L17.0042 6.60766C16.9927 6.85247 17.0354 7.0968 17.1292 7.32323C17.2229 7.54966 17.3655 7.75262 17.5467 7.91766L18.48 8.76766C18.6516 8.92386 18.7887 9.11417 18.8825 9.3264C18.9763 9.53864 19.0247 9.76812 19.0247 10.0002C19.0247 10.2322 18.9763 10.4617 18.8825 10.6739C18.7887 10.8862 18.6516 11.0765 18.48 11.2327L17.5467 12.0827C17.3655 12.2477 17.2229 12.4507 17.1292 12.6771C17.0354 12.9035 16.9927 13.1479 17.0042 13.3927L17.0625 14.6535C17.0734 14.8852 17.0359 15.1166 16.9522 15.3329C16.8686 15.5493 16.7407 15.7458 16.5768 15.9099C16.4128 16.074 16.2164 16.202 16.0002 16.2859C15.7839 16.3697 15.5525 16.4075 15.3208 16.3968L14.0592 16.3377C13.8144 16.3262 13.57 16.3689 13.3436 16.4627C13.1172 16.5564 12.9142 16.699 12.7492 16.8802L11.8992 17.8135C11.743 17.9851 11.5527 18.1222 11.3404 18.216C11.1282 18.3098 10.8987 18.3582 10.6667 18.3582C10.4346 18.3582 10.2051 18.3098 9.99291 18.216C9.78067 18.1222 9.59036 17.9851 9.43417 17.8135L8.58417 16.8802C8.41913 16.699 8.21616 16.5564 7.98973 16.4627C7.7633 16.3689 7.51898 16.3262 7.27417 16.3377L6.01333 16.396C5.78164 16.4069 5.55022 16.3693 5.33388 16.2857C5.11754 16.2021 4.92104 16.0742 4.75695 15.9102C4.59286 15.7463 4.46479 15.5499 4.38094 15.3337C4.29709 15.1174 4.2593 14.886 4.27 14.6543L4.32917 13.3927C4.34062 13.1479 4.29794 12.9035 4.20417 12.6771C4.1104 12.4507 3.96785 12.2477 3.78667 12.0827L2.85333 11.2327C2.68174 11.0765 2.54465 10.8862 2.45085 10.6739C2.35705 10.4617 2.30859 10.2322 2.30859 10.0002C2.30859 9.76812 2.35705 9.53864 2.45085 9.3264C2.54465 9.11417 2.68174 8.92386 2.85333 8.76766L3.78667 7.91766C3.96785 7.75262 4.1104 7.54966 4.20417 7.32323C4.29794 7.0968 4.34062 6.85247 4.32917 6.60766L4.27083 5.34683C4.25992 5.11514 4.29748 4.88372 4.38112 4.66738C4.46477 4.45103 4.59264 4.25453 4.75658 4.09044C4.92051 3.92635 5.11689 3.79829 5.33315 3.71444C5.54942 3.63059 5.7808 3.5928 6.0125 3.6035L7.27417 3.66266C7.51898 3.67411 7.7633 3.63144 7.98973 3.53767C8.21616 3.4439 8.41913 3.30134 8.58417 3.12016L9.43417 2.18683Z\" fill=\"#DDD8FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255))\"},children:\"Persana Expert\"})}),className:\"framer-1ug7exf\",\"data-framer-name\":\"Persana Pro\",fonts:[\"Inter-Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cjdvko\",\"data-border\":true,\"data-framer-name\":\"Testimonial 4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z00q5u\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ruwr8s\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fg885r\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/BWeH0phSeCuIeRYYNRPNZwCQ.jpg\"},className:\"framer-zubvmc\",\"data-framer-name\":\"1571504082720 1\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wk5e0f\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wadc2\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Richard Purcell\"})}),className:\"framer-jzykd3\",\"data-framer-name\":\"Debparna Pratiher\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bdqfzy\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Founder, MoxieGTM\"})}),className:\"framer-15vciel\",\"data-framer-name\":\"Co-founder, Quest Labs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p8tyxv\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"The most cost effective way to automate research. Persana has also been a great creative partner to help execute unconventional go-to-market strategies\"'})}),className:\"framer-1ptb8eu\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13y3fkj\",\"data-border\":true,\"data-framer-name\":\"Testimonial 5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lm4b0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b4c8t2\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yozi3y\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/ANeEL8AsqoEkKRlH6ZYpvuCe8.jpg\"},className:\"framer-1te15ft\",\"data-framer-name\":\"1697154658465 1\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-brc4js\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7jgz58\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Maddie Bell\"})}),className:\"framer-jowj44\",\"data-framer-name\":\"Debparna Pratiher\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m2j3ot\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Co-founder, Scheduler AI\"})}),className:\"framer-obpa7q\",\"data-framer-name\":\"Co-founder, Quest Labs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17nij53\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:' \"Persana AI has been awesome for us to use AI automation at scale. I love the templates and saving prompts! Saves me hours of research. I definitely recommend Persana\"'})}),className:\"framer-18o3jx1\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r2r99s-container hidden-1vqy315\",isModuleExternal:true,nodeId:\"Ccj_Njixd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:16,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"Ccj_Njixd\",layoutId:\"Ccj_Njixd\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lb3a96\",\"data-border\":true,\"data-framer-name\":\"G2 Review 1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wh5r68\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kriw0j\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"It is a great clay alternative and I like how its a full stack tool for outbound sales motion covering lead gen, data enrichment, AI personalization and automations with other tools. Its pretty affordable compared to clay.\"'})}),className:\"framer-x6qn67\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amyxs7\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1owaq38\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-142vf0m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ziiiae\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4799_3400)\">\\n<path d=\"M10 0C7.34783 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34783 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34783 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34783 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0ZM10.1017 4.28583C10.4767 4.28583 10.8517 4.3225 11.22 4.39583L10.1017 6.73417C8.30167 6.73333 6.83583 8.2 6.83583 10C6.83583 11.8 8.3025 13.2667 10.1025 13.2667C10.8833 13.2667 11.6392 12.985 12.23 12.4742L13.4658 14.6175C12.6137 15.2383 11.6065 15.6112 10.5555 15.6949C9.50459 15.7787 8.45098 15.57 7.5113 15.092C6.57163 14.614 5.78253 13.8854 5.23135 12.9867C4.68017 12.0879 4.3884 11.0543 4.38833 10C4.38833 8.48473 4.99027 7.03152 6.06173 5.96006C7.13319 4.88861 8.5864 4.28583 10.1017 4.28583ZM13.0167 4.69417H13.0383C13.3933 4.69417 13.6992 4.78861 13.9558 4.9775C14.2142 5.16917 14.3436 5.43194 14.3442 5.76583C14.3442 6.29833 14.0442 6.62417 13.4817 6.9125L13.1675 7.07167C12.8317 7.24167 12.6658 7.3925 12.62 7.66H14.3283V8.36833H11.7442V8.24833C11.7436 7.81056 11.8308 7.44778 12.0058 7.16C12.1808 6.87278 12.4869 6.61806 12.9242 6.39583L13.1258 6.29833C13.4817 6.11833 13.5742 5.96417 13.5742 5.7775C13.5742 5.55583 13.3842 5.39583 13.0742 5.39583C12.7075 5.39583 12.43 5.58583 12.2375 5.97417L11.7442 5.47833C11.8531 5.24667 12.025 5.05917 12.26 4.91583C12.4862 4.77183 12.7485 4.69496 13.0167 4.69417ZM11.2717 9.18417H14.1L15.5142 11.6317L14.1 14.0817L12.6858 11.6317H9.85833L11.2717 9.18417Z\" fill=\"#FF492C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4799_3400\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"G2 Reviewer\"})}),className:\"framer-oai7xo\",\"data-framer-name\":\"G2 Reviewer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12dp520\",\"data-framer-name\":\"Ratings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.8944 8.49926L14.0897 11.7805L15.2522 16.686C15.2829 16.812 15.2756 16.9444 15.2311 17.0663C15.1867 17.1882 15.1071 17.2942 15.0024 17.3708C14.8977 17.4475 14.7726 17.4914 14.643 17.497C14.5134 17.5027 14.385 17.4697 14.2741 17.4024L9.99907 14.7727L5.72407 17.4016C5.61315 17.4689 5.48476 17.5019 5.35512 17.4963C5.22549 17.4907 5.10043 17.4467 4.99575 17.3701C4.89107 17.2934 4.81146 17.1874 4.767 17.0655C4.72254 16.9436 4.71521 16.8113 4.74594 16.6852L5.90844 11.7797L2.10375 8.49848C2.00675 8.41331 1.93681 8.30158 1.90257 8.17711C1.86834 8.05264 1.8713 7.92087 1.9111 7.79806C1.9509 7.67526 2.02579 7.56679 2.12653 7.48607C2.22727 7.40534 2.34944 7.35588 2.47797 7.34379L7.47094 6.93754L9.39438 2.28129C9.44341 2.16117 9.52712 2.05837 9.63481 1.98601C9.74251 1.91365 9.86932 1.875 9.99907 1.875C10.1288 1.875 10.2556 1.91365 10.3633 1.98601C10.471 2.05837 10.5547 2.16117 10.6038 2.28129L12.5272 6.93754L17.5202 7.34379C17.6489 7.35574 17.7712 7.40515 17.8721 7.48593C17.973 7.56671 18.0481 7.6753 18.0879 7.79826C18.1277 7.92123 18.1306 8.05317 18.0962 8.17777C18.0618 8.30236 17.9916 8.41414 17.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M41.8944 8.49926L38.0897 11.7805L39.2522 16.686C39.2829 16.812 39.2756 16.9444 39.2311 17.0663C39.1867 17.1882 39.1071 17.2942 39.0024 17.3708C38.8977 17.4475 38.7726 17.4914 38.643 17.497C38.5134 17.5027 38.385 17.4697 38.2741 17.4024L33.9991 14.7727L29.7241 17.4016C29.6131 17.4689 29.4848 17.5019 29.3551 17.4963C29.2255 17.4907 29.1004 17.4467 28.9957 17.3701C28.8911 17.2934 28.8115 17.1874 28.767 17.0655C28.7225 16.9436 28.7152 16.8113 28.7459 16.6852L29.9084 11.7797L26.1038 8.49848C26.0067 8.41331 25.9368 8.30158 25.9026 8.17711C25.8683 8.05264 25.8713 7.92087 25.9111 7.79806C25.9509 7.67526 26.0258 7.56679 26.1265 7.48607C26.2273 7.40534 26.3494 7.35588 26.478 7.34379L31.4709 6.93754L33.3944 2.28129C33.4434 2.16117 33.5271 2.05837 33.6348 1.98601C33.7425 1.91365 33.8693 1.875 33.9991 1.875C34.1288 1.875 34.2556 1.91365 34.3633 1.98601C34.471 2.05837 34.5547 2.16117 34.6038 2.28129L36.5272 6.93754L41.5202 7.34379C41.6489 7.35574 41.7712 7.40515 41.8721 7.48593C41.973 7.56671 42.0481 7.6753 42.0879 7.79826C42.1277 7.92123 42.1306 8.05317 42.0962 8.17777C42.0618 8.30236 41.9916 8.41414 41.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M65.8944 8.49926L62.0897 11.7805L63.2522 16.686C63.2829 16.812 63.2756 16.9444 63.2311 17.0663C63.1867 17.1882 63.1071 17.2942 63.0024 17.3708C62.8977 17.4475 62.7726 17.4914 62.643 17.497C62.5134 17.5027 62.385 17.4697 62.2741 17.4024L57.9991 14.7727L53.7241 17.4016C53.6131 17.4689 53.4848 17.5019 53.3551 17.4963C53.2255 17.4907 53.1004 17.4467 52.9957 17.3701C52.8911 17.2934 52.8115 17.1874 52.767 17.0655C52.7225 16.9436 52.7152 16.8113 52.7459 16.6852L53.9084 11.7797L50.1038 8.49848C50.0067 8.41331 49.9368 8.30158 49.9026 8.17711C49.8683 8.05264 49.8713 7.92087 49.9111 7.79806C49.9509 7.67526 50.0258 7.56679 50.1265 7.48607C50.2273 7.40534 50.3494 7.35588 50.478 7.34379L55.4709 6.93754L57.3944 2.28129C57.4434 2.16117 57.5271 2.05837 57.6348 1.98601C57.7425 1.91365 57.8693 1.875 57.9991 1.875C58.1288 1.875 58.2556 1.91365 58.3633 1.98601C58.471 2.05837 58.5547 2.16117 58.6038 2.28129L60.5272 6.93754L65.5202 7.34379C65.6489 7.35574 65.7712 7.40515 65.8721 7.48593C65.973 7.56671 66.0481 7.6753 66.0879 7.79826C66.1277 7.92123 66.1306 8.05317 66.0962 8.17777C66.0618 8.30236 65.9916 8.41414 65.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M89.8944 8.49926L86.0897 11.7805L87.2522 16.686C87.2829 16.812 87.2756 16.9444 87.2311 17.0663C87.1867 17.1882 87.1071 17.2942 87.0024 17.3708C86.8977 17.4475 86.7726 17.4914 86.643 17.497C86.5134 17.5027 86.385 17.4697 86.2741 17.4024L81.9991 14.7727L77.7241 17.4016C77.6131 17.4689 77.4848 17.5019 77.3551 17.4963C77.2255 17.4907 77.1004 17.4467 76.9957 17.3701C76.8911 17.2934 76.8115 17.1874 76.767 17.0655C76.7225 16.9436 76.7152 16.8113 76.7459 16.6852L77.9084 11.7797L74.1038 8.49848C74.0067 8.41331 73.9368 8.30158 73.9026 8.17711C73.8683 8.05264 73.8713 7.92087 73.9111 7.79806C73.9509 7.67526 74.0258 7.56679 74.1265 7.48607C74.2273 7.40534 74.3494 7.35588 74.478 7.34379L79.4709 6.93754L81.3944 2.28129C81.4434 2.16117 81.5271 2.05837 81.6348 1.98601C81.7425 1.91365 81.8693 1.875 81.9991 1.875C82.1288 1.875 82.2556 1.91365 82.3633 1.98601C82.471 2.05837 82.5547 2.16117 82.6038 2.28129L84.5272 6.93754L89.5202 7.34379C89.6489 7.35574 89.7712 7.40515 89.8721 7.48593C89.973 7.56671 90.0481 7.6753 90.0879 7.79826C90.1277 7.92123 90.1306 8.05317 90.0962 8.17777C90.0618 8.30236 89.9916 8.41414 89.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M113.894 8.49926L110.09 11.7805L111.252 16.686C111.283 16.812 111.276 16.9444 111.231 17.0663C111.187 17.1882 111.107 17.2942 111.002 17.3708C110.898 17.4475 110.773 17.4914 110.643 17.497C110.513 17.5027 110.385 17.4697 110.274 17.4024L105.999 14.7727L101.724 17.4016C101.613 17.4689 101.485 17.5019 101.355 17.4963C101.225 17.4907 101.1 17.4467 100.996 17.3701C100.891 17.2934 100.811 17.1874 100.767 17.0655C100.723 16.9436 100.715 16.8113 100.746 16.6852L101.908 11.7797L98.1038 8.49848C98.0067 8.41331 97.9368 8.30158 97.9026 8.17711C97.8683 8.05264 97.8713 7.92087 97.9111 7.79806C97.9509 7.67526 98.0258 7.56679 98.1265 7.48607C98.2273 7.40534 98.3494 7.35588 98.478 7.34379L103.471 6.93754L105.394 2.28129C105.443 2.16117 105.527 2.05837 105.635 1.98601C105.743 1.91365 105.869 1.875 105.999 1.875C106.129 1.875 106.256 1.91365 106.363 1.98601C106.471 2.05837 106.555 2.16117 106.604 2.28129L108.527 6.93754L113.52 7.34379C113.649 7.35574 113.771 7.40515 113.872 7.48593C113.973 7.56671 114.048 7.6753 114.088 7.79826C114.128 7.92123 114.131 8.05317 114.096 8.17777C114.062 8.30236 113.992 8.41414 113.894 8.49926Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xgr39g\",\"data-border\":true,\"data-framer-name\":\"G2 Review 2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lf67hn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mk0wso\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"We\u2019ve seen some improvements in how quickly we can build lead lists, and the personalization features have helped make our outreach more relevant using Persana. It\u2019s definitely made our workflow smoother. \"})}),className:\"framer-4sllao\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7s695r\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18vncgp\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ogq31f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-101ngbq\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4799_3400)\">\\n<path d=\"M10 0C7.34783 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34783 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34783 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34783 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0ZM10.1017 4.28583C10.4767 4.28583 10.8517 4.3225 11.22 4.39583L10.1017 6.73417C8.30167 6.73333 6.83583 8.2 6.83583 10C6.83583 11.8 8.3025 13.2667 10.1025 13.2667C10.8833 13.2667 11.6392 12.985 12.23 12.4742L13.4658 14.6175C12.6137 15.2383 11.6065 15.6112 10.5555 15.6949C9.50459 15.7787 8.45098 15.57 7.5113 15.092C6.57163 14.614 5.78253 13.8854 5.23135 12.9867C4.68017 12.0879 4.3884 11.0543 4.38833 10C4.38833 8.48473 4.99027 7.03152 6.06173 5.96006C7.13319 4.88861 8.5864 4.28583 10.1017 4.28583ZM13.0167 4.69417H13.0383C13.3933 4.69417 13.6992 4.78861 13.9558 4.9775C14.2142 5.16917 14.3436 5.43194 14.3442 5.76583C14.3442 6.29833 14.0442 6.62417 13.4817 6.9125L13.1675 7.07167C12.8317 7.24167 12.6658 7.3925 12.62 7.66H14.3283V8.36833H11.7442V8.24833C11.7436 7.81056 11.8308 7.44778 12.0058 7.16C12.1808 6.87278 12.4869 6.61806 12.9242 6.39583L13.1258 6.29833C13.4817 6.11833 13.5742 5.96417 13.5742 5.7775C13.5742 5.55583 13.3842 5.39583 13.0742 5.39583C12.7075 5.39583 12.43 5.58583 12.2375 5.97417L11.7442 5.47833C11.8531 5.24667 12.025 5.05917 12.26 4.91583C12.4862 4.77183 12.7485 4.69496 13.0167 4.69417ZM11.2717 9.18417H14.1L15.5142 11.6317L14.1 14.0817L12.6858 11.6317H9.85833L11.2717 9.18417Z\" fill=\"#FF492C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4799_3400\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"G2 Reviewer\"})}),className:\"framer-5nfnde\",\"data-framer-name\":\"G2 Reviewer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mjvkg7\",\"data-framer-name\":\"Ratings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.8944 8.49926L14.0897 11.7805L15.2522 16.686C15.2829 16.812 15.2756 16.9444 15.2311 17.0663C15.1867 17.1882 15.1071 17.2942 15.0024 17.3708C14.8977 17.4475 14.7726 17.4914 14.643 17.497C14.5134 17.5027 14.385 17.4697 14.2741 17.4024L9.99907 14.7727L5.72407 17.4016C5.61315 17.4689 5.48476 17.5019 5.35512 17.4963C5.22549 17.4907 5.10043 17.4467 4.99575 17.3701C4.89107 17.2934 4.81146 17.1874 4.767 17.0655C4.72254 16.9436 4.71521 16.8113 4.74594 16.6852L5.90844 11.7797L2.10375 8.49848C2.00675 8.41331 1.93681 8.30158 1.90257 8.17711C1.86834 8.05264 1.8713 7.92087 1.9111 7.79806C1.9509 7.67526 2.02579 7.56679 2.12653 7.48607C2.22727 7.40534 2.34944 7.35588 2.47797 7.34379L7.47094 6.93754L9.39438 2.28129C9.44341 2.16117 9.52712 2.05837 9.63481 1.98601C9.74251 1.91365 9.86932 1.875 9.99907 1.875C10.1288 1.875 10.2556 1.91365 10.3633 1.98601C10.471 2.05837 10.5547 2.16117 10.6038 2.28129L12.5272 6.93754L17.5202 7.34379C17.6489 7.35574 17.7712 7.40515 17.8721 7.48593C17.973 7.56671 18.0481 7.6753 18.0879 7.79826C18.1277 7.92123 18.1306 8.05317 18.0962 8.17777C18.0618 8.30236 17.9916 8.41414 17.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M41.8944 8.49926L38.0897 11.7805L39.2522 16.686C39.2829 16.812 39.2756 16.9444 39.2311 17.0663C39.1867 17.1882 39.1071 17.2942 39.0024 17.3708C38.8977 17.4475 38.7726 17.4914 38.643 17.497C38.5134 17.5027 38.385 17.4697 38.2741 17.4024L33.9991 14.7727L29.7241 17.4016C29.6131 17.4689 29.4848 17.5019 29.3551 17.4963C29.2255 17.4907 29.1004 17.4467 28.9957 17.3701C28.8911 17.2934 28.8115 17.1874 28.767 17.0655C28.7225 16.9436 28.7152 16.8113 28.7459 16.6852L29.9084 11.7797L26.1038 8.49848C26.0067 8.41331 25.9368 8.30158 25.9026 8.17711C25.8683 8.05264 25.8713 7.92087 25.9111 7.79806C25.9509 7.67526 26.0258 7.56679 26.1265 7.48607C26.2273 7.40534 26.3494 7.35588 26.478 7.34379L31.4709 6.93754L33.3944 2.28129C33.4434 2.16117 33.5271 2.05837 33.6348 1.98601C33.7425 1.91365 33.8693 1.875 33.9991 1.875C34.1288 1.875 34.2556 1.91365 34.3633 1.98601C34.471 2.05837 34.5547 2.16117 34.6038 2.28129L36.5272 6.93754L41.5202 7.34379C41.6489 7.35574 41.7712 7.40515 41.8721 7.48593C41.973 7.56671 42.0481 7.6753 42.0879 7.79826C42.1277 7.92123 42.1306 8.05317 42.0962 8.17777C42.0618 8.30236 41.9916 8.41414 41.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M65.8944 8.49926L62.0897 11.7805L63.2522 16.686C63.2829 16.812 63.2756 16.9444 63.2311 17.0663C63.1867 17.1882 63.1071 17.2942 63.0024 17.3708C62.8977 17.4475 62.7726 17.4914 62.643 17.497C62.5134 17.5027 62.385 17.4697 62.2741 17.4024L57.9991 14.7727L53.7241 17.4016C53.6131 17.4689 53.4848 17.5019 53.3551 17.4963C53.2255 17.4907 53.1004 17.4467 52.9957 17.3701C52.8911 17.2934 52.8115 17.1874 52.767 17.0655C52.7225 16.9436 52.7152 16.8113 52.7459 16.6852L53.9084 11.7797L50.1038 8.49848C50.0067 8.41331 49.9368 8.30158 49.9026 8.17711C49.8683 8.05264 49.8713 7.92087 49.9111 7.79806C49.9509 7.67526 50.0258 7.56679 50.1265 7.48607C50.2273 7.40534 50.3494 7.35588 50.478 7.34379L55.4709 6.93754L57.3944 2.28129C57.4434 2.16117 57.5271 2.05837 57.6348 1.98601C57.7425 1.91365 57.8693 1.875 57.9991 1.875C58.1288 1.875 58.2556 1.91365 58.3633 1.98601C58.471 2.05837 58.5547 2.16117 58.6038 2.28129L60.5272 6.93754L65.5202 7.34379C65.6489 7.35574 65.7712 7.40515 65.8721 7.48593C65.973 7.56671 66.0481 7.6753 66.0879 7.79826C66.1277 7.92123 66.1306 8.05317 66.0962 8.17777C66.0618 8.30236 65.9916 8.41414 65.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M89.8944 8.49926L86.0897 11.7805L87.2522 16.686C87.2829 16.812 87.2756 16.9444 87.2311 17.0663C87.1867 17.1882 87.1071 17.2942 87.0024 17.3708C86.8977 17.4475 86.7726 17.4914 86.643 17.497C86.5134 17.5027 86.385 17.4697 86.2741 17.4024L81.9991 14.7727L77.7241 17.4016C77.6131 17.4689 77.4848 17.5019 77.3551 17.4963C77.2255 17.4907 77.1004 17.4467 76.9957 17.3701C76.8911 17.2934 76.8115 17.1874 76.767 17.0655C76.7225 16.9436 76.7152 16.8113 76.7459 16.6852L77.9084 11.7797L74.1038 8.49848C74.0067 8.41331 73.9368 8.30158 73.9026 8.17711C73.8683 8.05264 73.8713 7.92087 73.9111 7.79806C73.9509 7.67526 74.0258 7.56679 74.1265 7.48607C74.2273 7.40534 74.3494 7.35588 74.478 7.34379L79.4709 6.93754L81.3944 2.28129C81.4434 2.16117 81.5271 2.05837 81.6348 1.98601C81.7425 1.91365 81.8693 1.875 81.9991 1.875C82.1288 1.875 82.2556 1.91365 82.3633 1.98601C82.471 2.05837 82.5547 2.16117 82.6038 2.28129L84.5272 6.93754L89.5202 7.34379C89.6489 7.35574 89.7712 7.40515 89.8721 7.48593C89.973 7.56671 90.0481 7.6753 90.0879 7.79826C90.1277 7.92123 90.1306 8.05317 90.0962 8.17777C90.0618 8.30236 89.9916 8.41414 89.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M113.894 8.49926L110.09 11.7805L111.252 16.686C111.283 16.812 111.276 16.9444 111.231 17.0663C111.187 17.1882 111.107 17.2942 111.002 17.3708C110.898 17.4475 110.773 17.4914 110.643 17.497C110.513 17.5027 110.385 17.4697 110.274 17.4024L105.999 14.7727L101.724 17.4016C101.613 17.4689 101.485 17.5019 101.355 17.4963C101.225 17.4907 101.1 17.4467 100.996 17.3701C100.891 17.2934 100.811 17.1874 100.767 17.0655C100.723 16.9436 100.715 16.8113 100.746 16.6852L101.908 11.7797L98.1038 8.49848C98.0067 8.41331 97.9368 8.30158 97.9026 8.17711C97.8683 8.05264 97.8713 7.92087 97.9111 7.79806C97.9509 7.67526 98.0258 7.56679 98.1265 7.48607C98.2273 7.40534 98.3494 7.35588 98.478 7.34379L103.471 6.93754L105.394 2.28129C105.443 2.16117 105.527 2.05837 105.635 1.98601C105.743 1.91365 105.869 1.875 105.999 1.875C106.129 1.875 106.256 1.91365 106.363 1.98601C106.471 2.05837 106.555 2.16117 106.604 2.28129L108.527 6.93754L113.52 7.34379C113.649 7.35574 113.771 7.40515 113.872 7.48593C113.973 7.56671 114.048 7.6753 114.088 7.79826C114.128 7.92123 114.131 8.05317 114.096 8.17777C114.062 8.30236 113.992 8.41414 113.894 8.49926Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bjgek5\",\"data-border\":true,\"data-framer-name\":\"G2 Review 3\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3y4c5q\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-q16bv9\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"You can use it in many places to help enrich data but you can also use it as an AI tool to help craft emails or use the chrome extension to scrape lists, get summaries of people etc.. It\\'s similar to clay with some unique features.\"'})}),className:\"framer-15h2psl\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1npgh0e\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ug6ozk\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-67cy8f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mgeizx\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4799_3400)\">\\n<path d=\"M10 0C7.34783 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34783 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34783 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34783 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0ZM10.1017 4.28583C10.4767 4.28583 10.8517 4.3225 11.22 4.39583L10.1017 6.73417C8.30167 6.73333 6.83583 8.2 6.83583 10C6.83583 11.8 8.3025 13.2667 10.1025 13.2667C10.8833 13.2667 11.6392 12.985 12.23 12.4742L13.4658 14.6175C12.6137 15.2383 11.6065 15.6112 10.5555 15.6949C9.50459 15.7787 8.45098 15.57 7.5113 15.092C6.57163 14.614 5.78253 13.8854 5.23135 12.9867C4.68017 12.0879 4.3884 11.0543 4.38833 10C4.38833 8.48473 4.99027 7.03152 6.06173 5.96006C7.13319 4.88861 8.5864 4.28583 10.1017 4.28583ZM13.0167 4.69417H13.0383C13.3933 4.69417 13.6992 4.78861 13.9558 4.9775C14.2142 5.16917 14.3436 5.43194 14.3442 5.76583C14.3442 6.29833 14.0442 6.62417 13.4817 6.9125L13.1675 7.07167C12.8317 7.24167 12.6658 7.3925 12.62 7.66H14.3283V8.36833H11.7442V8.24833C11.7436 7.81056 11.8308 7.44778 12.0058 7.16C12.1808 6.87278 12.4869 6.61806 12.9242 6.39583L13.1258 6.29833C13.4817 6.11833 13.5742 5.96417 13.5742 5.7775C13.5742 5.55583 13.3842 5.39583 13.0742 5.39583C12.7075 5.39583 12.43 5.58583 12.2375 5.97417L11.7442 5.47833C11.8531 5.24667 12.025 5.05917 12.26 4.91583C12.4862 4.77183 12.7485 4.69496 13.0167 4.69417ZM11.2717 9.18417H14.1L15.5142 11.6317L14.1 14.0817L12.6858 11.6317H9.85833L11.2717 9.18417Z\" fill=\"#FF492C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4799_3400\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"G2 Reviewer\"})}),className:\"framer-keb7ab\",\"data-framer-name\":\"G2 Reviewer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w1z5k5\",\"data-framer-name\":\"Ratings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.8944 8.49926L14.0897 11.7805L15.2522 16.686C15.2829 16.812 15.2756 16.9444 15.2311 17.0663C15.1867 17.1882 15.1071 17.2942 15.0024 17.3708C14.8977 17.4475 14.7726 17.4914 14.643 17.497C14.5134 17.5027 14.385 17.4697 14.2741 17.4024L9.99907 14.7727L5.72407 17.4016C5.61315 17.4689 5.48476 17.5019 5.35512 17.4963C5.22549 17.4907 5.10043 17.4467 4.99575 17.3701C4.89107 17.2934 4.81146 17.1874 4.767 17.0655C4.72254 16.9436 4.71521 16.8113 4.74594 16.6852L5.90844 11.7797L2.10375 8.49848C2.00675 8.41331 1.93681 8.30158 1.90257 8.17711C1.86834 8.05264 1.8713 7.92087 1.9111 7.79806C1.9509 7.67526 2.02579 7.56679 2.12653 7.48607C2.22727 7.40534 2.34944 7.35588 2.47797 7.34379L7.47094 6.93754L9.39438 2.28129C9.44341 2.16117 9.52712 2.05837 9.63481 1.98601C9.74251 1.91365 9.86932 1.875 9.99907 1.875C10.1288 1.875 10.2556 1.91365 10.3633 1.98601C10.471 2.05837 10.5547 2.16117 10.6038 2.28129L12.5272 6.93754L17.5202 7.34379C17.6489 7.35574 17.7712 7.40515 17.8721 7.48593C17.973 7.56671 18.0481 7.6753 18.0879 7.79826C18.1277 7.92123 18.1306 8.05317 18.0962 8.17777C18.0618 8.30236 17.9916 8.41414 17.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M41.8944 8.49926L38.0897 11.7805L39.2522 16.686C39.2829 16.812 39.2756 16.9444 39.2311 17.0663C39.1867 17.1882 39.1071 17.2942 39.0024 17.3708C38.8977 17.4475 38.7726 17.4914 38.643 17.497C38.5134 17.5027 38.385 17.4697 38.2741 17.4024L33.9991 14.7727L29.7241 17.4016C29.6131 17.4689 29.4848 17.5019 29.3551 17.4963C29.2255 17.4907 29.1004 17.4467 28.9957 17.3701C28.8911 17.2934 28.8115 17.1874 28.767 17.0655C28.7225 16.9436 28.7152 16.8113 28.7459 16.6852L29.9084 11.7797L26.1038 8.49848C26.0067 8.41331 25.9368 8.30158 25.9026 8.17711C25.8683 8.05264 25.8713 7.92087 25.9111 7.79806C25.9509 7.67526 26.0258 7.56679 26.1265 7.48607C26.2273 7.40534 26.3494 7.35588 26.478 7.34379L31.4709 6.93754L33.3944 2.28129C33.4434 2.16117 33.5271 2.05837 33.6348 1.98601C33.7425 1.91365 33.8693 1.875 33.9991 1.875C34.1288 1.875 34.2556 1.91365 34.3633 1.98601C34.471 2.05837 34.5547 2.16117 34.6038 2.28129L36.5272 6.93754L41.5202 7.34379C41.6489 7.35574 41.7712 7.40515 41.8721 7.48593C41.973 7.56671 42.0481 7.6753 42.0879 7.79826C42.1277 7.92123 42.1306 8.05317 42.0962 8.17777C42.0618 8.30236 41.9916 8.41414 41.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M65.8944 8.49926L62.0897 11.7805L63.2522 16.686C63.2829 16.812 63.2756 16.9444 63.2311 17.0663C63.1867 17.1882 63.1071 17.2942 63.0024 17.3708C62.8977 17.4475 62.7726 17.4914 62.643 17.497C62.5134 17.5027 62.385 17.4697 62.2741 17.4024L57.9991 14.7727L53.7241 17.4016C53.6131 17.4689 53.4848 17.5019 53.3551 17.4963C53.2255 17.4907 53.1004 17.4467 52.9957 17.3701C52.8911 17.2934 52.8115 17.1874 52.767 17.0655C52.7225 16.9436 52.7152 16.8113 52.7459 16.6852L53.9084 11.7797L50.1038 8.49848C50.0067 8.41331 49.9368 8.30158 49.9026 8.17711C49.8683 8.05264 49.8713 7.92087 49.9111 7.79806C49.9509 7.67526 50.0258 7.56679 50.1265 7.48607C50.2273 7.40534 50.3494 7.35588 50.478 7.34379L55.4709 6.93754L57.3944 2.28129C57.4434 2.16117 57.5271 2.05837 57.6348 1.98601C57.7425 1.91365 57.8693 1.875 57.9991 1.875C58.1288 1.875 58.2556 1.91365 58.3633 1.98601C58.471 2.05837 58.5547 2.16117 58.6038 2.28129L60.5272 6.93754L65.5202 7.34379C65.6489 7.35574 65.7712 7.40515 65.8721 7.48593C65.973 7.56671 66.0481 7.6753 66.0879 7.79826C66.1277 7.92123 66.1306 8.05317 66.0962 8.17777C66.0618 8.30236 65.9916 8.41414 65.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M89.8944 8.49926L86.0897 11.7805L87.2522 16.686C87.2829 16.812 87.2756 16.9444 87.2311 17.0663C87.1867 17.1882 87.1071 17.2942 87.0024 17.3708C86.8977 17.4475 86.7726 17.4914 86.643 17.497C86.5134 17.5027 86.385 17.4697 86.2741 17.4024L81.9991 14.7727L77.7241 17.4016C77.6131 17.4689 77.4848 17.5019 77.3551 17.4963C77.2255 17.4907 77.1004 17.4467 76.9957 17.3701C76.8911 17.2934 76.8115 17.1874 76.767 17.0655C76.7225 16.9436 76.7152 16.8113 76.7459 16.6852L77.9084 11.7797L74.1038 8.49848C74.0067 8.41331 73.9368 8.30158 73.9026 8.17711C73.8683 8.05264 73.8713 7.92087 73.9111 7.79806C73.9509 7.67526 74.0258 7.56679 74.1265 7.48607C74.2273 7.40534 74.3494 7.35588 74.478 7.34379L79.4709 6.93754L81.3944 2.28129C81.4434 2.16117 81.5271 2.05837 81.6348 1.98601C81.7425 1.91365 81.8693 1.875 81.9991 1.875C82.1288 1.875 82.2556 1.91365 82.3633 1.98601C82.471 2.05837 82.5547 2.16117 82.6038 2.28129L84.5272 6.93754L89.5202 7.34379C89.6489 7.35574 89.7712 7.40515 89.8721 7.48593C89.973 7.56671 90.0481 7.6753 90.0879 7.79826C90.1277 7.92123 90.1306 8.05317 90.0962 8.17777C90.0618 8.30236 89.9916 8.41414 89.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M113.894 8.49926L110.09 11.7805L111.252 16.686C111.283 16.812 111.276 16.9444 111.231 17.0663C111.187 17.1882 111.107 17.2942 111.002 17.3708C110.898 17.4475 110.773 17.4914 110.643 17.497C110.513 17.5027 110.385 17.4697 110.274 17.4024L105.999 14.7727L101.724 17.4016C101.613 17.4689 101.485 17.5019 101.355 17.4963C101.225 17.4907 101.1 17.4467 100.996 17.3701C100.891 17.2934 100.811 17.1874 100.767 17.0655C100.723 16.9436 100.715 16.8113 100.746 16.6852L101.908 11.7797L98.1038 8.49848C98.0067 8.41331 97.9368 8.30158 97.9026 8.17711C97.8683 8.05264 97.8713 7.92087 97.9111 7.79806C97.9509 7.67526 98.0258 7.56679 98.1265 7.48607C98.2273 7.40534 98.3494 7.35588 98.478 7.34379L103.471 6.93754L105.394 2.28129C105.443 2.16117 105.527 2.05837 105.635 1.98601C105.743 1.91365 105.869 1.875 105.999 1.875C106.129 1.875 106.256 1.91365 106.363 1.98601C106.471 2.05837 106.555 2.16117 106.604 2.28129L108.527 6.93754L113.52 7.34379C113.649 7.35574 113.771 7.40515 113.872 7.48593C113.973 7.56671 114.048 7.6753 114.088 7.79826C114.128 7.92123 114.131 8.05317 114.096 8.17777C114.062 8.30236 113.992 8.41414 113.894 8.49926Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ork8p8\",\"data-border\":true,\"data-framer-name\":\"G2 Review 4\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a25qc2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g7leef\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"Our team loves Persana. The platform enables us to execute account-based prospecting at scale, all within one solution. For a lean team like ours, that kind of efficiency is invaluable. Persana is the way to go!\"'})}),className:\"framer-1ymyz5d\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-57up1v\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-102rm2r\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kofyln\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-r1du5x\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4799_3400)\">\\n<path d=\"M10 0C7.34783 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34783 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34783 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34783 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0ZM10.1017 4.28583C10.4767 4.28583 10.8517 4.3225 11.22 4.39583L10.1017 6.73417C8.30167 6.73333 6.83583 8.2 6.83583 10C6.83583 11.8 8.3025 13.2667 10.1025 13.2667C10.8833 13.2667 11.6392 12.985 12.23 12.4742L13.4658 14.6175C12.6137 15.2383 11.6065 15.6112 10.5555 15.6949C9.50459 15.7787 8.45098 15.57 7.5113 15.092C6.57163 14.614 5.78253 13.8854 5.23135 12.9867C4.68017 12.0879 4.3884 11.0543 4.38833 10C4.38833 8.48473 4.99027 7.03152 6.06173 5.96006C7.13319 4.88861 8.5864 4.28583 10.1017 4.28583ZM13.0167 4.69417H13.0383C13.3933 4.69417 13.6992 4.78861 13.9558 4.9775C14.2142 5.16917 14.3436 5.43194 14.3442 5.76583C14.3442 6.29833 14.0442 6.62417 13.4817 6.9125L13.1675 7.07167C12.8317 7.24167 12.6658 7.3925 12.62 7.66H14.3283V8.36833H11.7442V8.24833C11.7436 7.81056 11.8308 7.44778 12.0058 7.16C12.1808 6.87278 12.4869 6.61806 12.9242 6.39583L13.1258 6.29833C13.4817 6.11833 13.5742 5.96417 13.5742 5.7775C13.5742 5.55583 13.3842 5.39583 13.0742 5.39583C12.7075 5.39583 12.43 5.58583 12.2375 5.97417L11.7442 5.47833C11.8531 5.24667 12.025 5.05917 12.26 4.91583C12.4862 4.77183 12.7485 4.69496 13.0167 4.69417ZM11.2717 9.18417H14.1L15.5142 11.6317L14.1 14.0817L12.6858 11.6317H9.85833L11.2717 9.18417Z\" fill=\"#FF492C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4799_3400\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"G2 Reviewer\"})}),className:\"framer-kj4ix9\",\"data-framer-name\":\"G2 Reviewer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rpwcwf\",\"data-framer-name\":\"Ratings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.8944 8.49926L14.0897 11.7805L15.2522 16.686C15.2829 16.812 15.2756 16.9444 15.2311 17.0663C15.1867 17.1882 15.1071 17.2942 15.0024 17.3708C14.8977 17.4475 14.7726 17.4914 14.643 17.497C14.5134 17.5027 14.385 17.4697 14.2741 17.4024L9.99907 14.7727L5.72407 17.4016C5.61315 17.4689 5.48476 17.5019 5.35512 17.4963C5.22549 17.4907 5.10043 17.4467 4.99575 17.3701C4.89107 17.2934 4.81146 17.1874 4.767 17.0655C4.72254 16.9436 4.71521 16.8113 4.74594 16.6852L5.90844 11.7797L2.10375 8.49848C2.00675 8.41331 1.93681 8.30158 1.90257 8.17711C1.86834 8.05264 1.8713 7.92087 1.9111 7.79806C1.9509 7.67526 2.02579 7.56679 2.12653 7.48607C2.22727 7.40534 2.34944 7.35588 2.47797 7.34379L7.47094 6.93754L9.39438 2.28129C9.44341 2.16117 9.52712 2.05837 9.63481 1.98601C9.74251 1.91365 9.86932 1.875 9.99907 1.875C10.1288 1.875 10.2556 1.91365 10.3633 1.98601C10.471 2.05837 10.5547 2.16117 10.6038 2.28129L12.5272 6.93754L17.5202 7.34379C17.6489 7.35574 17.7712 7.40515 17.8721 7.48593C17.973 7.56671 18.0481 7.6753 18.0879 7.79826C18.1277 7.92123 18.1306 8.05317 18.0962 8.17777C18.0618 8.30236 17.9916 8.41414 17.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M41.8944 8.49926L38.0897 11.7805L39.2522 16.686C39.2829 16.812 39.2756 16.9444 39.2311 17.0663C39.1867 17.1882 39.1071 17.2942 39.0024 17.3708C38.8977 17.4475 38.7726 17.4914 38.643 17.497C38.5134 17.5027 38.385 17.4697 38.2741 17.4024L33.9991 14.7727L29.7241 17.4016C29.6131 17.4689 29.4848 17.5019 29.3551 17.4963C29.2255 17.4907 29.1004 17.4467 28.9957 17.3701C28.8911 17.2934 28.8115 17.1874 28.767 17.0655C28.7225 16.9436 28.7152 16.8113 28.7459 16.6852L29.9084 11.7797L26.1038 8.49848C26.0067 8.41331 25.9368 8.30158 25.9026 8.17711C25.8683 8.05264 25.8713 7.92087 25.9111 7.79806C25.9509 7.67526 26.0258 7.56679 26.1265 7.48607C26.2273 7.40534 26.3494 7.35588 26.478 7.34379L31.4709 6.93754L33.3944 2.28129C33.4434 2.16117 33.5271 2.05837 33.6348 1.98601C33.7425 1.91365 33.8693 1.875 33.9991 1.875C34.1288 1.875 34.2556 1.91365 34.3633 1.98601C34.471 2.05837 34.5547 2.16117 34.6038 2.28129L36.5272 6.93754L41.5202 7.34379C41.6489 7.35574 41.7712 7.40515 41.8721 7.48593C41.973 7.56671 42.0481 7.6753 42.0879 7.79826C42.1277 7.92123 42.1306 8.05317 42.0962 8.17777C42.0618 8.30236 41.9916 8.41414 41.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M65.8944 8.49926L62.0897 11.7805L63.2522 16.686C63.2829 16.812 63.2756 16.9444 63.2311 17.0663C63.1867 17.1882 63.1071 17.2942 63.0024 17.3708C62.8977 17.4475 62.7726 17.4914 62.643 17.497C62.5134 17.5027 62.385 17.4697 62.2741 17.4024L57.9991 14.7727L53.7241 17.4016C53.6131 17.4689 53.4848 17.5019 53.3551 17.4963C53.2255 17.4907 53.1004 17.4467 52.9957 17.3701C52.8911 17.2934 52.8115 17.1874 52.767 17.0655C52.7225 16.9436 52.7152 16.8113 52.7459 16.6852L53.9084 11.7797L50.1038 8.49848C50.0067 8.41331 49.9368 8.30158 49.9026 8.17711C49.8683 8.05264 49.8713 7.92087 49.9111 7.79806C49.9509 7.67526 50.0258 7.56679 50.1265 7.48607C50.2273 7.40534 50.3494 7.35588 50.478 7.34379L55.4709 6.93754L57.3944 2.28129C57.4434 2.16117 57.5271 2.05837 57.6348 1.98601C57.7425 1.91365 57.8693 1.875 57.9991 1.875C58.1288 1.875 58.2556 1.91365 58.3633 1.98601C58.471 2.05837 58.5547 2.16117 58.6038 2.28129L60.5272 6.93754L65.5202 7.34379C65.6489 7.35574 65.7712 7.40515 65.8721 7.48593C65.973 7.56671 66.0481 7.6753 66.0879 7.79826C66.1277 7.92123 66.1306 8.05317 66.0962 8.17777C66.0618 8.30236 65.9916 8.41414 65.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M89.8944 8.49926L86.0897 11.7805L87.2522 16.686C87.2829 16.812 87.2756 16.9444 87.2311 17.0663C87.1867 17.1882 87.1071 17.2942 87.0024 17.3708C86.8977 17.4475 86.7726 17.4914 86.643 17.497C86.5134 17.5027 86.385 17.4697 86.2741 17.4024L81.9991 14.7727L77.7241 17.4016C77.6131 17.4689 77.4848 17.5019 77.3551 17.4963C77.2255 17.4907 77.1004 17.4467 76.9957 17.3701C76.8911 17.2934 76.8115 17.1874 76.767 17.0655C76.7225 16.9436 76.7152 16.8113 76.7459 16.6852L77.9084 11.7797L74.1038 8.49848C74.0067 8.41331 73.9368 8.30158 73.9026 8.17711C73.8683 8.05264 73.8713 7.92087 73.9111 7.79806C73.9509 7.67526 74.0258 7.56679 74.1265 7.48607C74.2273 7.40534 74.3494 7.35588 74.478 7.34379L79.4709 6.93754L81.3944 2.28129C81.4434 2.16117 81.5271 2.05837 81.6348 1.98601C81.7425 1.91365 81.8693 1.875 81.9991 1.875C82.1288 1.875 82.2556 1.91365 82.3633 1.98601C82.471 2.05837 82.5547 2.16117 82.6038 2.28129L84.5272 6.93754L89.5202 7.34379C89.6489 7.35574 89.7712 7.40515 89.8721 7.48593C89.973 7.56671 90.0481 7.6753 90.0879 7.79826C90.1277 7.92123 90.1306 8.05317 90.0962 8.17777C90.0618 8.30236 89.9916 8.41414 89.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M113.894 8.49926L110.09 11.7805L111.252 16.686C111.283 16.812 111.276 16.9444 111.231 17.0663C111.187 17.1882 111.107 17.2942 111.002 17.3708C110.898 17.4475 110.773 17.4914 110.643 17.497C110.513 17.5027 110.385 17.4697 110.274 17.4024L105.999 14.7727L101.724 17.4016C101.613 17.4689 101.485 17.5019 101.355 17.4963C101.225 17.4907 101.1 17.4467 100.996 17.3701C100.891 17.2934 100.811 17.1874 100.767 17.0655C100.723 16.9436 100.715 16.8113 100.746 16.6852L101.908 11.7797L98.1038 8.49848C98.0067 8.41331 97.9368 8.30158 97.9026 8.17711C97.8683 8.05264 97.8713 7.92087 97.9111 7.79806C97.9509 7.67526 98.0258 7.56679 98.1265 7.48607C98.2273 7.40534 98.3494 7.35588 98.478 7.34379L103.471 6.93754L105.394 2.28129C105.443 2.16117 105.527 2.05837 105.635 1.98601C105.743 1.91365 105.869 1.875 105.999 1.875C106.129 1.875 106.256 1.91365 106.363 1.98601C106.471 2.05837 106.555 2.16117 106.604 2.28129L108.527 6.93754L113.52 7.34379C113.649 7.35574 113.771 7.40515 113.872 7.48593C113.973 7.56671 114.048 7.6753 114.088 7.79826C114.128 7.92123 114.131 8.05317 114.096 8.17777C114.062 8.30236 113.992 8.41414 113.894 8.49926Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-usdm93\",\"data-border\":true,\"data-framer-name\":\"G2 Review 5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ns29wf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j38tuc\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"Persana has been an absolute game-changer for my top-of-funnel activities. Before discovering this tool, I was constantly juggling multiple tabs, switching between them to gather the information I needed.\"'})}),className:\"framer-7t17zf\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bnfhhm\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-au44jw\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17x3in8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hq1d58\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4799_3400)\">\\n<path d=\"M10 0C7.34783 0 4.8043 1.05357 2.92893 2.92893C1.05357 4.8043 0 7.34783 0 10C0 12.6522 1.05357 15.1957 2.92893 17.0711C4.8043 18.9464 7.34783 20 10 20C12.6522 20 15.1957 18.9464 17.0711 17.0711C18.9464 15.1957 20 12.6522 20 10C20 7.34783 18.9464 4.8043 17.0711 2.92893C15.1957 1.05357 12.6522 0 10 0ZM10.1017 4.28583C10.4767 4.28583 10.8517 4.3225 11.22 4.39583L10.1017 6.73417C8.30167 6.73333 6.83583 8.2 6.83583 10C6.83583 11.8 8.3025 13.2667 10.1025 13.2667C10.8833 13.2667 11.6392 12.985 12.23 12.4742L13.4658 14.6175C12.6137 15.2383 11.6065 15.6112 10.5555 15.6949C9.50459 15.7787 8.45098 15.57 7.5113 15.092C6.57163 14.614 5.78253 13.8854 5.23135 12.9867C4.68017 12.0879 4.3884 11.0543 4.38833 10C4.38833 8.48473 4.99027 7.03152 6.06173 5.96006C7.13319 4.88861 8.5864 4.28583 10.1017 4.28583ZM13.0167 4.69417H13.0383C13.3933 4.69417 13.6992 4.78861 13.9558 4.9775C14.2142 5.16917 14.3436 5.43194 14.3442 5.76583C14.3442 6.29833 14.0442 6.62417 13.4817 6.9125L13.1675 7.07167C12.8317 7.24167 12.6658 7.3925 12.62 7.66H14.3283V8.36833H11.7442V8.24833C11.7436 7.81056 11.8308 7.44778 12.0058 7.16C12.1808 6.87278 12.4869 6.61806 12.9242 6.39583L13.1258 6.29833C13.4817 6.11833 13.5742 5.96417 13.5742 5.7775C13.5742 5.55583 13.3842 5.39583 13.0742 5.39583C12.7075 5.39583 12.43 5.58583 12.2375 5.97417L11.7442 5.47833C11.8531 5.24667 12.025 5.05917 12.26 4.91583C12.4862 4.77183 12.7485 4.69496 13.0167 4.69417ZM11.2717 9.18417H14.1L15.5142 11.6317L14.1 14.0817L12.6858 11.6317H9.85833L11.2717 9.18417Z\" fill=\"#FF492C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4799_3400\">\\n<rect width=\"20\" height=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"G2 Reviewer\"})}),className:\"framer-1evortq\",\"data-framer-name\":\"G2 Reviewer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w93ncl\",\"data-framer-name\":\"Ratings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.8944 8.49926L14.0897 11.7805L15.2522 16.686C15.2829 16.812 15.2756 16.9444 15.2311 17.0663C15.1867 17.1882 15.1071 17.2942 15.0024 17.3708C14.8977 17.4475 14.7726 17.4914 14.643 17.497C14.5134 17.5027 14.385 17.4697 14.2741 17.4024L9.99907 14.7727L5.72407 17.4016C5.61315 17.4689 5.48476 17.5019 5.35512 17.4963C5.22549 17.4907 5.10043 17.4467 4.99575 17.3701C4.89107 17.2934 4.81146 17.1874 4.767 17.0655C4.72254 16.9436 4.71521 16.8113 4.74594 16.6852L5.90844 11.7797L2.10375 8.49848C2.00675 8.41331 1.93681 8.30158 1.90257 8.17711C1.86834 8.05264 1.8713 7.92087 1.9111 7.79806C1.9509 7.67526 2.02579 7.56679 2.12653 7.48607C2.22727 7.40534 2.34944 7.35588 2.47797 7.34379L7.47094 6.93754L9.39438 2.28129C9.44341 2.16117 9.52712 2.05837 9.63481 1.98601C9.74251 1.91365 9.86932 1.875 9.99907 1.875C10.1288 1.875 10.2556 1.91365 10.3633 1.98601C10.471 2.05837 10.5547 2.16117 10.6038 2.28129L12.5272 6.93754L17.5202 7.34379C17.6489 7.35574 17.7712 7.40515 17.8721 7.48593C17.973 7.56671 18.0481 7.6753 18.0879 7.79826C18.1277 7.92123 18.1306 8.05317 18.0962 8.17777C18.0618 8.30236 17.9916 8.41414 17.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M41.8944 8.49926L38.0897 11.7805L39.2522 16.686C39.2829 16.812 39.2756 16.9444 39.2311 17.0663C39.1867 17.1882 39.1071 17.2942 39.0024 17.3708C38.8977 17.4475 38.7726 17.4914 38.643 17.497C38.5134 17.5027 38.385 17.4697 38.2741 17.4024L33.9991 14.7727L29.7241 17.4016C29.6131 17.4689 29.4848 17.5019 29.3551 17.4963C29.2255 17.4907 29.1004 17.4467 28.9957 17.3701C28.8911 17.2934 28.8115 17.1874 28.767 17.0655C28.7225 16.9436 28.7152 16.8113 28.7459 16.6852L29.9084 11.7797L26.1038 8.49848C26.0067 8.41331 25.9368 8.30158 25.9026 8.17711C25.8683 8.05264 25.8713 7.92087 25.9111 7.79806C25.9509 7.67526 26.0258 7.56679 26.1265 7.48607C26.2273 7.40534 26.3494 7.35588 26.478 7.34379L31.4709 6.93754L33.3944 2.28129C33.4434 2.16117 33.5271 2.05837 33.6348 1.98601C33.7425 1.91365 33.8693 1.875 33.9991 1.875C34.1288 1.875 34.2556 1.91365 34.3633 1.98601C34.471 2.05837 34.5547 2.16117 34.6038 2.28129L36.5272 6.93754L41.5202 7.34379C41.6489 7.35574 41.7712 7.40515 41.8721 7.48593C41.973 7.56671 42.0481 7.6753 42.0879 7.79826C42.1277 7.92123 42.1306 8.05317 42.0962 8.17777C42.0618 8.30236 41.9916 8.41414 41.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M65.8944 8.49926L62.0897 11.7805L63.2522 16.686C63.2829 16.812 63.2756 16.9444 63.2311 17.0663C63.1867 17.1882 63.1071 17.2942 63.0024 17.3708C62.8977 17.4475 62.7726 17.4914 62.643 17.497C62.5134 17.5027 62.385 17.4697 62.2741 17.4024L57.9991 14.7727L53.7241 17.4016C53.6131 17.4689 53.4848 17.5019 53.3551 17.4963C53.2255 17.4907 53.1004 17.4467 52.9957 17.3701C52.8911 17.2934 52.8115 17.1874 52.767 17.0655C52.7225 16.9436 52.7152 16.8113 52.7459 16.6852L53.9084 11.7797L50.1038 8.49848C50.0067 8.41331 49.9368 8.30158 49.9026 8.17711C49.8683 8.05264 49.8713 7.92087 49.9111 7.79806C49.9509 7.67526 50.0258 7.56679 50.1265 7.48607C50.2273 7.40534 50.3494 7.35588 50.478 7.34379L55.4709 6.93754L57.3944 2.28129C57.4434 2.16117 57.5271 2.05837 57.6348 1.98601C57.7425 1.91365 57.8693 1.875 57.9991 1.875C58.1288 1.875 58.2556 1.91365 58.3633 1.98601C58.471 2.05837 58.5547 2.16117 58.6038 2.28129L60.5272 6.93754L65.5202 7.34379C65.6489 7.35574 65.7712 7.40515 65.8721 7.48593C65.973 7.56671 66.0481 7.6753 66.0879 7.79826C66.1277 7.92123 66.1306 8.05317 66.0962 8.17777C66.0618 8.30236 65.9916 8.41414 65.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M89.8944 8.49926L86.0897 11.7805L87.2522 16.686C87.2829 16.812 87.2756 16.9444 87.2311 17.0663C87.1867 17.1882 87.1071 17.2942 87.0024 17.3708C86.8977 17.4475 86.7726 17.4914 86.643 17.497C86.5134 17.5027 86.385 17.4697 86.2741 17.4024L81.9991 14.7727L77.7241 17.4016C77.6131 17.4689 77.4848 17.5019 77.3551 17.4963C77.2255 17.4907 77.1004 17.4467 76.9957 17.3701C76.8911 17.2934 76.8115 17.1874 76.767 17.0655C76.7225 16.9436 76.7152 16.8113 76.7459 16.6852L77.9084 11.7797L74.1038 8.49848C74.0067 8.41331 73.9368 8.30158 73.9026 8.17711C73.8683 8.05264 73.8713 7.92087 73.9111 7.79806C73.9509 7.67526 74.0258 7.56679 74.1265 7.48607C74.2273 7.40534 74.3494 7.35588 74.478 7.34379L79.4709 6.93754L81.3944 2.28129C81.4434 2.16117 81.5271 2.05837 81.6348 1.98601C81.7425 1.91365 81.8693 1.875 81.9991 1.875C82.1288 1.875 82.2556 1.91365 82.3633 1.98601C82.471 2.05837 82.5547 2.16117 82.6038 2.28129L84.5272 6.93754L89.5202 7.34379C89.6489 7.35574 89.7712 7.40515 89.8721 7.48593C89.973 7.56671 90.0481 7.6753 90.0879 7.79826C90.1277 7.92123 90.1306 8.05317 90.0962 8.17777C90.0618 8.30236 89.9916 8.41414 89.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M113.894 8.49926L110.09 11.7805L111.252 16.686C111.283 16.812 111.276 16.9444 111.231 17.0663C111.187 17.1882 111.107 17.2942 111.002 17.3708C110.898 17.4475 110.773 17.4914 110.643 17.497C110.513 17.5027 110.385 17.4697 110.274 17.4024L105.999 14.7727L101.724 17.4016C101.613 17.4689 101.485 17.5019 101.355 17.4963C101.225 17.4907 101.1 17.4467 100.996 17.3701C100.891 17.2934 100.811 17.1874 100.767 17.0655C100.723 16.9436 100.715 16.8113 100.746 16.6852L101.908 11.7797L98.1038 8.49848C98.0067 8.41331 97.9368 8.30158 97.9026 8.17711C97.8683 8.05264 97.8713 7.92087 97.9111 7.79806C97.9509 7.67526 98.0258 7.56679 98.1265 7.48607C98.2273 7.40534 98.3494 7.35588 98.478 7.34379L103.471 6.93754L105.394 2.28129C105.443 2.16117 105.527 2.05837 105.635 1.98601C105.743 1.91365 105.869 1.875 105.999 1.875C106.129 1.875 106.256 1.91365 106.363 1.98601C106.471 2.05837 106.555 2.16117 106.604 2.28129L108.527 6.93754L113.52 7.34379C113.649 7.35574 113.771 7.40515 113.872 7.48593C113.973 7.56671 114.048 7.6753 114.088 7.79826C114.128 7.92123 114.131 8.05317 114.096 8.17777C114.062 8.30236 113.992 8.41414 113.894 8.49926Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true})]})})})]})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1citgd6\",\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mtyv6i\",\"data-border\":true,\"data-framer-name\":\"Card\",id:elementId8,ref:ref9,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 960px), 320px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}},X84QJldhy:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:\"960px\",src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1944,pixelWidth:2880,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 960px), 640px)`,src:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png\",srcSet:\"https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=512 512w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5so3hgVsbzQzXVFriQ4o0mm9Y14.png 2880w\"},className:\"framer-34ba4h\",\"data-framer-name\":\"Header\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wsmtb0\",\"data-framer-name\":\"about\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kxvojz\",\"data-framer-name\":\"txt\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193rmli\",\"data-framer-name\":\"head-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nvcsup\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"YOUR PROSPECTING POWERHOUSE\"})}),className:\"framer-5vyjfh\",\"data-framer-name\":\"USE CASES\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hmvaa9\",\"data-framer-name\":\"head\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(32, 26, 45)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(230deg, var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, rgb(192, 62, 220)) 0%, var(--token-6ffeb2ae-8b54-4d71-8b5c-598d146a599e, rgb(80, 36, 220)) 100%)\"},children:[\" Trusted & Loved \",/*#__PURE__*/_jsx(\"br\",{}),\"by 10,000+ teams\"]})})}),className:\"framer-14rkh92\",\"data-framer-name\":\"Compare Our Platform Features Against Competitors\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjzsb6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sycwcp\",\"data-framer-name\":\"Ratings\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"20\" viewBox=\"0 0 116 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.8944 8.49926L14.0897 11.7805L15.2522 16.686C15.2829 16.812 15.2756 16.9444 15.2311 17.0663C15.1867 17.1882 15.1071 17.2942 15.0024 17.3708C14.8977 17.4475 14.7726 17.4914 14.643 17.497C14.5134 17.5027 14.385 17.4697 14.2741 17.4024L9.99907 14.7727L5.72407 17.4016C5.61315 17.4689 5.48476 17.5019 5.35512 17.4963C5.22549 17.4907 5.10043 17.4467 4.99575 17.3701C4.89107 17.2934 4.81146 17.1874 4.767 17.0655C4.72254 16.9436 4.71521 16.8113 4.74594 16.6852L5.90844 11.7797L2.10375 8.49848C2.00675 8.41331 1.93681 8.30158 1.90257 8.17711C1.86834 8.05264 1.8713 7.92087 1.9111 7.79806C1.9509 7.67526 2.02579 7.56679 2.12653 7.48607C2.22727 7.40534 2.34944 7.35588 2.47797 7.34379L7.47094 6.93754L9.39438 2.28129C9.44341 2.16117 9.52712 2.05837 9.63481 1.98601C9.74251 1.91365 9.86932 1.875 9.99907 1.875C10.1288 1.875 10.2556 1.91365 10.3633 1.98601C10.471 2.05837 10.5547 2.16117 10.6038 2.28129L12.5272 6.93754L17.5202 7.34379C17.6489 7.35574 17.7712 7.40515 17.8721 7.48593C17.973 7.56671 18.0481 7.6753 18.0879 7.79826C18.1277 7.92123 18.1306 8.05317 18.0962 8.17777C18.0618 8.30236 17.9916 8.41414 17.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M41.8944 8.49926L38.0897 11.7805L39.2522 16.686C39.2829 16.812 39.2756 16.9444 39.2311 17.0663C39.1867 17.1882 39.1071 17.2942 39.0024 17.3708C38.8977 17.4475 38.7726 17.4914 38.643 17.497C38.5134 17.5027 38.385 17.4697 38.2741 17.4024L33.9991 14.7727L29.7241 17.4016C29.6131 17.4689 29.4848 17.5019 29.3551 17.4963C29.2255 17.4907 29.1004 17.4467 28.9957 17.3701C28.8911 17.2934 28.8115 17.1874 28.767 17.0655C28.7225 16.9436 28.7152 16.8113 28.7459 16.6852L29.9084 11.7797L26.1038 8.49848C26.0067 8.41331 25.9368 8.30158 25.9026 8.17711C25.8683 8.05264 25.8713 7.92087 25.9111 7.79806C25.9509 7.67526 26.0258 7.56679 26.1265 7.48607C26.2273 7.40534 26.3494 7.35588 26.478 7.34379L31.4709 6.93754L33.3944 2.28129C33.4434 2.16117 33.5271 2.05837 33.6348 1.98601C33.7425 1.91365 33.8693 1.875 33.9991 1.875C34.1288 1.875 34.2556 1.91365 34.3633 1.98601C34.471 2.05837 34.5547 2.16117 34.6038 2.28129L36.5272 6.93754L41.5202 7.34379C41.6489 7.35574 41.7712 7.40515 41.8721 7.48593C41.973 7.56671 42.0481 7.6753 42.0879 7.79826C42.1277 7.92123 42.1306 8.05317 42.0962 8.17777C42.0618 8.30236 41.9916 8.41414 41.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M65.8944 8.49926L62.0897 11.7805L63.2522 16.686C63.2829 16.812 63.2756 16.9444 63.2311 17.0663C63.1867 17.1882 63.1071 17.2942 63.0024 17.3708C62.8977 17.4475 62.7726 17.4914 62.643 17.497C62.5134 17.5027 62.385 17.4697 62.2741 17.4024L57.9991 14.7727L53.7241 17.4016C53.6131 17.4689 53.4848 17.5019 53.3551 17.4963C53.2255 17.4907 53.1004 17.4467 52.9957 17.3701C52.8911 17.2934 52.8115 17.1874 52.767 17.0655C52.7225 16.9436 52.7152 16.8113 52.7459 16.6852L53.9084 11.7797L50.1038 8.49848C50.0067 8.41331 49.9368 8.30158 49.9026 8.17711C49.8683 8.05264 49.8713 7.92087 49.9111 7.79806C49.9509 7.67526 50.0258 7.56679 50.1265 7.48607C50.2273 7.40534 50.3494 7.35588 50.478 7.34379L55.4709 6.93754L57.3944 2.28129C57.4434 2.16117 57.5271 2.05837 57.6348 1.98601C57.7425 1.91365 57.8693 1.875 57.9991 1.875C58.1288 1.875 58.2556 1.91365 58.3633 1.98601C58.471 2.05837 58.5547 2.16117 58.6038 2.28129L60.5272 6.93754L65.5202 7.34379C65.6489 7.35574 65.7712 7.40515 65.8721 7.48593C65.973 7.56671 66.0481 7.6753 66.0879 7.79826C66.1277 7.92123 66.1306 8.05317 66.0962 8.17777C66.0618 8.30236 65.9916 8.41414 65.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M89.8944 8.49926L86.0897 11.7805L87.2522 16.686C87.2829 16.812 87.2756 16.9444 87.2311 17.0663C87.1867 17.1882 87.1071 17.2942 87.0024 17.3708C86.8977 17.4475 86.7726 17.4914 86.643 17.497C86.5134 17.5027 86.385 17.4697 86.2741 17.4024L81.9991 14.7727L77.7241 17.4016C77.6131 17.4689 77.4848 17.5019 77.3551 17.4963C77.2255 17.4907 77.1004 17.4467 76.9957 17.3701C76.8911 17.2934 76.8115 17.1874 76.767 17.0655C76.7225 16.9436 76.7152 16.8113 76.7459 16.6852L77.9084 11.7797L74.1038 8.49848C74.0067 8.41331 73.9368 8.30158 73.9026 8.17711C73.8683 8.05264 73.8713 7.92087 73.9111 7.79806C73.9509 7.67526 74.0258 7.56679 74.1265 7.48607C74.2273 7.40534 74.3494 7.35588 74.478 7.34379L79.4709 6.93754L81.3944 2.28129C81.4434 2.16117 81.5271 2.05837 81.6348 1.98601C81.7425 1.91365 81.8693 1.875 81.9991 1.875C82.1288 1.875 82.2556 1.91365 82.3633 1.98601C82.471 2.05837 82.5547 2.16117 82.6038 2.28129L84.5272 6.93754L89.5202 7.34379C89.6489 7.35574 89.7712 7.40515 89.8721 7.48593C89.973 7.56671 90.0481 7.6753 90.0879 7.79826C90.1277 7.92123 90.1306 8.05317 90.0962 8.17777C90.0618 8.30236 89.9916 8.41414 89.8944 8.49926Z\" fill=\"#FF492C\"/>\\n<path d=\"M113.894 8.49926L110.09 11.7805L111.252 16.686C111.283 16.812 111.276 16.9444 111.231 17.0663C111.187 17.1882 111.107 17.2942 111.002 17.3708C110.898 17.4475 110.773 17.4914 110.643 17.497C110.513 17.5027 110.385 17.4697 110.274 17.4024L105.999 14.7727L101.724 17.4016C101.613 17.4689 101.485 17.5019 101.355 17.4963C101.225 17.4907 101.1 17.4467 100.996 17.3701C100.891 17.2934 100.811 17.1874 100.767 17.0655C100.723 16.9436 100.715 16.8113 100.746 16.6852L101.908 11.7797L98.1038 8.49848C98.0067 8.41331 97.9368 8.30158 97.9026 8.17711C97.8683 8.05264 97.8713 7.92087 97.9111 7.79806C97.9509 7.67526 98.0258 7.56679 98.1265 7.48607C98.2273 7.40534 98.3494 7.35588 98.478 7.34379L103.471 6.93754L105.394 2.28129C105.443 2.16117 105.527 2.05837 105.635 1.98601C105.743 1.91365 105.869 1.875 105.999 1.875C106.129 1.875 106.256 1.91365 106.363 1.98601C106.471 2.05837 106.555 2.16117 106.604 2.28129L108.527 6.93754L113.52 7.34379C113.649 7.35574 113.771 7.40515 113.872 7.48593C113.973 7.56671 114.048 7.6753 114.088 7.79826C114.128 7.92123 114.131 8.05317 114.096 8.17777C114.062 8.30236 113.992 8.41414 113.894 8.49926Z\" fill=\"#FF492C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"4.8\"}),\" out of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\"},children:\"5\"}),\" stars\"]})}),className:\"framer-36cj8n\",\"data-framer-name\":\"G2 Reviewer\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l674l6-container\",nodeId:\"cSMwa0qeU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PrimaryButtons,{FYMxOO38R:\"Archive\",height:\"100%\",id:\"cSMwa0qeU\",layoutId:\"cSMwa0qeU\",lCmOGmLbQ:true,nvSiwTZaw:\"https://www.g2.com/products/persana-ai/reviews\",UwWl5jDXK:\"See our G2 reviews\",variant:\"usWSO2ift\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dimymv\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17m9y3y\",\"data-framer-name\":\"users-love-us\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 107.155 120\"><g transform=\"translate(9 10)\"><path d=\"M 0 100.789 L 0 0 L 90 0 L 90 100.789 Z\" fill=\"transparent\"></path><path d=\"M 7.772 78.487 L 45.672 97.772 L 82.132 78.487 L 82.132 3.071 L 7.772 3.071 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 82.9 3.358 L 7.004 79.829 L 46.343 99.307 L 82.9 80.597 Z\" fill=\"rgb(242,243,242)\"></path><path d=\"M 5.277 28.209 L 5.277 80.117 L 6.62 80.788 L 44.52 100.074 L 45.672 100.65 L 46.823 100.074 L 83.379 80.788 L 84.723 80.117 L 84.723 0.575 L 5.277 0.575 Z M 7.772 78.678 L 7.772 3.07 L 82.228 3.07 L 82.228 78.678 L 45.672 97.963 Z\" fill=\"rgb(220,222,220)\"></path><path d=\"M 45 4.317 C 45.384 4.317 45.768 4.317 46.152 4.413 L 45 6.62 C 43.273 6.524 41.738 7.867 41.642 9.595 C 41.546 11.322 42.889 12.857 44.616 12.953 L 45 12.953 C 45.768 12.953 46.535 12.665 47.111 12.185 L 48.358 14.296 C 47.399 14.968 46.248 15.351 45 15.351 C 41.93 15.447 39.339 13.145 39.243 10.074 C 39.147 7.004 41.45 4.413 44.52 4.317 Z M 48.934 9.019 L 50.373 11.418 L 48.934 13.72 L 47.591 11.418 L 44.808 11.418 L 46.248 9.019 Z M 46.631 8.155 C 46.631 7.771 46.727 7.388 46.919 7.1 C 47.111 6.812 47.495 6.524 47.783 6.332 L 47.975 6.236 C 48.358 6.044 48.454 5.948 48.454 5.757 C 48.454 5.565 48.166 5.373 47.975 5.373 C 47.591 5.373 47.303 5.565 47.111 5.948 L 46.631 5.469 C 46.727 5.277 46.919 5.085 47.111 4.893 C 47.399 4.701 47.687 4.701 47.975 4.701 C 48.262 4.701 48.646 4.797 48.838 4.989 C 49.03 5.181 49.222 5.469 49.222 5.757 C 49.222 6.236 48.934 6.62 48.358 6.812 L 48.071 7.004 C 47.783 7.196 47.591 7.292 47.495 7.58 L 49.222 7.58 L 49.222 8.251 Z M 45 20.149 L 54.115 14.968 L 54.115 0.575 L 35.789 0.575 L 35.789 14.872 Z\" fill=\"rgb(255,73,44)\"></path><path d=\"M 22.356 39.339 L 22.356 30.895 C 22.356 30.799 22.452 30.704 22.548 30.704 L 24.755 30.704 C 24.851 30.704 24.947 30.799 24.947 30.895 L 24.947 39.339 C 24.947 40.586 25.81 41.546 27.153 41.546 C 28.497 41.546 29.36 40.682 29.36 39.339 L 29.36 30.895 C 29.36 30.799 29.456 30.704 29.552 30.704 L 31.759 30.704 C 31.855 30.704 31.951 30.799 31.951 30.895 L 31.951 39.339 C 31.951 42.025 30.032 43.752 27.153 43.752 C 24.275 43.752 22.356 41.929 22.356 39.339 Z M 33.582 40.97 L 33.582 40.778 C 33.582 40.682 33.678 40.586 33.774 40.586 L 35.789 40.586 C 35.885 40.586 35.981 40.682 35.981 40.778 C 35.981 41.354 36.652 41.738 37.612 41.738 C 38.475 41.738 39.051 41.354 39.051 40.874 C 39.051 40.106 37.612 40.106 36.269 39.627 C 35.021 39.243 33.678 38.571 33.678 36.94 C 33.678 35.117 35.213 33.966 37.612 33.966 C 40.011 33.966 41.546 35.213 41.546 36.94 C 41.546 37.036 41.45 37.132 41.354 37.132 L 39.339 37.132 C 39.243 37.132 39.147 37.036 39.147 36.94 C 39.147 36.365 38.571 35.981 37.612 35.981 C 36.844 35.981 36.269 36.269 36.269 36.844 C 36.269 37.612 37.516 37.612 38.955 38.092 C 40.394 38.475 41.834 39.147 41.834 40.874 C 41.834 42.697 40.202 43.752 37.804 43.752 C 35.213 43.752 33.582 42.601 33.582 40.97 Z M 51.716 39.435 C 51.716 39.627 51.621 39.627 51.429 39.627 L 45.672 39.627 C 45.576 39.627 45.576 39.627 45.576 39.723 C 45.576 40.011 45.672 40.202 45.768 40.49 C 46.055 41.162 46.631 41.546 47.687 41.546 C 48.55 41.546 49.126 41.162 49.606 40.586 C 49.702 40.49 49.798 40.394 49.894 40.586 L 51.237 41.929 C 51.333 42.025 51.333 42.121 51.237 42.217 C 50.373 43.273 49.03 43.848 47.495 43.848 C 45.384 43.848 43.944 42.793 43.273 41.066 C 42.985 40.394 42.889 39.723 42.889 38.763 C 42.889 38.092 42.985 37.42 43.177 36.844 C 43.753 35.117 45.192 33.966 47.207 33.966 C 49.702 33.966 51.237 35.597 51.525 37.9 C 51.716 38.379 51.716 38.859 51.716 39.435 Z M 45.768 37.228 C 45.672 37.42 45.672 37.612 45.672 37.804 C 45.672 37.9 45.672 37.9 45.768 37.9 L 48.934 37.9 C 49.03 37.9 49.03 37.9 49.03 37.804 C 49.03 37.612 48.934 37.42 48.934 37.324 C 48.742 36.556 48.166 36.173 47.303 36.173 C 46.535 36.173 46.055 36.556 45.768 37.228 Z M 59.2 34.254 C 59.296 34.35 59.296 34.446 59.296 34.542 L 58.913 36.652 C 58.913 36.844 58.817 36.844 58.625 36.748 C 58.337 36.652 57.953 36.652 57.569 36.652 C 56.706 36.748 55.938 37.324 55.938 38.284 L 55.938 43.369 C 55.938 43.465 55.842 43.561 55.746 43.561 L 53.539 43.561 C 53.444 43.561 53.348 43.465 53.348 43.369 L 53.348 34.35 C 53.348 34.254 53.444 34.158 53.539 34.158 L 55.746 34.158 C 55.842 34.158 55.938 34.254 55.938 34.35 L 55.938 35.021 C 55.938 35.117 56.034 35.117 56.034 35.117 C 56.514 34.446 57.185 33.966 58.049 33.966 C 58.625 33.966 58.913 34.062 59.2 34.254 Z M 59.968 40.97 L 59.968 40.778 C 59.968 40.682 60.064 40.586 60.16 40.586 L 62.175 40.586 C 62.271 40.586 62.367 40.682 62.367 40.778 C 62.367 41.354 63.038 41.738 63.998 41.738 C 64.861 41.738 65.437 41.354 65.437 40.874 C 65.437 40.106 63.998 40.106 62.654 39.627 C 61.407 39.243 60.064 38.571 60.064 36.94 C 60.064 35.117 61.599 33.966 63.998 33.966 C 66.396 33.966 67.932 35.213 67.932 36.94 C 67.932 37.036 67.836 37.132 67.74 37.132 L 65.725 37.132 C 65.629 37.132 65.533 37.036 65.533 36.94 C 65.533 36.365 64.957 35.981 63.998 35.981 C 63.23 35.981 62.654 36.269 62.654 36.844 C 62.654 37.612 63.902 37.612 65.341 38.092 C 66.78 38.475 68.22 39.147 68.22 40.874 C 68.22 42.697 66.588 43.752 64.19 43.752 C 61.599 43.752 59.968 42.601 59.968 40.97 Z M 14.009 58.913 L 14.009 46.439 C 14.009 46.343 14.104 46.247 14.2 46.247 L 16.407 46.247 C 16.503 46.247 16.599 46.343 16.599 46.439 L 16.599 56.802 C 16.599 56.898 16.599 56.898 16.695 56.898 L 22.74 56.898 C 22.836 56.898 22.932 56.994 22.932 57.09 L 22.932 58.913 C 22.932 59.008 22.836 59.104 22.74 59.104 L 14.2 59.104 C 14.104 59.104 14.009 59.008 14.009 58.913 Z M 24.467 56.226 C 24.275 55.65 24.179 54.979 24.179 54.307 C 24.179 53.635 24.275 52.868 24.467 52.388 C 25.043 50.565 26.578 49.509 28.689 49.509 C 30.704 49.509 32.239 50.661 32.815 52.388 C 33.006 52.964 33.102 53.635 33.102 54.307 C 33.102 54.979 33.006 55.65 32.815 56.13 C 32.239 58.049 30.704 59.2 28.689 59.2 C 26.578 59.296 24.947 58.145 24.467 56.226 Z M 30.32 55.65 C 30.416 55.267 30.512 54.787 30.512 54.403 C 30.512 53.923 30.416 53.443 30.32 53.06 C 30.032 52.196 29.456 51.716 28.689 51.716 C 27.825 51.716 27.249 52.196 27.058 53.06 C 26.866 53.347 26.866 53.827 26.866 54.403 C 26.866 54.883 26.866 55.362 26.962 55.65 C 27.249 56.514 27.825 56.994 28.689 56.994 C 29.456 57.09 30.032 56.514 30.32 55.65 Z M 36.652 58.913 L 33.678 49.797 C 33.582 49.605 33.678 49.509 33.87 49.509 L 36.269 49.509 C 36.365 49.509 36.461 49.605 36.556 49.701 L 38.092 55.267 C 38.092 55.362 38.188 55.362 38.188 55.267 L 39.723 49.701 C 39.723 49.605 39.819 49.509 40.011 49.509 L 42.409 49.509 C 42.601 49.509 42.697 49.605 42.601 49.797 L 39.627 58.817 C 39.627 58.913 39.531 59.008 39.339 59.008 L 36.94 59.008 C 36.748 59.104 36.652 59.104 36.652 58.913 Z M 51.812 54.979 C 51.812 55.171 51.716 55.171 51.525 55.171 L 45.768 55.171 C 45.672 55.171 45.672 55.171 45.672 55.267 C 45.672 55.554 45.768 55.746 45.863 56.034 C 46.151 56.706 46.727 57.09 47.783 57.09 C 48.646 57.09 49.222 56.706 49.702 56.13 C 49.798 56.034 49.894 55.938 49.989 56.13 L 51.333 57.473 C 51.429 57.569 51.429 57.665 51.333 57.761 C 50.469 58.817 49.126 59.392 47.591 59.392 C 45.48 59.392 44.04 58.337 43.369 56.61 C 43.081 55.938 42.985 55.267 42.985 54.307 C 42.985 53.635 43.081 52.964 43.273 52.388 C 43.848 50.661 45.288 49.509 47.303 49.509 C 49.798 49.509 51.333 51.141 51.621 53.443 C 51.812 53.923 51.812 54.403 51.812 54.979 Z M 45.863 52.772 C 45.768 52.964 45.768 53.156 45.768 53.347 C 45.768 53.443 45.768 53.443 45.863 53.443 L 49.03 53.443 C 49.126 53.443 49.126 53.443 49.126 53.347 C 49.126 53.156 49.03 52.964 49.03 52.868 C 48.838 52.1 48.262 51.716 47.399 51.716 C 46.535 51.716 46.055 52.1 45.863 52.772 Z M 57.185 54.883 L 57.185 46.439 C 57.185 46.343 57.281 46.247 57.377 46.247 L 59.584 46.247 C 59.68 46.247 59.776 46.343 59.776 46.439 L 59.776 54.883 C 59.776 56.13 60.64 57.09 61.983 57.09 C 63.326 57.09 64.19 56.226 64.19 54.883 L 64.19 46.439 C 64.19 46.343 64.286 46.247 64.382 46.247 L 66.588 46.247 C 66.684 46.247 66.78 46.343 66.78 46.439 L 66.78 54.883 C 66.78 57.569 64.861 59.296 61.983 59.296 C 59.104 59.296 57.185 57.473 57.185 54.883 Z M 68.411 56.514 L 68.411 56.322 C 68.411 56.226 68.507 56.13 68.603 56.13 L 70.618 56.13 C 70.714 56.13 70.81 56.226 70.81 56.322 C 70.81 56.898 71.482 57.281 72.441 57.281 C 73.305 57.281 73.881 56.898 73.881 56.418 C 73.881 55.65 72.441 55.65 71.098 55.171 C 69.851 54.787 68.507 54.115 68.507 52.484 C 68.507 50.661 70.043 49.509 72.441 49.509 C 74.84 49.509 76.375 50.757 76.375 52.484 C 76.375 52.58 76.279 52.676 76.183 52.676 L 74.169 52.676 C 74.073 52.676 73.977 52.58 73.977 52.484 C 73.977 51.908 73.401 51.524 72.441 51.524 C 71.674 51.524 71.098 51.812 71.098 52.388 C 71.098 53.156 72.346 53.156 73.785 53.635 C 75.224 54.019 76.663 54.691 76.663 56.418 C 76.663 58.241 75.032 59.296 72.633 59.296 C 70.043 59.296 68.411 58.145 68.411 56.514 Z\" fill=\"rgb(37,37,48)\"></path><path d=\"M 18.518 70.138 L 37.708 70.138 L 37.708 70.906 L 18.518 70.906 Z M 52.868 70.138 L 72.058 70.138 L 72.058 70.906 L 52.868 70.906 Z\" fill=\"rgb(220,222,220)\"></path><path d=\"M 40.682 69.274 L 43.657 68.795 L 45.192 65.82 L 46.631 68.699 L 49.798 69.274 L 47.591 71.481 L 48.071 74.648 L 45.192 73.304 L 42.313 74.648 L 42.697 71.481 Z\" fill=\"rgb(220,222,220)\"></path></g></svg>',svgContentId:12133404477,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jdqzrf\",\"data-framer-name\":\"LeadIntelligence EasiestAdmin_EaseOfAdmin\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:94,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 94 122\"><path fill=\"#fff\" d=\"M8.1 89.9 47.6 110l38-20.1V11.3H8.1z\"/><path fill=\"#f2f3f2\" d=\"M86.4 11.6 7.3 91.3l41 20.3 38.1-19.5z\"/><path fill=\"#dcdedc\" d=\"M5.5 37.5v54.1l1.4.7 39.5 20.1 1.2.6 1.2-.6 38.1-20.1 1.4-.7V8.7H5.5v28.8zm2.6 52.6V11.3h77.6v78.8l-38.1 20.1L8.1 90.1z\"/><path fill=\"#ff492c\" d=\"M46.9 12.6c.4 0 .8 0 1.2.1L46.9 15c-1.8-.1-3.4 1.3-3.5 3.1-.1 1.8 1.3 3.4 3.1 3.5h.4c.8 0 1.6-.3 2.2-.8l1.3 2.2c-1 .7-2.2 1.1-3.5 1.1-3.2.1-5.9-2.3-6-5.5-.1-3.2 2.3-5.9 5.5-6h.5zm4.1 4.9 1.5 2.5-1.5 2.4-1.4-2.4h-2.9l1.5-2.5H51zm-2.4-.9c0-.4.1-.8.3-1.1.2-.3.6-.6.9-.8l.2-.1c.4-.2.5-.3.5-.5s-.3-.4-.5-.4c-.4 0-.7.2-.9.6l-.5-.5c.1-.2.3-.4.5-.6.3-.2.6-.2.9-.2.3 0 .7.1.9.3.2.2.4.5.4.8 0 .5-.3.9-.9 1.1l-.3.2c-.3.2-.5.3-.6.6h1.8v.7l-2.7-.1zm-1.7 12.5 9.5-5.4v-15H37.3v14.9l9.6 5.5z\"/><path fill=\"#ffd200\" d=\"M90.2 64.5H3.6l-3.2 7 3.2 7h86.6l3.1-7z\"/><path fill=\"#252530\" d=\"M33.12 60q-.15 0-.2-.15l-.45-1.47q-.02-.06-.07-.06h-3.69q-.05 0-.08.06l-.43 1.47q-.04.15-.19.15H26.1q-.09 0-.14-.05-.04-.05-.01-.16l3.24-10.14q.05-.15.19-.15h2.36q.15 0 .19.15l3.24 10.14q.02.03.02.07 0 .14-.17.14h-1.9Zm-3.94-3.4q-.02.09.06.09h2.63q.09 0 .06-.09l-1.35-4.46q-.01-.06-.04-.05-.03.01-.05.05l-1.31 4.46Zm11.72-6.92q0-.07.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v10.14q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.06-.05-.06-.13v-.49q0-.05-.03-.06-.03 0-.06.03-.63.82-1.72.82-1.05 0-1.81-.58-.76-.59-1.09-1.61-.25-.78-.25-1.81 0-1.07.27-1.87.34-.96 1.09-1.52.74-.56 1.83-.56 1.08 0 1.68.75.03.04.06.03.03-.01.03-.06v-3.21Zm-.31 7.98q.3-.56.3-1.51 0-1.01-.33-1.58-.35-.58-1.01-.58-.7 0-1.06.58-.38.59-.38 1.59 0 .9.32 1.5.37.65 1.11.65.67 0 1.05-.65Zm12.57-5.49q1.17 0 1.83.7.66.71.66 1.99v4.96q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.06-.05-.06-.13v-4.5q0-.61-.31-.97-.32-.36-.84-.36-.53 0-.86.36-.33.36-.33.96v4.51q0 .08-.05.13t-.13.05h-1.74q-.07 0-.12-.05-.06-.05-.06-.13v-4.5q0-.6-.33-.97-.33-.36-.85-.36-.48 0-.8.28-.33.29-.39.8v4.75q0 .08-.05.13t-.13.05h-1.75q-.08 0-.13-.05t-.05-.13v-7.35q0-.07.05-.13.05-.05.13-.05h1.75q.08 0 .13.05.05.06.05.13v.59q0 .04.03.06.03.01.06-.04.62-.91 1.91-.91.75 0 1.31.32.56.31.86.9.05.09.11 0 .33-.62.89-.92.56-.3 1.27-.3Zm5.11-.75q-.51 0-.84-.34-.34-.33-.34-.84 0-.53.33-.86.33-.33.85-.33.53 0 .86.33.33.33.33.86 0 .51-.34.84-.34.34-.85.34Zm-.9 8.58q-.07 0-.12-.05-.06-.05-.06-.13v-7.36q0-.08.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.05.05.13v7.36q0 .08-.05.13-.06.05-.13.05h-1.76Zm7.61-7.83q1.2 0 1.93.74.74.73.74 1.99v4.92q0 .08-.05.13t-.13.05h-1.75q-.08 0-.13-.05-.06-.05-.06-.13v-4.49q0-.59-.33-.97-.34-.37-.9-.37-.55 0-.89.37-.33.38-.33.97v4.49q0 .08-.06.13-.05.05-.13.05h-1.75q-.08 0-.13-.05t-.05-.13v-7.35q0-.07.05-.13.05-.05.13-.05h1.75q.08 0 .13.05.06.06.06.13V53q0 .04.02.06.03.01.05-.02.61-.87 1.83-.87ZM29.87 36.13q0 .08-.06.13-.05.05-.12.05h-4.93q-.07 0-.07.08v2.32q0 .08.07.08h3.23q.07 0 .13.05.05.06.05.13v1.45q0 .08-.05.13-.06.06-.13.06h-3.23q-.07 0-.07.07v2.43q0 .08.07.08h4.93q.07 0 .12.05.06.05.06.12v1.46q0 .08-.06.13-.05.05-.12.05h-6.94q-.07 0-.12-.05-.06-.05-.06-.13V34.68q0-.07.06-.13.05-.05.12-.05h6.94q.07 0 .12.05.06.06.06.13v1.45Zm4.41 1.04q.97 0 1.74.34.76.34 1.19.92.42.59.42 1.31v5.08q0 .08-.05.13t-.13.05H35.7q-.08 0-.13-.05t-.05-.13v-.49q0-.05-.03-.06-.03-.02-.06.03-.63.82-2.03.82-1.17 0-1.88-.57-.73-.57-.73-1.68 0-1.15.82-1.79.8-.64 2.3-.64h1.54q.07 0 .07-.07v-.33q0-.5-.3-.78-.3-.27-.9-.27-.46 0-.77.16-.31.17-.4.47-.04.16-.2.15l-1.81-.24q-.18-.03-.17-.14.07-.63.51-1.14.44-.51 1.17-.79.72-.29 1.63-.29Zm-.31 6.38q.65 0 1.1-.35.45-.35.45-.89v-.54q0-.07-.07-.07h-1.08q-.68 0-1.06.26-.38.25-.38.72 0 .4.28.63.28.24.76.24Zm8.23 1.55q-1.01 0-1.76-.28t-1.16-.79q-.42-.51-.42-1.16v-.15q0-.07.06-.13.05-.05.12-.05h1.67q.08 0 .13.05.05.06.05.13v.01q0 .34.37.57.36.23.92.23.51 0 .82-.2.32-.21.32-.5 0-.27-.27-.41-.27-.13-.89-.28-.7-.18-1.11-.35-.96-.33-1.53-.81-.57-.48-.57-1.38 0-1.11.87-1.76.86-.65 2.29-.65.96 0 1.68.3.71.31 1.11.87.4.55.4 1.26 0 .07-.05.12-.05.05-.13.05h-1.6q-.08 0-.13-.05t-.05-.12q0-.33-.34-.56-.34-.23-.89-.23-.5 0-.82.19-.31.18-.31.49 0 .3.31.45.3.15 1.03.32.16.04.37.09.21.05.45.13 1.07.32 1.68.81.61.5.61 1.44 0 1.11-.87 1.73-.88.62-2.36.62Zm5.59-8.68q-.51 0-.85-.34-.33-.33-.33-.84 0-.53.33-.86.33-.33.85-.33.53 0 .85.33.34.33.34.86 0 .51-.34.84-.34.34-.85.34Zm-.9 8.58q-.07 0-.13-.05-.05-.05-.05-.13v-7.36q0-.08.05-.13.06-.05.13-.05h1.75q.08 0 .13.05t.05.13v7.36q0 .08-.05.13t-.13.05h-1.75Zm10.41-4.65q.09.57.06 1.27-.01.19-.19.19h-4.64q-.09 0-.06.07.05.3.17.6.39.84 1.58.84.96-.01 1.52-.78.06-.09.14-.09.04 0 .1.06l1.08 1.06q.08.08.08.14 0 .03-.07.12-.49.62-1.27.95-.78.34-1.71.34-1.29 0-2.18-.58-.89-.59-1.29-1.64-.31-.75-.31-1.96 0-.83.23-1.46.34-1.06 1.2-1.69.87-.63 2.05-.63 1.5 0 2.41.87.91.87 1.1 2.32Zm-3.5-1.36q-.94 0-1.24.88-.06.2-.1.48 0 .07.07.07h2.6q.08 0 .05-.07-.07-.43-.07-.42-.14-.45-.47-.7-.34-.24-.84-.24Zm7.84 6.11q-1.01 0-1.76-.28t-1.16-.79q-.41-.51-.41-1.16v-.15q0-.07.05-.13.05-.05.13-.05h1.66q.08 0 .13.05.05.06.05.13v.01q0 .34.37.57.37.23.92.23.51 0 .83-.2.31-.21.31-.5 0-.27-.27-.41-.27-.13-.88-.28-.71-.18-1.11-.35-.96-.33-1.53-.81-.57-.48-.57-1.38 0-1.11.86-1.76.86-.65 2.29-.65.96 0 1.68.3.72.31 1.11.87.4.55.4 1.26 0 .07-.05.12-.05.05-.13.05h-1.6q-.08 0-.13-.05t-.05-.12q0-.33-.34-.56-.34-.23-.89-.23-.5 0-.81.19-.32.18-.32.49 0 .3.31.45.31.15 1.03.32.16.04.37.09.21.05.45.13 1.07.32 1.68.81.62.5.62 1.44 0 1.11-.88 1.73-.88.62-2.36.62Zm8.86-6.29q0 .07-.05.12-.05.06-.13.06h-1.44q-.07 0-.07.07v3.18q0 .49.2.74.2.24.65.24h.5q.07 0 .12.05.06.05.06.13v1.42q0 .17-.18.19-.63.03-.9.03-1.25 0-1.86-.41-.62-.41-.63-1.55v-4.02q0-.07-.08-.07h-.85q-.08 0-.13-.06-.05-.05-.05-.12v-1.34q0-.07.05-.13.05-.05.13-.05h.85q.08 0 .08-.08v-1.78q0-.07.05-.13.05-.05.13-.05h1.68q.07 0 .12.05.06.06.06.13v1.78q0 .08.07.08h1.44q.08 0 .13.05.05.06.05.13v1.34Z\"/><path fill=\"#242530\" d=\"M31.2 75.4q-.11 0-.14-.1l-1.82-6.77-.01-.04q0-.09.11-.09h.98q.11 0 .14.1l1.14 4.56q.01.03.03.03.02 0 .03-.03l1.09-4.56q.03-.1.13-.1h.96q.11 0 .14.1l1.16 4.57q.01.03.03.03.02 0 .03-.03l1.12-4.57q.03-.1.14-.1h.93q.14 0 .11.13l-1.73 6.77q-.03.1-.14.1h-.93q-.11 0-.14-.1l-1.17-4.77q-.01-.03-.03-.04-.02 0-.03.04l-1.12 4.77q-.03.1-.13.1h-.88Zm7.41 0q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h.92q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04h-.92Zm6.57-6.88q0-.05.03-.08.04-.04.09-.04h.92q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04h-.89q-.1 0-.14-.08l-2.88-4.72q-.02-.03-.04-.03-.02.01-.02.05l.02 4.66q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h.89q.1 0 .14.08l2.87 4.72q.02.03.04.02.02 0 .02-.04l-.01-4.66Zm7.22-.12q.05 0 .08.04.04.03.04.08v.77q0 .05-.04.08-.03.04-.08.04h-1.84q-.05 0-.05.05v5.82q0 .05-.03.08-.04.04-.09.04h-.92q-.05 0-.08-.04-.04-.03-.04-.08v-5.82q0-.05-.05-.05h-1.77q-.05 0-.09-.04-.03-.03-.03-.08v-.77q0-.05.03-.08.04-.04.09-.04h4.87Zm5.93.88q0 .05-.04.08-.03.04-.08.04H54.8q-.05 0-.05.05v1.87q0 .05.05.05h2.29q.05 0 .09.03.03.04.03.09v.76q0 .05-.03.09-.04.03-.09.03H54.8q-.05 0-.05.05v1.93q0 .05.05.05h3.41q.05 0 .08.04.04.03.04.08v.76q0 .05-.04.08-.03.04-.08.04h-4.5q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h4.5q.05 0 .08.04.04.03.04.08v.76Zm5.11 6.12q-.1 0-.14-.09l-1.32-2.88q-.02-.04-.06-.04h-1.2q-.05 0-.05.05v2.84q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h2.75q.61 0 1.08.25.47.26.73.72.26.47.26 1.07 0 .69-.36 1.17-.35.49-.98.68-.02 0-.03.02-.01.02 0 .04l1.41 2.91q.02.04.02.06 0 .08-.11.08h-.96Zm-2.72-6q-.05 0-.05.05v1.99q0 .05.05.05h1.5q.48 0 .78-.29.29-.28.29-.75t-.29-.76q-.3-.29-.78-.29h-1.5Z\"/><path fill=\"#252530\" d=\"M33.86 93.46q-.03.03-.02.06.02.03.06.03h3.93q.07 0 .12.05.06.05.06.12v1.41q0 .07-.06.12-.05.05-.12.05h-6.52q-.08 0-.13-.05t-.05-.12v-1.34q0-.13.09-.22.71-.69 1.45-1.51.74-.82.93-1.02.4-.48.82-.92 1.32-1.46 1.32-2.17 0-.51-.36-.84-.36-.32-.94-.32t-.94.32q-.37.33-.37.87v.36q0 .07-.05.12-.05.05-.12.05h-1.71q-.07 0-.12-.05-.06-.05-.06-.12v-.68q.05-.78.5-1.39.45-.6 1.19-.92.75-.32 1.68-.32 1.03 0 1.79.39.76.38 1.17 1.03.42.66.42 1.45 0 .61-.31 1.25-.3.64-.91 1.38-.45.56-.97 1.12-.52.55-1.55 1.59l-.22.22Zm8.86 2q-1.6 0-2.52-.89-.93-.89-.93-2.43v-3.83q0-1.51.93-2.39.92-.89 2.52-.89 1.59 0 2.53.89.93.88.93 2.39v3.83q0 1.54-.93 2.43-.94.89-2.53.89Zm0-1.75q.65 0 1.03-.4.39-.4.39-1.07v-3.99q0-.66-.39-1.06-.38-.4-1.03-.4-.64 0-1.02.4-.39.4-.39 1.06v3.99q0 .67.39 1.07.38.4 1.02.4Zm7.52-.25q-.03.03-.01.06.01.03.06.03h3.93q.07 0 .12.05.05.05.05.12v1.41q0 .07-.05.12-.05.05-.12.05h-6.53q-.07 0-.12-.05-.05-.05-.05-.12v-1.34q0-.13.08-.22.72-.69 1.45-1.51.74-.82.93-1.02.41-.48.83-.92 1.32-1.46 1.32-2.17 0-.51-.36-.84-.37-.32-.95-.32t-.94.32q-.36.33-.36.87v.36q0 .07-.05.12-.05.05-.13.05h-1.71q-.07 0-.12-.05-.05-.05-.05-.12v-.68q.04-.78.49-1.39.45-.6 1.2-.92.75-.32 1.67-.32 1.03 0 1.79.39.77.38 1.18 1.03.41.66.41 1.45 0 .61-.3 1.25-.31.64-.92 1.38-.45.56-.97 1.12-.52.55-1.55 1.59l-.22.22Zm11.86-2.79q.22.71.22 1.38 0 .74-.23 1.34-.33.92-1.17 1.47-.85.54-1.98.54-1.1 0-1.93-.53-.84-.53-1.18-1.44-.15-.38-.22-.8v-.03q0-.16.17-.16h1.76q.14 0 .19.16.01.09.04.15t.04.1q.15.38.44.58.29.2.68.2.41 0 .71-.22.3-.21.45-.6.14-.29.14-.76 0-.42-.13-.75-.1-.38-.4-.58-.31-.21-.71-.21-.41 0-.76.19-.34.19-.46.5-.04.14-.19.14H55.8q-.08 0-.13-.05t-.05-.12v-5.85q0-.07.05-.12.05-.05.13-.05h5.99q.07 0 .12.05.05.05.05.12v1.41q0 .07-.05.12-.05.05-.12.05h-4.05q-.07 0-.07.08l-.02 2.14q0 .1.09.05.65-.42 1.51-.42 1.01 0 1.77.51.77.52 1.08 1.41Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kolzfw\",\"data-framer-name\":\"LeadIntelligence EasiestToDoBusinessWith_EaseOfDoingBusinessWith\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:94,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 94 122\"><path fill=\"#fff\" d=\"M8.1 89.9 47.6 110l38-20.1V11.3H8.1z\"/><path fill=\"#f2f3f2\" d=\"M86.4 11.6 7.3 91.3l41 20.3 38.1-19.5z\"/><path fill=\"#dcdedc\" d=\"M5.5 37.5v54.1l1.4.7 39.5 20.1 1.2.6 1.2-.6 38.1-20.1 1.4-.7V8.7H5.5v28.8zm2.6 52.6V11.3h77.6v78.8l-38.1 20.1L8.1 90.1z\"/><path fill=\"#ff492c\" d=\"M46.9 12.6c.4 0 .8 0 1.2.1L46.9 15c-1.8-.1-3.4 1.3-3.5 3.1-.1 1.8 1.3 3.4 3.1 3.5h.4c.8 0 1.6-.3 2.2-.8l1.3 2.2c-1 .7-2.2 1.1-3.5 1.1-3.2.1-5.9-2.3-6-5.5-.1-3.2 2.3-5.9 5.5-6h.5zm4.1 4.9 1.5 2.5-1.5 2.4-1.4-2.4h-2.9l1.5-2.5H51zm-2.4-.9c0-.4.1-.8.3-1.1.2-.3.6-.6.9-.8l.2-.1c.4-.2.5-.3.5-.5s-.3-.4-.5-.4c-.4 0-.7.2-.9.6l-.5-.5c.1-.2.3-.4.5-.6.3-.2.6-.2.9-.2.3 0 .7.1.9.3.2.2.4.5.4.8 0 .5-.3.9-.9 1.1l-.3.2c-.3.2-.5.3-.6.6h1.8v.7l-2.7-.1zm-1.7 12.5 9.5-5.4v-15H37.3v14.9l9.6 5.5z\"/><path fill=\"#23cca2\" d=\"M90.2 64.5H3.6l-3.2 7 3.2 7h86.6l3.1-7z\"/><path fill=\"#252530\" d=\"M17.44 55.99q-.07.03 0 .06 1.04.54 1.04 1.79 0 1.07-.73 1.62-.72.54-1.9.54H13q-.05 0-.09-.04-.04-.04-.04-.09v-7.44q0-.05.04-.09.04-.04.09-.04h2.76q2.61 0 2.61 2.11 0 1.1-.93 1.58Zm-2.96-2.36q-.06 0-.06.06v1.71q0 .06.06.06h1.28q.52 0 .81-.25.28-.24.28-.65 0-.43-.28-.68-.29-.25-.81-.25h-1.28Zm1.37 5.03q.51 0 .79-.26.29-.26.29-.71 0-.45-.29-.71-.28-.26-.8-.26h-1.36q-.06 0-.06.06v1.82q0 .06.06.06h1.37Zm6.98-4.18q0-.06.03-.1.04-.03.1-.03h1.28q.06 0 .1.03.04.04.04.1v5.39q0 .05-.04.09-.04.04-.1.04h-1.28q-.06 0-.1-.04-.03-.04-.03-.09v-.38q0-.03-.03-.03-.02-.01-.04.02-.44.6-1.36.6-.84 0-1.38-.51-.54-.5-.54-1.42v-3.67q0-.06.04-.1.04-.03.09-.03h1.28q.05 0 .09.03.04.04.04.1v3.29q0 .44.24.71.23.28.65.28.38 0 .62-.23.24-.22.3-.59v-3.46Zm4.95 5.6q-.74 0-1.29-.21t-.85-.58q-.31-.38-.31-.85v-.11q0-.06.04-.1.04-.03.1-.03h1.22q.05 0 .09.03.04.04.04.1v.01q0 .24.27.41.27.17.67.17.38 0 .61-.15.23-.15.23-.36 0-.2-.2-.3-.2-.1-.65-.21-.51-.13-.81-.25-.7-.25-1.12-.6-.42-.35-.42-1.01 0-.81.63-1.29t1.68-.48q.7 0 1.23.22.53.23.82.64.29.4.29.92 0 .06-.04.09-.03.04-.09.04h-1.18q-.05 0-.09-.04-.04-.03-.04-.09 0-.24-.25-.41-.24-.16-.65-.16-.36 0-.59.13-.24.13-.24.36 0 .22.23.33.23.11.75.24l.28.07.33.09q.78.23 1.23.59.45.37.45 1.06 0 .81-.64 1.27-.65.46-1.73.46Zm4.1-6.37q-.38 0-.62-.25-.25-.25-.25-.62 0-.39.24-.63t.63-.24q.38 0 .63.24.24.24.24.63 0 .37-.25.62t-.62.25ZM31.22 60q-.06 0-.09-.04-.04-.04-.04-.09v-5.4q0-.06.04-.1.03-.04.09-.04h1.29q.05 0 .09.04.04.04.04.1v5.4q0 .05-.04.09-.04.04-.09.04h-1.29Zm5.58-5.74q.88 0 1.41.54.54.54.54 1.46v3.61q0 .05-.03.09-.04.04-.1.04h-1.29q-.05 0-.09-.04-.04-.04-.04-.09v-3.29q0-.44-.24-.72-.25-.27-.66-.27-.41 0-.65.27-.25.28-.25.72v3.29q0 .05-.04.09-.04.04-.09.04h-1.29q-.06 0-.09-.04-.04-.04-.04-.09v-5.39q0-.06.04-.1.03-.03.09-.03h1.29q.05 0 .09.03.04.04.04.1v.38q0 .04.02.05.02.01.03-.01.45-.64 1.35-.64Zm8.04 2.33q.06.42.04.94-.01.13-.14.13h-3.4q-.07 0-.05.05.04.22.13.44.28.62 1.16.62.71-.01 1.11-.57.05-.07.1-.07.03 0 .08.04l.79.79q.06.05.06.09 0 .03-.05.09-.36.45-.93.7-.58.25-1.26.25-.94 0-1.6-.43-.65-.43-.94-1.2-.23-.55-.23-1.44 0-.61.17-1.07.25-.78.88-1.24.63-.46 1.5-.46 1.1 0 1.77.64.66.63.81 1.7Zm-2.57-1q-.69 0-.91.65-.04.14-.08.35 0 .06.06.06h1.9q.07 0 .05-.06-.06-.32-.06-.31-.1-.33-.35-.51-.24-.18-.61-.18Zm5.75 4.49q-.74 0-1.29-.21t-.85-.58q-.31-.38-.31-.85v-.11q0-.06.04-.1.04-.03.1-.03h1.22q.05 0 .09.03.04.04.04.1v.01q0 .24.27.41.27.17.67.17.38 0 .61-.15.23-.15.23-.36 0-.2-.2-.3-.2-.1-.65-.21-.51-.13-.81-.25-.7-.25-1.12-.6-.42-.35-.42-1.01 0-.81.63-1.29t1.68-.48q.7 0 1.23.22.53.23.82.64.29.4.29.92 0 .06-.04.09-.03.04-.09.04h-1.18q-.05 0-.09-.04-.04-.03-.04-.09 0-.24-.25-.41-.24-.16-.65-.16-.36 0-.59.13-.24.13-.24.36 0 .22.23.33.23.11.75.24l.28.07.33.09q.78.23 1.23.59.45.37.45 1.06 0 .81-.64 1.27-.65.46-1.73.46Zm5.44 0q-.74 0-1.29-.21t-.85-.58q-.3-.38-.3-.85v-.11q0-.06.04-.1.04-.03.09-.03h1.22q.06 0 .1.03.03.04.03.1v.01q0 .24.27.41.27.17.68.17.37 0 .6-.15.24-.15.24-.36 0-.2-.2-.3-.2-.1-.65-.21-.52-.13-.82-.25-.7-.25-1.12-.6-.42-.35-.42-1.01 0-.81.64-1.29.63-.48 1.68-.48.7 0 1.23.22.52.23.82.64.29.4.29.92 0 .06-.04.09-.04.04-.09.04h-1.18q-.06 0-.09-.04-.04-.03-.04-.09 0-.24-.25-.41-.25-.16-.65-.16-.37 0-.6.13-.23.13-.23.36 0 .22.23.33.22.11.75.24.12.03.27.07.16.04.33.09.78.23 1.24.59.45.37.45 1.06 0 .81-.65 1.27-.64.46-1.73.46Zm7.27-.08q-.12 0-.15-.11l-1.95-7.45-.01-.04q0-.1.12-.1h1.37q.11 0 .14.11l1.04 4.48q.01.04.04.04.02 0 .03-.04l1.01-4.47q.03-.12.14-.12h1.33q.13 0 .16.11l1.1 4.48q.01.03.03.04.02 0 .03-.04l1.02-4.47q.03-.12.14-.12h1.3q.15 0 .12.14l-1.81 7.45q-.03.11-.15.11h-1.31q-.11 0-.14-.11l-1.12-4.76q-.01-.05-.04-.05-.02 0-.03.05l-1.04 4.75q-.03.12-.15.12h-1.22Zm8.68-6.29q-.37 0-.62-.25t-.25-.62q0-.39.24-.63.25-.24.63-.24.39 0 .63.24t.24.63q0 .37-.25.62t-.62.25ZM68.75 60q-.05 0-.09-.04-.04-.04-.04-.09v-5.4q0-.06.04-.1.04-.04.09-.04h1.29q.05 0 .09.04.04.04.04.1v5.4q0 .05-.04.09-.04.04-.09.04h-1.29Zm5.87-4.54q0 .05-.03.09-.04.04-.1.04h-1.05q-.06 0-.06.05v2.34q0 .36.15.54.15.17.48.17h.36q.06 0 .1.04.03.04.03.09v1.05q0 .12-.13.14-.46.02-.66.02-.91 0-1.36-.3-.45-.3-.46-1.14v-2.95q0-.05-.06-.05h-.63q-.05 0-.09-.04-.04-.04-.04-.09v-.98q0-.06.04-.1.04-.03.09-.03h.63q.06 0 .06-.06v-1.31q0-.05.03-.09.04-.04.1-.04h1.23q.05 0 .09.04.04.04.04.09v1.31q0 .06.06.06h1.05q.06 0 .1.03.03.04.03.1v.98Zm3.89-1.2q.88 0 1.42.54.54.54.54 1.46v3.61q0 .05-.04.09-.04.04-.1.04h-1.28q-.06 0-.1-.04-.03-.04-.03-.09v-3.29q0-.44-.25-.72-.25-.27-.66-.27-.4 0-.65.27-.25.28-.25.72v3.29q0 .05-.04.09-.04.04-.09.04h-1.29q-.05 0-.09-.04-.04-.04-.04-.09v-7.44q0-.05.04-.09.04-.04.09-.04h1.29q.05 0 .09.04.04.04.04.09v2.43q0 .04.02.05.02.01.04-.01.45-.64 1.34-.64ZM19.99 42.5q0 .05-.04.09-.04.04-.1.04h-3.6q-.06 0-.06.06v1.7q0 .06.06.06h2.36q.06 0 .1.03.03.04.03.1v1.07q0 .05-.03.09-.04.04-.1.04h-2.36q-.06 0-.06.05v1.78q0 .06.06.06h3.6q.06 0 .1.04.04.04.04.09v1.07q0 .05-.04.09-.04.04-.1.04h-5.08q-.05 0-.09-.04-.04-.04-.04-.09v-7.44q0-.05.04-.09.04-.04.09-.04h5.08q.06 0 .1.04.04.04.04.09v1.07Zm3.23.76q.72 0 1.28.25.56.24.87.67.31.43.31.96v3.73q0 .05-.03.09-.04.04-.1.04h-1.28q-.06 0-.1-.04-.04-.04-.04-.09v-.36q0-.04-.02-.05-.02-.01-.04.02-.46.61-1.49.61-.86 0-1.38-.42-.53-.42-.53-1.23 0-.85.59-1.32.6-.46 1.7-.46h1.12q.05 0 .05-.06v-.24q0-.36-.22-.57-.22-.2-.66-.2-.34 0-.56.12-.23.12-.29.34-.04.12-.15.11l-1.33-.17q-.13-.03-.12-.1.04-.47.37-.84.32-.37.86-.58.53-.21 1.19-.21ZM23 47.93q.47 0 .8-.25.33-.25.33-.65v-.39q0-.06-.05-.06h-.79q-.5 0-.78.19-.28.18-.28.53 0 .29.21.46.21.17.56.17Zm6.03 1.15q-.74 0-1.29-.21t-.85-.58q-.3-.38-.3-.85v-.11q0-.06.04-.1.03-.03.09-.03h1.22q.05 0 .09.03.04.04.04.1v.01q0 .24.27.41.27.17.68.17.37 0 .6-.15.23-.15.23-.36 0-.2-.19-.3-.2-.1-.65-.21-.52-.13-.82-.25-.7-.25-1.12-.6-.42-.35-.42-1.01 0-.81.64-1.29.63-.48 1.67-.48.71 0 1.23.22.53.23.82.64.3.4.3.92 0 .06-.04.09-.04.04-.1.04H30q-.06 0-.1-.04-.04-.03-.04-.09 0-.24-.24-.41-.25-.16-.66-.16-.36 0-.59.13-.23.13-.23.36 0 .22.22.33.23.11.76.24.12.03.27.07.16.04.33.09.78.23 1.23.59.45.37.45 1.06 0 .81-.64 1.27-.64.46-1.73.46Zm4.1-6.37q-.37 0-.62-.25t-.25-.62q0-.39.24-.63.25-.24.63-.24.39 0 .63.24t.24.63q0 .37-.25.62-.24.25-.62.25ZM32.47 49q-.05 0-.09-.04-.04-.04-.04-.09v-5.4q0-.06.04-.1.04-.04.09-.04h1.29q.05 0 .09.04.04.04.04.1v5.4q0 .05-.04.09-.04.04-.09.04h-1.29Zm7.64-3.41q.06.42.04.94-.01.13-.14.13h-3.4q-.07 0-.05.05.04.22.12.44.29.62 1.17.62.7-.01 1.11-.57.05-.07.1-.07.03 0 .08.04l.79.79q.05.05.05.09 0 .03-.04.09-.36.45-.93.7-.58.25-1.26.25-.94 0-1.6-.43-.65-.43-.94-1.2-.23-.55-.23-1.44 0-.61.16-1.07.26-.78.89-1.24.63-.46 1.5-.46 1.1 0 1.77.64.66.63.81 1.7Zm-2.57-1q-.69 0-.91.65-.04.14-.08.35 0 .06.06.06h1.9q.07 0 .04-.06-.05-.32-.05-.31-.1-.33-.35-.51-.24-.18-.61-.18Zm5.74 4.49q-.73 0-1.28-.21t-.85-.58q-.31-.38-.31-.85v-.11q0-.06.04-.1.04-.03.09-.03h1.23q.05 0 .09.03.04.04.04.1v.01q0 .24.27.41.27.17.67.17.38 0 .61-.15.23-.15.23-.36 0-.2-.2-.3-.2-.1-.65-.21-.51-.13-.81-.25-.71-.25-1.12-.6-.42-.35-.42-1.01 0-.81.63-1.29t1.68-.48q.7 0 1.23.22.53.23.82.64.29.4.29.92 0 .06-.04.09-.04.04-.09.04h-1.18q-.05 0-.09-.04-.04-.03-.04-.09 0-.24-.25-.41-.24-.16-.65-.16-.36 0-.6.13-.23.13-.23.36 0 .22.23.33.22.11.75.24l.28.07.33.09q.78.23 1.23.59.45.37.45 1.06 0 .81-.64 1.27-.65.46-1.74.46Zm6.51-4.62q0 .05-.04.09-.04.04-.1.04H48.6q-.06 0-.06.05v2.34q0 .36.15.54.15.17.48.17h.36q.06 0 .1.04.04.04.04.09v1.05q0 .12-.14.14-.46.02-.66.02-.91 0-1.36-.3-.45-.3-.46-1.14v-2.95q0-.05-.06-.05h-.63q-.05 0-.09-.04-.04-.04-.04-.09v-.98q0-.06.04-.1.04-.03.09-.03h.63q.06 0 .06-.06v-1.31q0-.05.04-.09.03-.04.09-.04h1.23q.06 0 .09.04.04.04.04.09v1.31q0 .06.06.06h1.05q.06 0 .1.03.04.04.04.1v.98Zm8.54-3.16q.06 0 .1.04.04.04.04.09v1.08q0 .06-.04.09-.04.04-.1.04h-1.97q-.05 0-.05.06v6.17q0 .05-.04.09-.04.04-.09.04h-1.29q-.05 0-.09-.04-.04-.04-.04-.09V42.7q0-.06-.06-.06h-1.91q-.06 0-.09-.04-.04-.03-.04-.09v-1.08q0-.05.04-.09.03-.04.09-.04h5.54Zm2.6 7.79q-.92 0-1.58-.49-.66-.48-.91-1.32-.15-.51-.15-1.12 0-.65.15-1.16.26-.82.92-1.28.66-.46 1.58-.46.9 0 1.54.45.64.46.9 1.28.18.55.18 1.15 0 .59-.16 1.11-.24.86-.89 1.35-.66.49-1.58.49Zm0-1.33q.36 0 .62-.22.25-.22.36-.61.09-.35.09-.77 0-.46-.09-.78-.12-.37-.38-.58-.25-.21-.61-.21-.38 0-.62.21-.25.21-.36.58-.09.27-.09.78 0 .5.08.77.11.39.37.61.26.22.63.22ZM66.99 49q-.05 0-.09-.04-.04-.04-.04-.09v-7.44q0-.05.04-.09.04-.04.09-.04h2.75q.83 0 1.45.29t.96.82q.34.53.34 1.22v3.04q0 .69-.34 1.22t-.96.82q-.62.29-1.45.29h-2.75Zm1.42-1.39q0 .06.05.06h1.34q.5 0 .81-.34.32-.34.33-.91v-2.53q0-.58-.31-.92-.32-.34-.85-.34h-1.32q-.05 0-.05.06v4.92Zm7.64 1.48q-.92 0-1.58-.49-.66-.48-.9-1.32-.16-.51-.16-1.12 0-.65.16-1.16.25-.82.91-1.28.66-.46 1.59-.46.9 0 1.54.45.63.46.9 1.28.17.55.17 1.15 0 .59-.15 1.11-.24.86-.9 1.35-.65.49-1.58.49Zm0-1.33q.37 0 .62-.22t.36-.61q.09-.35.09-.77 0-.46-.09-.78-.12-.37-.37-.58-.25-.21-.62-.21t-.62.21q-.25.21-.36.58-.08.27-.08.78 0 .5.07.77.11.39.37.61.26.22.63.22Z\"/><path fill=\"#242530\" d=\"M31.2 75.4q-.11 0-.14-.1l-1.82-6.77-.01-.04q0-.09.11-.09h.98q.11 0 .14.1l1.14 4.56q.01.03.03.03.02 0 .03-.03l1.09-4.56q.03-.1.13-.1h.96q.11 0 .14.1l1.16 4.57q.01.03.03.03.02 0 .03-.03l1.12-4.57q.03-.1.14-.1h.93q.14 0 .11.13l-1.73 6.77q-.03.1-.14.1h-.93q-.11 0-.14-.1l-1.17-4.77q-.01-.03-.03-.04-.02 0-.03.04l-1.12 4.77q-.03.1-.13.1h-.88Zm7.41 0q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h.92q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04h-.92Zm6.57-6.88q0-.05.03-.08.04-.04.09-.04h.92q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04h-.89q-.1 0-.14-.08l-2.88-4.72q-.02-.03-.04-.03-.02.01-.02.05l.02 4.66q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h.89q.1 0 .14.08l2.87 4.72q.02.03.04.02.02 0 .02-.04l-.01-4.66Zm7.22-.12q.05 0 .08.04.04.03.04.08v.77q0 .05-.04.08-.03.04-.08.04h-1.84q-.05 0-.05.05v5.82q0 .05-.03.08-.04.04-.09.04h-.92q-.05 0-.08-.04-.04-.03-.04-.08v-5.82q0-.05-.05-.05h-1.77q-.05 0-.09-.04-.03-.03-.03-.08v-.77q0-.05.03-.08.04-.04.09-.04h4.87Zm5.93.88q0 .05-.04.08-.03.04-.08.04H54.8q-.05 0-.05.05v1.87q0 .05.05.05h2.29q.05 0 .09.03.03.04.03.09v.76q0 .05-.03.09-.04.03-.09.03H54.8q-.05 0-.05.05v1.93q0 .05.05.05h3.41q.05 0 .08.04.04.03.04.08v.76q0 .05-.04.08-.03.04-.08.04h-4.5q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h4.5q.05 0 .08.04.04.03.04.08v.76Zm5.11 6.12q-.1 0-.14-.09l-1.32-2.88q-.02-.04-.06-.04h-1.2q-.05 0-.05.05v2.84q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h2.75q.61 0 1.08.25.47.26.73.72.26.47.26 1.07 0 .69-.36 1.17-.35.49-.98.68-.02 0-.03.02-.01.02 0 .04l1.41 2.91q.02.04.02.06 0 .08-.11.08h-.96Zm-2.72-6q-.05 0-.05.05v1.99q0 .05.05.05h1.5q.48 0 .78-.29.29-.28.29-.75t-.29-.76q-.3-.29-.78-.29h-1.5Z\"/><path fill=\"#252530\" d=\"M33.86 93.46q-.03.03-.02.06.02.03.06.03h3.93q.07 0 .12.05.06.05.06.12v1.41q0 .07-.06.12-.05.05-.12.05h-6.52q-.08 0-.13-.05t-.05-.12v-1.34q0-.13.09-.22.71-.69 1.45-1.51.74-.82.93-1.02.4-.48.82-.92 1.32-1.46 1.32-2.17 0-.51-.36-.84-.36-.32-.94-.32t-.94.32q-.37.33-.37.87v.36q0 .07-.05.12-.05.05-.12.05h-1.71q-.07 0-.12-.05-.06-.05-.06-.12v-.68q.05-.78.5-1.39.45-.6 1.19-.92.75-.32 1.68-.32 1.03 0 1.79.39.76.38 1.17 1.03.42.66.42 1.45 0 .61-.31 1.25-.3.64-.91 1.38-.45.56-.97 1.12-.52.55-1.55 1.59l-.22.22Zm8.86 2q-1.6 0-2.52-.89-.93-.89-.93-2.43v-3.83q0-1.51.93-2.39.92-.89 2.52-.89 1.59 0 2.53.89.93.88.93 2.39v3.83q0 1.54-.93 2.43-.94.89-2.53.89Zm0-1.75q.65 0 1.03-.4.39-.4.39-1.07v-3.99q0-.66-.39-1.06-.38-.4-1.03-.4-.64 0-1.02.4-.39.4-.39 1.06v3.99q0 .67.39 1.07.38.4 1.02.4Zm7.52-.25q-.03.03-.01.06.01.03.06.03h3.93q.07 0 .12.05.05.05.05.12v1.41q0 .07-.05.12-.05.05-.12.05h-6.53q-.07 0-.12-.05-.05-.05-.05-.12v-1.34q0-.13.08-.22.72-.69 1.45-1.51.74-.82.93-1.02.41-.48.83-.92 1.32-1.46 1.32-2.17 0-.51-.36-.84-.37-.32-.95-.32t-.94.32q-.36.33-.36.87v.36q0 .07-.05.12-.05.05-.13.05h-1.71q-.07 0-.12-.05-.05-.05-.05-.12v-.68q.04-.78.49-1.39.45-.6 1.2-.92.75-.32 1.67-.32 1.03 0 1.79.39.77.38 1.18 1.03.41.66.41 1.45 0 .61-.3 1.25-.31.64-.92 1.38-.45.56-.97 1.12-.52.55-1.55 1.59l-.22.22Zm11.86-2.79q.22.71.22 1.38 0 .74-.23 1.34-.33.92-1.17 1.47-.85.54-1.98.54-1.1 0-1.93-.53-.84-.53-1.18-1.44-.15-.38-.22-.8v-.03q0-.16.17-.16h1.76q.14 0 .19.16.01.09.04.15t.04.1q.15.38.44.58.29.2.68.2.41 0 .71-.22.3-.21.45-.6.14-.29.14-.76 0-.42-.13-.75-.1-.38-.4-.58-.31-.21-.71-.21-.41 0-.76.19-.34.19-.46.5-.04.14-.19.14H55.8q-.08 0-.13-.05t-.05-.12v-5.85q0-.07.05-.12.05-.05.13-.05h5.99q.07 0 .12.05.05.05.05.12v1.41q0 .07-.05.12-.05.05-.12.05h-4.05q-.07 0-.07.08l-.02 2.14q0 .1.09.05.65-.42 1.51-.42 1.01 0 1.77.51.77.52 1.08 1.41Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16944bw\",\"data-framer-name\":\"LeadIntelligence HighPerformer_HighPerformer\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:94,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 94 122\"><path fill=\"#fff\" d=\"M8.1 89.9 47.6 110l38-20.1V11.3H8.1z\"/><path fill=\"#f2f3f2\" d=\"M86.4 11.6 7.3 91.3l41 20.3 38.1-19.5z\"/><path fill=\"#dcdedc\" d=\"M5.5 37.5v54.1l1.4.7 39.5 20.1 1.2.6 1.2-.6 38.1-20.1 1.4-.7V8.7H5.5v28.8zm2.6 52.6V11.3h77.6v78.8l-38.1 20.1L8.1 90.1z\"/><path fill=\"#ff492c\" d=\"M46.9 12.6c.4 0 .8 0 1.2.1L46.9 15c-1.8-.1-3.4 1.3-3.5 3.1-.1 1.8 1.3 3.4 3.1 3.5h.4c.8 0 1.6-.3 2.2-.8l1.3 2.2c-1 .7-2.2 1.1-3.5 1.1-3.2.1-5.9-2.3-6-5.5-.1-3.2 2.3-5.9 5.5-6h.5zm4.1 4.9 1.5 2.5-1.5 2.4-1.4-2.4h-2.9l1.5-2.5H51zm-2.4-.9c0-.4.1-.8.3-1.1.2-.3.6-.6.9-.8l.2-.1c.4-.2.5-.3.5-.5s-.3-.4-.5-.4c-.4 0-.7.2-.9.6l-.5-.5c.1-.2.3-.4.5-.6.3-.2.6-.2.9-.2.3 0 .7.1.9.3.2.2.4.5.4.8 0 .5-.3.9-.9 1.1l-.3.2c-.3.2-.5.3-.6.6h1.8v.7l-2.7-.1zm-1.7 12.5 9.5-5.4v-15H37.3v14.9l9.6 5.5zm43.3 35.4H3.6l-3.2 7 3.2 7h86.6l3.1-7z\"/><path fill=\"#252530\" d=\"M17.3 49.49q.99 0 1.74.4t1.16 1.15q.41.74.41 1.7 0 .95-.42 1.67-.43.71-1.2 1.11-.77.4-1.78.4h-2.13q-.07 0-.07.08v3.82q0 .08-.06.13-.05.05-.13.05h-1.75q-.08 0-.13-.05t-.05-.13V49.67q0-.08.05-.13t.13-.05h4.23Zm-.32 4.74q.7 0 1.11-.4.42-.4.42-1.04 0-.67-.42-1.07-.41-.41-1.11-.41h-1.9q-.07 0-.07.08v2.76q0 .08.07.08h1.9Zm11.2 1.12q.08.57.05 1.27-.01.19-.19.19h-4.63q-.09 0-.07.07.05.3.17.6.39.84 1.59.84.96-.01 1.51-.78.07-.09.14-.09.04 0 .1.06l1.08 1.06q.08.08.08.14 0 .03-.06.12-.5.62-1.27.95-.79.34-1.72.34-1.28 0-2.18-.58-.89-.59-1.28-1.64-.32-.75-.32-1.96 0-.83.23-1.46.35-1.06 1.21-1.69.86-.63 2.04-.63 1.5 0 2.41.87.91.87 1.11 2.32Zm-3.5-1.36q-.95 0-1.25.88-.06.2-.1.48 0 .07.08.07H26q.09 0 .06-.07-.08-.43-.08-.42-.13-.45-.47-.7-.33-.24-.83-.24Zm8.7-1.8q.54 0 .86.21.11.06.08.22l-.31 1.71q-.01.18-.21.11-.23-.08-.52-.08-.12 0-.34.03-.53.05-.91.4-.37.35-.37.94v4.09q0 .08-.06.13-.05.05-.12.05h-1.76q-.07 0-.13-.05-.05-.05-.05-.13v-7.35q0-.07.05-.13.06-.05.13-.05h1.76q.07 0 .12.05.06.06.06.13v.57q0 .04.03.06.02.02.04-.02.62-.89 1.65-.89Zm6.39.09q.08 0 .13.05t.05.13v1.42q0 .08-.05.13t-.13.05h-1.45q-.08 0-.08.07v5.69q0 .08-.05.13t-.13.05h-1.75q-.08 0-.13-.05t-.05-.13v-5.69q0-.07-.08-.07h-.88q-.08 0-.13-.05t-.05-.13v-1.42q0-.08.05-.13t.13-.05h.88q.08 0 .08-.08v-.33q0-.93.28-1.45.29-.51.92-.73.64-.22 1.77-.19h.57q.07 0 .12.05.06.06.06.13v1.21q0 .08-.06.13-.05.06-.12.06h-.5q-.52.01-.73.21-.2.21-.2.75v.16q0 .08.08.08h1.45Zm4.35 7.84q-1.26 0-2.16-.66-.9-.66-1.23-1.8-.21-.7-.21-1.53 0-.88.21-1.59.35-1.11 1.25-1.74.9-.63 2.16-.63 1.22 0 2.1.62.86.63 1.22 1.74.25.75.25 1.57 0 .81-.21 1.52-.33 1.17-1.23 1.83-.89.67-2.15.67Zm0-1.81q.49 0 .84-.3t.5-.83q.11-.48.11-1.05 0-.63-.11-1.06-.17-.51-.51-.8-.35-.28-.85-.28t-.84.28q-.34.29-.49.8-.12.35-.12 1.06 0 .68.11 1.05.15.53.5.83.35.3.86.3Zm8.79-6.12q.54 0 .86.21.12.06.08.22l-.31 1.71q-.01.18-.21.11-.23-.08-.52-.08-.12 0-.33.03-.54.05-.92.4-.37.35-.37.94v4.09q0 .08-.06.13-.05.05-.13.05h-1.75q-.07 0-.13-.05-.05-.05-.05-.13v-7.35q0-.07.05-.13.06-.05.13-.05H51q.08 0 .13.05.06.06.06.13v.57q0 .04.02.06.04.02.05-.02.62-.89 1.65-.89Zm10.45-.02q1.17 0 1.83.7.66.71.66 1.99v4.96q0 .08-.05.13t-.12.05h-1.76q-.07 0-.13-.05-.05-.05-.05-.13v-4.5q0-.61-.31-.97-.32-.36-.85-.36-.52 0-.85.36-.33.36-.33.96v4.51q0 .08-.05.13-.06.05-.13.05h-1.74q-.08 0-.13-.05t-.05-.13v-4.5q0-.6-.33-.97-.33-.36-.86-.36-.47 0-.8.28-.32.29-.38.8v4.75q0 .08-.05.13-.06.05-.13.05H55q-.08 0-.13-.05t-.05-.13v-7.35q0-.07.05-.13.05-.05.13-.05h1.75q.07 0 .13.05.05.06.05.13v.59q0 .04.03.06.03.01.06-.04.62-.91 1.91-.91.75 0 1.31.32.56.31.86.9.04.09.11 0 .32-.62.89-.92.56-.3 1.26-.3Zm10.76 3.18q.09.57.06 1.27-.02.19-.2.19h-4.63q-.09 0-.06.07.04.3.16.6.39.84 1.59.84.96-.01 1.52-.78.06-.09.13-.09.05 0 .11.06l1.08 1.06q.07.08.07.14 0 .03-.06.12-.49.62-1.27.95-.78.34-1.71.34-1.29 0-2.18-.58-.9-.59-1.29-1.64-.31-.75-.31-1.96 0-.83.22-1.46.35-1.06 1.21-1.69.86-.63 2.05-.63 1.5 0 2.41.87.91.87 1.1 2.32Zm-3.5-1.36q-.94 0-1.24.88-.06.2-.11.48 0 .07.08.07h2.59q.09 0 .06-.07-.07-.43-.07-.42-.14-.45-.47-.7-.34-.24-.84-.24Zm8.7-1.8q.54 0 .86.21.12.06.09.22l-.31 1.71q-.02.18-.22.11-.22-.08-.52-.08-.12 0-.33.03-.54.05-.92.4-.37.35-.37.94v4.09q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.06-.05-.06-.13v-7.35q0-.07.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v.57q0 .04.03.06.03.02.05-.02.61-.89 1.64-.89ZM38.06 34.68q0-.07.05-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v10.14q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.05-.05-.05-.13v-4.14q0-.07-.08-.07h-3.32q-.07 0-.07.07v4.14q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.06-.05-.06-.13V34.68q0-.07.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v4.03q0 .08.07.08h3.32q.08 0 .08-.08v-4.03Zm4.84 1.74q-.51 0-.85-.34-.34-.33-.34-.84 0-.53.33-.86.33-.33.86-.33t.86.33q.33.33.33.86 0 .51-.34.84-.34.34-.85.34ZM42 45q-.07 0-.13-.05-.05-.05-.05-.13v-7.36q0-.08.05-.13.06-.05.13-.05h1.76q.07 0 .12.05.06.05.06.13v7.36q0 .08-.06.13-.05.05-.12.05H42Zm8.29-7.53q0-.07.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v6.84q0 1.96-1.13 2.8-1.13.85-2.92.85-.53 0-1.17-.08-.15-.02-.15-.19l.06-1.55q0-.2.21-.17.54.09.99.09.96 0 1.48-.41.51-.43.51-1.35 0-.05-.03-.06-.03-.01-.06.03-.57.61-1.66.61-.98 0-1.79-.47-.82-.47-1.17-1.52-.22-.69-.22-1.79 0-1.17.27-1.9.31-.92 1.06-1.47.75-.56 1.75-.56 1.15 0 1.76.69.03.03.06.02.03-.01.03-.05v-.36Zm-.12 4.84q.12-.44.12-1.23 0-.46-.03-.71-.03-.26-.1-.49-.14-.4-.45-.65-.31-.24-.78-.24-.45 0-.76.24-.32.25-.47.65-.21.45-.21 1.22 0 .84.18 1.2.13.41.47.65.34.25.8.25.48 0 .8-.25.31-.24.43-.64Zm7.78-5.14q1.2 0 1.93.74.73.73.73 1.99v4.92q0 .08-.05.13t-.12.05h-1.76q-.07 0-.13-.05-.05-.05-.05-.13v-4.49q0-.59-.34-.97-.33-.37-.89-.37-.55 0-.89.37-.34.38-.34.97v4.49q0 .08-.05.13t-.13.05h-1.75q-.08 0-.13-.05t-.05-.13V34.68q0-.07.05-.13.05-.05.13-.05h1.75q.08 0 .13.05.05.06.05.13V38q0 .04.03.06.03.01.04-.02.62-.87 1.84-.87Z\"/><path fill=\"#fff\" d=\"M31.2 75.4q-.11 0-.14-.1l-1.82-6.77-.01-.04q0-.09.11-.09h.98q.11 0 .14.1l1.14 4.56q.01.03.03.03.02 0 .03-.03l1.09-4.56q.03-.1.13-.1h.96q.11 0 .14.1l1.16 4.57q.01.03.03.03.02 0 .03-.03l1.12-4.57q.03-.1.14-.1h.93q.14 0 .11.13l-1.73 6.77q-.03.1-.14.1h-.93q-.11 0-.14-.1l-1.17-4.77q-.01-.03-.03-.04-.02 0-.03.04l-1.12 4.77q-.03.1-.13.1h-.88Zm7.41 0q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h.92q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04h-.92Zm6.57-6.88q0-.05.03-.08.04-.04.09-.04h.92q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04h-.89q-.1 0-.14-.08l-2.88-4.72q-.02-.03-.04-.03-.02.01-.02.05l.02 4.66q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h.89q.1 0 .14.08l2.87 4.72q.02.03.04.02.02 0 .02-.04l-.01-4.66Zm7.22-.12q.05 0 .08.04.04.03.04.08v.77q0 .05-.04.08-.03.04-.08.04h-1.84q-.05 0-.05.05v5.82q0 .05-.03.08-.04.04-.09.04h-.92q-.05 0-.08-.04-.04-.03-.04-.08v-5.82q0-.05-.05-.05h-1.77q-.05 0-.09-.04-.03-.03-.03-.08v-.77q0-.05.03-.08.04-.04.09-.04h4.87Zm5.93.88q0 .05-.04.08-.03.04-.08.04H54.8q-.05 0-.05.05v1.87q0 .05.05.05h2.29q.05 0 .09.03.03.04.03.09v.76q0 .05-.03.09-.04.03-.09.03H54.8q-.05 0-.05.05v1.93q0 .05.05.05h3.41q.05 0 .08.04.04.03.04.08v.76q0 .05-.04.08-.03.04-.08.04h-4.5q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h4.5q.05 0 .08.04.04.03.04.08v.76Zm5.11 6.12q-.1 0-.14-.09l-1.32-2.88q-.02-.04-.06-.04h-1.2q-.05 0-.05.05v2.84q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h2.75q.61 0 1.08.25.47.26.73.72.26.47.26 1.07 0 .69-.36 1.17-.35.49-.98.68-.02 0-.03.02-.01.02 0 .04l1.41 2.91q.02.04.02.06 0 .08-.11.08h-.96Zm-2.72-6q-.05 0-.05.05v1.99q0 .05.05.05h1.5q.48 0 .78-.29.29-.28.29-.75t-.29-.76q-.3-.29-.78-.29h-1.5Z\"/><path fill=\"#252530\" d=\"M33.86 93.46q-.03.03-.02.06.02.03.06.03h3.93q.07 0 .12.05.06.05.06.12v1.41q0 .07-.06.12-.05.05-.12.05h-6.52q-.08 0-.13-.05t-.05-.12v-1.34q0-.13.09-.22.71-.69 1.45-1.51.74-.82.93-1.02.4-.48.82-.92 1.32-1.46 1.32-2.17 0-.51-.36-.84-.36-.32-.94-.32t-.94.32q-.37.33-.37.87v.36q0 .07-.05.12-.05.05-.12.05h-1.71q-.07 0-.12-.05-.06-.05-.06-.12v-.68q.05-.78.5-1.39.45-.6 1.19-.92.75-.32 1.68-.32 1.03 0 1.79.39.76.38 1.17 1.03.42.66.42 1.45 0 .61-.31 1.25-.3.64-.91 1.38-.45.56-.97 1.12-.52.55-1.55 1.59l-.22.22Zm8.86 2q-1.6 0-2.52-.89-.93-.89-.93-2.43v-3.83q0-1.51.93-2.39.92-.89 2.52-.89 1.59 0 2.53.89.93.88.93 2.39v3.83q0 1.54-.93 2.43-.94.89-2.53.89Zm0-1.75q.65 0 1.03-.4.39-.4.39-1.07v-3.99q0-.66-.39-1.06-.38-.4-1.03-.4-.64 0-1.02.4-.39.4-.39 1.06v3.99q0 .67.39 1.07.38.4 1.02.4Zm7.52-.25q-.03.03-.01.06.01.03.06.03h3.93q.07 0 .12.05.05.05.05.12v1.41q0 .07-.05.12-.05.05-.12.05h-6.53q-.07 0-.12-.05-.05-.05-.05-.12v-1.34q0-.13.08-.22.72-.69 1.45-1.51.74-.82.93-1.02.41-.48.83-.92 1.32-1.46 1.32-2.17 0-.51-.36-.84-.37-.32-.95-.32t-.94.32q-.36.33-.36.87v.36q0 .07-.05.12-.05.05-.13.05h-1.71q-.07 0-.12-.05-.05-.05-.05-.12v-.68q.04-.78.49-1.39.45-.6 1.2-.92.75-.32 1.67-.32 1.03 0 1.79.39.77.38 1.18 1.03.41.66.41 1.45 0 .61-.3 1.25-.31.64-.92 1.38-.45.56-.97 1.12-.52.55-1.55 1.59l-.22.22Zm11.86-2.79q.22.71.22 1.38 0 .74-.23 1.34-.33.92-1.17 1.47-.85.54-1.98.54-1.1 0-1.93-.53-.84-.53-1.18-1.44-.15-.38-.22-.8v-.03q0-.16.17-.16h1.76q.14 0 .19.16.01.09.04.15t.04.1q.15.38.44.58.29.2.68.2.41 0 .71-.22.3-.21.45-.6.14-.29.14-.76 0-.42-.13-.75-.1-.38-.4-.58-.31-.21-.71-.21-.41 0-.76.19-.34.19-.46.5-.04.14-.19.14H55.8q-.08 0-.13-.05t-.05-.12v-5.85q0-.07.05-.12.05-.05.13-.05h5.99q.07 0 .12.05.05.05.05.12v1.41q0 .07-.05.12-.05.05-.12.05h-4.05q-.07 0-.07.08l-.02 2.14q0 .1.09.05.65-.42 1.51-.42 1.01 0 1.77.51.77.52 1.08 1.41Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xdr7u1\",\"data-framer-name\":\"SalesIntelligence HighPerformer_Small-Business_HighPerformer\",fill:\"black\",intrinsicHeight:122,intrinsicWidth:94,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 94 122\"><path fill=\"#fff\" d=\"M8.1 89.9 47.6 110l38-20.1V11.3H8.1z\"/><path fill=\"#f2f3f2\" d=\"M86.4 11.6 7.3 91.3l41 20.3 38.1-19.5z\"/><path fill=\"#dcdedc\" d=\"M5.5 37.5v54.1l1.4.7 39.5 20.1 1.2.6 1.2-.6 38.1-20.1 1.4-.7V8.7H5.5v28.8zm2.6 52.6V11.3h77.6v78.8l-38.1 20.1L8.1 90.1z\"/><path fill=\"#ff492c\" d=\"M46.9 12.6c.4 0 .8 0 1.2.1L46.9 15c-1.8-.1-3.4 1.3-3.5 3.1-.1 1.8 1.3 3.4 3.1 3.5h.4c.8 0 1.6-.3 2.2-.8l1.3 2.2c-1 .7-2.2 1.1-3.5 1.1-3.2.1-5.9-2.3-6-5.5-.1-3.2 2.3-5.9 5.5-6h.5zm4.1 4.9 1.5 2.5-1.5 2.4-1.4-2.4h-2.9l1.5-2.5H51zm-2.4-.9c0-.4.1-.8.3-1.1.2-.3.6-.6.9-.8l.2-.1c.4-.2.5-.3.5-.5s-.3-.4-.5-.4c-.4 0-.7.2-.9.6l-.5-.5c.1-.2.3-.4.5-.6.3-.2.6-.2.9-.2.3 0 .7.1.9.3.2.2.4.5.4.8 0 .5-.3.9-.9 1.1l-.3.2c-.3.2-.5.3-.6.6h1.8v.7l-2.7-.1zm-1.7 12.5 9.5-5.4v-15H37.3v14.9l9.6 5.5zm43.3 35.4H3.6l-3.2 7 3.2 7h86.6l3.1-7z\"/><path fill=\"#252530\" d=\"M17.3 49.49q.99 0 1.74.4t1.16 1.15q.41.74.41 1.7 0 .95-.42 1.67-.43.71-1.2 1.11-.77.4-1.78.4h-2.13q-.07 0-.07.08v3.82q0 .08-.06.13-.05.05-.13.05h-1.75q-.08 0-.13-.05t-.05-.13V49.67q0-.08.05-.13t.13-.05h4.23Zm-.32 4.74q.7 0 1.11-.4.42-.4.42-1.04 0-.67-.42-1.07-.41-.41-1.11-.41h-1.9q-.07 0-.07.08v2.76q0 .08.07.08h1.9Zm11.2 1.12q.08.57.05 1.27-.01.19-.19.19h-4.63q-.09 0-.07.07.05.3.17.6.39.84 1.59.84.96-.01 1.51-.78.07-.09.14-.09.04 0 .1.06l1.08 1.06q.08.08.08.14 0 .03-.06.12-.5.62-1.27.95-.79.34-1.72.34-1.28 0-2.18-.58-.89-.59-1.28-1.64-.32-.75-.32-1.96 0-.83.23-1.46.35-1.06 1.21-1.69.86-.63 2.04-.63 1.5 0 2.41.87.91.87 1.11 2.32Zm-3.5-1.36q-.95 0-1.25.88-.06.2-.1.48 0 .07.08.07H26q.09 0 .06-.07-.08-.43-.08-.42-.13-.45-.47-.7-.33-.24-.83-.24Zm8.7-1.8q.54 0 .86.21.11.06.08.22l-.31 1.71q-.01.18-.21.11-.23-.08-.52-.08-.12 0-.34.03-.53.05-.91.4-.37.35-.37.94v4.09q0 .08-.06.13-.05.05-.12.05h-1.76q-.07 0-.13-.05-.05-.05-.05-.13v-7.35q0-.07.05-.13.06-.05.13-.05h1.76q.07 0 .12.05.06.06.06.13v.57q0 .04.03.06.02.02.04-.02.62-.89 1.65-.89Zm6.39.09q.08 0 .13.05t.05.13v1.42q0 .08-.05.13t-.13.05h-1.45q-.08 0-.08.07v5.69q0 .08-.05.13t-.13.05h-1.75q-.08 0-.13-.05t-.05-.13v-5.69q0-.07-.08-.07h-.88q-.08 0-.13-.05t-.05-.13v-1.42q0-.08.05-.13t.13-.05h.88q.08 0 .08-.08v-.33q0-.93.28-1.45.29-.51.92-.73.64-.22 1.77-.19h.57q.07 0 .12.05.06.06.06.13v1.21q0 .08-.06.13-.05.06-.12.06h-.5q-.52.01-.73.21-.2.21-.2.75v.16q0 .08.08.08h1.45Zm4.35 7.84q-1.26 0-2.16-.66-.9-.66-1.23-1.8-.21-.7-.21-1.53 0-.88.21-1.59.35-1.11 1.25-1.74.9-.63 2.16-.63 1.22 0 2.1.62.86.63 1.22 1.74.25.75.25 1.57 0 .81-.21 1.52-.33 1.17-1.23 1.83-.89.67-2.15.67Zm0-1.81q.49 0 .84-.3t.5-.83q.11-.48.11-1.05 0-.63-.11-1.06-.17-.51-.51-.8-.35-.28-.85-.28t-.84.28q-.34.29-.49.8-.12.35-.12 1.06 0 .68.11 1.05.15.53.5.83.35.3.86.3Zm8.79-6.12q.54 0 .86.21.12.06.08.22l-.31 1.71q-.01.18-.21.11-.23-.08-.52-.08-.12 0-.33.03-.54.05-.92.4-.37.35-.37.94v4.09q0 .08-.06.13-.05.05-.13.05h-1.75q-.07 0-.13-.05-.05-.05-.05-.13v-7.35q0-.07.05-.13.06-.05.13-.05H51q.08 0 .13.05.06.06.06.13v.57q0 .04.02.06.04.02.05-.02.62-.89 1.65-.89Zm10.45-.02q1.17 0 1.83.7.66.71.66 1.99v4.96q0 .08-.05.13t-.12.05h-1.76q-.07 0-.13-.05-.05-.05-.05-.13v-4.5q0-.61-.31-.97-.32-.36-.85-.36-.52 0-.85.36-.33.36-.33.96v4.51q0 .08-.05.13-.06.05-.13.05h-1.74q-.08 0-.13-.05t-.05-.13v-4.5q0-.6-.33-.97-.33-.36-.86-.36-.47 0-.8.28-.32.29-.38.8v4.75q0 .08-.05.13-.06.05-.13.05H55q-.08 0-.13-.05t-.05-.13v-7.35q0-.07.05-.13.05-.05.13-.05h1.75q.07 0 .13.05.05.06.05.13v.59q0 .04.03.06.03.01.06-.04.62-.91 1.91-.91.75 0 1.31.32.56.31.86.9.04.09.11 0 .32-.62.89-.92.56-.3 1.26-.3Zm10.76 3.18q.09.57.06 1.27-.02.19-.2.19h-4.63q-.09 0-.06.07.04.3.16.6.39.84 1.59.84.96-.01 1.52-.78.06-.09.13-.09.05 0 .11.06l1.08 1.06q.07.08.07.14 0 .03-.06.12-.49.62-1.27.95-.78.34-1.71.34-1.29 0-2.18-.58-.9-.59-1.29-1.64-.31-.75-.31-1.96 0-.83.22-1.46.35-1.06 1.21-1.69.86-.63 2.05-.63 1.5 0 2.41.87.91.87 1.1 2.32Zm-3.5-1.36q-.94 0-1.24.88-.06.2-.11.48 0 .07.08.07h2.59q.09 0 .06-.07-.07-.43-.07-.42-.14-.45-.47-.7-.34-.24-.84-.24Zm8.7-1.8q.54 0 .86.21.12.06.09.22l-.31 1.71q-.02.18-.22.11-.22-.08-.52-.08-.12 0-.33.03-.54.05-.92.4-.37.35-.37.94v4.09q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.06-.05-.06-.13v-7.35q0-.07.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v.57q0 .04.03.06.03.02.05-.02.61-.89 1.64-.89ZM38.06 34.68q0-.07.05-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v10.14q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.05-.05-.05-.13v-4.14q0-.07-.08-.07h-3.32q-.07 0-.07.07v4.14q0 .08-.05.13-.06.05-.13.05h-1.76q-.07 0-.12-.05-.06-.05-.06-.13V34.68q0-.07.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v4.03q0 .08.07.08h3.32q.08 0 .08-.08v-4.03Zm4.84 1.74q-.51 0-.85-.34-.34-.33-.34-.84 0-.53.33-.86.33-.33.86-.33t.86.33q.33.33.33.86 0 .51-.34.84-.34.34-.85.34ZM42 45q-.07 0-.13-.05-.05-.05-.05-.13v-7.36q0-.08.05-.13.06-.05.13-.05h1.76q.07 0 .12.05.06.05.06.13v7.36q0 .08-.06.13-.05.05-.12.05H42Zm8.29-7.53q0-.07.06-.13.05-.05.12-.05h1.76q.07 0 .13.05.05.06.05.13v6.84q0 1.96-1.13 2.8-1.13.85-2.92.85-.53 0-1.17-.08-.15-.02-.15-.19l.06-1.55q0-.2.21-.17.54.09.99.09.96 0 1.48-.41.51-.43.51-1.35 0-.05-.03-.06-.03-.01-.06.03-.57.61-1.66.61-.98 0-1.79-.47-.82-.47-1.17-1.52-.22-.69-.22-1.79 0-1.17.27-1.9.31-.92 1.06-1.47.75-.56 1.75-.56 1.15 0 1.76.69.03.03.06.02.03-.01.03-.05v-.36Zm-.12 4.84q.12-.44.12-1.23 0-.46-.03-.71-.03-.26-.1-.49-.14-.4-.45-.65-.31-.24-.78-.24-.45 0-.76.24-.32.25-.47.65-.21.45-.21 1.22 0 .84.18 1.2.13.41.47.65.34.25.8.25.48 0 .8-.25.31-.24.43-.64Zm7.78-5.14q1.2 0 1.93.74.73.73.73 1.99v4.92q0 .08-.05.13t-.12.05h-1.76q-.07 0-.13-.05-.05-.05-.05-.13v-4.49q0-.59-.34-.97-.33-.37-.89-.37-.55 0-.89.37-.34.38-.34.97v4.49q0 .08-.05.13t-.13.05h-1.75q-.08 0-.13-.05t-.05-.13V34.68q0-.07.05-.13.05-.05.13-.05h1.75q.08 0 .13.05.05.06.05.13V38q0 .04.03.06.03.01.04-.02.62-.87 1.84-.87Z\"/><path fill=\"#fff\" d=\"M16.9 75.48q-.78 0-1.36-.25-.58-.25-.9-.7-.31-.45-.31-1.06v-.25q0-.05.04-.09.03-.03.08-.03h.89q.05 0 .09.03.03.04.03.09v.19q0 .46.41.76.41.31 1.12.31.61 0 .92-.26.31-.26.31-.67 0-.28-.17-.48-.17-.19-.48-.35-.32-.16-.95-.4-.71-.26-1.15-.49-.44-.23-.73-.63-.3-.39-.3-.98 0-.88.64-1.39.64-.51 1.71-.51.75 0 1.33.26.57.26.89.73.32.46.32 1.07v.17q0 .05-.04.09-.03.03-.08.03h-.9q-.05 0-.08-.03-.04-.04-.04-.09v-.11q0-.47-.38-.79-.39-.33-1.07-.33-.55 0-.85.23-.31.23-.31.65 0 .3.16.49t.48.34q.32.16.99.4.71.27 1.14.49.42.22.73.61.3.4.3.99 0 .9-.67 1.43-.66.53-1.81.53Zm9.01-5.27q.77 0 1.21.46.43.47.43 1.3v3.31q0 .05-.03.08-.04.04-.09.04h-.91q-.05 0-.08-.04-.04-.03-.04-.08v-3.07q0-.46-.24-.73-.25-.27-.66-.27-.41 0-.67.27-.26.27-.26.72v3.08q0 .05-.03.08-.04.04-.09.04h-.91q-.05 0-.09-.04-.03-.03-.03-.08v-3.07q0-.46-.25-.73-.25-.27-.66-.27-.38 0-.63.22-.24.22-.28.6v3.25q0 .05-.03.08-.04.04-.09.04h-.92q-.05 0-.08-.04-.04-.03-.04-.08v-4.87q0-.05.04-.09.03-.03.08-.03h.92q.05 0 .09.03.03.04.03.09v.33q0 .03.02.04.02.01.04-.02.22-.28.54-.41.33-.14.73-.14.49 0 .86.2t.57.58q.03.04.07 0 .22-.4.61-.59.39-.19.87-.19Zm4.77 0q.63 0 1.11.22.48.22.74.6.26.39.26.88v3.37q0 .05-.03.08-.04.04-.09.04h-.92q-.05 0-.08-.04-.04-.03-.04-.08v-.32q0-.03-.02-.04-.02 0-.04.02-.49.54-1.42.54-.75 0-1.23-.38-.49-.38-.49-1.13 0-.78.55-1.22.54-.43 1.53-.43h1.07q.05 0 .05-.05v-.24q0-.39-.23-.61-.23-.21-.69-.21-.38 0-.61.14-.24.13-.3.37-.03.12-.14.1l-.97-.12q-.05-.01-.08-.03-.04-.03-.03-.07.08-.61.66-1 .57-.39 1.44-.39Zm-.24 4.35q.49 0 .84-.26t.35-.66v-.47q0-.05-.05-.05h-.84q-.53 0-.83.2-.31.2-.31.57 0 .32.24.49.23.18.6.18Zm3.63.84q-.05 0-.08-.04-.04-.03-.04-.08v-6.76q0-.05.04-.08.03-.04.08-.04h.92q.05 0 .09.04.03.03.03.08v6.76q0 .05-.03.08-.04.04-.09.04h-.92Zm2.39 0q-.05 0-.08-.04-.04-.03-.04-.08v-6.76q0-.05.04-.08.03-.04.08-.04h.92q.05 0 .09.04.03.03.03.08v6.76q0 .05-.03.08-.04.04-.09.04h-.92Zm8.29-3.65q-.06.03 0 .06 1.02.48 1.02 1.65 0 .95-.63 1.45-.64.49-1.66.49h-2.52q-.05 0-.08-.04-.04-.03-.04-.08v-6.76q0-.05.04-.08.03-.04.08-.04h2.44q1.09 0 1.68.47.59.47.59 1.42 0 1.05-.92 1.46Zm-2.7-2.35q-.05 0-.05.05v1.85q0 .05.05.05h1.35q.53 0 .84-.25.3-.26.3-.71 0-.46-.3-.73-.31-.26-.84-.26h-1.35Zm1.43 4.99q.52 0 .83-.28.3-.28.3-.76 0-.49-.31-.76-.31-.28-.84-.28h-1.41q-.05 0-.05.05v1.98q0 .05.05.05h1.43Zm6.4-3.98q0-.05.03-.09.04-.03.09-.03h.91q.05 0 .09.03.03.04.03.09v4.87q0 .05-.03.08-.04.04-.09.04H50q-.05 0-.09-.04-.03-.03-.03-.08v-.32q0-.03-.02-.04-.02-.01-.04.02-.41.53-1.23.53-.76 0-1.27-.44-.52-.44-.52-1.25v-3.37q0-.05.03-.09.04-.03.09-.03h.92q.05 0 .09.03.03.04.03.09v3.04q0 .47.25.75.24.28.68.28.45 0 .72-.28.27-.28.27-.75v-3.04Zm4.29 5.05q-.63 0-1.11-.19-.47-.18-.73-.51-.26-.32-.26-.72v-.09q0-.05.03-.09.04-.03.09-.03h.88q.05 0 .08.03.04.04.04.09v.02q0 .25.27.44.28.18.7.18.4 0 .65-.16.25-.17.25-.42 0-.23-.21-.35-.2-.11-.66-.24l-.38-.12q-.51-.15-.86-.32t-.59-.47q-.24-.29-.24-.75 0-.7.55-1.11.55-.42 1.45-.42.61 0 1.07.19.46.2.71.54.25.35.25.79 0 .05-.04.09-.03.03-.08.03h-.85q-.05 0-.09-.03-.03-.04-.03-.09 0-.26-.26-.43-.25-.18-.69-.18-.39 0-.64.14-.24.15-.24.41 0 .24.23.36.24.13.79.28l.22.06q.53.16.89.32.36.17.61.46.25.3.25.77 0 .71-.56 1.11-.56.41-1.49.41Zm3.69-5.87q-.31 0-.51-.2t-.2-.51q0-.31.2-.51t.51-.2q.31 0 .51.2t.2.51q0 .31-.2.51t-.51.2Zm-.48 5.81q-.05 0-.09-.04-.03-.03-.03-.08V70.4q0-.05.03-.08.04-.04.09-.04h.92q.05 0 .08.04.04.03.04.08v4.88q0 .05-.04.08-.03.04-.08.04h-.92Zm4.82-5.19q.81 0 1.29.48.49.48.49 1.31v3.28q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-3.04q0-.46-.26-.75-.26-.28-.69-.28-.43 0-.7.28-.26.28-.26.74v3.05q0 .05-.04.08-.03.04-.08.04h-.92q-.05 0-.09-.04-.03-.03-.03-.08v-4.87q0-.05.03-.09.04-.03.09-.03h.92q.05 0 .08.03.04.04.04.09v.32q0 .03.02.04.02.01.03-.02.41-.54 1.24-.54Zm7.26 2.06q.04.25.04.56l-.01.31q0 .12-.12.12h-3.13q-.05 0-.05.05.03.33.09.45.24.72 1.17.73.68 0 1.08-.56.04-.06.1-.06.04 0 .07.03l.62.51q.09.07.03.16-.31.44-.83.68-.51.24-1.14.24-.78 0-1.33-.35-.54-.35-.79-.98-.23-.54-.23-1.5 0-.58.12-.94.2-.7.75-1.11.56-.4 1.34-.4 1.97 0 2.22 2.06Zm-2.22-1.06q-.37 0-.62.19-.24.18-.34.51-.06.17-.08.44-.02.05.04.05h2.03q.05 0 .05-.05-.02-.25-.06-.38-.09-.36-.36-.56-.26-.2-.66-.2Zm5.14 4.25q-.63 0-1.11-.19-.47-.18-.73-.51-.26-.32-.26-.72v-.09q0-.05.03-.09.04-.03.09-.03h.88q.05 0 .08.03.04.04.04.09v.02q0 .25.27.44.28.18.7.18.4 0 .65-.16.25-.17.25-.42 0-.23-.21-.35-.2-.11-.66-.24l-.38-.12q-.51-.15-.86-.32t-.59-.47q-.24-.29-.24-.75 0-.7.55-1.11.55-.42 1.45-.42.61 0 1.07.19.46.2.71.54.25.35.25.79 0 .05-.04.09-.03.03-.08.03h-.85q-.05 0-.09-.03-.03-.04-.03-.09 0-.26-.26-.43-.25-.18-.69-.18-.39 0-.64.14-.24.15-.24.41 0 .24.23.36.24.13.79.28l.22.06q.53.16.89.32.36.17.61.46.25.3.25.77 0 .71-.56 1.11-.56.41-1.49.41Zm4.83 0q-.63 0-1.11-.19-.47-.18-.73-.51-.26-.32-.26-.72v-.09q0-.05.03-.09.04-.03.09-.03h.88q.05 0 .08.03.04.04.04.09v.02q0 .25.27.44.28.18.7.18.4 0 .65-.16.25-.17.25-.42 0-.23-.21-.35-.2-.11-.66-.24l-.38-.12q-.51-.15-.86-.32t-.59-.47q-.24-.29-.24-.75 0-.7.55-1.11.55-.42 1.45-.42.61 0 1.07.19.46.2.71.54.25.35.25.79 0 .05-.04.09-.03.03-.08.03h-.85q-.05 0-.09-.03-.03-.04-.03-.09 0-.26-.26-.43-.25-.18-.69-.18-.39 0-.64.14-.24.15-.24.41 0 .24.23.36.24.13.79.28l.22.06q.53.16.89.32.36.17.61.46.25.3.25.77 0 .71-.56 1.11-.56.41-1.49.41Z\"/><path fill=\"#252530\" d=\"M31.16 89.5q-.11 0-.14-.1l-1.77-6.77-.01-.04q0-.09.11-.09h1.24q.1 0 .13.1l.95 4.07q.01.04.03.04.02 0 .03-.04l.92-4.06q.03-.11.13-.11h1.21q.11 0 .14.1l1 4.07q.01.03.03.04.02 0 .03-.04l.92-4.06q.03-.11.13-.11h1.18q.14 0 .11.13l-1.64 6.77q-.03.1-.14.1h-1.19q-.1 0-.13-.1l-1.02-4.33q-.01-.04-.03-.04-.02 0-.03.04l-.95 4.32q-.02.11-.13.11h-1.11Zm7.34 0q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h1.17q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04H38.5Zm6.53-6.88q0-.05.03-.08.04-.04.09-.04h1.17q.05 0 .08.04.04.03.04.08v6.76q0 .05-.04.08-.03.04-.08.04h-1.13q-.1 0-.14-.08l-2.59-4.28q-.02-.03-.04-.02-.02 0-.02.04l.02 4.22q0 .05-.04.08-.03.04-.08.04h-1.17q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h1.13q.1 0 .14.08l2.58 4.26q.02.03.04.02.02 0 .02-.04l-.01-4.2Zm7.46-.12q.05 0 .08.04.04.03.04.08v.98q0 .05-.04.08-.03.04-.08.04H50.7q-.05 0-.05.05v5.61q0 .05-.04.08-.03.04-.08.04h-1.17q-.05 0-.09-.04-.03-.03-.03-.08v-5.61q0-.05-.05-.05h-1.74q-.05 0-.09-.04-.03-.03-.03-.08v-.98q0-.05.03-.08.04-.04.09-.04h5.04Zm5.88 1.09q0 .05-.03.08-.04.04-.09.04h-3.28q-.05 0-.05.05v1.55q0 .05.05.05h2.15q.05 0 .08.03.04.04.04.09v.97q0 .05-.04.09-.03.03-.08.03h-2.15q-.05 0-.05.05v1.62q0 .05.05.05h3.28q.05 0 .09.03.03.04.03.09v.97q0 .05-.03.08-.04.04-.09.04h-4.62q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h4.62q.05 0 .09.04.03.03.03.08v.97Zm4.82 5.91q-.1 0-.14-.09l-1.25-2.77q-.02-.04-.06-.04h-.93q-.05 0-.05.05v2.73q0 .05-.04.08-.03.04-.08.04h-1.17q-.05 0-.09-.04-.03-.03-.03-.08v-6.76q0-.05.03-.08.04-.04.09-.04h2.86q.64 0 1.12.26.49.26.75.74.27.48.27 1.11 0 .68-.34 1.16-.34.49-.95.69-.05.02-.03.07l1.36 2.83q.02.04.02.06 0 .08-.11.08h-1.23Zm-2.38-5.79q-.05 0-.05.05v1.71q0 .05.05.05h1.31q.42 0 .68-.25.27-.25.27-.65t-.27-.66q-.26-.25-.68-.25h-1.31ZM37.94 97.63q-.02.02-.01.04t.04.02h2.71q.05 0 .09.03.03.04.03.09v.97q0 .05-.03.08-.04.04-.09.04h-4.5q-.05 0-.09-.04-.03-.03-.03-.08v-.92q0-.09.06-.15.49-.48 1-1.04.51-.57.64-.71.28-.33.57-.63.91-1.01.91-1.5 0-.35-.25-.58-.25-.22-.65-.22t-.65.22q-.25.23-.25.6v.25q0 .05-.04.09-.03.03-.08.03h-1.18q-.05 0-.08-.03-.04-.04-.04-.09v-.47q.03-.54.34-.96.31-.41.82-.63.52-.22 1.16-.22.71 0 1.24.26.52.27.81.72.28.45.28 1 0 .42-.21.86t-.63.95q-.31.39-.67.77-.36.38-1.07 1.1l-.15.15Zm6.11 1.38q-1.1 0-1.74-.62-.64-.61-.64-1.67v-2.64q0-1.04.64-1.65.64-.61 1.74-.61t1.75.61q.64.61.64 1.65v2.64q0 1.06-.64 1.67-.65.62-1.75.62Zm0-1.21q.45 0 .72-.28.26-.27.26-.73v-2.75q0-.46-.26-.73-.27-.28-.72-.28-.44 0-.7.28-.27.27-.27.73v2.75q0 .46.27.73.26.28.7.28Zm5.19-.17q-.02.02-.01.04t.04.02h2.71q.05 0 .09.03.03.04.03.09v.97q0 .05-.03.08-.04.04-.09.04h-4.5q-.05 0-.08-.04-.04-.03-.04-.08v-.92q0-.09.06-.15.49-.48 1-1.04.51-.57.64-.71.28-.33.57-.63.91-1.01.91-1.5 0-.35-.25-.58-.25-.22-.65-.22t-.65.22q-.25.23-.25.6v.25q0 .05-.03.09-.04.03-.09.03h-1.18q-.05 0-.08-.03-.04-.04-.04-.09v-.47q.03-.54.34-.96.31-.41.83-.63.51-.22 1.15-.22.71 0 1.24.26.52.27.81.72.28.45.28 1 0 .42-.21.86t-.63.95q-.31.39-.67.77-.36.38-1.07 1.1l-.15.15Zm8.18-1.92q.15.49.15.95 0 .51-.16.92-.23.64-.81 1.02-.58.37-1.36.37-.76 0-1.33-.36-.58-.37-.82-1-.1-.26-.15-.55v-.02q0-.11.12-.11h1.21q.1 0 .13.11.01.06.03.1.02.04.03.07.1.26.3.4.2.14.47.14.28 0 .49-.15.21-.15.31-.42.1-.2.1-.52 0-.29-.09-.52-.07-.26-.28-.4-.21-.14-.49-.14t-.52.13q-.24.13-.32.34-.03.1-.13.1h-1.23q-.05 0-.08-.04-.04-.03-.04-.08v-4.03q0-.05.04-.08.03-.04.08-.04h4.13q.05 0 .09.04.03.03.03.08v.97q0 .05-.03.08-.04.04-.09.04h-2.79q-.05 0-.05.05l-.01 1.48q0 .07.06.03.45-.29 1.04-.29.7 0 1.23.35.52.36.74.98Z\"/></svg>',withExternalLayout:true})]})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y32ai\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l0rh04\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2vvzs\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1d2f\",\"data-framer-name\":\"Auto Layout Vertical\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19akz1d\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17mea7d\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ixcsx9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-96adh8\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b9e51a\",\"data-styles-preset\":\"osMSorl2I\",children:\"Build workflows that actually drive revenue\"})}),className:\"framer-1240j7q\",\"data-framer-name\":\"Elevate your teams with AI-driven workflows\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l9tj7f\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1eapp9l\",\"data-styles-preset\":\"yCjoliBP7\",style:{\"--framer-text-color\":\"var(--token-66aa683b-3d09-4489-b453-0d8510e341f8, rgb(15, 13, 28))\"},children:\"Use Persana to build accurate leads list, enrich your lists with our AI agent, and automate workflows using highly sophisticated triggers, all at remarkable speed.\"})}),className:\"framer-piteyg\",\"data-framer-name\":\"Stay one step ahead with our Job Change Tracker. This powerful tool keeps you informed of job changes among your most valuable customers.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8hxvxi\",\"data-framer-name\":\"Frame 1000001765\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{height:200,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 326px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rr1fnx-container\",nodeId:\"ibG7_JwBg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Book a demo\",height:\"100%\",id:\"ibG7_JwBg\",layoutId:\"ibG7_JwBg\",style:{height:\"100%\"},UWKk6KEUY:\"https://calendly.com/d/2xg-4vb-t3c/persana-ai-onboarding\",variant:\"vwmRsjCPM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{height:200,width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px), 326px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l5my0s-container\",nodeId:\"GldlzBgYZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vbaRdeOhj:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimary,{CjEWOrXOr:\"Try for free now\",height:\"100%\",id:\"GldlzBgYZ\",layoutId:\"GldlzBgYZ\",style:{height:\"100%\"},UWKk6KEUY:\"http://platform.persana.ai\",variant:\"UtcpvGsQx\",width:\"100%\"})})})})})]})]})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1801hj3\",\"data-framer-name\":\"Line\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:603,svg:'<svg width=\"603\" height=\"8\" viewBox=\"0 0 603 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 4H603\" stroke=\"#D0D4DC\" stroke-linecap=\"round\" stroke-dasharray=\"10 10\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c5wj66\",\"data-framer-name\":\"Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nvtomu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6crpa\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:'\"What would take me three weeks, Persana did in 3 mins.  With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"'})}),className:\"framer-1mr1tx5\",\"data-framer-name\":'\"What would take me three weeks, Persana did in 3 mins. With Persana I was able to generate emails for an ICP in a matter of minutes using my tone and voice... \"',fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n131ic\",\"data-framer-name\":\"Auto Layout Horizontal\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o26ba7\",\"data-border\":true,\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3765,pixelWidth:3765,sizes:\"72px\",src:\"https://framerusercontent.com/images/mt7QXoxTjLEPht20SBnN6GHI.jpg\",srcSet:\"https://framerusercontent.com/images/mt7QXoxTjLEPht20SBnN6GHI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mt7QXoxTjLEPht20SBnN6GHI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mt7QXoxTjLEPht20SBnN6GHI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mt7QXoxTjLEPht20SBnN6GHI.jpg 3765w\"},className:\"framer-17msj5m\",\"data-framer-name\":\"pexels-apunto-group-agencia-de-publicidad-7752788 2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ldk8o5\",\"data-framer-name\":\"Auto Layout Vertical\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1htunj7\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Debparna Pratiher\"})}),className:\"framer-1dcsvtt\",\"data-framer-name\":\"Debparna Pratiher\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jxdw91\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(9, 9, 9)\"},children:\"Co-founder, Quest Labs\"})}),className:\"framer-yx138q\",\"data-framer-name\":\"Co-founder, Quest Labs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-suep45\",\"data-framer-name\":\"Auto Layout Horizontal\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17x5ox7\",\"data-framer-name\":\"Frame\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{background:{alt:\"\",fit:\"fill\",pixelHeight:1380,pixelWidth:1752,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 160px, 1000px), 326px) + 272px)`,src:\"https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png\",srcSet:\"https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png?scale-down-to=512 512w,https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png 1752w\"}},vbaRdeOhj:{background:{alt:\"\",fit:\"fill\",pixelHeight:1380,pixelWidth:1752,sizes:\"480px\",src:\"https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png\",srcSet:\"https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png?scale-down-to=512 512w,https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png 1752w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1380,pixelWidth:1752,src:\"https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png\",srcSet:\"https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png?scale-down-to=512 512w,https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YsD0bHsPIhPFf8lo9Ekj5Zw1co.png 1752w\"},className:\"framer-1547qy9\",\"data-framer-name\":\"image 38\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-beblkv-container\",\"data-framer-name\":\"Userflow v2\",name:\"Userflow v2\",nodeId:\"sk3iDPAG6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{variant:\"cNFZTlncj\"},vbaRdeOhj:{variant:\"rkBz5KCxo\"},X84QJldhy:{variant:\"zwj2FWyfj\"}},children:/*#__PURE__*/_jsx(FeaturesSlideshow,{height:\"100%\",id:\"sk3iDPAG6\",layoutId:\"sk3iDPAG6\",name:\"Userflow v2\",style:{width:\"100%\"},variant:\"u6yrpTtgP\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kwhcv8-container\",nodeId:\"GdA3FEB4M\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{variant:\"QEy3pi7UJ\"},vbaRdeOhj:{variant:\"iOenGaURr\"},X84QJldhy:{variant:\"HpAyQH6Zu\"}},children:/*#__PURE__*/_jsx(Resources,{height:\"100%\",id:\"GdA3FEB4M\",layoutId:\"GdA3FEB4M\",style:{width:\"100%\"},variant:\"bOjrDymec\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ohv9vg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18d5w28-container\",nodeId:\"l5lVljJbR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MainCTA,{height:\"100%\",id:\"l5lVljJbR\",layoutId:\"l5lVljJbR\",style:{width:\"100%\"},WfDU3GlBQ:\"Boost your revenue by 10x with Persana\",width:\"100%\",yRGa84stJ:\"Give your team an unfair advantage with Persana - start your journey today\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w3d6nl-container\",nodeId:\"Bu9TqnkHg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hFTQGMuWi:{variant:\"YTGRPEBXE\"},vbaRdeOhj:{variant:\"eEH4A7w1g\"},X84QJldhy:{variant:\"YTGRPEBXE\"}},children:/*#__PURE__*/_jsx(ComponentFooter,{height:\"100%\",id:\"Bu9TqnkHg\",layoutId:\"Bu9TqnkHg\",style:{width:\"100%\"},variant:\"VIpS0Rudn\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e99Ka.framer-lux5qc, .framer-e99Ka .framer-lux5qc { display: block; }\",\".framer-e99Ka.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-e99Ka .framer-1by31ed { flex: none; height: 1252px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-e99Ka .framer-110y5bt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1k78vo4-container { flex: none; height: 46px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-alcnct-container, .framer-e99Ka .framer-rusg5u-container, .framer-e99Ka .framer-po25cz-container, .framer-e99Ka .framer-rnc8au-container, .framer-e99Ka .framer-1ndin35-container, .framer-e99Ka .framer-1gl434x-container, .framer-e99Ka .framer-beblkv-container, .framer-e99Ka .framer-1kwhcv8-container, .framer-e99Ka .framer-18d5w28-container, .framer-e99Ka .framer-1w3d6nl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1qrb2o8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 78px; height: min-content; justify-content: center; overflow: hidden; padding: 21px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-9njpzx { -webkit-filter: blur(80px); aspect-ratio: 4.5506607929515415 / 1; filter: blur(80px); flex: none; height: var(--framer-aspect-ratio-supported, 227px); left: 50%; opacity: 0.7; position: absolute; top: 408px; transform: translateX(-50%); width: 100%; z-index: 0; }\",\".framer-e99Ka .framer-16rb12 { -webkit-filter: blur(100px); aspect-ratio: 4.5506607929515415 / 1; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 227px); left: 50%; opacity: 0.68; position: absolute; top: 720px; transform: translateX(-50%); width: 80%; z-index: 0; }\",\".framer-e99Ka .framer-dbrtry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 0; }\",\".framer-e99Ka .framer-9sg1fr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 22px 0px 22px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-191dk2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1tfp66w { 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: 26px 0px 26px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1a8pxz7, .framer-e99Ka .framer-slisqd, .framer-e99Ka .framer-1lkd3kt, .framer-e99Ka .framer-jkgsg9, .framer-e99Ka .framer-1jzf7o6, .framer-e99Ka .framer-1xaekej, .framer-e99Ka .framer-1dwfy5u, .framer-e99Ka .framer-sbn65x, .framer-e99Ka .framer-10sodj3, .framer-e99Ka .framer-11zanus, .framer-e99Ka .framer-nf659l, .framer-e99Ka .framer-11tq2xs, .framer-e99Ka .framer-nnefpo, .framer-e99Ka .framer-1cqpre0, .framer-e99Ka .framer-jfljv7, .framer-e99Ka .framer-kw4dc8, .framer-e99Ka .framer-mn5yk0, .framer-e99Ka .framer-awe9ld, .framer-e99Ka .framer-snow0s, .framer-e99Ka .framer-6y5ddv, .framer-e99Ka .framer-jzykd3, .framer-e99Ka .framer-15vciel, .framer-e99Ka .framer-jowj44, .framer-e99Ka .framer-obpa7q, .framer-e99Ka .framer-x6qn67, .framer-e99Ka .framer-4sllao, .framer-e99Ka .framer-15h2psl, .framer-e99Ka .framer-1ymyz5d, .framer-e99Ka .framer-7t17zf, .framer-e99Ka .framer-14rkh92, .framer-e99Ka .framer-1mr1tx5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-tke0os { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 656px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-1dzjazd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 640px; overflow: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1jrccku-container, .framer-e99Ka .framer-6941cl-container, .framer-e99Ka .framer-16984u5-container, .framer-e99Ka .framer-1prlfma-container, .framer-e99Ka .framer-1kvftqu-container, .framer-e99Ka .framer-1xfboz8-container, .framer-e99Ka .framer-qa815s-container, .framer-e99Ka .framer-ctthid-container, .framer-e99Ka .framer-b5nayi-container, .framer-e99Ka .framer-nckyis-container, .framer-e99Ka .framer-l674l6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-e99Ka .framer-12jf2fp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1yczzmp { --border-bottom-width: 3px; --border-color: var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, #c03edc); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; background: linear-gradient(90deg, #8e31a4 0%, rgb(80, 36, 220) 100%); border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 2px; position: relative; transform-style: preserve-3d; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e99Ka .framer-plfn15-container { aspect-ratio: 1.7777777777777777 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 560px); position: relative; width: 1px; }\",\".framer-e99Ka .framer-dygewn-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1xaj5pz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1120px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-19uah5i-container { flex: none; height: 54px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-ijy6qw { height: 54px; position: relative; width: 85px; }\",\".framer-e99Ka .framer-q4gvqx { aspect-ratio: 3.4833334463614003 / 1; height: var(--framer-aspect-ratio-supported, 54px); position: relative; width: 188px; }\",\".framer-e99Ka .framer-7sde9n, .framer-e99Ka .framer-i63kyi { height: 54px; position: relative; width: 131px; }\",\".framer-e99Ka .framer-1hn6uc0 { --border-bottom-width: 0px; --border-color: var(--token-5f0694c7-b756-4047-bbcc-7bd55538ff73, #8e31a4); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 80px 64px 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1i9242f { bottom: 0px; flex: none; left: 0px; opacity: 0.5; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-e99Ka .framer-ogre60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1p4svv3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-gdr7ty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-p3w8q6, .framer-e99Ka .framer-18tbi66, .framer-e99Ka .framer-ok6osj, .framer-e99Ka .framer-1726wuz, .framer-e99Ka .framer-1k185vy, .framer-e99Ka .framer-1bciylr, .framer-e99Ka .framer-sq5ybb, .framer-e99Ka .framer-1xw5f8z, .framer-e99Ka .framer-1hmi7x7, .framer-e99Ka .framer-vltp9r, .framer-e99Ka .framer-n5cy2m, .framer-e99Ka .framer-1ug7exf, .framer-e99Ka .framer-oai7xo, .framer-e99Ka .framer-5nfnde, .framer-e99Ka .framer-keb7ab, .framer-e99Ka .framer-kj4ix9, .framer-e99Ka .framer-1evortq, .framer-e99Ka .framer-5vyjfh, .framer-e99Ka .framer-36cj8n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-e99Ka .framer-1w85g3t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1gy3r8y, .framer-e99Ka .framer-18zpihi, .framer-e99Ka .framer-htbw9w, .framer-e99Ka .framer-1mzd2wq { --border-bottom-width: 0px; --border-color: var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, #c03edc); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 30px 30px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-5kk03g, .framer-e99Ka .framer-3cczjk, .framer-e99Ka .framer-sjtdu9, .framer-e99Ka .framer-g53r82, .framer-e99Ka .framer-34ba4h { bottom: 0px; flex: none; left: 0px; opacity: 0.4; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-e99Ka .framer-m65qf9, .framer-e99Ka .framer-133n82l, .framer-e99Ka .framer-fywoic, .framer-e99Ka .framer-1h0vf60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-5ma6qi { align-content: center; align-items: center; background-color: var(--token-ee506612-bf77-4878-94ae-0cb5f1e517db, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; z-index: 2; }\",\".framer-e99Ka .framer-1rn8xh9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1uzdvaa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 60px; width: 1px; z-index: 1; }\",\".framer-e99Ka .framer-b5hzc4, .framer-e99Ka .framer-jolya9, .framer-e99Ka .framer-hzg7ys { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-mjyc3m, .framer-e99Ka .framer-1cw23nz, .framer-e99Ka .framer-vtifmq, .framer-e99Ka .framer-6grcpb, .framer-e99Ka .framer-1kx3oce, .framer-e99Ka .framer-bocr71, .framer-e99Ka .framer-ogecnr, .framer-e99Ka .framer-1uimdw1, .framer-e99Ka .framer-1q30glz, .framer-e99Ka .framer-iz64ii, .framer-e99Ka .framer-aoqiis, .framer-e99Ka .framer-jgjdbj, .framer-e99Ka .framer-2o5ln8, .framer-e99Ka .framer-1ub4hl6, .framer-e99Ka .framer-wadc2, .framer-e99Ka .framer-1bdqfzy, .framer-e99Ka .framer-1p8tyxv, .framer-e99Ka .framer-7jgz58, .framer-e99Ka .framer-1m2j3ot, .framer-e99Ka .framer-17nij53, .framer-e99Ka .framer-1kriw0j, .framer-e99Ka .framer-1amyxs7, .framer-e99Ka .framer-1mk0wso, .framer-e99Ka .framer-7s695r, .framer-e99Ka .framer-q16bv9, .framer-e99Ka .framer-1npgh0e, .framer-e99Ka .framer-g7leef, .framer-e99Ka .framer-57up1v, .framer-e99Ka .framer-1j38tuc, .framer-e99Ka .framer-bnfhhm, .framer-e99Ka .framer-nvtomu, .framer-e99Ka .framer-1w6crpa, .framer-e99Ka .framer-1htunj7, .framer-e99Ka .framer-jxdw91 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1abrejx, .framer-e99Ka .framer-um81y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-c0imnc { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-cj6x6x, .framer-e99Ka .framer-1sjm0ih, .framer-e99Ka .framer-1nok9vc, .framer-e99Ka .framer-1oi2dyj, .framer-e99Ka .framer-ffre0n, .framer-e99Ka .framer-91a8br, .framer-e99Ka .framer-190qiaq, .framer-e99Ka .framer-74eed8, .framer-e99Ka .framer-1240j7q, .framer-e99Ka .framer-piteyg { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-p6avxs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-k6xaje { --border-bottom-width: 1px; --border-color: var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, #c03edc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-e99Ka .framer-1d6079o, .framer-e99Ka .framer-17gmnpc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 30px 40px 30px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-11mko5, .framer-e99Ka .framer-5s676z, .framer-e99Ka .framer-pbrvvx, .framer-e99Ka .framer-17e5uls { -webkit-filter: hue-rotate(289deg) blur(10px); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; filter: hue-rotate(289deg) blur(10px); flex: none; mix-blend-mode: hue; opacity: 0.1; overflow: hidden; position: absolute; right: -56px; top: -17px; width: 412px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-e99Ka .framer-1161zrn, .framer-e99Ka .framer-mbb61, .framer-e99Ka .framer-1esjr0k, .framer-e99Ka .framer-dtsmy9, .framer-e99Ka .framer-t8skpr, .framer-e99Ka .framer-1euohy7, .framer-e99Ka .framer-16izmrm, .framer-e99Ka .framer-5w0gw6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-10q4vf6 { aspect-ratio: 1.5185185185185186 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 277px); position: relative; width: 100%; }\",\".framer-e99Ka .framer-1gf923g, .framer-e99Ka .framer-1jfdh4m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 40px 30px 40px 30px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1nfrl8v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 87%; }\",\".framer-e99Ka .framer-1k03xpn { aspect-ratio: 1.5052192066805845 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 279px); position: relative; width: 100%; }\",\".framer-e99Ka .framer-k0ysur { aspect-ratio: 1.4745762711864407 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 285px); position: relative; width: 100%; }\",\".framer-e99Ka .framer-lzq5zy { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, #ffffff) 23.783778285121056%, rgb(249, 242, 255) 50.81080531214809%, var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, rgb(255, 255, 255)) 75.4955394847973%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-15thzdr { background-color: #ffffff; bottom: 74px; flex: none; height: 50px; left: calc(50.00000000000002% - 192px / 2); overflow: hidden; position: absolute; width: 192px; z-index: 1; }\",\".framer-e99Ka .framer-klbh14-container { flex: none; height: 613px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-j4h06e { align-content: center; align-items: center; background: linear-gradient(90deg, #8e31a4 0%, rgb(80, 36, 220) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-16v6mfd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1nsbj03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1qmaopt, .framer-e99Ka .framer-96adh8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-uvmby9, .framer-e99Ka .framer-y1ilts { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-lue6bd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1nct8if { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-1q2mcqn { --border-bottom-width: 1px; --border-color: var(--token-863874c0-1198-45bf-a63f-a48e444f7db9, #ede0fa); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-489ebfa6-0436-46bf-8963-b87117dbbadb, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-e99Ka .framer-1qy8d3u, .framer-e99Ka .framer-ni44iu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-szqe3h, .framer-e99Ka .framer-uyr7j2, .framer-e99Ka .framer-1vckkfq, .framer-e99Ka .framer-10toh54, .framer-e99Ka .framer-i1d2f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1d21iuj, .framer-e99Ka .framer-k2pfal { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-1rsnqp1, .framer-e99Ka .framer-1dv1v9b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-1cd3exq, .framer-e99Ka .framer-7u6ys0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-jqr15g { --border-bottom-width: 1px; --border-color: var(--token-863874c0-1198-45bf-a63f-a48e444f7db9, #ede0fa); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-489ebfa6-0436-46bf-8963-b87117dbbadb, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 24px 40px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-1rcd3gz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-t2t9p0 { aspect-ratio: 1.120092378752887 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 218px); overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-e99Ka .framer-zwx4kt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-4gtxnj { --border-bottom-width: 1px; --border-color: var(--token-863874c0-1198-45bf-a63f-a48e444f7db9, #ede0fa); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: var(--token-489ebfa6-0436-46bf-8963-b87117dbbadb, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: flex-start; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 40%; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-140tw5y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1rxavsg { aspect-ratio: 0.6883852691218131 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 511px); position: relative; width: 100%; }\",\".framer-e99Ka .framer-vpo043 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 90px 60px 32px 60px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-470m98 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-6lb9vu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 60px; width: 1px; z-index: 1; }\",\".framer-e99Ka .framer-193hpn7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 530px; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-gxcgan { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-nbci0m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1vkx793 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-14e7eko, .framer-e99Ka .framer-1j6p4d8, .framer-e99Ka .framer-1299xov, .framer-e99Ka .framer-jllwnn, .framer-e99Ka .framer-1csakm0, .framer-e99Ka .framer-vn46jt, .framer-e99Ka .framer-1qwmp1m, .framer-e99Ka .framer-1wiax1t, .framer-e99Ka .framer-1v2oyi1, .framer-e99Ka .framer-zasr07 { --border-bottom-width: 1px; --border-color: var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, #c03edc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(234, 0, 255, 0.05); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 10px 7px 7px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-ywg4ni, .framer-e99Ka .framer-9apknx, .framer-e99Ka .framer-1qnjny7, .framer-e99Ka .framer-p9k51p, .framer-e99Ka .framer-1pv8vgd, .framer-e99Ka .framer-8qpclr, .framer-e99Ka .framer-1nb7avw, .framer-e99Ka .framer-165wg5b, .framer-e99Ka .framer-bacpde, .framer-e99Ka .framer-1ll2yg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 0px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-1p4q8gm, .framer-e99Ka .framer-1l0zb88, .framer-e99Ka .framer-14sbrp1, .framer-e99Ka .framer-2b3rgw, .framer-e99Ka .framer-1hn8zl9, .framer-e99Ka .framer-acl28l, .framer-e99Ka .framer-1xe6iyt, .framer-e99Ka .framer-4g091r, .framer-e99Ka .framer-10zkqcf, .framer-e99Ka .framer-8zg260 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background: linear-gradient(132deg, rgba(245, 243, 255, 0.1) 0%, rgba(192, 62, 220, 0.1) 210%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: inset 2px -2px 16px 0px #f566ff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-90vdkk, .framer-e99Ka .framer-1vtsnkl, .framer-e99Ka .framer-1xil9v, .framer-e99Ka .framer-4ka39f, .framer-e99Ka .framer-10cw7wz, .framer-e99Ka .framer-1ftsl0f, .framer-e99Ka .framer-1qhl3zp, .framer-e99Ka .framer-yo3qmc, .framer-e99Ka .framer-dvhka3, .framer-e99Ka .framer-btikrr { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-e99Ka .framer-yfxzjx, .framer-e99Ka .framer-jlj3eb, .framer-e99Ka .framer-14za6st, .framer-e99Ka .framer-hx3bw1, .framer-e99Ka .framer-2y4ih5, .framer-e99Ka .framer-t3e28e, .framer-e99Ka .framer-12py8xb, .framer-e99Ka .framer-1frhz3a, .framer-e99Ka .framer-1diza7y, .framer-e99Ka .framer-11ucspu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-e99Ka .framer-ddg4hf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-5jasnb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-c4azdx { background: linear-gradient(180deg, var(--token-863874c0-1198-45bf-a63f-a48e444f7db9, #ede0fa) 0%, var(--token-5f0694c7-b756-4047-bbcc-7bd55538ff73, rgb(142, 49, 164)) 100%); flex: none; height: 110%; left: 1px; overflow: hidden; position: absolute; top: 0px; width: 1px; z-index: 1; }\",\".framer-e99Ka .framer-1x3y5rc, .framer-e99Ka .framer-jaekcy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-gp25ls, .framer-e99Ka .framer-1xbak20 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 3px; z-index: 1; }\",\".framer-e99Ka .framer-1l69b9k, .framer-e99Ka .framer-utjjko { background-color: var(--token-4f647512-f9f6-44f3-9e1e-5b9cd5243150, #7338e0); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: 40px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 3px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e99Ka .framer-1a4re9a, .framer-e99Ka .framer-9j21ks { background: linear-gradient(180deg, var(--token-4f647512-f9f6-44f3-9e1e-5b9cd5243150, #7338e0) 0%, var(--token-466f412f-31e4-4f7f-a7e6-91a69b113f31, rgba(1, 1, 1, 0)) 100%); flex: none; height: 80px; left: 0px; opacity: 0.5; overflow: hidden; position: absolute; top: 38px; width: 3px; z-index: 1; }\",\".framer-e99Ka .framer-1w0vq1d, .framer-e99Ka .framer-1rej1xn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1micv75, .framer-e99Ka .framer-cfvbij { align-content: center; align-items: center; background: linear-gradient(90deg, #8e31a4 0%, rgb(80, 36, 220) 100%); border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 270px; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1xxmj5, .framer-e99Ka .framer-1grk30v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-pqgurs { flex: none; height: 108px; overflow: hidden; position: relative; width: 88%; }\",\".framer-e99Ka .framer-6h48no { aspect-ratio: 3.357142857142857 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; }\",\".framer-e99Ka .framer-1ub8652, .framer-e99Ka .framer-3c3gnb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-a76jov, .framer-e99Ka .framer-1f288ra, .framer-e99Ka .framer-14rczig, .framer-e99Ka .framer-o5znlh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1omgx7n, .framer-e99Ka .framer-151md7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-1v7vuhq, .framer-e99Ka .framer-125b7dn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-ck36yb, .framer-e99Ka .framer-1ihp43w { flex: none; height: 17px; position: relative; text-decoration: none; width: 16px; }\",\".framer-e99Ka .framer-108g5ok { aspect-ratio: 3.263888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 117px); position: relative; width: 88%; }\",\".framer-e99Ka .framer-1hd86h1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 80px 48px 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1frd7hc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1iqs6ir { --border-bottom-width: 4px; --border-color: var(--token-799417b1-911d-4893-a870-42e397cb34ab, #ffffff); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; background-color: var(--token-e23e9fe4-f9ac-4a61-ade5-073c1d61b52f, #f1f5f9); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 40px 0px 80px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-ty166a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-127gulj { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(222, 49, 245, 0.2); border-bottom-left-radius: 75px; border-bottom-right-radius: 75px; border-top-left-radius: 75px; border-top-right-radius: 75px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 420px); left: 50%; opacity: 0.68; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 420px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-e99Ka .framer-1a8oapz { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(98, 49, 245, 0.2); border-bottom-left-radius: 75px; border-bottom-right-radius: 75px; border-top-left-radius: 75px; border-top-right-radius: 75px; bottom: 62px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 251px); left: 34px; overflow: hidden; position: absolute; width: 251px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e99Ka .framer-myhpwu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1040px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-tpqrg2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-7jqaqe, .framer-e99Ka .framer-1c7wf3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-1kx3cv1, .framer-e99Ka .framer-1odixbq { background-color: var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, #c03edc); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-e99Ka .framer-4166s, .framer-e99Ka .framer-1lrffpz { -webkit-filter: brightness(0) contrast(0.56) hue-rotate(360deg) saturate(2); filter: brightness(0) contrast(0.56) hue-rotate(360deg) saturate(2); flex: none; height: 30px; mix-blend-mode: color-burn; overflow: hidden; position: relative; width: 15px; }\",\".framer-e99Ka .framer-yqdpgt { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-1rm6hat { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 114px; }\",\".framer-e99Ka .framer-1uccd0s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-e99Ka .framer-rtk2x0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-val9bp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-z2blaz { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: rgba(98, 49, 245, 0.2); border-bottom-left-radius: 75px; border-bottom-right-radius: 75px; border-top-left-radius: 75px; border-top-right-radius: 75px; filter: blur(100px); flex: none; height: var(--framer-aspect-ratio-supported, 320px); left: 972px; overflow: hidden; position: absolute; top: 50%; transform: translateY(-50%); width: 320px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e99Ka .framer-ygpd2d { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-16uiiw5 { align-content: center; align-items: center; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1a31hqg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-jpg9uf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-x4zpzb { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; min-width: 320px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-irc8ps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-lqqfio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-kf1vst { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-r0figj-container, .framer-e99Ka .framer-1r2r99s-container { flex: none; height: 280px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1dbxfuu, .framer-e99Ka .framer-1fc563m, .framer-e99Ka .framer-nt2f3f, .framer-e99Ka .framer-1cjdvko, .framer-e99Ka .framer-13y3fkj, .framer-e99Ka .framer-lb3a96, .framer-e99Ka .framer-xgr39g, .framer-e99Ka .framer-bjgek5 { --border-bottom-width: 0px; --border-color: #c03edc; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 5px 5px 10px 0px rgba(192, 62, 220, 0.25), -5px 0px 10px 0px rgba(192, 62, 220, 0.25); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 384px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-frvcyw, .framer-e99Ka .framer-l0rqmr, .framer-e99Ka .framer-z00q5u, .framer-e99Ka .framer-1lm4b0 { align-content: flex-start; align-items: flex-start; background-color: #ddd8ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1vnh508, .framer-e99Ka .framer-18wsf24, .framer-e99Ka .framer-1ruwr8s, .framer-e99Ka .framer-b4c8t2 { 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: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-lnxdxx, .framer-e99Ka .framer-mpdume, .framer-e99Ka .framer-1t9tfzq, .framer-e99Ka .framer-1fg885r, .framer-e99Ka .framer-1yozi3y, .framer-e99Ka .framer-o26ba7 { --border-bottom-width: 2px; --border-color: #000000; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-10iytqv { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 46px; left: 2px; position: absolute; right: 0px; top: 2px; }\",\".framer-e99Ka .framer-njj8uz, .framer-e99Ka .framer-cfbfti, .framer-e99Ka .framer-1mdwd2s, .framer-e99Ka .framer-1wk5e0f, .framer-e99Ka .framer-brc4js, .framer-e99Ka .framer-ldk8o5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-1hykuo { 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: 0px; position: relative; width: 347px; }\",\".framer-e99Ka .framer-1mnvvkn { aspect-ratio: 1.1388888888888888 / 1; bottom: var(--framer-aspect-ratio-supported, -25px); flex: none; height: 72px; left: -18px; position: absolute; right: -16px; top: 1px; }\",\".framer-e99Ka .framer-1hoffsp, .framer-e99Ka .framer-iou9wn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 283px; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-fr4kdm, .framer-e99Ka .framer-1ptb8eu, .framer-e99Ka .framer-18o3jx1 { --framer-paragraph-spacing: 0px; flex: none; height: 120px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-r44ipo, .framer-e99Ka .framer-1wh5r68, .framer-e99Ka .framer-1lf67hn, .framer-e99Ka .framer-3y4c5q, .framer-e99Ka .framer-1a25qc2, .framer-e99Ka .framer-ns29wf { align-content: flex-start; align-items: flex-start; background-color: var(--token-32d7b6c8-4fe9-494d-a645-3b539b0ab4f2, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1sfpa83, .framer-e99Ka .framer-1te15ft { aspect-ratio: 1 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 48px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-e99Ka .framer-110qzs5 { aspect-ratio: 1 / 1; bottom: -40px; flex: none; height: var(--framer-aspect-ratio-supported, 88px); left: -23px; position: absolute; right: -17px; }\",\".framer-e99Ka .framer-1opy45h { align-content: center; align-items: center; background: linear-gradient(90deg, #8e31a4 0%, rgb(80, 36, 220) 100%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 16px 6px 16px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-ows9m1 { flex: none; height: 20px; position: relative; width: 21px; }\",\".framer-e99Ka .framer-zubvmc { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, -8px); flex: none; height: 56px; left: -4px; position: absolute; right: -4px; top: 0px; }\",\".framer-e99Ka .framer-1owaq38, .framer-e99Ka .framer-18vncgp, .framer-e99Ka .framer-1ug6ozk, .framer-e99Ka .framer-102rm2r, .framer-e99Ka .framer-au44jw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 320px; }\",\".framer-e99Ka .framer-142vf0m, .framer-e99Ka .framer-ogq31f, .framer-e99Ka .framer-67cy8f, .framer-e99Ka .framer-1kofyln, .framer-e99Ka .framer-17x3in8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-ziiiae, .framer-e99Ka .framer-101ngbq, .framer-e99Ka .framer-mgeizx, .framer-e99Ka .framer-r1du5x, .framer-e99Ka .framer-1hq1d58 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-e99Ka .framer-12dp520, .framer-e99Ka .framer-mjvkg7, .framer-e99Ka .framer-w1z5k5, .framer-e99Ka .framer-rpwcwf, .framer-e99Ka .framer-1w93ncl, .framer-e99Ka .framer-sycwcp { flex: none; height: 20px; position: relative; width: 116px; }\",\".framer-e99Ka .framer-ork8p8, .framer-e99Ka .framer-usdm93 { --border-bottom-width: 0px; --border-color: #c03edc; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 5px 5px 10px 0px rgba(192, 62, 220, 0.25), -5px 0px 10px 0px rgba(192, 62, 220, 0.25); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 240px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 384px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-1citgd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1mtyv6i { --border-bottom-width: 1px; --border-color: var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, #c03edc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8392e9ff-7602-4828-88a4-b69681ede64b, #fdfcff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: center; max-width: 960px; min-width: 640px; overflow: hidden; padding: 0px; position: sticky; top: 130px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-e99Ka .framer-wsmtb0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-width: 320px; overflow: visible; padding: 64px 24px 64px 24px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-1kxvojz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-193rmli, .framer-e99Ka .framer-1nvcsup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1hmvaa9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-vjzsb6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-dimymv { align-content: center; align-items: center; border-bottom-left-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 480px; min-width: 320px; overflow: hidden; padding: 40px 32px 40px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-e99Ka .framer-17m9y3y { flex: none; height: 120px; position: relative; width: 107px; }\",\".framer-e99Ka .framer-1jdqzrf, .framer-e99Ka .framer-kolzfw, .framer-e99Ka .framer-16944bw, .framer-e99Ka .framer-1xdr7u1 { aspect-ratio: 0.7704918032786885 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 122px); position: relative; width: 94px; }\",\".framer-e99Ka .framer-y32ai { --border-bottom-width: 1px; --border-color: var(--token-dd238ee5-9ee0-4680-8df0-cc4888a95728, #c03edc); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-821dd51f-9d92-44f4-bf42-cdbe0a8185c7, #f5f3ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1l0rh04 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-b2vvzs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; min-width: 326px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-19akz1d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-17mea7d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1ixcsx9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1l9tj7f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-8hxvxi { 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: 0px; position: relative; width: min-content; }\",\".framer-e99Ka .framer-1rr1fnx-container, .framer-e99Ka .framer-1l5my0s-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-e99Ka .framer-1801hj3 { flex: none; height: 8px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1c5wj66 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 1px 1px 4px 0px #ddd8ff, -1px -1px 4px 0px rgb(221, 216, 255); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1n131ic { 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: 0px; position: relative; width: 619px; }\",\".framer-e99Ka .framer-17msj5m { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, -26px); flex: none; height: 72px; left: -12px; position: absolute; right: -12px; top: 2px; }\",\".framer-e99Ka .framer-1dcsvtt, .framer-e99Ka .framer-yx138q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 555px; word-break: break-word; word-wrap: break-word; }\",\".framer-e99Ka .framer-suep45 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; min-height: 560px; min-width: 326px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-e99Ka .framer-17x5ox7 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; gap: 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-e99Ka .framer-1547qy9 { aspect-ratio: 1.2695652173913043 / 1; bottom: -114px; flex: none; left: -120px; position: absolute; top: 56px; width: var(--framer-aspect-ratio-supported, 787px); }\",\".framer-e99Ka .framer-ohv9vg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-e99Ka[data-border=\"true\"]::after, .framer-e99Ka [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-e99Ka.framer-72rtr7 { width: 1200px; } .framer-e99Ka .framer-1qrb2o8 { padding: 21px 80px 64px 80px; } .framer-e99Ka .framer-dbrtry { max-width: unset; } .framer-e99Ka .framer-j4h06e { padding: 80px 64px 80px 64px; } .framer-e99Ka .framer-1547qy9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 583px); right: -152px; width: unset; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-e99Ka.framer-72rtr7 { gap: 24px; width: 810px; } .framer-e99Ka .framer-1qrb2o8 { gap: 40px; padding: 21px 40px 40px 40px; } .framer-e99Ka .framer-plfn15-container { height: var(--framer-aspect-ratio-supported, 408px); } .framer-e99Ka .framer-1p4svv3 { max-width: 625px; } .framer-e99Ka .framer-1w85g3t { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(250px, 1fr)); grid-template-rows: repeat(2, min-content); justify-content: center; max-width: 550px; } .framer-e99Ka .framer-1gy3r8y, .framer-e99Ka .framer-18zpihi, .framer-e99Ka .framer-htbw9w, .framer-e99Ka .framer-1mzd2wq { align-self: start; flex: none; justify-self: start; min-width: 264px; padding: 40px 30px 30px 30px; width: 1fr; } .framer-e99Ka .framer-1rn8xh9 { flex-direction: column; gap: 48px; overflow: hidden; padding: 40px 48px 40px 48px; } .framer-e99Ka .framer-1uzdvaa { flex: none; gap: 32px; padding: 0px 30px 0px 30px; position: relative; top: unset; width: 100%; } .framer-e99Ka .framer-p6avxs, .framer-e99Ka .framer-1nct8if { flex: none; width: 100%; } .framer-e99Ka .framer-k6xaje { align-content: flex-start; align-items: flex-start; padding: 40px 30px 60px 30px; } .framer-e99Ka .framer-1d6079o, .framer-e99Ka .framer-17gmnpc, .framer-e99Ka .framer-1gf923g, .framer-e99Ka .framer-1jfdh4m { padding: 40px 0px 40px 0px; } .framer-e99Ka .framer-10q4vf6 { height: var(--framer-aspect-ratio-supported, 326px); } .framer-e99Ka .framer-1k03xpn { height: var(--framer-aspect-ratio-supported, 329px); } .framer-e99Ka .framer-k0ysur { height: var(--framer-aspect-ratio-supported, 335px); } .framer-e99Ka .framer-klbh14-container { height: 697px; } .framer-e99Ka .framer-j4h06e { padding: 64px; } .framer-e99Ka .framer-lue6bd, .framer-e99Ka .framer-470m98 { flex-direction: column; } .framer-e99Ka .framer-1q2mcqn { gap: 32px; padding: 32px 0px 32px 0px; } .framer-e99Ka .framer-1rcd3gz { gap: 32px; padding: 32px; } .framer-e99Ka .framer-t2t9p0 { height: var(--framer-aspect-ratio-supported, 236px); } .framer-e99Ka .framer-4gtxnj { align-self: unset; gap: unset; height: min-content; justify-content: space-between; padding: 32px 0px 32px 0px; width: 100%; } .framer-e99Ka .framer-140tw5y { align-content: center; align-items: center; flex: none; height: min-content; justify-content: center; padding: 0px 0px 0px 32px; } .framer-e99Ka .framer-1rxavsg { height: var(--framer-aspect-ratio-supported, 945px); } .framer-e99Ka .framer-vpo043 { padding: 60px 35px 60px 35px; } .framer-e99Ka .framer-6lb9vu { flex: none; position: relative; top: unset; width: 100%; } .framer-e99Ka .framer-193hpn7 { max-width: 100%; padding: 0px; } .framer-e99Ka .framer-1vkx793 { gap: 10px; padding: 10px 0px 0px 0px; } .framer-e99Ka .framer-ddg4hf { flex: none; padding: 0px 0px 60px 0px; width: 100%; } .framer-e99Ka .framer-108g5ok { height: var(--framer-aspect-ratio-supported, 189px); } .framer-e99Ka .framer-1mtyv6i { min-width: 320px; width: min-content; } .framer-e99Ka .framer-wsmtb0 { flex: none; width: 480px; } .framer-e99Ka .framer-dimymv { border-bottom-left-radius: unset; flex: none; width: 480px; will-change: unset; } .framer-e99Ka .framer-1547qy9 { width: var(--framer-aspect-ratio-supported, 784px); }}\",\"@media (max-width: 809px) { .framer-e99Ka.framer-72rtr7 { width: 390px; } .framer-e99Ka .framer-110y5bt { gap: 6px; } .framer-e99Ka .framer-1k78vo4-container { height: auto; } .framer-e99Ka .framer-1qrb2o8 { gap: 40px; padding: 0px 24px 40px 24px; } .framer-e99Ka .framer-9njpzx, .framer-e99Ka .framer-16rb12 { height: var(--framer-aspect-ratio-supported, 242px); width: 98%; } .framer-e99Ka .framer-dbrtry { gap: 64px; padding: 24px 0px 0px 0px; } .framer-e99Ka .framer-1yczzmp { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; } .framer-e99Ka .framer-plfn15-container { height: var(--framer-aspect-ratio-supported, 190px); } .framer-e99Ka .framer-1xaj5pz { max-width: unset; } .framer-e99Ka .framer-slisqd { order: 0; } .framer-e99Ka .framer-19uah5i-container { order: 2; } .framer-e99Ka .framer-1hn6uc0 { padding: 64px 24px 64px 24px; } .framer-e99Ka .framer-ogre60 { gap: 50px; } .framer-e99Ka .framer-1p4svv3 { max-width: 625px; } .framer-e99Ka .framer-1w85g3t { align-content: center; align-items: center; flex-direction: column; max-width: 258px; } .framer-e99Ka .framer-1gy3r8y, .framer-e99Ka .framer-18zpihi, .framer-e99Ka .framer-htbw9w, .framer-e99Ka .framer-1mzd2wq { flex: none; padding: 40px 30px 50px 30px; width: 100%; } .framer-e99Ka .framer-5ma6qi { overflow: hidden; padding: 0px 24px 0px 24px; } .framer-e99Ka .framer-1rn8xh9 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex-direction: column; gap: 32px; padding: 80px 0px 0px 0px; } .framer-e99Ka .framer-1uzdvaa { flex: none; gap: 24px; position: relative; top: unset; width: 100%; } .framer-e99Ka .framer-p6avxs, .framer-e99Ka .framer-zwx4kt { flex: none; width: 100%; } .framer-e99Ka .framer-k6xaje { gap: 0px; padding: 40px 24px 60px 24px; } .framer-e99Ka .framer-1d6079o, .framer-e99Ka .framer-17gmnpc { gap: 32px; justify-content: center; padding: 40px 0px 40px 0px; } .framer-e99Ka .framer-1cw23nz, .framer-e99Ka .framer-vtifmq, .framer-e99Ka .framer-1nfrl8v, .framer-e99Ka .framer-6grcpb, .framer-e99Ka .framer-16v6mfd { gap: 16px; } .framer-e99Ka .framer-10q4vf6 { height: var(--framer-aspect-ratio-supported, 193px); } .framer-e99Ka .framer-1gf923g, .framer-e99Ka .framer-1jfdh4m { gap: 32px; padding: 40px 0px 40px 0px; } .framer-e99Ka .framer-1k03xpn { height: var(--framer-aspect-ratio-supported, 195px); } .framer-e99Ka .framer-k0ysur { height: var(--framer-aspect-ratio-supported, 200px); } .framer-e99Ka .framer-lzq5zy { overflow: visible; padding: 80px 20px 80px 20px; } .framer-e99Ka .framer-klbh14-container { height: 1175px; } .framer-e99Ka .framer-j4h06e { gap: 40px; padding: 40px 24px 40px 24px; } .framer-e99Ka .framer-lue6bd, .framer-e99Ka .framer-jqr15g { flex-direction: column; gap: 16px; } .framer-e99Ka .framer-1nct8if { flex: none; gap: 16px; width: 100%; } .framer-e99Ka .framer-1q2mcqn { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; gap: 32px; padding: 32px 0px 32px 0px; } .framer-e99Ka .framer-1rcd3gz { align-self: unset; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; gap: 32px; height: min-content; padding: 32px; width: 100%; will-change: var(--framer-will-change-override, transform); } .framer-e99Ka .framer-t2t9p0 { flex: none; height: var(--framer-aspect-ratio-supported, 223px); width: 250px; } .framer-e99Ka .framer-4gtxnj { align-self: unset; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; gap: 32px; height: min-content; padding: 32px 0px 32px 0px; width: 100%; } .framer-e99Ka .framer-140tw5y { flex: none; height: min-content; padding: 0px 24px 0px 32px; } .framer-e99Ka .framer-1rxavsg { height: var(--framer-aspect-ratio-supported, 415px); } .framer-e99Ka .framer-vpo043 { overflow: hidden; padding: 45px 20px 45px 20px; } .framer-e99Ka .framer-470m98 { flex-direction: column; } .framer-e99Ka .framer-6lb9vu { flex: none; order: 1; position: relative; top: unset; width: 100%; } .framer-e99Ka .framer-193hpn7 { padding: 0px; } .framer-e99Ka .framer-1vkx793 { gap: 10px; padding: 10px 0px 0px 0px; } .framer-e99Ka .framer-ddg4hf { flex: none; order: 2; padding: 0px 0px 20px 0px; width: 100%; } .framer-e99Ka .framer-5jasnb { flex: 1 0 0px; gap: 36px; width: 1px; } .framer-e99Ka .framer-108g5ok { height: var(--framer-aspect-ratio-supported, 84px); } .framer-e99Ka .framer-1hd86h1 { padding: 48px 24px 48px 24px; } .framer-e99Ka .framer-1iqs6ir { padding: 32px 24px 32px 24px; } .framer-e99Ka .framer-127gulj { height: var(--framer-aspect-ratio-supported, 191px); left: -31px; top: -16px; transform: unset; width: 191px; } .framer-e99Ka .framer-1a8oapz { bottom: unset; height: var(--framer-aspect-ratio-supported, 171px); left: 74px; top: 52%; transform: translateY(-50%); width: 171px; } .framer-e99Ka .framer-myhpwu { gap: 40px; } .framer-e99Ka .framer-z2blaz { height: var(--framer-aspect-ratio-supported, 200px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 200px; } .framer-e99Ka .framer-ygpd2d { justify-content: center; padding: 80px 24px 40px 24px; } .framer-e99Ka .framer-16uiiw5, .framer-e99Ka .framer-1l0rh04 { justify-content: center; } .framer-e99Ka .framer-r0figj-container { height: 833px; } .framer-e99Ka .framer-1mtyv6i { gap: 0px; min-width: 320px; } .framer-e99Ka .framer-wsmtb0 { padding: 40px 24px 40px 24px; } .framer-e99Ka .framer-dimymv { border-bottom-left-radius: unset; will-change: unset; } .framer-e99Ka .framer-y32ai { padding: 64px 24px 80px 24px; } .framer-e99Ka .framer-8hxvxi { flex-direction: column; width: 100%; } .framer-e99Ka .framer-1rr1fnx-container, .framer-e99Ka .framer-1l5my0s-container { height: auto; width: 100%; } .framer-e99Ka .framer-1n131ic, .framer-e99Ka .framer-1dcsvtt, .framer-e99Ka .framer-yx138q { width: 100%; } .framer-e99Ka .framer-suep45 { align-self: unset; height: min-content; min-height: 280px; } .framer-e99Ka .framer-17x5ox7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 0px; } .framer-e99Ka .framer-1547qy9 { bottom: unset; height: 378px; left: unset; position: relative; top: unset; width: var(--framer-aspect-ratio-supported, 480px); }}\",\"@media (min-width: 1920px) { .framer-e99Ka.framer-72rtr7 { width: 1920px; } .framer-e99Ka .framer-5ma6qi { padding: 0px 110px 0px 110px; } .framer-e99Ka .framer-1rn8xh9 { padding: 40px 60px 40px 60px; } .framer-e99Ka .framer-10q4vf6 { height: var(--framer-aspect-ratio-supported, 237px); } .framer-e99Ka .framer-1k03xpn { height: var(--framer-aspect-ratio-supported, 239px); } .framer-e99Ka .framer-k0ysur { height: var(--framer-aspect-ratio-supported, 244px); } .framer-e99Ka .framer-108g5ok { height: var(--framer-aspect-ratio-supported, 116px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11875\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hFTQGMuWi\":{\"layout\":[\"fixed\",\"auto\"]},\"X84QJldhy\":{\"layout\":[\"fixed\",\"auto\"]},\"vbaRdeOhj\":{\"layout\":[\"fixed\",\"auto\"]},\"tUjpDqDOP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uLmCAoi6R\":{\"pattern\":\":uLmCAoi6R\",\"name\":\"hero\"},\"Xz66Iu4HQ\":{\"pattern\":\":Xz66Iu4HQ\",\"name\":\"service\"},\"U6_kA_sNJ\":{\"pattern\":\":U6_kA_sNJ\",\"name\":\"section1\"},\"tfPfSw7uX\":{\"pattern\":\":tfPfSw7uX\",\"name\":\"step-1\"},\"cpCBDyPVX\":{\"pattern\":\":cpCBDyPVX\",\"name\":\"step-2\"},\"COk2Jb52A\":{\"pattern\":\":COk2Jb52A\",\"name\":\"step-3\"},\"YxOiJLaeg\":{\"pattern\":\":YxOiJLaeg\",\"name\":\"step-4\"},\"hiihNe0Yb\":{\"pattern\":\":hiihNe0Yb\",\"name\":\"scalability\"},\"B59mSWCoW\":{\"pattern\":\":B59mSWCoW\",\"name\":\"feat-2\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-e99Ka\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:11875,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"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\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...BannerFonts,...NavFonts,...ProductHuntBadgeFonts,...G2RatingFonts,...YcBadgeFonts,...PrimaryButtonsFonts,...YouTubeFonts,...CustomerBannersFonts,...TickerFonts,...NumberCounterFonts,...NumberCounter1Fonts,...NumberCounter2Fonts,...ServicesScrollAnimationFonts,...EmbedFonts,...SliderLogoFonts,...Ticker1Fonts,...ButtonsPrimaryFonts,...FeaturesSlideshowFonts,...ResourcesFonts,...MainCTAFonts,...ComponentFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"uLmCAoi6R\\\":{\\\"pattern\\\":\\\":uLmCAoi6R\\\",\\\"name\\\":\\\"hero\\\"},\\\"Xz66Iu4HQ\\\":{\\\"pattern\\\":\\\":Xz66Iu4HQ\\\",\\\"name\\\":\\\"service\\\"},\\\"U6_kA_sNJ\\\":{\\\"pattern\\\":\\\":U6_kA_sNJ\\\",\\\"name\\\":\\\"section1\\\"},\\\"tfPfSw7uX\\\":{\\\"pattern\\\":\\\":tfPfSw7uX\\\",\\\"name\\\":\\\"step-1\\\"},\\\"cpCBDyPVX\\\":{\\\"pattern\\\":\\\":cpCBDyPVX\\\",\\\"name\\\":\\\"step-2\\\"},\\\"COk2Jb52A\\\":{\\\"pattern\\\":\\\":COk2Jb52A\\\",\\\"name\\\":\\\"step-3\\\"},\\\"YxOiJLaeg\\\":{\\\"pattern\\\":\\\":YxOiJLaeg\\\",\\\"name\\\":\\\"step-4\\\"},\\\"hiihNe0Yb\\\":{\\\"pattern\\\":\\\":hiihNe0Yb\\\",\\\"name\\\":\\\"scalability\\\"},\\\"B59mSWCoW\\\":{\\\"pattern\\\":\\\":B59mSWCoW\\\",\\\"name\\\":\\\"feat-2\\\"}}\",\"framerIntrinsicHeight\":\"11875\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hFTQGMuWi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X84QJldhy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vbaRdeOhj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tUjpDqDOP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "ButtonsPrimaryFonts", "getFonts", "TiO6FSbKI_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "click", "click2", "click3", "click4", "direction", "direction2", "direction3", "direction4", "direction5", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "UtG16dv6H", "xIGQ5zo6B", "FrN2lKxoz", "QiODHP4e4", "eUyK0WacS", "uG1ZnW014", "TLzOjzZxK", "WCVdocXhe", "N9h6yxYgT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1emh7fp", "args", "onAppear1kxj2wv", "onAppear1i4b60n", "onAppear4xzot1", "onTapStart2s8oai", "onTap2s8oai", "onTapyw05m", "onTaphajk3y", "onTapt55dse", "onTapgsehtq", "onTapgjadrv", "onTapkupl7e", "onTap17aj5lk", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "css", "FramermZ9iP6q5Y", "withCSS", "mZ9iP6q5Y_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FlowSlidesFonts", "getFonts", "mZ9iP6q5Y_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "click2", "click3", "click4", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Cb2M3OydM", "KiNoZH0g6", "Iub7tnPlD", "bEzdgb4jL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "UtG16dv6H1q98vx0", "args", "xIGQ5zo6Bv82m3j", "FrN2lKxoz18easvx", "QiODHP4e4sqq1kv", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDpcInyein", "withCSS", "DpcInyein_default", "addPropertyControls", "ControlType", "addFonts", "HeroFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "Link", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerdsiziO7wL", "withCSS", "dsiziO7wL_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "SVG", "css", "FramerJumwXPbZ7", "withCSS", "JumwXPbZ7_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerVP3LCsxPN", "withCSS", "VP3LCsxPN_default", "addPropertyControls", "ControlType", "addFonts", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "Image2", "SVG", "css", "FramerZ1bDSJ3xt", "withCSS", "Z1bDSJ3xt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BannerFonts", "getFonts", "A5EKy3b8v_default", "NavFonts", "C2jJi5Emd_default", "ProductHuntBadgeFonts", "dsiziO7wL_default", "G2RatingFonts", "JumwXPbZ7_default", "YcBadgeFonts", "VP3LCsxPN_default", "PrimaryButtonsFonts", "HfDn6d3dK_default", "PrimaryButtonsWithSetDataAttribute1prlfmaWithMappedReactProps6vbfya", "withMappedReactProps", "withCodeBoundaryForOverrides", "withSetDataAttribute", "HfDn6d3dK_exports", "PrimaryButtonsWithSetDataAttribute1kvftquWithMappedReactProps6vbfya", "MotionDivWithFX", "withFX", "motion", "YouTubeFonts", "Youtube", "CustomerBannersFonts", "AvmoWvPR1_default", "TickerFonts", "Ticker", "NumberCounterFonts", "NumberCounter", "NumberCounter1Fonts", "NumberCounter2Fonts", "ServicesScrollAnimationFonts", "LAdUDUEIX_default", "ServicesScrollAnimationWithVariantAppearEffect", "withVariantAppearEffect", "ImageWithFX", "Image2", "EmbedFonts", "Embed", "SliderLogoFonts", "wDnPAJW1U_default", "RichTextWithFX", "RichText2", "Ticker1Fonts", "ButtonsPrimaryFonts", "TiO6FSbKI_default", "FeaturesSlideshowFonts", "DpcInyein_default", "ResourcesFonts", "Z1bDSJ3xt_default", "MainCTAFonts", "ffP5Oeo_G_default", "ComponentFooterFonts", "w2xO0vofy_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "transition4", "animation7", "animation8", "transition5", "animation9", "animation10", "animation11", "transition6", "transition7", "transition8", "transition9", "transformTemplate1", "_", "t", "animation12", "transition10", "animation13", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "isDisplayed2", "ref3", "ref4", "ref5", "ref6", "elementId2", "ref7", "elementId3", "elementId4", "elementId5", "elementId6", "elementId7", "ref8", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "PropertyOverrides2", "SVG", "x", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
