{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/kCwwLCD5BuqTvWStvj0s/SocialShare.js", "ssg:https://framerusercontent.com/modules/eWYZMnklnA8XiLG9kaZQ/I4fk6bmoDKJisEOo0ZjZ/componentPresets.js", "ssg:https://framerusercontent.com/modules/th1zmoTBIUkuuRJ1BVwW/dcYm1ncaTDxyNQUqrmst/a3ByQQFxl.js", "ssg:https://framerusercontent.com/modules/7y6BmXxWV6PfW2NTVG19/2UrnK0ceN52KJ8jJljoz/EBCF3vOUU.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{addPropertyControls,ControlType,Color}from\"framer\";const BRAND_COLORS={facebook:\"#0866FF\",twitter:\"#000\",linkedIn:\"#0A66C2\",reddit:\"#FF4500\",pinterest:\"#BD081C\",whatsApp:\"#25D366\",email:\"#000\",copyUrl:\"#000\"};const PLATFORM_NAMES=[\"Facebook\",\"Twitter / X\",\"LinkedIn\",\"Reddit\",\"Pinterest\",\"WhatsApp\",\"Email\",\"Copy URL\"];/**\n * @framerDisableUnlink\n */export default function SocialShare(props){const{type,colors,iconSize,border}=props;const[shareUrl,setShareUrl]=useState(props.shareLink==\"url\"?props.shareUrl:\"\");const encodedUrl=encodeURIComponent(shareUrl);const borderRadius=props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`;useEffect(()=>{if(props.shareLink==\"currentPage\"){setShareUrl(window.location.href);}},[]);let linkUrl=\"\";switch(type){case\"facebook\":linkUrl=`https://www.facebook.com/sharer/sharer.php?u=${encodedUrl}`;break;case\"twitter\":linkUrl=`https://twitter.com/share?url=${encodedUrl}`;break;case\"linkedIn\":linkUrl=`https://www.linkedin.com/sharing/share-offsite/?url=${encodedUrl}`;break;case\"reddit\":linkUrl=`https://www.reddit.com/submit?url=${encodedUrl}`;break;case\"pinterest\":linkUrl=`https://pinterest.com/pin/create/link/?url=${encodedUrl}`;break;case\"whatsApp\":linkUrl=`https://wa.me/?text=${encodedUrl}`;break;case\"email\":linkUrl=`mailto:?body=${encodedUrl}`;break;}const copyToClipboard=()=>{navigator.clipboard.writeText(shareUrl).then(()=>{alert(\"URL copied to clipboard!\");}).catch(err=>{alert(\"Failed to copy URL\");});};return /*#__PURE__*/_jsxs(\"a\",{\"data-superfields\":true,href:linkUrl.length?linkUrl:undefined,target:props.newTab?\"_blank\":\"_self\",rel:props.newTab?\"noopener noreferrer\":undefined,\"aria-label\":PLATFORM_NAMES[type],onClick:type==\"copyUrl\"&&copyToClipboard,style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:colors.fillColorType==\"custom\"?colors.fillColor:Color.toString(Color.alpha(Color(BRAND_COLORS[type]),colors.fillOpacity)),borderRadius:borderRadius,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,cursor:\"pointer\",...props.style},children:[/*#__PURE__*/_jsx(SocialIcon,{type:type,size:iconSize,color:colors.iconColorType==\"custom\"?colors.iconColor:BRAND_COLORS[type],customIcon:props.customIcon}),border&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderWidth:border.widthIsMixed?`${border.widthTop}px ${border.widthRight}px ${border.widthBottom}px ${border.widthLeft}px`:`${border.width}px`,borderStyle:border.style,borderColor:border.colorType==\"custom\"?border.color:BRAND_COLORS[type],borderRadius:borderRadius,pointerEvents:\"none\"}})]});}SocialShare.displayName=\"Social Share\";addPropertyControls(SocialShare,{shareLink:{type:ControlType.Enum,defaultValue:\"currentPage\",options:[\"currentPage\",\"url\"],optionTitles:[\"Current Page\",\"Custom URL\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},shareUrl:{type:ControlType.String,defaultValue:\"\",placeholder:\"https://example.com\",title:\"URL\",preventLocalization:true,hidden:props=>props.shareLink!=\"url\"},type:{type:ControlType.Enum,defaultValue:\"facebook\",options:[\"facebook\",\"twitter\",\"linkedIn\",\"reddit\",\"pinterest\",\"whatsApp\",\"email\",\"copyUrl\"],optionTitles:PLATFORM_NAMES,title:\"Platform\"},newTab:{type:ControlType.Boolean,defaultValue:true},colors:{type:ControlType.Object,buttonTitle:\"Icon & Fill\",controls:{iconColorType:{type:ControlType.Enum,defaultValue:\"custom\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Icon Color\"},iconColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.iconColorType!=\"custom\",title:\" \"},fillColorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Fill\"},fillColor:{type:ControlType.Color,defaultValue:\"#000\",optional:true,hidden:props=>props.fillColorType!=\"custom\",title:\" \"},fillOpacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01,hidden:props=>props.fillColorType!=\"brand\"}}},iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},border:{type:ControlType.Object,optional:true,controls:{colorType:{type:ControlType.Enum,defaultValue:\"brand\",options:[\"brand\",\"custom\"],optionTitles:[\"Brand\",\"Custom\"],displaySegmentedControl:true,title:\"Color\"},color:{type:ControlType.Color,defaultValue:\"#FFF\",title:\" \",hidden:props=>props.colorType!=\"custom\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},customIcon:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svg:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"SVG\",preventLocalization:true,hidden:props=>props.type!=\"svg\"},image:{type:ControlType.ResponsiveImage,hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}}});function SocialIcon(props){const{size,color,customIcon}=props;const contents=[];let fill=true;let stroke=false;if(customIcon){if(customIcon.type==\"svg\"){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"div\",{className:\"superfields-social-share-icon\",style:{width:size,height:size,opacity:customIcon.opacity,color:color,pointerEvents:\"none\"},dangerouslySetInnerHTML:customIcon.type==\"svg\"?{__html:customIcon.svg.replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}:undefined}),(customIcon===null||customIcon===void 0?void 0:customIcon.type)==\"svg\"&&/*#__PURE__*/_jsx(\"style\",{children:`.superfields-social-share-icon svg { display: block; }`})]});}else if(customIcon.type==\"image\"){var _customIcon_image,_customIcon_image1;return /*#__PURE__*/_jsx(\"img\",{src:(_customIcon_image=customIcon.image)===null||_customIcon_image===void 0?void 0:_customIcon_image.src,alt:(_customIcon_image1=customIcon.image)===null||_customIcon_image1===void 0?void 0:_customIcon_image1.alt,style:{display:\"block\",width:size,height:size,opacity:customIcon.opacity,color:color,objectFit:customIcon.sizing,objectPosition:\"center\",pointerEvents:\"none\"}});}}switch(props.type){case\"facebook\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M9.101 23.691v-7.98H6.627v-3.667h2.474v-1.58c0-4.085 1.848-5.978 5.858-5.978.401 0 .955.042 1.468.103a8.68 8.68 0 0 1 1.141.195v3.325a8.623 8.623 0 0 0-.653-.036 26.805 26.805 0 0 0-.733-.009c-.707 0-1.259.096-1.675.309a1.686 1.686 0 0 0-.679.622c-.258.42-.374.995-.374 1.752v1.297h3.919l-.386 2.103-.287 1.564h-3.246v8.245C19.396 23.238 24 18.179 24 12.044c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.628 3.874 10.35 9.101 11.647Z\"}));break;case\"twitter\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z\"}));break;case\"linkedIn\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\"}));break;case\"reddit\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zm5.01 4.744c.688 0 1.25.561 1.25 1.249a1.25 1.25 0 0 1-2.498.056l-2.597-.547-.8 3.747c1.824.07 3.48.632 4.674 1.488.308-.309.73-.491 1.207-.491.968 0 1.754.786 1.754 1.754 0 .716-.435 1.333-1.01 1.614a3.111 3.111 0 0 1 .042.52c0 2.694-3.13 4.87-7.004 4.87-3.874 0-7.004-2.176-7.004-4.87 0-.183.015-.366.043-.534A1.748 1.748 0 0 1 4.028 12c0-.968.786-1.754 1.754-1.754.463 0 .898.196 1.207.49 1.207-.883 2.878-1.43 4.744-1.487l.885-4.182a.342.342 0 0 1 .14-.197.35.35 0 0 1 .238-.042l2.906.617a1.214 1.214 0 0 1 1.108-.701zM9.25 12C8.561 12 8 12.562 8 13.25c0 .687.561 1.248 1.25 1.248.687 0 1.248-.561 1.248-1.249 0-.688-.561-1.249-1.249-1.249zm5.5 0c-.687 0-1.248.561-1.248 1.25 0 .687.561 1.248 1.249 1.248.688 0 1.249-.561 1.249-1.249 0-.687-.562-1.249-1.25-1.249zm-5.466 3.99a.327.327 0 0 0-.231.094.33.33 0 0 0 0 .463c.842.842 2.484.913 2.961.913.477 0 2.105-.056 2.961-.913a.361.361 0 0 0 .029-.463.33.33 0 0 0-.464 0c-.547.533-1.684.73-2.512.73-.828 0-1.979-.196-2.512-.73a.326.326 0 0 0-.232-.095z\"}));break;case\"pinterest\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M12.017 0C5.396 0 .029 5.367.029 11.987c0 5.079 3.158 9.417 7.618 11.162-.105-.949-.199-2.403.041-3.439.219-.937 1.406-5.957 1.406-5.957s-.359-.72-.359-1.781c0-1.663.967-2.911 2.168-2.911 1.024 0 1.518.769 1.518 1.688 0 1.029-.653 2.567-.992 3.992-.285 1.193.6 2.165 1.775 2.165 2.128 0 3.768-2.245 3.768-5.487 0-2.861-2.063-4.869-5.008-4.869-3.41 0-5.409 2.562-5.409 5.199 0 1.033.394 2.143.889 2.741.099.12.112.225.085.345-.09.375-.293 1.199-.334 1.363-.053.225-.172.271-.401.165-1.495-.69-2.433-2.878-2.433-4.646 0-3.776 2.748-7.252 7.92-7.252 4.158 0 7.392 2.967 7.392 6.923 0 4.135-2.607 7.462-6.233 7.462-1.214 0-2.354-.629-2.758-1.379l-.749 2.848c-.269 1.045-1.004 2.352-1.498 3.146 1.123.345 2.306.535 3.55.535 6.607 0 11.985-5.365 11.985-11.987C23.97 5.39 18.592.026 11.985.026L12.017 0z\"}));break;case\"whatsApp\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z\"}));break;case\"email\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M3 7a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2v-10z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M3 7l9 6l9 -6\"}));fill=false;stroke=true;break;case\"copyUrl\":contents.push(/*#__PURE__*/_jsx(\"path\",{d:\"M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1\"}));fill=false;stroke=true;break;}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",color:color,\"stroke-width\":stroke?\"2\":undefined,stroke:stroke?\"currentColor\":undefined,fill:fill?\"currentColor\":\"none\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\",style:{display:\"block\"},children:contents});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SocialShare\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SocialShare.map", "// Generated by Framer (c563d2c)\nexport const props={cFbDJ2PaG:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0}};export const fonts={};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d5ca742)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Aspekta 700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Aspekta 700\",source:\"custom\",url:\"https://framerusercontent.com/assets/Zbo8hYDWzAJLZ10Z2AWmB3eOLFM.woff2\"}]}];export const css=[\".framer-Q5AbR .framer-styles-preset-9o63im:not(.rich-text-wrapper), .framer-Q5AbR .framer-styles-preset-9o63im.rich-text-wrapper h5 { --framer-font-family: \\\"Aspekta 700\\\", \\\"Aspekta 700 Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-Q5AbR\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SocialShare from\"https://framerusercontent.com/modules/y8ckmFmPFgZ5Nzn1PrR2/kCwwLCD5BuqTvWStvj0s/SocialShare.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import ButtonsSignUpButton from\"#framer/local/canvasComponent/gjeZwOQsm/gjeZwOQsm.js\";import NavigationNav from\"#framer/local/canvasComponent/huuXGUyP8/huuXGUyP8.js\";import ComponentCustomCursor from\"#framer/local/canvasComponent/O0JeqOuS0/O0JeqOuS0.js\";import NavigationFooter from\"#framer/local/canvasComponent/onoMI5YCh/onoMI5YCh.js\";import SectionDiscover from\"#framer/local/canvasComponent/OZ72YPMXx/OZ72YPMXx.js\";import Authors from\"#framer/local/collection/iG_qE2TSw/iG_qE2TSw.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/OCJWBXuk3/OCJWBXuk3.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/a3ByQQFxl/a3ByQQFxl.js\";import*as sharedStyle5 from\"#framer/local/css/AV1agD10h/AV1agD10h.js\";import*as sharedStyle1 from\"#framer/local/css/gcIsI1TOZ/gcIsI1TOZ.js\";import*as sharedStyle from\"#framer/local/css/hKogTaG4w/hKogTaG4w.js\";import*as sharedStyle4 from\"#framer/local/css/PzisEncy0/PzisEncy0.js\";import*as sharedStyle9 from\"#framer/local/css/QvFGn1LjQ/QvFGn1LjQ.js\";import*as sharedStyle7 from\"#framer/local/css/T2is5WHuP/T2is5WHuP.js\";import*as sharedStyle2 from\"#framer/local/css/vEpXEDag0/vEpXEDag0.js\";import*as sharedStyle8 from\"#framer/local/css/wRwWQpVzv/wRwWQpVzv.js\";import*as sharedStyle3 from\"#framer/local/css/xeJ0G84oH/xeJ0G84oH.js\";import metadataProvider from\"#framer/local/webPageMetadata/EBCF3vOUU/EBCF3vOUU.js\";const NavigationNavFonts=getFonts(NavigationNav);const NavigationNavWithVariantAppearEffect=withVariantAppearEffect(NavigationNav);const PhosphorFonts=getFonts(Phosphor);const SocialShareFonts=getFonts(SocialShare);const ButtonsSignUpButtonFonts=getFonts(ButtonsSignUpButton);const ImageWithFX=withFX(Image);const SectionDiscoverFonts=getFonts(SectionDiscover);const NavigationFooterFonts=getFonts(NavigationFooter);const SmoothScrollFonts=getFonts(SmoothScroll);const ComponentCustomCursorFonts=getFonts(ComponentCustomCursor);const breakpoints={N7ZesZxuS:\"(min-width: 1200px)\",RUK8HGpMs:\"(min-width: 810px) and (max-width: 1199px)\",vD_7JwqEY:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-JEHiB\";const variantClassNames={N7ZesZxuS:\"framer-v-16j3lni\",RUK8HGpMs:\"framer-v-1rs86cl\",vD_7JwqEY:\"framer-v-1c8nnz4\"};const transition1={damping:60,delay:0,mass:1,stiffness:600,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const transition2={bounce:.35,delay:0,duration:.35,type:\"spring\"};const animation={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:.3,duration:.8,ease:[.54,.37,.21,1.01],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={Desktop:\"N7ZesZxuS\",Phone:\"vD_7JwqEY\",Tablet:\"RUK8HGpMs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"N7ZesZxuS\"};};const cursor={alignment:\"center\",component:ComponentCustomCursor,offset:{x:0,y:0},placement:\"bottom\",transition:transition1,variant:\"nbksdI2fs\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"EBCF3vOUU\",name:\"o4icknAkJ\",type:\"Identifier\"},operator:\"==\",right:{collection:\"o4icknAkJ\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"EBCF3vOUU\",data:Blog,type:\"Collection\"},right:{alias:\"o4icknAkJ\",data:Authors,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"EBCF3vOUU\",name:\"hfVke3Amm\",type:\"Identifier\"},{collection:\"EBCF3vOUU\",name:\"RxW92_A5f\",type:\"Identifier\"},{collection:\"EBCF3vOUU\",name:\"mzGnt1kLD\",type:\"Identifier\"},{collection:\"EBCF3vOUU\",name:\"irBJrf88W\",type:\"Identifier\"},{collection:\"EBCF3vOUU\",name:\"MX9IIHwgj\",type:\"Identifier\"},{alias:\"o4icknAkJ.lwTOWFlkM\",collection:\"o4icknAkJ\",name:\"lwTOWFlkM\",type:\"Identifier\"},{alias:\"o4icknAkJ.lXDDjFuOl\",collection:\"o4icknAkJ\",name:\"lXDDjFuOl\",type:\"Identifier\"},{alias:\"o4icknAkJ.jcYsV3PG9\",collection:\"o4icknAkJ\",name:\"jcYsV3PG9\",type:\"Identifier\"},{collection:\"EBCF3vOUU\",name:\"Bx3gZAMF_\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"EBCF3vOUU\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,hfVke3Amm=getFromCurrentRouteData(\"hfVke3Amm\")??\"\",mzGnt1kLD=getFromCurrentRouteData(\"mzGnt1kLD\")??\"\",RxW92_A5f=getFromCurrentRouteData(\"RxW92_A5f\"),irBJrf88W=getFromCurrentRouteData(\"irBJrf88W\"),MX9IIHwgj=getFromCurrentRouteData(\"MX9IIHwgj\"),Bx3gZAMF_=getFromCurrentRouteData(\"Bx3gZAMF_\")??\"\",o4icknAkJ_lwTOWFlkM=getFromCurrentRouteData(\"o4icknAkJ.lwTOWFlkM\"),o4icknAkJ_lXDDjFuOl=getFromCurrentRouteData(\"o4icknAkJ.lXDDjFuOl\")??\"\",o4icknAkJ_jcYsV3PG9=getFromCurrentRouteData(\"o4icknAkJ.jcYsV3PG9\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,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,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const textContent=enumToDisplayNameFunctions[\"RxW92_A5f\"]?.(RxW92_A5f,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(irBJrf88W,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const elementId=useRouteElementId(\"FC92VpNU9\");const elementId1=useRouteElementId(\"GHqLwKvyk\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({\"26duu9\":cursor});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"N7ZesZxuS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-16j3lni\",className),\"data-framer-cursor\":\"26duu9\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RUK8HGpMs:{width:\"96vw\"},vD_7JwqEY:{width:\"96vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,y:16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sefvfv-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RUK8HGpMs:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"FXVSEUcPj\"},vD_7JwqEY:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"FXVSEUcPj\"}},children:/*#__PURE__*/_jsx(NavigationNavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"kr1x7biQy\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"YMsZz_x4w\",layoutId:\"YMsZz_x4w\",variant:\"qZiyjjUc6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ikk90i\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-a20enh\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rq031y\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1ccgb\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15u5n2z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hi6fky\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DzEgIFIGj\"},nodeId:\"diAGqTzgz\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-8rtp76 framer-10glfep\",\"data-framer-name\":\"Back\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sx9skh\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lkuk0l-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-33dc16fd-98d5-48c1-8a5c-f6e21fa677ba, rgb(14, 13, 20))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowLeft\",id:\"XSKETVR6L\",layoutId:\"XSKETVR6L\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lszpav\",\"data-styles-preset\":\"hKogTaG4w\",style:{\"--framer-text-color\":\"var(--token-f80bbefc-6bb1-42fa-a5f2-0af3dd43edc2, rgb(111, 110, 120))\"},children:\"Blogs\"})}),className:\"framer-g1yrax\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dex11a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ywwu4e\",\"data-styles-preset\":\"gcIsI1TOZ\",children:\"How Chatbots Are Becoming Your New Customer Service Heroes\"})}),className:\"framer-1b1rbhr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:hfVke3Amm,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w754mn\",\"data-styles-preset\":\"vEpXEDag0\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f80bbefc-6bb1-42fa-a5f2-0af3dd43edc2, rgb(111, 110, 120))\"},children:\"Learn how these digital assistants are making your life easier and redefining customer experiences.\"})}),className:\"framer-133nt8t\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter\"],text:mzGnt1kLD,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ut2jl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10osmlb\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v2qbys\",\"data-framer-name\":\"Catrgory\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lszpav\",\"data-styles-preset\":\"hKogTaG4w\",style:{\"--framer-text-color\":\"var(--token-f80bbefc-6bb1-42fa-a5f2-0af3dd43edc2, rgb(111, 110, 120))\"},children:\"Technology\"})}),className:\"framer-1m5revj\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1888llo\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10bgjmu\",\"data-framer-name\":\"Date\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lszpav\",\"data-styles-preset\":\"hKogTaG4w\",style:{\"--framer-text-color\":\"var(--token-f80bbefc-6bb1-42fa-a5f2-0af3dd43edc2, rgb(111, 110, 120))\"},children:\"Nov 20, 2024\"})}),className:\"framer-zb19xz\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qz6bd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qq1i00-container\",whileHover:animation,children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"var(--token-8f14d476-8390-40e0-821a-b0d16e75225f, rgb(110, 100, 250))\",fillColorType:\"custom\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:16,id:\"yE5JWahxa\",layoutId:\"yE5JWahxa\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:50,radiusBottomLeft:50,radiusBottomRight:50,radiusIsMixed:false,radiusTopLeft:50,radiusTopRight:50,shareLink:\"url\",shareUrl:\"https://ca.linkedin.com/company/revring-canada\",type:\"linkedIn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pyi5u-container\",whileHover:animation,children:/*#__PURE__*/_jsx(SocialShare,{colors:{fillColor:\"var(--token-8f14d476-8390-40e0-821a-b0d16e75225f, rgb(110, 100, 250))\",fillColorType:\"custom\",fillOpacity:1,iconColor:\"rgb(255, 255, 255)\",iconColorType:\"custom\"},height:\"100%\",iconSize:16,id:\"MAS8Zy9Is\",layoutId:\"MAS8Zy9Is\",newTab:true,padding:8,paddingBottom:8,paddingIsMixed:false,paddingLeft:8,paddingRight:8,paddingTop:8,radius:50,radiusBottomLeft:50,radiusBottomRight:50,radiusIsMixed:false,radiusTopLeft:50,radiusTopRight:50,shareLink:\"url\",shareUrl:\"mailto:contact@revring.ai\",type:\"email\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RUK8HGpMs:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,...toResponsiveImage(MX9IIHwgj)}},vD_7JwqEY:{background:{alt:\"\",fit:\"fill\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,...toResponsiveImage(MX9IIHwgj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 468px, 1px)`,...toResponsiveImage(MX9IIHwgj)},className:\"framer-15wsvwj\",\"data-framer-name\":\"Banner\"})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"cFbDJ2PaG\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Bx3gZAMF_,className:\"framer-f8p4jg\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-i5l3lh\",h1:\"framer-styles-preset-1xyr9qw\",h2:\"framer-styles-preset-lc53th\",h3:\"framer-styles-preset-ywwu4e\",h4:\"framer-styles-preset-1v6fj9o\",h5:\"framer-styles-preset-9o63im\",p:\"framer-styles-preset-l6afy5\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kfy0so\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brli7s\",\"data-framer-name\":\"Autohr name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l6afy5\",\"data-styles-preset\":\"T2is5WHuP\",children:\"Written By:\"})}),className:\"framer-gkpn5o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qksmc6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"48px\",...toResponsiveImage(o4icknAkJ_lwTOWFlkM)},className:\"framer-18ypdra\",\"data-framer-name\":\"Avatar\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1910qr3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l6afy5\",\"data-styles-preset\":\"T2is5WHuP\",children:\"Yuri Arcurs\"})}),className:\"framer-1n5hudt\",fonts:[\"Inter\"],text:o4icknAkJ_lXDDjFuOl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lszpav\",\"data-styles-preset\":\"hKogTaG4w\",children:\"Team Manager\"})}),className:\"framer-wlxw02\",fonts:[\"Inter\"],text:o4icknAkJ_jcYsV3PG9,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2a6za6\",\"data-framer-name\":\"Subscription\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1th18ln\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-63ex2h\",\"data-styles-preset\":\"QvFGn1LjQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33dc16fd-98d5-48c1-8a5c-f6e21fa677ba, rgb(14, 13, 20))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Be Part of the Future of AI-Powered Sales\"})})}),className:\"framer-1dpp2h5\",\"data-framer-name\":\"Start Your 30-Day Free Trial Today!\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l6afy5\",\"data-styles-preset\":\"T2is5WHuP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f80bbefc-6bb1-42fa-a5f2-0af3dd43edc2, rgb(111, 110, 120))\"},children:\"Join our R&D Circle for insider updates, cutting-edge AI insights, and early access to new features.\"})}),className:\"framer-l6e5dt\",\"data-framer-name\":\"Sign up now to explore Juniper's powerful features and see how it can streamline your workflow and track your income effortlessly. No commitment required!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nt6yeu\",children:[/*#__PURE__*/_jsx(FormContainer,{className:\"framer-u8hfz4\",\"data-framer-name\":\"Signup Form\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-xuygt\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-up5x33\",inputName:\"Email\",placeholder:\"Enter your email\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RUK8HGpMs:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 64px)`},vD_7JwqEY:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"336px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tytb90-container\",children:/*#__PURE__*/_jsx(ButtonsSignUpButton,{height:\"100%\",id:\"sFcN5R6fE\",layoutId:\"sFcN5R6fE\",style:{width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"MKXt2Wqda\",success:\"f6tC0ybfQ\"},\"OkAOyUcUU\"),width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lszpav\",\"data-styles-preset\":\"hKogTaG4w\",children:\"*You will be added to our R&D circle.\"})}),className:\"framer-13tsruo\",\"data-framer-name\":\"*You will be subscribe to our newsletter\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1970knk\",\"data-framer-name\":\"Background\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.3,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1066.6666666666667,intrinsicWidth:1706.6666666666667,pixelHeight:1600,pixelWidth:2560,sizes:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,src:\"https://framerusercontent.com/images/AkrsvqFx9jf060aV2c8nVlE6xA4.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/AkrsvqFx9jf060aV2c8nVlE6xA4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/AkrsvqFx9jf060aV2c8nVlE6xA4.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/AkrsvqFx9jf060aV2c8nVlE6xA4.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/AkrsvqFx9jf060aV2c8nVlE6xA4.webp 2560w\"},className:\"framer-v32qbr\",\"data-framer-name\":\"Background\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10hje6v\",\"data-framer-name\":\"Triggers\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l5tad2\",\"data-framer-name\":\"Nav-trigger\",id:elementId,ref:ref2})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:975,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k48dtj-container\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RUK8HGpMs:{variant:\"D44S8Bn0x\"},vD_7JwqEY:{variant:\"uO8nfJvEs\"}},children:/*#__PURE__*/_jsx(SectionDiscover,{height:\"100%\",id:\"GHqLwKvyk\",layoutId:\"GHqLwKvyk\",style:{width:\"100%\"},variant:\"Mfoa_MEUD\",VPuHg0NRL:ref3,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:502,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mgbxho-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RUK8HGpMs:{variant:\"VDQ9tSYF2\"},vD_7JwqEY:{variant:\"Dey_QpGN9\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{height:\"100%\",id:\"N6Uv6lfEG\",layoutId:\"N6Uv6lfEG\",style:{width:\"100%\"},variant:\"KWT5wfSVP\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cu3lgp-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"D_Y7lOlaf\",intensity:8,layoutId:\"D_Y7lOlaf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-996f81af-636c-4773-8ce2-6a6228760b61, rgb(246, 247, 250)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JEHiB.framer-10glfep, .framer-JEHiB .framer-10glfep { display: block; }\",\".framer-JEHiB.framer-16j3lni { align-content: center; align-items: center; background-color: var(--token-996f81af-636c-4773-8ce2-6a6228760b61, #f6f7fa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-JEHiB .framer-sefvfv-container { flex: none; height: auto; left: 50%; position: fixed; top: 16px; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-JEHiB .framer-1ikk90i { 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%; z-index: 2; }\",\".framer-JEHiB .framer-a20enh { 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: 160px 40px 98px 40px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-rq031y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-JEHiB .framer-1u1ccgb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JEHiB .framer-15u5n2z { 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-JEHiB .framer-hi6fky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-8rtp76 { 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: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-JEHiB .framer-sx9skh { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-c6bc4dad-6e87-4df8-968f-66459a011c75, #ffffff); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 30px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JEHiB .framer-1lkuk0l-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-JEHiB .framer-g1yrax, .framer-JEHiB .framer-1m5revj, .framer-JEHiB .framer-zb19xz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JEHiB .framer-dex11a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-1b1rbhr, .framer-JEHiB .framer-133nt8t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JEHiB .framer-19ut2jl { 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-JEHiB .framer-10osmlb { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-JEHiB .framer-1v2qbys { align-content: center; align-items: center; background-color: var(--token-c6bc4dad-6e87-4df8-968f-66459a011c75, #ffffff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-JEHiB .framer-1888llo { aspect-ratio: 1 / 1; background-color: var(--token-8f14d476-8390-40e0-821a-b0d16e75225f, #6e64fa); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 4px); overflow: hidden; position: relative; width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JEHiB .framer-10bgjmu { align-content: center; align-items: center; background-color: var(--token-c6bc4dad-6e87-4df8-968f-66459a011c75, #ffffff); border-bottom-left-radius: 90px; border-bottom-right-radius: 90px; border-top-left-radius: 90px; border-top-right-radius: 90px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-JEHiB .framer-11qz6bd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-JEHiB .framer-1qq1i00-container, .framer-JEHiB .framer-pyi5u-container, .framer-JEHiB .framer-cu3lgp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-JEHiB .framer-15wsvwj { aspect-ratio: 1.671875 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 390px); position: relative; width: 100%; }\",\".framer-JEHiB .framer-f8p4jg { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JEHiB .framer-1kfy0so { align-content: center; align-items: center; background-color: var(--token-c6bc4dad-6e87-4df8-968f-66459a011c75, #ffffff); 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: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: sticky; top: 130px; width: 400px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-JEHiB .framer-1brli7s { 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-JEHiB .framer-gkpn5o, .framer-JEHiB .framer-1n5hudt, .framer-JEHiB .framer-wlxw02 { --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-JEHiB .framer-qksmc6 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-18ypdra { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JEHiB .framer-1910qr3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JEHiB .framer-2a6za6 { 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; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-1th18ln { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-1dpp2h5, .framer-JEHiB .framer-l6e5dt, .framer-JEHiB .framer-13tsruo { --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-JEHiB .framer-nt6yeu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-u8hfz4 { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-JEHiB .framer-xuygt { 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; padding: 0px; position: relative; width: 100%; }\",'.framer-JEHiB .framer-up5x33 { --framer-input-background: var(--token-996f81af-636c-4773-8ce2-6a6228760b61, #f6f7fa); --framer-input-border-radius-bottom-left: 30px; --framer-input-border-radius-bottom-right: 30px; --framer-input-border-radius-top-left: 30px; --framer-input-border-radius-top-right: 30px; --framer-input-focused-border-color: var(--token-8f14d476-8390-40e0-821a-b0d16e75225f, #6e64fa); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-33dc16fd-98d5-48c1-8a5c-f6e21fa677ba, #0e0d14); --framer-input-font-family: \"Geist\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 15px; --framer-input-placeholder-color: #afaeb8; --framer-input-wrapper-height: auto; flex: none; height: auto; position: relative; width: 100%; }',\".framer-JEHiB .framer-1tytb90-container, .framer-JEHiB .framer-k48dtj-container, .framer-JEHiB .framer-mgbxho-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JEHiB .framer-1970knk { -webkit-mask: linear-gradient(180deg, #000000 0%, rgb(0, 0, 0) 80.18018018018019%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 800px; left: calc(50.00000000000002% - min(1200px, 100%) / 2); mask: linear-gradient(180deg, #000000 0%, rgb(0, 0, 0) 80.18018018018019%, rgba(0, 0, 0, 0) 100%) add; max-width: 1200px; overflow: hidden; pointer-events: none; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-JEHiB .framer-v32qbr { -webkit-mask: radial-gradient(50% 67% at 50% 42.3%, #000000 0%, rgba(0, 0, 0, 0.6) 89.60000000000001%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 850px; left: calc(50.00000000000002% - 100% / 2); mask: radial-gradient(50% 67% at 50% 42.3%, #000000 0%, rgba(0, 0, 0, 0.6) 89.60000000000001%, rgba(0, 0, 0, 0) 100%) add; opacity: 0.3; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-JEHiB .framer-10hje6v { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-JEHiB .framer-l5tad2 { bottom: 100px; flex: none; height: 30%; left: calc(50.00000000000002% - 100px / 2); overflow: hidden; position: absolute; width: 100px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JEHiB.framer-16j3lni, .framer-JEHiB .framer-1ikk90i, .framer-JEHiB .framer-a20enh, .framer-JEHiB .framer-rq031y, .framer-JEHiB .framer-1u1ccgb, .framer-JEHiB .framer-15u5n2z, .framer-JEHiB .framer-8rtp76, .framer-JEHiB .framer-sx9skh, .framer-JEHiB .framer-dex11a, .framer-JEHiB .framer-10osmlb, .framer-JEHiB .framer-1v2qbys, .framer-JEHiB .framer-10bgjmu, .framer-JEHiB .framer-11qz6bd, .framer-JEHiB .framer-1kfy0so, .framer-JEHiB .framer-1brli7s, .framer-JEHiB .framer-qksmc6, .framer-JEHiB .framer-1910qr3, .framer-JEHiB .framer-2a6za6, .framer-JEHiB .framer-1th18ln, .framer-JEHiB .framer-nt6yeu, .framer-JEHiB .framer-u8hfz4, .framer-JEHiB .framer-xuygt { gap: 0px; } .framer-JEHiB.framer-16j3lni > *, .framer-JEHiB .framer-1ikk90i > *, .framer-JEHiB .framer-1910qr3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-JEHiB.framer-16j3lni > :first-child, .framer-JEHiB .framer-1ikk90i > :first-child, .framer-JEHiB .framer-1u1ccgb > :first-child, .framer-JEHiB .framer-15u5n2z > :first-child, .framer-JEHiB .framer-dex11a > :first-child, .framer-JEHiB .framer-1kfy0so > :first-child, .framer-JEHiB .framer-1brli7s > :first-child, .framer-JEHiB .framer-1910qr3 > :first-child, .framer-JEHiB .framer-2a6za6 > :first-child, .framer-JEHiB .framer-1th18ln > :first-child, .framer-JEHiB .framer-nt6yeu > :first-child, .framer-JEHiB .framer-u8hfz4 > :first-child, .framer-JEHiB .framer-xuygt > :first-child { margin-top: 0px; } .framer-JEHiB.framer-16j3lni > :last-child, .framer-JEHiB .framer-1ikk90i > :last-child, .framer-JEHiB .framer-1u1ccgb > :last-child, .framer-JEHiB .framer-15u5n2z > :last-child, .framer-JEHiB .framer-dex11a > :last-child, .framer-JEHiB .framer-1kfy0so > :last-child, .framer-JEHiB .framer-1brli7s > :last-child, .framer-JEHiB .framer-1910qr3 > :last-child, .framer-JEHiB .framer-2a6za6 > :last-child, .framer-JEHiB .framer-1th18ln > :last-child, .framer-JEHiB .framer-nt6yeu > :last-child, .framer-JEHiB .framer-u8hfz4 > :last-child, .framer-JEHiB .framer-xuygt > :last-child { margin-bottom: 0px; } .framer-JEHiB .framer-a20enh > *, .framer-JEHiB .framer-8rtp76 > *, .framer-JEHiB .framer-sx9skh > *, .framer-JEHiB .framer-1v2qbys > *, .framer-JEHiB .framer-10bgjmu > *, .framer-JEHiB .framer-qksmc6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JEHiB .framer-a20enh > :first-child, .framer-JEHiB .framer-rq031y > :first-child, .framer-JEHiB .framer-8rtp76 > :first-child, .framer-JEHiB .framer-sx9skh > :first-child, .framer-JEHiB .framer-10osmlb > :first-child, .framer-JEHiB .framer-1v2qbys > :first-child, .framer-JEHiB .framer-10bgjmu > :first-child, .framer-JEHiB .framer-11qz6bd > :first-child, .framer-JEHiB .framer-qksmc6 > :first-child { margin-left: 0px; } .framer-JEHiB .framer-a20enh > :last-child, .framer-JEHiB .framer-rq031y > :last-child, .framer-JEHiB .framer-8rtp76 > :last-child, .framer-JEHiB .framer-sx9skh > :last-child, .framer-JEHiB .framer-10osmlb > :last-child, .framer-JEHiB .framer-1v2qbys > :last-child, .framer-JEHiB .framer-10bgjmu > :last-child, .framer-JEHiB .framer-11qz6bd > :last-child, .framer-JEHiB .framer-qksmc6 > :last-child { margin-right: 0px; } .framer-JEHiB .framer-rq031y > * { margin: 0px; margin-left: calc(68px / 2); margin-right: calc(68px / 2); } .framer-JEHiB .framer-1u1ccgb > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-JEHiB .framer-15u5n2z > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-JEHiB .framer-dex11a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-JEHiB .framer-10osmlb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-JEHiB .framer-11qz6bd > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-JEHiB .framer-1kfy0so > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-JEHiB .framer-1brli7s > *, .framer-JEHiB .framer-1th18ln > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-JEHiB .framer-2a6za6 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-JEHiB .framer-nt6yeu > *, .framer-JEHiB .framer-u8hfz4 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-JEHiB .framer-xuygt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-JEHiB.framer-16j3lni { width: 810px; } .framer-JEHiB .framer-sefvfv-container { width: 96%; } .framer-JEHiB .framer-a20enh { padding: 140px 40px 98px 40px; } .framer-JEHiB .framer-rq031y { flex-direction: column; } .framer-JEHiB .framer-1u1ccgb { flex: none; width: 100%; } .framer-JEHiB .framer-15wsvwj { height: var(--framer-aspect-ratio-supported, 437px); } .framer-JEHiB .framer-1kfy0so { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JEHiB .framer-rq031y { gap: 0px; } .framer-JEHiB .framer-rq031y > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-JEHiB .framer-rq031y > :first-child { margin-top: 0px; } .framer-JEHiB .framer-rq031y > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-JEHiB.framer-16j3lni { width: 390px; } .framer-JEHiB .framer-sefvfv-container { width: 96%; } .framer-JEHiB .framer-a20enh { padding: 120px 20px 68px 20px; } .framer-JEHiB .framer-rq031y { flex-direction: column; } .framer-JEHiB .framer-1u1ccgb { flex: none; width: 100%; } .framer-JEHiB .framer-hi6fky, .framer-JEHiB .framer-11qz6bd { order: 0; } .framer-JEHiB .framer-dex11a, .framer-JEHiB .framer-10osmlb { order: 1; } .framer-JEHiB .framer-19ut2jl { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; justify-content: flex-start; order: 2; } .framer-JEHiB .framer-15wsvwj { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 210px); } .framer-JEHiB .framer-1kfy0so { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; gap: 48px; padding: 24px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-JEHiB .framer-rq031y, .framer-JEHiB .framer-19ut2jl, .framer-JEHiB .framer-1kfy0so { gap: 0px; } .framer-JEHiB .framer-rq031y > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-JEHiB .framer-rq031y > :first-child, .framer-JEHiB .framer-19ut2jl > :first-child, .framer-JEHiB .framer-1kfy0so > :first-child { margin-top: 0px; } .framer-JEHiB .framer-rq031y > :last-child, .framer-JEHiB .framer-19ut2jl > :last-child, .framer-JEHiB .framer-1kfy0so > :last-child { margin-bottom: 0px; } .framer-JEHiB .framer-19ut2jl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-JEHiB .framer-1kfy0so > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11354\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RUK8HGpMs\":{\"layout\":[\"fixed\",\"auto\"]},\"vD_7JwqEY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerResponsiveScreen\n */const FramerEBCF3vOUU=withCSS(Component,css,\"framer-JEHiB\");export default FramerEBCF3vOUU;FramerEBCF3vOUU.displayName=\"Page\";FramerEBCF3vOUU.defaultProps={height:11354,width:1200};addFonts(FramerEBCF3vOUU,[{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:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"}]},...NavigationNavFonts,...PhosphorFonts,...SocialShareFonts,...ButtonsSignUpButtonFonts,...SectionDiscoverFonts,...NavigationFooterFonts,...SmoothScrollFonts,...ComponentCustomCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...componentPresets.fonts?.[\"cFbDJ2PaG\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"cFbDJ2PaG\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEBCF3vOUU\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RUK8HGpMs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vD_7JwqEY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"11354\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["BRAND_COLORS", "PLATFORM_NAMES", "SocialShare", "props", "type", "colors", "iconSize", "border", "shareUrl", "setShareUrl", "ye", "encodedUrl", "borderRadius", "ue", "window", "linkUrl", "copyToClipboard", "navigator", "err", "u", "Color", "p", "SocialIcon", "addPropertyControls", "ControlType", "size", "color", "customIcon", "contents", "fill", "stroke", "l", "_customIcon_image", "_customIcon_image1", "props", "fonts", "fontStore", "fonts", "css", "className", "NavigationNavFonts", "getFonts", "huuXGUyP8_default", "NavigationNavWithVariantAppearEffect", "withVariantAppearEffect", "PhosphorFonts", "Icon", "SocialShareFonts", "SocialShare", "ButtonsSignUpButtonFonts", "gjeZwOQsm_default", "ImageWithFX", "withFX", "Image2", "SectionDiscoverFonts", "OZ72YPMXx_default", "NavigationFooterFonts", "onoMI5YCh_default", "SmoothScrollFonts", "SmoothScroll", "ComponentCustomCursorFonts", "O0JeqOuS0_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "transition2", "animation", "toResponsiveImage", "formVariants", "form", "variants", "currentVariant", "animation1", "transition3", "animation2", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "O0JeqOuS0_default", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "OCJWBXuk3_default", "iG_qE2TSw_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "hfVke3Amm", "mzGnt1kLD", "RxW92_A5f", "irBJrf88W", "MX9IIHwgj", "Bx3gZAMF_", "o4icknAkJ_lwTOWFlkM", "o4icknAkJ_lXDDjFuOl", "o4icknAkJ_jcYsV3PG9", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "textContent", "enumToDisplayNameFunctions", "activeLocaleCode", "useLocaleCode", "textContent1", "elementId", "useRouteElementId", "elementId1", "ref3", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "NavigationNavWithVariantAppearEffect", "Link", "Icon", "RichText2", "x", "SocialShare", "Image2", "ComponentPresetsProvider", "FormContainer", "formState", "l", "FormPlainTextInput2", "gjeZwOQsm_default", "ImageWithFX", "OZ72YPMXx_default", "onoMI5YCh_default", "SmoothScroll", "css", "FramerEBCF3vOUU", "withCSS", "EBCF3vOUU_default", "addFonts", "NavigationNavFonts", "PhosphorFonts", "SocialShareFonts", "ButtonsSignUpButtonFonts", "SectionDiscoverFonts", "NavigationFooterFonts", "SmoothScrollFonts", "ComponentCustomCursorFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
